diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS
index 8e73f442715..95088772131 100644
--- a/.github/CODEOWNERS
+++ b/.github/CODEOWNERS
@@ -4,22 +4,39 @@
# In the event that multiple org members are to be informed of changes
# to the same file or dir, add them to the end under Multiple Owners
-# MarkSuckerberg
-/code/controllers/subsystem/shuttle.dm @MarkSuckerberg
-/code/modules/shuttle/ @MarkSuckerberg
-/code/modules/overmap/ @MarkSuckerberg
-
-# Teams
+# TEAMS
# Map Maintainers
/_maps/ @shiptest-ss13/maptainers
# Sprite Maintainers
/icons/ @shiptest-ss13/spritetainers
-/whitesands/icons/ @shiptest-ss13/spritetainers
# CI and tool chains
/tools/ @shiptest-ss13/admins
-#SIC SEMPER TYRANNIS
+
+# MAINTAINERS
+
+# FalloutFalcon
+
+/code/game/objects/items/storage/ration.dm @FalloutFalcon
+/code/modules/food_and_drinks/drinks/drinks/breakawayflask.dm @FalloutFalcon
+/code/modules/food_and_drinks/food/ration.dm @FalloutFalcon
+/code/modules/mob/living/simple_animal/hostile/mining_mobs/hivelord.dm @FalloutFalcon
+/code/modules/projectiles/ @FalloutFalcon
+/code/modules/reagents/chemistry/reagents/trickwine_reagents.dm @FalloutFalcon
+/code/modules/unit_tests/icons/ @FalloutFalcon
+
+# MarkSuckerberg
+
+/code/controllers/subsystem/shuttle.dm @MarkSuckerberg
+/code/modules/shuttle/ @MarkSuckerberg
+/code/modules/overmap/ @MarkSuckerberg
/_maps/RandomRuins/LavaRuins/lavaland_surface_sloth.dmm @MarkSuckerberg
+
+
+# CONTRIBUTORS
+
+
+# MULTIPLE OWNERS
diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md
index d8e1a483077..168b9038b24 100644
--- a/.github/PULL_REQUEST_TEMPLATE.md
+++ b/.github/PULL_REQUEST_TEMPLATE.md
@@ -15,7 +15,6 @@
add: Added new things
add: Added more things
del: Removed old things
-tweak: tweaked a few things
balance: rebalanced something
fix: fixed a few things
soundadd: added a new sound thingy
diff --git a/.github/workflows/build_linux.yml b/.github/workflows/build_linux.yml
new file mode 100644
index 00000000000..dfdb11172f5
--- /dev/null
+++ b/.github/workflows/build_linux.yml
@@ -0,0 +1,28 @@
+name: Build Linux
+on:
+ push:
+ branches:
+ - master
+ pull_request:
+ branches:
+ - master
+ merge_group:
+ branches:
+ - master
+
+jobs:
+ build_linux:
+ if: "!contains(github.event.head_commit.message, '[ci skip]')"
+ name: "Build (Linux)"
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout Project
+ uses: actions/checkout@v3
+
+ - name: Install BYOND
+ run: tools/starfly/ci/install_byond_linux.sh
+
+ - name: Build Project
+ run: |
+ source ${HOME}/BYOND/byond/bin/byondsetup
+ tools/build/build --ci dm -DCIBUILDING -DCITESTING -DALL_MAPS -DFULL_INIT
diff --git a/.github/workflows/build_windows.yml b/.github/workflows/build_windows.yml
new file mode 100644
index 00000000000..393db0c6d5f
--- /dev/null
+++ b/.github/workflows/build_windows.yml
@@ -0,0 +1,25 @@
+name: Build Windows
+on:
+ push:
+ branches:
+ - master
+ pull_request:
+ branches:
+ - master
+ merge_group:
+ branches:
+ - master
+
+jobs:
+ test_windows:
+ if: "!contains(github.event.head_commit.message, '[ci skip]')"
+ name: "Build (Windows)"
+ runs-on: windows-latest
+ steps:
+ - name: Checkout Project
+ uses: actions/checkout@v3
+
+ - name: Build Project
+ run: pwsh tools/starfly/ci/build.ps1
+ env:
+ DM_EXE: "C:\\byond\\bin\\dm.exe"
diff --git a/Dockerfile b/Dockerfile
index 08e65564579..0c83f0467e6 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,5 +1,5 @@
# syntax=docker/dockerfile:1
-FROM beestation/byond:515.1616 as base
+FROM beestation/byond:515.1633 as base
# Install a MariaDB development package for the shared library
FROM base as mariadb_library
@@ -20,8 +20,8 @@ RUN dpkg --add-architecture i386 \
&& apt-get update \
&& apt-get install -y --no-install-recommends \
curl ca-certificates gcc-multilib \
- g++-multilib libc6-i386 zlib1g-dev:i386 \
- libssl-dev:i386 pkg-config:i386 git \
+ clang g++-multilib libc6-i386 \
+ zlib1g-dev:i386 pkg-config:i386 git \
&& /bin/bash -c "source dependencies.sh \
&& curl https://sh.rustup.rs | sh -s -- -y -t i686-unknown-linux-gnu --no-modify-path --profile minimal --default-toolchain \$RUST_VERSION" \
&& rm -rf /var/lib/apt/lists/*
@@ -33,7 +33,7 @@ RUN git init \
&& /bin/bash -c "source dependencies.sh \
&& git fetch --depth 1 origin \$RUST_G_VERSION" \
&& git checkout FETCH_HEAD \
- && cargo build --release --features all --target i686-unknown-linux-gnu
+ && cargo build --release --target i686-unknown-linux-gnu
# Build auxmos
FROM rust-build as auxmos
@@ -42,7 +42,7 @@ RUN git init \
&& git remote add origin \$AUXMOS_REPO \
&& git fetch --depth 1 origin \$AUXMOS_VERSION" \
&& git checkout FETCH_HEAD \
- && cargo rustc --target=i686-unknown-linux-gnu --release --features all_reaction_hooks,katmos -- -C target-cpu=native
+ && env PKG_CONFIG_ALLOW_CROSS=1 cargo build --release --target=i686-unknown-linux-gnu --features "all_reaction_hooks,katmos"
# Install nodejs which is required to deploy Shiptest
# NOTE: See: https://github.com/nodesource/distributions/discussions/1639
diff --git a/TODO-commits.txt b/TODO-commits.txt
new file mode 100644
index 00000000000..4eb680bd1f3
--- /dev/null
+++ b/TODO-commits.txt
@@ -0,0 +1,42 @@
+
+X = compiles without errors
+- = introduces new compile errors
+^ = inherits compile errors; no new errors introduced
+@ = resolved without a cherry pick
+* = resolved
+! = skipped; not necessary to merge
+
+[@] c88b2633a20c83dfba5ed401df7f975242d99664 Update from Shiptest on 2024-05-07
+[@] 8edf84f54790db070c9ec563ed1227f7cda13d75 Updating computers
+[@] 3db454e5d0cc9c77473bd552eab947103102dc77 Changing How Hallucinations work
+[*] 559492835f9ba8f4f9a95ceaff8407bb103414dc Updating the Mecha Icons
+[*] 17197b2c53a05738c56a1e0cd5cab6259401700a Code/modules/mob/living/simple animal/hostile /syndicate
+[*] e2e37e2857adfae1d4b0c30582ca4c8bf4f765d1 updated revolver
+[*] c7796a52eb4abfe0983a637fff0783efaf976fe1 Constructable Suit Storage Units part 1
+[*] 5cdc04bcba1d594878be878d80ab713cb67278c8 Constructable Suit Storage Units part 2
+[@] 69820b0b662fad1657dfa6fdb3cda9427cfc4a19 Constructable Suit Storage Units part 3
+[*] 2dab8af3a192f6705c4d42e3fcb2a558a47803d6 Constructable Suit Storage Units part 4 (final)
+[*] de71c609003df6a255c22d50fe47100f827f76fc Gun Lore Update
+[@] 4b727c9f03905a2d113e169474f23f11433df546 Armor value changes
+[@] 17efcbf73d4e15789f90bddfacea6286f950ab4d Defib cargo/station
+[@] 61d82bda46ee76216524c12f73f71832a789b6ba secret documents randomization
+[@] 21162817d06e60b8bcce6a4c970a9577643236dc soul removal 1
+[*] 5dbf574b2fe63c492f5a27d2f4b2d0c47201ad3b Makes Sinta'Unathi playable again.
+[*] 11b7bc7ea21c875d3a1b419ae5d3acd83a40ef50 Ship spawn adjustments
+[*] fa0eb54c7a03fcddb94de87450d3df2fe7264a76 Kills-legion-disease-cause-its-bad-and-weird
+[@] 21709d390eef4fa1cbab5af1d8d0919b978f8173 Mindbreaker Tweak
+[@] a0ae6ee50f7dcc336843897d508128518a6b1245 Ports-a-super-small-TG-signal-optimization
+[@] 4bb50ced53aff3902a0c87bd47ae63887d5efa2d makes-plant-analyzer-usable
+[@] d830853fa2cf567ad15a167242698a16b86546ed no-more-ammo-boxes-in-sec-belts
+[@] ee1c8e30a5b4afa865a37b82173a509b12d829b7 Fix-shadow-AP-bonus
+[*] 55268e0620e0af5d2e5f9cb50246c72e173c9325 SSD-Indicators-Will-Be-Real-In-2020-
+[@] 21fe09b54c2d2fa776b0a47b55740d2411e63403 respriting egg boxes
+[@] f165b98f242246de7a2ed737c074f155e57ccbe0 Knife-visibility-quick-fix
+[*] 44764d96d10f46c5e37a89160a64621779a4a841 Ports-'Command-bar-typing-indicators-(client-side-html-version)
+[!] f50415cec86c0ec80bac750f2201b5291f1f49ee restores ballistic.dm [[[fixes 1 error]]]
+
+[*] fe043b3614603fe5d28c69cb2dfe12c08ea66a7c --> Restoring missing files...?
+
+[!] c3f892d6d78ac8db7802aed8a6fa84b87fc7dea1 direct lift
+[*] 38c812c433b3e2936e343199b26c4d3fcce51561 More files included, PGF to Epsilon Eridani conversion
+[!] cbdaaf98c0c1fb602cdcd9343fd127c286686808 I'm... rapidly losing confidence in this.
diff --git a/_maps/RandomRuins/BeachRuins/beach_colony.dmm b/_maps/RandomRuins/BeachRuins/beach_colony.dmm
deleted file mode 100644
index 05a810e004a..00000000000
--- a/_maps/RandomRuins/BeachRuins/beach_colony.dmm
+++ /dev/null
@@ -1,1545 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"ag" = (
-/obj/effect/overlay/palmtree_l,
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"aW" = (
-/obj/item/instrument/guitar,
-/turf/open/floor/carpet/blue{
- light_range = 2
- },
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"bt" = (
-/obj/structure/flora/ausbushes/leafybush,
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"bO" = (
-/turf/closed/wall/mineral/sandstone,
-/area/ruin/unpowered)
-"cr" = (
-/obj/item/reagent_containers/food/snacks/kebab/rat/double,
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"cC" = (
-/obj/structure/flora/ausbushes/brflowers,
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"cS" = (
-/obj/structure/flora/ausbushes/fernybush,
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"dE" = (
-/obj/item/seeds/cocoapod,
-/turf/open/floor/plating/dirt/jungle{
- light_range = 2
- },
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"dH" = (
-/obj/structure/fence{
- icon_state = "corner"
- },
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"fd" = (
-/obj/item/cultivator/rake,
-/turf/open/floor/plating/dirt/jungle{
- light_range = 2
- },
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"fj" = (
-/obj/item/storage/cans/sixbeer,
-/turf/open/floor/carpet/orange{
- light_range = 2
- },
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"fC" = (
-/obj/structure/flora/tree/palm,
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"gn" = (
-/obj/structure/flora/ausbushes/sparsegrass,
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"gv" = (
-/obj/structure/fluff/beach_umbrella/cap,
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"hh" = (
-/obj/structure/barricade/sandbags,
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"hQ" = (
-/obj/structure/fence{
- dir = 5;
- icon_state = "corner"
- },
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"iJ" = (
-/obj/structure/railing{
- dir = 1
- },
-/obj/item/melee/roastingstick,
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"kd" = (
-/obj/effect/mob_spawn/human/corpse/pirate,
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"kV" = (
-/obj/effect/decal/cleanable/crayon{
- icon_state = "carp"
- },
-/turf/open/floor/concrete{
- light_range = 2
- },
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"lr" = (
-/obj/item/toy/beach_ball,
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"lD" = (
-/obj/structure/fence,
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"mt" = (
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"mI" = (
-/obj/structure/toilet{
- dir = 4;
- pixel_y = 3
- },
-/obj/structure/sink/kitchen{
- dir = 8;
- pixel_x = 15
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"nl" = (
-/obj/item/shovel/spade,
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"ns" = (
-/obj/structure/fence{
- icon_state = "door_closed"
- },
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"nB" = (
-/obj/structure/flora/ausbushes/ppflowers,
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"on" = (
-/obj/structure/table/wood,
-/obj/item/clothing/glasses/sunglasses/garb{
- pixel_y = -5
- },
-/obj/item/clothing/glasses/sunglasses/big{
- pixel_y = 9
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"pp" = (
-/obj/structure/chair/plastic{
- dir = 4
- },
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"pv" = (
-/turf/open/floor/plating/asteroid/sand/lit{
- icon_state = "sand_dug"
- },
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"pN" = (
-/turf/open/floor/concrete{
- light_range = 2
- },
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"pU" = (
-/obj/structure/fluff/fokoff_sign,
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"pY" = (
-/obj/structure/bonfire/prelit,
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"qq" = (
-/obj/effect/overlay/coconut,
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"qG" = (
-/obj/item/clothing/suit/space/hardsuit/carp/old,
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"qP" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced,
-/obj/item/storage/firstaid/o2,
-/turf/open/floor/wood{
- light_range = 2
- },
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"rD" = (
-/obj/structure/bed,
-/obj/item/bedsheet/dorms,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"ta" = (
-/turf/open/floor/carpet/blue{
- light_range = 2
- },
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"ug" = (
-/obj/structure/closet/crate/freezer{
- name = "Cooler"
- },
-/obj/item/reagent_containers/food/drinks/ice,
-/obj/item/reagent_containers/food/drinks/colocup,
-/obj/item/reagent_containers/food/drinks/colocup,
-/obj/item/reagent_containers/food/drinks/beer{
- desc = "Beer advertised to be the best in space.";
- name = "Masterbrand Beer"
- },
-/obj/item/reagent_containers/food/drinks/beer{
- desc = "Beer advertised to be the best in space.";
- name = "Masterbrand Beer"
- },
-/obj/item/reagent_containers/food/drinks/beer{
- desc = "Beer advertised to be the best in space.";
- name = "Masterbrand Beer"
- },
-/obj/item/reagent_containers/food/drinks/beer/light,
-/obj/item/reagent_containers/food/drinks/beer/light,
-/obj/item/reagent_containers/food/drinks/beer/light,
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"uw" = (
-/obj/structure/flora/rock/beach,
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"vG" = (
-/obj/effect/mob_spawn/human/corpse/charredskeleton,
-/turf/open/floor/carpet/purple{
- light_range = 2
- },
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"wb" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/table/wood,
-/obj/item/megaphone,
-/turf/open/floor/wood{
- light_range = 2
- },
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"wf" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/grille,
-/obj/structure/curtain,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"xK" = (
-/obj/structure/chair/plastic,
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"xT" = (
-/obj/item/stack/sheet/sandblock,
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"Ap" = (
-/obj/structure/fluff/beach_umbrella/security,
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"AV" = (
-/obj/item/storage/crayons,
-/turf/open/floor/concrete{
- light_range = 2
- },
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"CR" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/structure/chair/stool,
-/obj/item/storage/backpack/duffelbag,
-/obj/item/clothing/under/shorts/red,
-/obj/item/clothing/glasses/sunglasses,
-/turf/open/floor/wood{
- light_range = 2
- },
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"Dx" = (
-/obj/item/toy/crayon/spraycan{
- pixel_x = -5;
- pixel_y = 6
- },
-/obj/item/toy/crayon/spraycan{
- pixel_x = 6;
- pixel_y = 3
- },
-/turf/open/floor/concrete{
- light_range = 2
- },
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"EB" = (
-/obj/structure/fence{
- dir = 4
- },
-/obj/structure/fence{
- dir = 4
- },
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"EC" = (
-/obj/item/toy/beach_ball/holoball/dodgeball,
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"Fm" = (
-/obj/structure/catwalk/over/plated_catwalk,
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"FV" = (
-/obj/effect/overlay/palmtree_r,
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"FW" = (
-/mob/living/simple_animal/hostile/carp,
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"Gh" = (
-/obj/structure/fence{
- dir = 9;
- icon_state = "corner"
- },
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"Hg" = (
-/obj/machinery/hydroponics/soil,
-/turf/open/floor/plating/dirt/jungle{
- light_range = 2
- },
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"IV" = (
-/obj/item/stack/ore/glass/beach,
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"Ja" = (
-/obj/structure/flora/tree/jungle/small,
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"Jb" = (
-/obj/item/seeds/cocoapod/vanillapod,
-/turf/open/floor/plating/dirt/jungle{
- light_range = 2
- },
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"JX" = (
-/obj/machinery/door/airlock/sandstone,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"KA" = (
-/turf/open/floor/plating/dirt/jungle{
- light_range = 2
- },
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"KM" = (
-/turf/template_noop,
-/area/template_noop)
-"Ld" = (
-/obj/structure/fluff/beach_umbrella/science,
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"Li" = (
-/turf/open/water/beach/deep,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"Lz" = (
-/obj/structure/fluff/beach_umbrella/engine,
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"ML" = (
-/obj/item/reagent_containers/glass/bucket/wooden,
-/turf/open/floor/plating/dirt/jungle{
- light_range = 2
- },
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"Nl" = (
-/obj/item/toy/seashell,
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"Nz" = (
-/turf/open/floor/plasteel/stairs/old{
- light_range = 2
- },
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"NG" = (
-/obj/item/gun/ballistic/automatic/pistol/candor/no_mag{
- pixel_x = 13
- },
-/obj/item/toy/plush/carpplushie{
- desc = "An adorable stuffed toy that resembles a space carp with a gun.";
- name = "glock-ness monster plushie"
- },
-/turf/open/water/beach/deep,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"NL" = (
-/obj/structure/closet/cabinet,
-/obj/item/storage/backpack/duffelbag,
-/obj/item/clothing/under/shorts/purple,
-/obj/item/clothing/shoes/cookflops{
- desc = "A very fashionable pair of flip flops.";
- name = "flip-flops"
- },
-/obj/item/clothing/neck/beads,
-/obj/item/clothing/under/color/red,
-/obj/item/clothing/under/color/white,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"Oa" = (
-/obj/item/melee/skateboard/pro,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"Om" = (
-/obj/structure/fence{
- dir = 10;
- icon_state = "corner"
- },
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"Pd" = (
-/obj/item/grown/log/tree,
-/obj/item/grown/log/tree,
-/obj/item/grown/log/tree,
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"Px" = (
-/obj/structure/chair/plastic{
- dir = 1
- },
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"Qf" = (
-/turf/open/floor/concrete/slab_1{
- light_range = 2
- },
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"RK" = (
-/obj/item/toy/beach_ball/holoball/dodgeball,
-/obj/item/melee/skateboard/hoverboard,
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"RM" = (
-/obj/structure/sink/puddle,
-/turf/open/floor/plating/dirt/jungle{
- light_range = 2
- },
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"RV" = (
-/obj/structure/chair/plastic{
- dir = 8
- },
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"SS" = (
-/turf/open/floor/carpet/red{
- light_range = 2
- },
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"Te" = (
-/obj/structure/railing,
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"Tr" = (
-/obj/item/reagent_containers/food/drinks/colocup{
- pixel_x = -7;
- pixel_y = -2
- },
-/obj/item/reagent_containers/food/drinks/colocup{
- pixel_x = 5;
- pixel_y = 6
- },
-/obj/item/reagent_containers/food/drinks/bottle/rum{
- pixel_x = 4;
- pixel_y = -3
- },
-/turf/open/floor/carpet/red{
- light_range = 2
- },
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"TW" = (
-/obj/structure/fence{
- dir = 4
- },
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"TZ" = (
-/turf/open/floor/carpet/purple{
- light_range = 2
- },
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"US" = (
-/turf/open/water/beach,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"Vn" = (
-/turf/open/floor/plating/grass/beach{
- light_range = 2
- },
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"Vx" = (
-/obj/structure/table/rolling,
-/obj/item/reagent_containers/food/snacks/kebab/fiesta,
-/obj/item/reagent_containers/food/snacks/kebab/fiesta{
- pixel_y = 7
- },
-/obj/item/reagent_containers/food/snacks/kebab/fiesta{
- pixel_y = 13
- },
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"VG" = (
-/obj/item/reagent_containers/spray/cleaner,
-/turf/open/floor/concrete{
- light_range = 2
- },
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"VX" = (
-/obj/structure/railing{
- dir = 8
- },
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"Wq" = (
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"Ww" = (
-/obj/item/melee/roastingstick,
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"Xd" = (
-/obj/structure/railing{
- dir = 4
- },
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"Xe" = (
-/obj/item/storage/cans/sixbeer,
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"Xh" = (
-/obj/item/reagent_containers/glass/bucket,
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"Xo" = (
-/obj/structure/statue/sandstone/assistant,
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"Xr" = (
-/obj/structure/flora/ausbushes/sparsegrass,
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"Xz" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/wood{
- light_range = 2
- },
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"Yi" = (
-/obj/item/toy/plush/lizardplushie{
- name = "Soaks-The-Rays"
- },
-/turf/open/floor/carpet/orange{
- light_range = 2
- },
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"Yq" = (
-/obj/effect/decal/cleanable/crayon{
- icon_state = "#"
- },
-/turf/open/floor/concrete{
- light_range = 2
- },
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"Zz" = (
-/obj/structure/flora/ausbushes/grassybush,
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"ZA" = (
-/obj/structure/flora/junglebush/large,
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"ZI" = (
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-
-(1,1,1) = {"
-KM
-KM
-KM
-KM
-KM
-KM
-Wq
-Wq
-Wq
-Wq
-Wq
-Wq
-Vn
-Wq
-Wq
-Wq
-Wq
-Wq
-Wq
-KM
-KM
-KM
-KM
-KM
-KM
-KM
-KM
-KM
-KM
-KM
-"}
-(2,1,1) = {"
-KM
-KM
-bO
-bO
-bO
-bO
-bO
-bO
-bO
-Wq
-cC
-Wq
-Hg
-Hg
-dE
-Jb
-Hg
-Hg
-Wq
-Wq
-gn
-nB
-Wq
-Wq
-KM
-KM
-KM
-KM
-KM
-KM
-"}
-(3,1,1) = {"
-KM
-KM
-bO
-NL
-mt
-Oa
-bO
-mI
-JX
-Wq
-Wq
-Hg
-KA
-KA
-ML
-RM
-KA
-KA
-Hg
-Wq
-Wq
-Wq
-Wq
-ZA
-Wq
-Wq
-Wq
-Ja
-KM
-KM
-"}
-(4,1,1) = {"
-KM
-bO
-bO
-mt
-mt
-bO
-bO
-bO
-bO
-Wq
-Wq
-Wq
-Hg
-Hg
-KA
-fd
-Hg
-Hg
-Wq
-Wq
-Wq
-cS
-Wq
-Wq
-Wq
-Wq
-Wq
-Wq
-Wq
-KM
-"}
-(5,1,1) = {"
-KM
-bO
-mt
-mt
-mt
-JX
-Wq
-Wq
-Wq
-Wq
-gn
-Wq
-Wq
-Wq
-Wq
-Wq
-Wq
-Wq
-Wq
-Wq
-bt
-Wq
-gn
-Wq
-Xe
-pp
-Wq
-cr
-Wq
-KM
-"}
-(6,1,1) = {"
-KM
-bO
-rD
-on
-rD
-bO
-Wq
-cC
-Wq
-bt
-Wq
-ZI
-Xr
-ZI
-ZI
-ZI
-Wq
-Wq
-Wq
-Wq
-Wq
-Wq
-Wq
-Wq
-Wq
-Xd
-Wq
-Px
-Wq
-KM
-"}
-(7,1,1) = {"
-KM
-bO
-bO
-wf
-bO
-bO
-Wq
-Wq
-Wq
-ZI
-ZI
-ZI
-ZI
-ZI
-ZI
-ZI
-ZI
-ZI
-ZI
-Wq
-Wq
-Wq
-gn
-xK
-Te
-pY
-iJ
-Pd
-Wq
-KM
-"}
-(8,1,1) = {"
-KM
-ZA
-Wq
-Wq
-Wq
-Wq
-ZI
-Zz
-ZI
-ZI
-ZI
-ZI
-ZI
-ZI
-ZI
-ZI
-ZI
-Xr
-ZI
-ZI
-Wq
-Wq
-Wq
-Wq
-Ww
-VX
-Wq
-Px
-Wq
-KM
-"}
-(9,1,1) = {"
-Wq
-Wq
-Wq
-Wq
-ZI
-ZI
-ZI
-ZI
-ZI
-ZI
-qq
-ZI
-ZI
-ZI
-fC
-Zz
-ZI
-ZI
-ZI
-ZI
-Zz
-ZI
-Vn
-Vn
-RV
-Wq
-Vx
-Wq
-Wq
-KM
-"}
-(10,1,1) = {"
-Wq
-cS
-Wq
-ZI
-ZI
-ZI
-ZI
-ZI
-RK
-ZI
-ZI
-ZI
-Xr
-ZI
-ZI
-ZI
-ZI
-Xr
-ZI
-ZI
-ZI
-Xr
-Vn
-Vn
-Wq
-Wq
-Wq
-gn
-Wq
-KM
-"}
-(11,1,1) = {"
-Ja
-Wq
-Wq
-ZI
-ZI
-ZI
-Zz
-ZI
-ZI
-ZI
-ZI
-ZI
-ZI
-ZI
-ZI
-ZI
-ZI
-ZI
-ZI
-ZI
-ZI
-ZI
-Wq
-Wq
-cC
-Gh
-lD
-lD
-Om
-Wq
-"}
-(12,1,1) = {"
-Wq
-Wq
-gn
-Zz
-ZI
-ZI
-ZI
-ZI
-ZI
-ZI
-Xr
-ZI
-ZI
-uw
-US
-US
-ZI
-ZI
-Zz
-ZI
-ZI
-ZI
-Wq
-Wq
-Wq
-TW
-FW
-cS
-TW
-Wq
-"}
-(13,1,1) = {"
-Wq
-Wq
-ZI
-ZI
-ZI
-ZI
-fC
-ZI
-Ap
-ZI
-ZI
-ZI
-ZI
-US
-US
-US
-US
-ZI
-ZI
-pv
-IV
-ZI
-Wq
-Wq
-Wq
-TW
-Wq
-FW
-TW
-pU
-"}
-(14,1,1) = {"
-ZA
-Wq
-ZI
-ZI
-ZI
-ZI
-ZI
-ZI
-Tr
-SS
-ZI
-ZI
-US
-US
-US
-US
-US
-ZI
-ZI
-Xh
-nl
-pv
-ZI
-Wq
-Wq
-TW
-qG
-Wq
-ns
-Wq
-"}
-(15,1,1) = {"
-cS
-Wq
-Zz
-ZI
-ZI
-Xr
-ZI
-ZI
-ZI
-ZI
-ZI
-ZI
-US
-US
-US
-US
-US
-ZI
-ZI
-xT
-pv
-IV
-ZI
-nB
-Wq
-TW
-Wq
-cC
-TW
-Wq
-"}
-(16,1,1) = {"
-Wq
-Wq
-ZI
-ZI
-ZI
-ZI
-ZI
-ZI
-ug
-Nl
-ZI
-US
-US
-US
-Li
-US
-US
-US
-ZI
-Xo
-xT
-ZI
-ZI
-Xr
-Wq
-TW
-FW
-kd
-EB
-ZA
-"}
-(17,1,1) = {"
-Wq
-Wq
-Zz
-ZI
-ZI
-fC
-ZI
-Ld
-ZI
-ZI
-ZI
-US
-US
-US
-Li
-Li
-US
-US
-ZI
-ZI
-ZI
-lr
-ZI
-ZI
-Wq
-hQ
-lD
-lD
-dH
-Wq
-"}
-(18,1,1) = {"
-Wq
-ZI
-ZI
-ZI
-ZI
-ZI
-ZI
-vG
-TZ
-ZI
-ZI
-US
-US
-Li
-Li
-Li
-US
-US
-ZI
-Xr
-EC
-ZI
-ZI
-ZI
-gn
-Wq
-Wq
-Wq
-Wq
-Wq
-"}
-(19,1,1) = {"
-Xr
-ZI
-ZI
-ZI
-Zz
-ZI
-ZI
-lr
-ZI
-ZI
-ZI
-US
-US
-Li
-Li
-Li
-US
-US
-ZI
-ZI
-ZI
-ZI
-EC
-ZI
-Wq
-bt
-Wq
-Wq
-Wq
-Wq
-"}
-(20,1,1) = {"
-ZI
-ZI
-fC
-ZI
-Xr
-ZI
-ZI
-ZI
-ZI
-ZI
-ZI
-US
-US
-Li
-NG
-Li
-US
-US
-ZI
-ZI
-ZI
-ZI
-ZI
-ZI
-Wq
-Wq
-Wq
-Wq
-Wq
-Wq
-"}
-(21,1,1) = {"
-ZI
-ZI
-ZI
-qq
-ZI
-ZI
-ZI
-gv
-ZI
-ZI
-ZI
-US
-US
-Li
-Li
-Li
-US
-US
-ZI
-ZI
-hh
-hh
-hh
-ZI
-Wq
-Wq
-Ja
-Wq
-cS
-Wq
-"}
-(22,1,1) = {"
-KM
-ZI
-ZI
-ZI
-ZI
-ZI
-ZI
-ta
-aW
-ZI
-ZI
-US
-US
-US
-Li
-Li
-US
-US
-ZI
-ZI
-ZI
-ZI
-ZI
-ZI
-Qf
-Qf
-Qf
-Qf
-Qf
-KM
-"}
-(23,1,1) = {"
-KM
-Zz
-ZI
-ZI
-ZI
-ZI
-Xr
-ZI
-ZI
-ZI
-Zz
-ZI
-US
-US
-Li
-US
-US
-US
-ZI
-ZI
-EC
-ZI
-ZI
-ZI
-Qf
-AV
-pN
-Yq
-Qf
-KM
-"}
-(24,1,1) = {"
-KM
-ZI
-ZI
-ZI
-Lz
-ZI
-ZI
-ZI
-ZI
-ZI
-ZI
-ZI
-US
-US
-US
-US
-US
-US
-ZI
-ZI
-ZI
-Zz
-ZI
-ZI
-Qf
-pN
-pN
-pN
-Qf
-KM
-"}
-(25,1,1) = {"
-KM
-ZI
-ZI
-ag
-Yi
-ZI
-ZI
-wb
-qP
-Fm
-ZI
-ZI
-US
-US
-US
-US
-US
-uw
-ZI
-ZI
-ZI
-ZI
-ZI
-ZI
-Qf
-Dx
-kV
-VG
-Qf
-KM
-"}
-(26,1,1) = {"
-KM
-ZI
-ZI
-FV
-fj
-ZI
-ZI
-CR
-Xz
-Nz
-ZI
-ZI
-uw
-US
-US
-US
-ZI
-ZI
-ZI
-fC
-qq
-ZI
-ZI
-Wq
-Qf
-Qf
-Qf
-Qf
-Qf
-KM
-"}
-(27,1,1) = {"
-KM
-ZI
-ZI
-ZI
-Xr
-ZI
-ZI
-ZI
-ZI
-ZI
-ZI
-ZI
-ZI
-ZI
-ZI
-ZI
-ZI
-Xr
-ZI
-ZI
-ZI
-ZI
-ZI
-Wq
-cC
-Wq
-Wq
-Wq
-KM
-KM
-"}
-(28,1,1) = {"
-KM
-KM
-ZI
-ZI
-ZI
-ZI
-ZI
-ZI
-Xr
-ZI
-ZI
-ZI
-ZI
-Xr
-ZI
-ZI
-ZI
-ZI
-ZI
-ZI
-ZI
-ZI
-Wq
-Wq
-Wq
-Wq
-Wq
-ZA
-KM
-KM
-"}
-(29,1,1) = {"
-KM
-KM
-KM
-KM
-KM
-ZI
-Zz
-ZI
-ZI
-ZI
-ZI
-ZI
-ZI
-ZI
-ZI
-ZI
-ZI
-Zz
-ZI
-ZI
-ZI
-Xr
-Wq
-Wq
-Wq
-Wq
-Wq
-KM
-KM
-KM
-"}
-(30,1,1) = {"
-KM
-KM
-KM
-KM
-KM
-KM
-KM
-KM
-ZI
-ZI
-ZI
-ZI
-Zz
-ZI
-ZI
-ZI
-ZI
-ZI
-ZI
-ZI
-Wq
-Wq
-Wq
-gn
-KM
-KM
-KM
-KM
-KM
-KM
-"}
diff --git a/_maps/RandomRuins/BeachRuins/beach_fishing_hut.dmm b/_maps/RandomRuins/BeachRuins/beach_fishing_hut.dmm
index 4aaff2b5a16..ab5a6bb58d8 100644
--- a/_maps/RandomRuins/BeachRuins/beach_fishing_hut.dmm
+++ b/_maps/RandomRuins/BeachRuins/beach_fishing_hut.dmm
@@ -136,7 +136,7 @@
/obj/machinery/light/floor,
/obj/machinery/porta_turret/syndicate/energy{
active_power_usage = 0;
- faction = list("beach","pirate");
+ faction = list("Frontiersmen","beach");
idle_power_usage = 0;
reqpower = 0;
name = "Point defense anti-carp turret"
@@ -485,9 +485,6 @@
/obj/machinery/light/small/directional/north{
light_color = "#694c12"
},
-/obj/structure/safe/floor,
-/obj/item/book/granter/martial/carp,
-/obj/item/grenade/clusterbuster/spawner_spesscarp,
/turf/open/floor/carpet,
/area/ruin/beach)
"tj" = (
@@ -667,8 +664,8 @@
/area/overmap_encounter/planetoid/beachplanet/explored)
"Bg" = (
/obj/effect/turf_decal/corner/opaque/pink/diagonal,
-/mob/living/simple_animal/hostile/pirate/melee{
- faction = list("beach","pirate")
+/mob/living/simple_animal/hostile/human/frontier{
+ faction = list("Frontiersmen","beach")
},
/turf/open/floor/plastic,
/area/ruin/beach)
@@ -726,8 +723,7 @@
"Ch" = (
/obj/effect/turf_decal/corner/opaque/pink/diagonal,
/obj/structure/sink/kitchen{
- dir = 4;
- pixel_x = -11
+ dir = 4
},
/turf/open/floor/plastic,
/area/ruin/beach)
@@ -827,23 +823,6 @@
/area/ruin/beach)
"Gt" = (
/obj/effect/turf_decal/corner/opaque/lightgrey/diagonal,
-/mob/living/simple_animal/hostile/cat_butcherer{
- 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 profession carp butcher, gone mad due to carptoxin exposure. There seems to be something in their pocket...";
- faction = list("beach","pirate");
- health = 300;
- loot = list(/obj/effect/mob_spawn/human/corpse/cat_butcher,/obj/item/guardiancreator/carp);
- maxHealth = 300;
- maxbodytemp = 10000;
- melee_damage_lower = 20;
- melee_damage_upper = 25;
- minbodytemp = 0;
- name = "The Butcher";
- ranged_cooldown_time = 15;
- ranged_message = "fires the speargun at";
- real_name = "The Butcher";
- unique_name = 1
- },
/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
dir = 1
},
@@ -853,8 +832,8 @@
"GP" = (
/obj/structure/chair/sofa/brown/right/directional/south,
/obj/effect/decal/cleanable/cobweb,
-/mob/living/simple_animal/hostile/pirate/melee{
- faction = list("beach","pirate")
+/mob/living/simple_animal/hostile/human/frontier{
+ faction = list("Frontiersmen","beach")
},
/turf/open/floor/carpet,
/area/ruin/beach)
@@ -1045,8 +1024,8 @@
/obj/structure/chair/plastic{
dir = 8
},
-/mob/living/simple_animal/hostile/pirate/ranged{
- faction = list("beach","pirate")
+/mob/living/simple_animal/hostile/human/frontier/ranged/mosin/neutered{
+ faction = list("Frontiersmen","beach")
},
/turf/open/floor/wood/ebony,
/area/overmap_encounter/planetoid/beachplanet/explored)
@@ -1119,10 +1098,6 @@
dir = 8
},
/obj/structure/table/wood,
-/obj/item/grenade/spawnergrenade/spesscarp{
- pixel_x = 3;
- pixel_y = -21
- },
/obj/item/stack/medical/bruise_pack/herb{
pixel_x = -5;
name = "herbal pack"
@@ -1135,8 +1110,8 @@
/area/ruin/beach)
"Rh" = (
/obj/structure/chair/sofa/brown/corner/directional/south,
-/mob/living/simple_animal/hostile/pirate/melee{
- faction = list("beach","pirate")
+/mob/living/simple_animal/hostile/human/frontier{
+ faction = list("Frontiersmen","beach")
},
/turf/open/floor/carpet,
/area/ruin/beach)
@@ -1250,8 +1225,8 @@
pixel_x = 4;
layer = 2.9
},
-/mob/living/simple_animal/hostile/pirate/ranged{
- faction = list("beach","pirate")
+/mob/living/simple_animal/hostile/human/frontier/ranged/mosin/neutered{
+ faction = list("Frontiersmen","beach")
},
/turf/open/floor/wood/ebony,
/area/overmap_encounter/planetoid/beachplanet/explored)
@@ -1333,8 +1308,8 @@
/turf/open/water/beach,
/area/overmap_encounter/planetoid/beachplanet/explored)
"ZJ" = (
-/mob/living/simple_animal/hostile/pirate/melee{
- faction = list("beach","pirate")
+/mob/living/simple_animal/hostile/human/frontier{
+ faction = list("Frontiersmen","beach")
},
/turf/open/floor/wood,
/area/ruin/beach)
diff --git a/_maps/RandomRuins/BeachRuins/beach_knights_rest.dmm b/_maps/RandomRuins/BeachRuins/beach_knights_rest.dmm
deleted file mode 100644
index 17ad7d93f73..00000000000
--- a/_maps/RandomRuins/BeachRuins/beach_knights_rest.dmm
+++ /dev/null
@@ -1,3347 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"ao" = (
-/obj/structure/fermenting_barrel,
-/turf/open/floor/plating/dirt/jungle/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"aA" = (
-/obj/structure/flora/ausbushes/ppflowers,
-/obj/structure/flora/ausbushes/ywflowers,
-/turf/open/floor/plating/grass/beach/lit{
- smoothing_flags = 0
- },
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"bV" = (
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/flora/ausbushes/ywflowers,
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"cv" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 9
- },
-/turf/open/floor/wood,
-/area/ruin/beachplanet/knight)
-"cC" = (
-/obj/structure/flora/ausbushes/ywflowers,
-/obj/structure/flora/ausbushes/brflowers,
-/turf/open/floor/plating/grass/beach/lit{
- smoothing_flags = 0
- },
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"dr" = (
-/obj/structure/sink/puddle,
-/obj/item/reagent_containers/glass/bucket/wooden,
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"dF" = (
-/obj/structure/mineral_door/iron,
-/turf/open/floor/plasteel/stairs/mid{
- dir = 4
- },
-/area/ruin/beachplanet/knight)
-"dG" = (
-/obj/structure/flora/ausbushes/lavendergrass,
-/obj/structure/flora/ausbushes/ppflowers,
-/turf/open/floor/plating/grass/beach/lit{
- smoothing_flags = 0
- },
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"dK" = (
-/obj/structure/flora/ausbushes/brflowers,
-/obj/structure/flora/ausbushes/ywflowers,
-/turf/open/floor/plating/grass/beach/lit{
- smoothing_flags = 0
- },
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"eF" = (
-/obj/structure/railing{
- dir = 4
- },
-/turf/open/floor/plasteel/stairs{
- dir = 1
- },
-/area/ruin/beachplanet/knight)
-"eZ" = (
-/turf/open/floor/wood/ebony,
-/area/ruin/beachplanet/knight)
-"fw" = (
-/mob/living/simple_animal/butterfly,
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"fy" = (
-/turf/open/floor/plating/grass/beach/lit,
-/area/ruin/beachplanet/knight)
-"fB" = (
-/obj/structure/flora/ausbushes/sparsegrass{
- pixel_x = -1
- },
-/obj/structure/flora/ausbushes/ywflowers,
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"fC" = (
-/obj/effect/turf_decal/stoneborder,
-/obj/structure/railing{
- dir = 8
- },
-/turf/open/floor/wood/ebony,
-/area/ruin/beachplanet/knight)
-"fN" = (
-/obj/structure/flora/ausbushes/ppflowers,
-/obj/structure/flora/ausbushes/brflowers,
-/obj/structure/flora/ausbushes/sparsegrass,
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"fR" = (
-/obj/effect/turf_decal/stoneborder,
-/turf/open/floor/grass/fairy/beach,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"gf" = (
-/obj/structure/flora/ausbushes/sparsegrass,
-/obj/structure/flora/ausbushes/lavendergrass,
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"gw" = (
-/obj/structure/flora/tree/chapel{
- desc = "A true earthen oak tree. It stands high, like a proud guard";
- name = "oak tree"
- },
-/turf/open/floor/plating/grass/beach/lit{
- smoothing_flags = 0
- },
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"gC" = (
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/flora/ausbushes/lavendergrass,
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"gE" = (
-/obj/structure/flora/ausbushes/lavendergrass,
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"gO" = (
-/obj/machinery/seed_extractor,
-/turf/open/floor/wood,
-/area/ruin/beachplanet/knight)
-"gU" = (
-/obj/structure/chair/pew{
- dir = 1
- },
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"gX" = (
-/obj/machinery/hydroponics/soil,
-/obj/item/seeds/tomato,
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"hk" = (
-/obj/structure/railing,
-/turf/open/floor/plasteel/stairs{
- dir = 4
- },
-/area/ruin/beachplanet/knight)
-"hl" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 6
- },
-/turf/open/floor/wood,
-/area/ruin/beachplanet/knight)
-"hD" = (
-/turf/template_noop,
-/area/template_noop)
-"ia" = (
-/obj/structure/chair/pew/left{
- dir = 1
- },
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"iG" = (
-/obj/structure/flora/ausbushes/ppflowers,
-/obj/structure/flora/ausbushes/brflowers,
-/obj/structure/flora/ausbushes/sparsegrass,
-/turf/open/floor/plating/grass/beach/lit{
- smoothing_flags = 0
- },
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"ja" = (
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"jm" = (
-/obj/effect/turf_decal/stoneborder,
-/obj/structure/railing{
- dir = 4
- },
-/turf/open/floor/wood/ebony,
-/area/ruin/beachplanet/knight)
-"jA" = (
-/obj/structure/flora/ausbushes/sparsegrass,
-/obj/structure/flora/ausbushes/ywflowers,
-/turf/open/floor/plating/grass/beach/lit{
- smoothing_flags = 0
- },
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"jG" = (
-/obj/structure/flora/ausbushes/sparsegrass,
-/obj/structure/flora/ausbushes/ywflowers,
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"kb" = (
-/obj/structure/chair/wood/wings{
- dir = 8
- },
-/turf/open/floor/wood,
-/area/ruin/beachplanet/knight)
-"kq" = (
-/obj/structure/flora/ausbushes/sparsegrass,
-/obj/structure/flora/ausbushes/lavendergrass,
-/obj/structure/flora/ausbushes/ywflowers,
-/turf/open/floor/plating/grass/beach/lit{
- smoothing_flags = 0
- },
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"kD" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 8
- },
-/turf/open/floor/wood,
-/area/ruin/beachplanet/knight)
-"kV" = (
-/obj/structure/railing{
- dir = 4
- },
-/obj/effect/turf_decal/stoneborder,
-/obj/effect/turf_decal/siding/wood{
- dir = 4
- },
-/turf/open/floor/plating/grass/beach/lit{
- smoothing_flags = 0
- },
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"kX" = (
-/mob/living/simple_animal/butterfly,
-/turf/open/floor/plating/grass/beach/lit{
- smoothing_flags = 0
- },
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"lD" = (
-/obj/machinery/hydroponics/soil,
-/obj/item/plant_analyzer,
-/obj/item/seeds/poppy/geranium,
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"mx" = (
-/turf/closed/wall/mineral/iron{
- desc = "A wall with rough metal plating, it looks almost stonelike in composition."
- },
-/area/ruin/beachplanet/knight)
-"nc" = (
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/flora/ausbushes/lavendergrass,
-/obj/structure/flora/ausbushes/brflowers,
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"no" = (
-/obj/structure/chair/pew{
- dir = 8
- },
-/obj/structure/flora/ausbushes/sparsegrass,
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"oo" = (
-/obj/structure/flora/ausbushes/sunnybush{
- name = "oak sapling"
- },
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"oF" = (
-/obj/machinery/hydroponics/soil,
-/obj/item/seeds/wheat/oat,
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"oP" = (
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/flora/ausbushes/sparsegrass{
- pixel_x = -1
- },
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"pn" = (
-/obj/item/shovel/spade,
-/turf/open/floor/plating/grass/beach/lit{
- smoothing_flags = 0
- },
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"pL" = (
-/obj/structure/rack,
-/obj/effect/turf_decal/siding/wood{
- dir = 1
- },
-/obj/item/flashlight/flare/torch,
-/obj/item/flashlight/flare/torch,
-/obj/item/flashlight/flare/torch,
-/obj/item/flashlight/flare/torch,
-/obj/item/flashlight/flare/torch,
-/turf/open/floor/wood,
-/area/ruin/beachplanet/knight)
-"pN" = (
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"pT" = (
-/obj/structure/railing{
- dir = 4
- },
-/turf/open/floor/wood/ebony,
-/area/ruin/beachplanet/knight)
-"qe" = (
-/obj/structure/table/wood,
-/obj/item/seeds/grape,
-/obj/item/seeds/grape,
-/turf/open/floor/wood,
-/area/ruin/beachplanet/knight)
-"qi" = (
-/obj/effect/turf_decal/siding/wood/corner{
- dir = 1
- },
-/turf/open/floor/wood,
-/area/ruin/beachplanet/knight)
-"qJ" = (
-/turf/open/floor/plating/dirt/jungle/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"qV" = (
-/obj/structure/table/wood,
-/obj/structure/curtain/cloth,
-/turf/open/floor/wood,
-/area/ruin/beachplanet/knight)
-"rp" = (
-/obj/structure/railing,
-/obj/effect/turf_decal/siding/wood,
-/turf/open/floor/wood{
- light_range = 2
- },
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"rv" = (
-/obj/machinery/hydroponics/soil,
-/obj/item/seeds/poppy/lily/trumpet,
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"si" = (
-/obj/structure/chair/pew{
- dir = 8
- },
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"sD" = (
-/obj/structure/destructible/tribal_torch/lit,
-/turf/open/floor/wood,
-/area/ruin/beachplanet/knight)
-"sG" = (
-/turf/open/floor/plating/dirt/jungle/dark/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"tc" = (
-/obj/structure/flora/ausbushes/brflowers,
-/obj/structure/flora/ausbushes/sparsegrass,
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"tk" = (
-/obj/structure/flora/ausbushes/sparsegrass,
-/turf/open/floor/grass/fairy/beach,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"tD" = (
-/obj/structure/table/wood,
-/obj/item/flashlight/flare/torch,
-/obj/item/flashlight/flare/torch,
-/turf/open/floor/wood,
-/area/ruin/beachplanet/knight)
-"ue" = (
-/obj/structure/flora/ausbushes/ywflowers,
-/obj/structure/flora/ausbushes/lavendergrass,
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"uf" = (
-/obj/structure/railing{
- dir = 4
- },
-/turf/open/floor/plasteel/stairs,
-/area/ruin/beachplanet/knight)
-"uz" = (
-/obj/structure/sink/puddle,
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"ve" = (
-/obj/effect/turf_decal/stoneborder,
-/turf/open/floor/plating/grass/beach/lit{
- smoothing_flags = 0
- },
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"vf" = (
-/obj/structure/bookcase/manuals,
-/turf/open/floor/wood,
-/area/ruin/beachplanet/knight)
-"vm" = (
-/obj/structure/railing/wood{
- dir = 1
- },
-/turf/open/floor/plating/grass/beach/lit{
- smoothing_flags = 0
- },
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"wm" = (
-/turf/open/floor/grass/fairy/beach,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"wr" = (
-/obj/structure/flora/ausbushes/sparsegrass,
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"ww" = (
-/obj/structure/flora/ausbushes/sparsegrass{
- pixel_x = -1
- },
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"wI" = (
-/obj/machinery/hydroponics/soil,
-/obj/item/hatchet/wooden,
-/obj/item/seeds/poppy/lily/trumpet,
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"xg" = (
-/obj/structure/railing{
- dir = 8
- },
-/obj/effect/turf_decal/stoneborder,
-/obj/effect/turf_decal/siding/wood{
- dir = 8
- },
-/turf/open/floor/plating/grass/beach/lit{
- smoothing_flags = 0
- },
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"xp" = (
-/obj/structure/flora/ausbushes/ppflowers,
-/obj/structure/flora/ausbushes/sparsegrass,
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"xq" = (
-/obj/structure/chair/pew/left{
- dir = 8
- },
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"xI" = (
-/obj/item/cultivator/rake,
-/turf/open/floor/plating/grass/beach/lit{
- smoothing_flags = 0
- },
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"xN" = (
-/obj/structure/chair/pew/right{
- dir = 4
- },
-/obj/structure/flora/ausbushes/sparsegrass,
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"yc" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 8
- },
-/obj/structure/rack,
-/obj/item/flashlight/flare/torch,
-/obj/item/flashlight/flare/torch,
-/obj/item/flashlight/flare/torch,
-/obj/item/flashlight/flare/torch,
-/obj/item/flashlight/flare/torch,
-/turf/open/floor/wood,
-/area/ruin/beachplanet/knight)
-"ye" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 10
- },
-/turf/open/floor/wood,
-/area/ruin/beachplanet/knight)
-"yG" = (
-/obj/structure/railing/wood{
- dir = 1
- },
-/obj/structure/flora/ausbushes/lavendergrass,
-/turf/open/floor/plating/grass/beach/lit{
- smoothing_flags = 0
- },
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"zg" = (
-/obj/structure/railing{
- dir = 4
- },
-/obj/effect/turf_decal/siding/wood{
- dir = 4
- },
-/turf/open/floor/plating/grass/beach/lit{
- smoothing_flags = 0
- },
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"zz" = (
-/obj/structure/flora/ausbushes/ywflowers,
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"zH" = (
-/obj/machinery/hydroponics/soil,
-/obj/item/seeds/poppy/geranium,
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"Al" = (
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/flora/ausbushes/ppflowers,
-/obj/structure/flora/ausbushes/ywflowers,
-/obj/structure/flora/ausbushes/sparsegrass{
- pixel_x = -1
- },
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"AA" = (
-/obj/structure/railing,
-/turf/open/floor/wood/ebony,
-/area/ruin/beachplanet/knight)
-"AJ" = (
-/obj/structure/chair/pew/right{
- dir = 1
- },
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"AM" = (
-/obj/structure/chair/pew{
- dir = 4
- },
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"Bk" = (
-/obj/structure/closet/crate/grave/loot{
- icon_state = "grave_lead";
- desc = "An marked patch of soil, showing signs of a burial. The headstone cannot be read, its' message torn away by age."
- },
-/obj/item/nullrod/claymore{
- name = "ancient claymore";
- desc = "The gold on the sword is tarnished, yet retains an human letter carved into it. R."
- },
-/turf/open/floor/plating/dirt/jungle/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"Cb" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/ruin/beachplanet/knight)
-"Cs" = (
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/flora/ausbushes/leafybush,
-/obj/structure/flora/ausbushes/ywflowers,
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"CA" = (
-/obj/structure/railing{
- dir = 8
- },
-/obj/effect/turf_decal/siding/wood{
- dir = 8
- },
-/turf/open/floor/plating/grass/beach/lit{
- smoothing_flags = 0
- },
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"Dg" = (
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/flora/ausbushes/leafybush,
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"Dh" = (
-/obj/machinery/biogenerator,
-/obj/item/reagent_containers/glass/bucket/wooden,
-/turf/open/floor/wood,
-/area/ruin/beachplanet/knight)
-"Dj" = (
-/obj/structure/flora/ausbushes/ywflowers,
-/obj/structure/flora/ausbushes/sparsegrass,
-/obj/structure/flora/ausbushes/brflowers,
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"Eh" = (
-/obj/structure/altar_of_gods,
-/obj/item/reagent_containers/food/snacks/grown/poppy/lily,
-/turf/open/floor/plating/dirt/jungle/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"Ej" = (
-/obj/structure/flora/ausbushes/brflowers,
-/obj/structure/flora/ausbushes/lavendergrass,
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"EH" = (
-/obj/structure/table/wood,
-/obj/structure/bedsheetbin,
-/turf/open/floor/wood,
-/area/ruin/beachplanet/knight)
-"ES" = (
-/obj/structure/flora/ausbushes/sparsegrass{
- pixel_x = -1
- },
-/obj/structure/flora/ausbushes/ywflowers,
-/obj/structure/flora/ausbushes/ppflowers,
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"Ft" = (
-/obj/structure/flora/ausbushes/lavendergrass,
-/turf/open/floor/plating/grass/beach/lit{
- smoothing_flags = 0
- },
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"Gj" = (
-/obj/machinery/hydroponics/soil,
-/obj/item/seeds/potato/sweet,
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"Ha" = (
-/obj/machinery/hydroponics/soil,
-/obj/item/seeds/wheat,
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"HQ" = (
-/obj/structure/flora/ausbushes/sparsegrass{
- pixel_x = -1
- },
-/obj/structure/flora/ausbushes/ppflowers,
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"If" = (
-/obj/machinery/hydroponics/soil,
-/obj/item/seeds/poppy,
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"Ih" = (
-/obj/structure/railing{
- dir = 1
- },
-/obj/effect/turf_decal/siding/wood{
- dir = 1
- },
-/turf/open/floor/wood{
- light_range = 2
- },
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"Jf" = (
-/obj/machinery/hydroponics/soil,
-/obj/item/seeds/potato,
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"JH" = (
-/obj/structure/chair/pew/right{
- dir = 8
- },
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"JI" = (
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/flora/ausbushes/ppflowers,
-/obj/structure/flora/ausbushes/ywflowers,
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"KE" = (
-/obj/item/storage/bag/plants,
-/turf/open/floor/plating/grass/beach/lit{
- smoothing_flags = 0
- },
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"KJ" = (
-/obj/structure/flora/ausbushes/lavendergrass,
-/obj/structure/flora/ausbushes/brflowers,
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"Mc" = (
-/obj/structure/destructible/tribal_torch/lit,
-/turf/open/floor/wood{
- light_range = 2
- },
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"Me" = (
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/flora/ausbushes/ppflowers,
-/obj/structure/flora/ausbushes/sparsegrass{
- pixel_x = -1
- },
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"MR" = (
-/obj/structure/railing/wood,
-/turf/open/floor/plating/grass/beach/lit{
- smoothing_flags = 0
- },
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"MT" = (
-/mob/living/simple_animal/butterfly,
-/obj/structure/flora/ausbushes/sparsegrass,
-/turf/open/floor/plating/grass/beach/lit{
- smoothing_flags = 0
- },
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"Np" = (
-/obj/structure/table/wood,
-/turf/open/floor/wood,
-/area/ruin/beachplanet/knight)
-"Nt" = (
-/obj/structure/flora/ausbushes/ppflowers,
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"PJ" = (
-/obj/structure/table/wood,
-/obj/structure/curtain/cloth,
-/obj/item/flashlight/flare/torch,
-/turf/open/floor/wood,
-/area/ruin/beachplanet/knight)
-"PK" = (
-/turf/open/floor/concrete/slab_1,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"PT" = (
-/obj/structure/flora/ausbushes/sparsegrass,
-/turf/open/floor/plating/grass/beach/lit{
- smoothing_flags = 0
- },
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"Qj" = (
-/obj/structure/railing,
-/obj/structure/railing{
- dir = 8
- },
-/obj/structure/destructible/tribal_torch/lit{
- pixel_y = 10
- },
-/turf/open/floor/wood/ebony,
-/area/ruin/beachplanet/knight)
-"Ql" = (
-/obj/structure/flora/tree/chapel{
- desc = "A true earthen oak tree. It stands high, like a proud guard";
- name = "oak tree"
- },
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"Qm" = (
-/obj/item/reagent_containers/glass/bucket/wooden,
-/turf/open/floor/plating/grass/beach/lit{
- smoothing_flags = 0
- },
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"Qw" = (
-/obj/structure/closet/cabinet{
- name = "grower's cabinet"
- },
-/obj/item/shovel/spade,
-/obj/item/shovel/spade,
-/obj/item/cultivator/rake,
-/obj/item/cultivator/rake,
-/obj/item/reagent_containers/glass/bucket/wooden,
-/obj/item/reagent_containers/glass/bucket/wooden,
-/obj/item/storage/bag/plants,
-/obj/item/storage/bag/plants,
-/turf/open/floor/wood,
-/area/ruin/beachplanet/knight)
-"QG" = (
-/obj/structure/statue/sandstone/venus{
- anchored = 1
- },
-/turf/open/floor/concrete/slab_1,
-/area/ruin/beachplanet/knight)
-"QI" = (
-/obj/structure/flora/ausbushes/lavendergrass,
-/obj/structure/flora/ausbushes/ppflowers,
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"QS" = (
-/obj/machinery/hydroponics/soil,
-/obj/item/hatchet/wooden,
-/obj/item/seeds/poppy/lily,
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"Ro" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 1
- },
-/turf/open/floor/wood,
-/area/ruin/beachplanet/knight)
-"Sj" = (
-/obj/structure/flora/ausbushes/ppflowers,
-/obj/structure/flora/ausbushes/brflowers,
-/obj/structure/flora/ausbushes/ywflowers,
-/turf/open/floor/plating/grass/beach/lit{
- smoothing_flags = 0
- },
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"Sp" = (
-/obj/machinery/hydroponics/soil,
-/obj/item/seeds/poppy/lily,
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"Sz" = (
-/obj/structure/flora/ausbushes/lavendergrass,
-/obj/structure/flora/ausbushes/fullgrass,
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"SR" = (
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/flora/ausbushes/lavendergrass,
-/obj/structure/flora/ausbushes/ywflowers,
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"SV" = (
-/obj/effect/turf_decal/siding/wood/corner{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/ruin/beachplanet/knight)
-"Th" = (
-/turf/open/floor/wood{
- light_range = 2
- },
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"Tr" = (
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/flora/ausbushes/ppflowers,
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"Uo" = (
-/obj/structure/flora/ausbushes/sparsegrass,
-/obj/structure/flora/ausbushes/lavendergrass,
-/turf/open/floor/plating/grass/beach/lit{
- smoothing_flags = 0
- },
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"Uy" = (
-/obj/item/clothing/suit/hooded/chaplainsuit/monkhabit,
-/obj/item/clothing/suit/hooded/chaplainsuit/monkhabit,
-/obj/item/clothing/suit/hooded/chaplainsuit/monkhabit,
-/obj/item/clothing/suit/hooded/chaplainsuit/monkhabit,
-/obj/structure/closet/cabinet,
-/obj/item/clothing/shoes/sandal,
-/obj/item/clothing/shoes/sandal,
-/obj/item/clothing/shoes/sandal,
-/obj/item/clothing/shoes/sandal,
-/obj/item/clothing/under/rank/civilian/chaplain,
-/obj/item/clothing/under/rank/civilian/chaplain,
-/obj/item/clothing/under/rank/civilian/chaplain/skirt,
-/obj/item/clothing/under/rank/civilian/chaplain/skirt,
-/turf/open/floor/wood,
-/area/ruin/beachplanet/knight)
-"UG" = (
-/obj/structure/flora/ausbushes/ywflowers,
-/turf/open/floor/plating/grass/beach/lit{
- smoothing_flags = 0
- },
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"UL" = (
-/obj/structure/flora/ausbushes/ywflowers,
-/obj/structure/flora/ausbushes/brflowers,
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"UQ" = (
-/obj/effect/turf_decal/stoneborder,
-/obj/structure/railing{
- dir = 4
- },
-/obj/structure/destructible/tribal_torch/lit,
-/turf/open/floor/wood/ebony,
-/area/ruin/beachplanet/knight)
-"Vx" = (
-/mob/living/simple_animal/butterfly,
-/turf/open/floor/plating/dirt/jungle/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"VF" = (
-/turf/open/floor/wood,
-/area/ruin/beachplanet/knight)
-"VK" = (
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/flora/ausbushes/brflowers,
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"WE" = (
-/obj/structure/railing,
-/turf/open/floor/plasteel/stairs{
- dir = 8
- },
-/area/ruin/beachplanet/knight)
-"WX" = (
-/obj/structure/bed,
-/turf/open/floor/wood,
-/area/ruin/beachplanet/knight)
-"WZ" = (
-/obj/structure/mineral_door/iron,
-/turf/open/floor/wood,
-/area/ruin/beachplanet/knight)
-"Xn" = (
-/obj/structure/flora/ausbushes/ywflowers,
-/obj/structure/flora/ausbushes/brflowers,
-/obj/structure/flora/ausbushes/ppflowers,
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"Xw" = (
-/obj/structure/flora/ausbushes/lavendergrass,
-/obj/structure/flora/ausbushes/brflowers,
-/turf/open/floor/plating/grass/beach/lit{
- smoothing_flags = 0
- },
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"Xz" = (
-/mob/living/simple_animal/butterfly,
-/turf/open/floor/grass/fairy/beach,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"XF" = (
-/obj/structure/flora/ausbushes/brflowers,
-/obj/structure/flora/ausbushes/ppflowers,
-/turf/open/floor/plating/grass/beach/lit{
- smoothing_flags = 0
- },
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"XL" = (
-/turf/open/floor/plating/grass/beach/lit{
- smoothing_flags = 0
- },
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"Yq" = (
-/obj/structure/flora/ausbushes/lavendergrass,
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/destructible/tribal_torch/lit,
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"YC" = (
-/turf/open/floor/plasteel/stairs,
-/area/ruin/beachplanet/knight)
-"YJ" = (
-/obj/structure/destructible/tribal_torch/lit,
-/turf/open/floor/plating/grass/beach/lit{
- smoothing_flags = 0
- },
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"Zf" = (
-/obj/structure/flora/ausbushes/fullgrass,
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"Zg" = (
-/obj/structure/flora/ausbushes/ppflowers,
-/obj/structure/flora/ausbushes/brflowers,
-/obj/structure/flora/ausbushes/ywflowers,
-/obj/structure/flora/ausbushes/sparsegrass,
-/turf/open/floor/plating/grass/beach/lit{
- smoothing_flags = 0
- },
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"ZE" = (
-/obj/structure/table/wood,
-/obj/item/paper_bin,
-/obj/item/pen,
-/turf/open/floor/wood,
-/area/ruin/beachplanet/knight)
-"ZF" = (
-/obj/structure/chair/pew/left{
- dir = 4
- },
-/turf/open/floor/plating/dirt/jungle/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"ZS" = (
-/obj/structure/mineral_door/iron,
-/turf/open/floor/plasteel/stairs/mid{
- dir = 8
- },
-/area/ruin/beachplanet/knight)
-
-(1,1,1) = {"
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-ja
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-"}
-(2,1,1) = {"
-ja
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-ja
-ja
-hD
-ja
-ja
-ja
-ja
-ja
-hD
-hD
-ja
-ja
-ja
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-"}
-(3,1,1) = {"
-ja
-ja
-hD
-hD
-ja
-ja
-hD
-hD
-hD
-hD
-hD
-ja
-Zf
-ja
-ja
-hD
-hD
-ja
-ja
-hD
-ja
-wm
-wm
-wm
-ja
-hD
-hD
-Zf
-Zf
-Zf
-ja
-hD
-hD
-hD
-hD
-Zf
-ja
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-"}
-(4,1,1) = {"
-hD
-ja
-Zf
-Zf
-ww
-ja
-ja
-ja
-ja
-ja
-hD
-ja
-ja
-Zf
-Zf
-ja
-ja
-ja
-ja
-ja
-ja
-wm
-Zf
-Zf
-ja
-ja
-ja
-ja
-Zf
-Zf
-ja
-ja
-ja
-ja
-ja
-wm
-wm
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-"}
-(5,1,1) = {"
-hD
-hD
-ja
-bV
-bV
-XL
-zg
-zg
-zg
-zg
-zg
-zg
-zg
-zg
-zg
-zg
-zg
-XL
-ja
-ja
-Zf
-Zf
-Zf
-ja
-ja
-XL
-zg
-zg
-zg
-zg
-zg
-zg
-zg
-zg
-zg
-XL
-wm
-ja
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-"}
-(6,1,1) = {"
-hD
-hD
-hD
-ww
-Zf
-XL
-Ih
-Th
-Th
-Th
-Th
-Th
-Th
-Th
-Th
-Th
-rp
-kV
-zg
-zg
-zg
-zg
-zg
-zg
-zg
-zg
-Ih
-Th
-Th
-Th
-Th
-Th
-Th
-Th
-rp
-ve
-wm
-ja
-ja
-ja
-ja
-ja
-hD
-hD
-hD
-hD
-hD
-hD
-"}
-(7,1,1) = {"
-hD
-hD
-hD
-ja
-ja
-XL
-Ih
-mx
-mx
-mx
-mx
-mx
-mx
-mx
-mx
-Mc
-Th
-Th
-Th
-Th
-Th
-Th
-Th
-Th
-Th
-Th
-Th
-Mc
-mx
-mx
-mx
-mx
-dF
-mx
-rp
-ve
-wm
-wm
-ja
-ja
-wm
-ja
-ja
-wm
-hD
-hD
-hD
-hD
-"}
-(8,1,1) = {"
-hD
-hD
-hD
-ja
-ja
-XL
-Ih
-mx
-Dh
-VF
-Qw
-mx
-ja
-ja
-mx
-mx
-mx
-mx
-mx
-mx
-mx
-mx
-mx
-mx
-mx
-mx
-mx
-mx
-mx
-Cb
-Cb
-Cb
-SV
-mx
-rp
-ve
-ja
-wm
-Tr
-Zf
-wm
-ja
-Zf
-wm
-wm
-wm
-hD
-hD
-"}
-(9,1,1) = {"
-hD
-hD
-hD
-ja
-ja
-XL
-Ih
-mx
-gO
-VF
-VF
-qV
-ja
-ja
-XL
-QS
-dr
-Sp
-XL
-XL
-Ha
-Ha
-Ha
-XL
-XL
-gX
-dr
-gX
-mx
-hk
-fC
-Qj
-Ro
-mx
-rp
-ve
-ja
-ja
-Tr
-ja
-wm
-ja
-Zf
-ja
-ja
-wm
-wm
-hD
-"}
-(10,1,1) = {"
-hD
-hD
-hD
-hD
-hD
-XL
-Ih
-mx
-sD
-VF
-VF
-qV
-ja
-ja
-XL
-XL
-XL
-xI
-XL
-XL
-KE
-XL
-XL
-pn
-XL
-XL
-XL
-XL
-mx
-hk
-jm
-AA
-Ro
-mx
-rp
-ve
-XL
-ja
-Tr
-ja
-wm
-ja
-ja
-gC
-ja
-ja
-wm
-hD
-"}
-(11,1,1) = {"
-hD
-hD
-ja
-ja
-ja
-XL
-Ih
-mx
-qe
-VF
-VF
-PJ
-wm
-wm
-XL
-zH
-lD
-zH
-XL
-XL
-oF
-oF
-oF
-XL
-kX
-Gj
-Gj
-Gj
-mx
-ye
-YC
-AA
-pL
-mx
-rp
-ve
-ja
-ja
-Zf
-ja
-wm
-ja
-Zf
-gC
-Zf
-ja
-ja
-hD
-"}
-(12,1,1) = {"
-hD
-ja
-ja
-ja
-ja
-XL
-Ih
-mx
-mx
-WZ
-mx
-mx
-wm
-wm
-XL
-XL
-XL
-XL
-XL
-XL
-XL
-Qm
-XL
-wm
-kX
-XL
-xI
-XL
-mx
-mx
-mx
-WZ
-mx
-mx
-rp
-ve
-gE
-gE
-Zf
-ja
-wm
-ja
-bV
-SR
-bV
-Zf
-ja
-hD
-"}
-(13,1,1) = {"
-hD
-ja
-ja
-wm
-ja
-XL
-Ih
-Mc
-mx
-pN
-pN
-wm
-wm
-ja
-pn
-If
-If
-If
-wm
-XL
-wI
-uz
-rv
-wm
-wm
-Jf
-Jf
-Jf
-XL
-XL
-XL
-qJ
-qJ
-mx
-rp
-ve
-ja
-gE
-gC
-Zf
-wm
-wm
-wr
-bV
-wr
-ja
-ja
-hD
-"}
-(14,1,1) = {"
-ja
-ja
-wm
-wm
-Zf
-XL
-Ih
-Th
-mx
-pN
-XL
-wm
-wm
-jG
-kq
-XL
-wm
-wm
-wm
-qJ
-qJ
-qJ
-qJ
-qJ
-sG
-qJ
-qJ
-qJ
-qJ
-qJ
-XL
-qJ
-Vx
-mx
-rp
-ve
-Zf
-ja
-gE
-nc
-wr
-wm
-wm
-wr
-bV
-ja
-ja
-hD
-"}
-(15,1,1) = {"
-ja
-ja
-wm
-JI
-bV
-XL
-Ih
-Th
-mx
-qJ
-qJ
-qJ
-kX
-ja
-jG
-Ql
-XF
-XL
-qJ
-qJ
-qJ
-sG
-qJ
-qJ
-Vx
-XL
-wm
-qJ
-qJ
-qJ
-qJ
-qJ
-XL
-mx
-rp
-ve
-ja
-Tr
-ja
-KJ
-KJ
-wr
-wm
-wm
-wm
-Zf
-Zf
-hD
-"}
-(16,1,1) = {"
-hD
-ja
-Tr
-JI
-ww
-XL
-Ih
-Th
-mx
-qJ
-oo
-qJ
-Uo
-jA
-PT
-XF
-XF
-sG
-qJ
-xN
-AM
-AM
-AM
-ZF
-qJ
-Ft
-XL
-wm
-wm
-qJ
-sG
-qJ
-XL
-mx
-rp
-ve
-ja
-Tr
-ja
-fN
-tc
-VK
-ja
-ja
-wm
-wm
-ja
-ja
-"}
-(17,1,1) = {"
-hD
-ja
-ww
-ww
-ww
-XL
-Ih
-Th
-mx
-qJ
-qJ
-qJ
-Uo
-UG
-pN
-pN
-qJ
-qJ
-jA
-jA
-XL
-cC
-XL
-XL
-XL
-ja
-gE
-ja
-wm
-wm
-qJ
-qJ
-XL
-mx
-mx
-ve
-ja
-ja
-xp
-xp
-ja
-VK
-VK
-ja
-ja
-wm
-wm
-ja
-"}
-(18,1,1) = {"
-hD
-ja
-ww
-ja
-ja
-XL
-Ih
-Th
-mx
-qJ
-wm
-qJ
-sG
-qJ
-pN
-pN
-qJ
-XL
-XL
-jG
-ja
-UL
-UL
-UL
-XL
-PT
-dG
-QI
-ja
-wm
-PT
-qJ
-XL
-mx
-QG
-XL
-ja
-Nt
-Nt
-ja
-ja
-ja
-ja
-ja
-ja
-ja
-wm
-ja
-"}
-(19,1,1) = {"
-hD
-hD
-ww
-bV
-ja
-XL
-Ih
-Th
-mx
-qJ
-qJ
-qJ
-qJ
-qJ
-XL
-PT
-MT
-qJ
-XL
-ja
-XL
-XL
-XL
-kX
-PT
-ia
-XL
-QI
-ja
-wm
-PT
-Vx
-XL
-PK
-PK
-sG
-qJ
-qJ
-qJ
-qJ
-sG
-qJ
-pN
-qJ
-qJ
-ja
-ja
-ja
-"}
-(20,1,1) = {"
-hD
-hD
-ww
-Al
-Zf
-XL
-Ih
-Th
-mx
-qJ
-qJ
-kX
-XL
-XL
-PT
-wr
-qJ
-dK
-XL
-ja
-XL
-qJ
-qJ
-PT
-XL
-gU
-XL
-QI
-ja
-wm
-XL
-qJ
-qJ
-qJ
-qJ
-qJ
-qJ
-sG
-qJ
-qJ
-qJ
-sG
-qJ
-qJ
-ja
-ja
-ja
-hD
-"}
-(21,1,1) = {"
-hD
-hD
-ww
-JI
-Zf
-XL
-Ih
-Th
-mx
-qJ
-UG
-UG
-oo
-ja
-ja
-ja
-gw
-Bk
-qJ
-PT
-XL
-Eh
-qJ
-YJ
-XL
-gU
-PT
-gE
-ja
-wm
-XL
-qJ
-qJ
-qJ
-qJ
-sG
-qJ
-qJ
-qJ
-qJ
-Cs
-sG
-qJ
-Dg
-Tr
-ja
-ja
-hD
-"}
-(22,1,1) = {"
-hD
-hD
-ww
-ww
-Zf
-XL
-Ih
-Th
-mx
-qJ
-Ft
-gE
-zz
-ja
-ja
-Xn
-aA
-Sj
-iG
-kX
-qJ
-qJ
-qJ
-XL
-XL
-gU
-XL
-gE
-ja
-wm
-wm
-XL
-qJ
-qJ
-qJ
-XL
-qJ
-qJ
-sG
-bV
-bV
-qJ
-qJ
-Tr
-Tr
-Zf
-ja
-hD
-"}
-(23,1,1) = {"
-hD
-hD
-hD
-ja
-ja
-XL
-Ih
-Th
-mx
-qJ
-Ft
-gE
-gf
-wr
-ja
-ja
-Zg
-qJ
-XL
-XL
-XL
-XL
-XL
-XL
-XL
-AJ
-XL
-gE
-ja
-ja
-wm
-qJ
-qJ
-PK
-PK
-XL
-Nt
-qJ
-qJ
-Zf
-Yq
-qJ
-qJ
-Yq
-Sz
-Sz
-hD
-hD
-"}
-(24,1,1) = {"
-hD
-hD
-ja
-ja
-ja
-XL
-Ih
-Th
-mx
-qJ
-qJ
-XL
-wr
-wr
-Ql
-ja
-kX
-XL
-XL
-ja
-ja
-wr
-wr
-ja
-XL
-PT
-XL
-Zf
-ja
-Zf
-XL
-qJ
-sG
-mx
-QG
-ve
-ja
-sG
-qJ
-mx
-mx
-qV
-qV
-mx
-mx
-ja
-hD
-hD
-"}
-(25,1,1) = {"
-hD
-ja
-ja
-hD
-ja
-XL
-Ih
-Th
-mx
-qJ
-qJ
-wm
-ja
-ja
-wr
-ja
-ja
-zz
-PT
-PT
-XL
-PT
-XL
-XL
-UG
-zz
-fw
-Sz
-ja
-Sz
-Ft
-qJ
-qJ
-mx
-mx
-fR
-ja
-ja
-qJ
-mx
-VF
-VF
-kb
-ZE
-mx
-ja
-hD
-hD
-"}
-(26,1,1) = {"
-hD
-hD
-hD
-hD
-ja
-XL
-Ih
-Th
-mx
-qJ
-wm
-ja
-ja
-ja
-ja
-ja
-Dj
-Dj
-XL
-xq
-no
-no
-si
-JH
-XL
-zz
-zz
-gE
-wm
-ja
-XL
-qJ
-XL
-mx
-rp
-fR
-wm
-ja
-qJ
-WZ
-VF
-VF
-VF
-Np
-mx
-ja
-hD
-hD
-"}
-(27,1,1) = {"
-hD
-hD
-hD
-fy
-ja
-XL
-Ih
-Th
-mx
-qJ
-wm
-ja
-ja
-ja
-zz
-zz
-Dj
-ja
-XL
-XL
-XL
-XL
-XL
-XL
-XL
-ja
-ja
-wm
-wm
-ja
-kX
-pN
-XL
-mx
-rp
-ve
-wm
-ja
-qJ
-mx
-vf
-tD
-sD
-Np
-mx
-ja
-hD
-hD
-"}
-(28,1,1) = {"
-hD
-ja
-ja
-ja
-ja
-XL
-Ih
-Th
-mx
-pN
-wm
-ja
-Ql
-ja
-ja
-ja
-gf
-gf
-gf
-jG
-zz
-wm
-wm
-QI
-QI
-ja
-Xz
-wm
-wm
-XL
-XL
-pN
-XL
-mx
-rp
-ve
-wm
-ja
-qJ
-mx
-mx
-mx
-mx
-mx
-mx
-ja
-hD
-hD
-"}
-(29,1,1) = {"
-hD
-ja
-wm
-wm
-ja
-XL
-Ih
-Th
-mx
-pN
-pN
-wm
-ja
-ja
-fw
-ja
-gf
-wr
-wr
-ja
-wm
-wm
-QI
-tc
-tc
-wm
-wm
-Ej
-ja
-Xw
-pN
-pN
-qJ
-mx
-rp
-ve
-wm
-ja
-ja
-Zf
-ja
-ja
-ja
-ja
-ja
-ja
-hD
-hD
-"}
-(30,1,1) = {"
-hD
-ja
-ja
-wm
-ja
-XL
-Ih
-Mc
-mx
-pN
-pN
-wm
-wm
-ja
-ja
-ja
-ja
-wm
-wm
-ja
-ja
-ja
-ja
-wm
-ja
-ja
-KJ
-KJ
-ja
-Xw
-pN
-pN
-pN
-mx
-rp
-ve
-ja
-gE
-gE
-Zf
-ja
-ja
-hD
-hD
-hD
-hD
-hD
-hD
-"}
-(31,1,1) = {"
-hD
-hD
-ja
-wm
-ja
-XL
-Ih
-mx
-mx
-WZ
-mx
-mx
-wm
-XL
-XL
-XL
-XL
-XL
-XL
-ja
-wm
-wm
-ja
-ja
-ja
-ja
-ja
-wm
-mx
-mx
-mx
-WZ
-mx
-mx
-rp
-ve
-gE
-gE
-gC
-ja
-ja
-ja
-hD
-hD
-hD
-hD
-hD
-hD
-"}
-(32,1,1) = {"
-hD
-hD
-ja
-wm
-ja
-XL
-Ih
-mx
-Uy
-VF
-WX
-mx
-wm
-MR
-qJ
-qJ
-qJ
-qJ
-yG
-gE
-ja
-wm
-wm
-ue
-wm
-wm
-wm
-wm
-mx
-hl
-uf
-eZ
-eZ
-mx
-rp
-ve
-gE
-gC
-gC
-gE
-ja
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-"}
-(33,1,1) = {"
-hD
-hD
-bV
-wm
-ja
-XL
-Ih
-mx
-WX
-VF
-WX
-mx
-ja
-MR
-ao
-ao
-ao
-ao
-vm
-gE
-gE
-ja
-fw
-ue
-wm
-QI
-QI
-ja
-mx
-WE
-UQ
-pT
-pT
-mx
-rp
-ve
-ja
-Zf
-gE
-ja
-ja
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-"}
-(34,1,1) = {"
-hD
-hD
-JI
-Zf
-ww
-XL
-Ih
-mx
-Uy
-VF
-WX
-mx
-ja
-MR
-ao
-ao
-ao
-ao
-vm
-ja
-gE
-gE
-ja
-ue
-wm
-QI
-ja
-ja
-mx
-ye
-eF
-cv
-kD
-mx
-rp
-ve
-ja
-Zf
-ja
-ja
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-"}
-(35,1,1) = {"
-hD
-hD
-JI
-JI
-ww
-XL
-Ih
-mx
-EH
-sD
-WX
-mx
-mx
-mx
-mx
-mx
-mx
-mx
-mx
-mx
-mx
-mx
-mx
-mx
-mx
-mx
-mx
-mx
-mx
-mx
-yc
-qi
-VF
-mx
-rp
-ve
-ja
-ja
-ja
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-"}
-(36,1,1) = {"
-hD
-hD
-ww
-ww
-ww
-XL
-Ih
-mx
-mx
-mx
-mx
-mx
-Mc
-Th
-Th
-Th
-Th
-Th
-Th
-Th
-Th
-Th
-Th
-Th
-Th
-Th
-Th
-Th
-Mc
-mx
-mx
-mx
-ZS
-mx
-rp
-ve
-ja
-ja
-ja
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-"}
-(37,1,1) = {"
-hD
-hD
-ja
-ja
-ja
-XL
-Ih
-Th
-Th
-Th
-Th
-Th
-Th
-rp
-xg
-CA
-CA
-CA
-CA
-CA
-CA
-CA
-CA
-CA
-CA
-CA
-CA
-Ih
-Th
-Th
-Th
-Th
-Th
-Th
-rp
-ve
-ja
-ja
-ja
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-"}
-(38,1,1) = {"
-hD
-hD
-ja
-ww
-Zf
-XL
-CA
-CA
-CA
-CA
-CA
-CA
-CA
-CA
-XL
-ja
-ja
-ja
-wr
-Zf
-Zf
-Zf
-Zf
-ja
-ja
-ja
-XL
-CA
-CA
-CA
-CA
-CA
-CA
-CA
-CA
-XL
-ja
-ja
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-"}
-(39,1,1) = {"
-hD
-ja
-ww
-Me
-Tr
-ja
-ja
-ja
-Tr
-Tr
-Zf
-Zf
-ja
-ja
-ja
-ja
-ja
-ja
-wr
-wr
-wr
-wr
-wr
-ja
-ja
-ja
-ja
-ja
-ja
-ja
-ja
-ja
-ja
-ja
-wm
-ja
-ja
-ja
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-"}
-(40,1,1) = {"
-hD
-ja
-ww
-Tr
-ja
-ja
-ja
-ja
-ja
-Tr
-Tr
-Zf
-ja
-ja
-ja
-wm
-wm
-ja
-ja
-ja
-ja
-wm
-wm
-ja
-ja
-ja
-ja
-ja
-ja
-ja
-ja
-ja
-ja
-wm
-wm
-ja
-ja
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-"}
-(41,1,1) = {"
-ja
-ja
-hD
-oP
-wm
-wm
-ja
-wm
-wm
-ja
-Tr
-Tr
-ja
-ja
-ja
-wm
-wm
-wm
-ja
-ja
-ja
-ja
-wm
-wm
-wm
-ja
-ja
-Zf
-Tr
-Tr
-wr
-wm
-wm
-wm
-ja
-ja
-ja
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-"}
-(42,1,1) = {"
-hD
-hD
-hD
-ja
-ja
-wm
-wm
-ja
-wm
-ja
-ja
-ja
-ja
-ja
-ja
-ja
-ja
-ja
-ja
-Tr
-wr
-ja
-Tr
-ja
-ja
-ja
-Zf
-Tr
-Tr
-wr
-wr
-ja
-ja
-ja
-ja
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-"}
-(43,1,1) = {"
-hD
-hD
-hD
-hD
-ja
-Zf
-HQ
-ES
-wm
-wm
-ja
-ja
-wm
-ja
-ja
-ja
-ja
-ja
-Tr
-Tr
-wr
-ja
-Tr
-Tr
-wr
-ja
-Tr
-Tr
-wr
-wr
-ja
-ja
-ja
-ja
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-"}
-(44,1,1) = {"
-hD
-hD
-hD
-hD
-hD
-Zf
-ww
-fB
-Zf
-wm
-wm
-ja
-wm
-ja
-ja
-ja
-ja
-ja
-Tr
-tk
-wr
-ja
-wr
-tk
-tk
-ja
-wr
-wr
-wr
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-"}
-(45,1,1) = {"
-hD
-hD
-hD
-hD
-hD
-ja
-ja
-ja
-ja
-wm
-wm
-wm
-wm
-wr
-Tr
-Tr
-ja
-Tr
-Tr
-wr
-wm
-ja
-wm
-wm
-ja
-ja
-ja
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-"}
-(46,1,1) = {"
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-ja
-ja
-ja
-ja
-ja
-wr
-Tr
-Tr
-Tr
-wr
-wr
-wr
-ja
-wm
-wm
-ja
-ja
-ja
-ja
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-"}
-(47,1,1) = {"
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-ja
-ja
-ja
-ja
-wr
-wr
-Tr
-JI
-Tr
-ja
-ja
-ja
-ja
-ja
-ja
-ja
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-"}
-(48,1,1) = {"
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-ja
-ww
-jG
-JI
-Tr
-ja
-ja
-ja
-ja
-ja
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-hD
-"}
diff --git a/_maps/RandomRuins/BeachRuins/beach_pirate_crash.dmm b/_maps/RandomRuins/BeachRuins/beach_pirate_crash.dmm
index 3cdd90e5e1c..2b2479ffe0f 100644
--- a/_maps/RandomRuins/BeachRuins/beach_pirate_crash.dmm
+++ b/_maps/RandomRuins/BeachRuins/beach_pirate_crash.dmm
@@ -385,10 +385,7 @@
},
/area/overmap_encounter/planetoid/beachplanet/explored)
"jE" = (
-/mob/living/simple_animal/hostile/pirate/ranged{
- environment_smash = 0;
- faction = list("pirate","mining")
- },
+/mob/living/simple_animal/hostile/human/frontier/ranged/mosin/neutered,
/turf/open/floor/plating/rust,
/area/overmap_encounter/planetoid/cave/explored)
"jT" = (
@@ -522,13 +519,10 @@
/obj/structure/cable{
icon_state = "1-4"
},
-/mob/living/simple_animal/hostile/pirate/melee{
- environment_smash = 0;
- faction = list("pirate","mining")
- },
/obj/structure/cable{
icon_state = "4-8"
},
+/mob/living/simple_animal/hostile/human/frontier,
/turf/open/floor/plating,
/area/ruin/beach/piratecrash/storage)
"nQ" = (
@@ -1106,6 +1100,7 @@
icon_state = "0-2"
},
/obj/effect/decal/cleanable/dirt/dust,
+/mob/living/simple_animal/hostile/human/frontier,
/turf/open/floor/plating,
/area/ruin/beach/piratecrash/shuttle)
"GS" = (
@@ -1373,7 +1368,7 @@
/obj/machinery/porta_turret/syndicate/pod{
desc = "A turret built with substandard parts and run down further with age. Still capable of delivering lethal lasers to the odd space carp, but not much else.";
dir = 8;
- faction = list("Syndicate","pirate");
+ faction = list("Frontiersmen");
lethal_projectile = /obj/projectile/beam/weak/penetrator;
lethal_projectile_sound = 'sound/weapons/plasma_cutter.ogg';
name = "laser turret"
@@ -1508,10 +1503,7 @@
/turf/open/floor/plating/asteroid/sand/lit,
/area/overmap_encounter/planetoid/cave/explored)
"Vc" = (
-/mob/living/simple_animal/hostile/pirate/melee{
- environment_smash = 0;
- faction = list("pirate","mining")
- },
+/mob/living/simple_animal/hostile/human/frontier,
/turf/open/floor/plating/asteroid/sand/lit,
/area/overmap_encounter/planetoid/cave/explored)
"Vh" = (
diff --git a/_maps/RandomRuins/BeachRuins/beach_treasure_cove.dmm b/_maps/RandomRuins/BeachRuins/beach_treasure_cove.dmm
index 7943cf93372..0f122c15c94 100644
--- a/_maps/RandomRuins/BeachRuins/beach_treasure_cove.dmm
+++ b/_maps/RandomRuins/BeachRuins/beach_treasure_cove.dmm
@@ -417,7 +417,7 @@
},
/obj/effect/decal/cleanable/dirt/dust,
/obj/effect/decal/cleanable/dirt/dust,
-/mob/living/simple_animal/hostile/pirate/ranged/space,
+/mob/living/simple_animal/hostile/human/frontier/ranged/mosin/neutered,
/turf/open/floor/wood,
/area/ruin/beach/treasure_cove)
"oR" = (
@@ -970,12 +970,12 @@
dir = 8
},
/obj/effect/decal/cleanable/dirt/dust,
-/mob/living/simple_animal/hostile/pirate/melee,
+/mob/living/simple_animal/hostile/human/frontier,
/turf/open/floor/plating/dirt/jungle/lit,
/area/ruin/beach/treasure_cove)
"EU" = (
/obj/effect/decal/cleanable/dirt/dust,
-/mob/living/simple_animal/hostile/pirate/melee,
+/mob/living/simple_animal/hostile/human/frontier,
/turf/open/floor/plating/dirt/jungle/lit,
/area/ruin/beach/treasure_cove)
"Gm" = (
@@ -1301,7 +1301,7 @@
/obj/structure/chair/wood{
dir = 8
},
-/mob/living/simple_animal/hostile/pirate/ranged,
+/mob/living/simple_animal/hostile/human/frontier/ranged/officer/neutured,
/turf/open/floor/carpet/red,
/area/ruin/beach/treasure_cove)
"SX" = (
diff --git a/_maps/RandomRuins/IceRuins/icemoon_surface_corporate_rejects.dmm b/_maps/RandomRuins/IceRuins/icemoon_surface_corporate_rejects.dmm
deleted file mode 100644
index 28a963ed476..00000000000
--- a/_maps/RandomRuins/IceRuins/icemoon_surface_corporate_rejects.dmm
+++ /dev/null
@@ -1,3668 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"aF" = (
-/obj/structure/rack,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/machinery/door/window/westright,
-/obj/item/multitool/old,
-/obj/item/weldingtool/old,
-/obj/item/wrench/old,
-/obj/item/screwdriver/old,
-/obj/item/crowbar/old,
-/obj/item/stack/cable_coil/yellow,
-/obj/item/wirecutters/old,
-/obj/item/analyzer,
-/turf/open/floor/plasteel/mono,
-/area/ruin/unpowered/corprejectengineering)
-"aQ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
- dir = 6
- },
-/turf/closed/wall/r_wall,
-/area/ruin/unpowered/corprejectrooms)
-"aR" = (
-/obj/structure/cable/blue{
- icon_state = "0-6"
- },
-/obj/structure/cable/blue{
- icon_state = "6-8"
- },
-/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium,
-/obj/structure/window/reinforced/tinted{
- dir = 1
- },
-/obj/structure/window/reinforced/tinted{
- dir = 4
- },
-/obj/machinery/door/poddoor/shutters,
-/turf/open/floor/plating,
-/area/ruin/unpowered/corprejectvault)
-"bI" = (
-/obj/machinery/power/smes/magical{
- desc = "A high-capacity superconducting magnetic energy storage (SMES) unit.";
- input_level = 200000;
- name = "power storage unit";
- output_level = 200000
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4,
-/obj/structure/cable/blue{
- icon_state = "0-2"
- },
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/corprejectengineering)
-"ce" = (
-/obj/structure/cable/blue{
- icon_state = "2-9"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4,
-/turf/open/floor/plasteel/sepia,
-/area/ruin/unpowered/corprejectrooms)
-"cl" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
- dir = 8
- },
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/corprejectengineering)
-"cF" = (
-/obj/structure/mecha_wreckage/reticence,
-/turf/open/floor/mech_bay_recharge_floor,
-/area/ruin/unpowered/corprejectengineering)
-"cK" = (
-/obj/machinery/power/port_gen/pacman/mrs,
-/obj/structure/cable/blue{
- icon_state = "0-2"
- },
-/turf/open/floor/plasteel/mono,
-/area/ruin/unpowered/corprejectengineering)
-"cN" = (
-/obj/structure/safe/floor,
-/obj/item/hand_tele,
-/obj/item/stack/sheet/mineral/adamantine,
-/obj/item/stack/sheet/mineral/adamantine,
-/turf/open/floor/plating/asteroid/snow/icemoon,
-/area/ruin/unpowered/corprejectrooms)
-"cP" = (
-/obj/structure/cable/blue{
- icon_state = "0-10"
- },
-/obj/structure/cable/blue{
- icon_state = "4-10"
- },
-/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium,
-/obj/structure/window/reinforced/tinted{
- dir = 1
- },
-/obj/structure/window/reinforced/tinted{
- dir = 8
- },
-/obj/machinery/door/poddoor/shutters,
-/turf/open/floor/plating,
-/area/ruin/unpowered/corprejectvault)
-"dq" = (
-/obj/structure/table/glass,
-/obj/item/table_bell/brass,
-/turf/open/floor/wood,
-/area/ruin/unpowered/corprejectrooms)
-"dt" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/fancy/donut_box,
-/obj/item/storage/box/evidence,
-/obj/item/storage/box/bodybags,
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/unpowered/corprejectrooms)
-"dw" = (
-/obj/structure/cable/blue{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
- dir = 4
- },
-/obj/machinery/light/directional/south,
-/turf/open/floor/plating/catwalk_floor,
-/area/ruin/unpowered/corprejectrooms)
-"dG" = (
-/obj/effect/turf_decal/corner/opaque/white/diagonal,
-/obj/structure/sink{
- dir = 8;
- pixel_x = 12
- },
-/turf/open/floor/mineral/titanium/tiled/blue,
-/area/ruin/unpowered/corprejectrooms)
-"dO" = (
-/obj/structure/fence,
-/obj/structure/cable/blue{
- icon_state = "1-10"
- },
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/unpowered/corprejectrooms)
-"ed" = (
-/obj/structure/table/glass,
-/obj/item/paper/pamphlet/violent_video_games,
-/obj/item/paper/pamphlet/ruin/spacehotel,
-/turf/open/floor/wood,
-/area/ruin/unpowered/corprejectrooms)
-"em" = (
-/obj/machinery/door/window{
- dir = 4
- },
-/turf/open/floor/plasteel/grimy,
-/area/ruin/unpowered/corprejectrooms)
-"eK" = (
-/obj/structure/cable/blue{
- icon_state = "2-9"
- },
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/unpowered/corprejectrooms)
-"eW" = (
-/obj/structure/cable/blue{
- icon_state = "6-9"
- },
-/obj/structure/cable/blue{
- icon_state = "0-9"
- },
-/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium,
-/obj/structure/window/reinforced/tinted{
- dir = 4
- },
-/obj/structure/window/reinforced/tinted{
- dir = 1
- },
-/obj/machinery/door/poddoor/shutters{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered/corprejectvault)
-"ff" = (
-/obj/structure/flora/grass/brown,
-/mob/living/simple_animal/hostile/viscerator{
- faction = list("DeserterNT");
- name = "Sable"
- },
-/mob/living/simple_animal/hostile/viscerator{
- faction = list("DeserterNT");
- name = "Mabel"
- },
-/mob/living/simple_animal/hostile/viscerator{
- faction = list("DeserterNT");
- name = "Labelle"
- },
-/mob/living/simple_animal/hostile/viscerator{
- faction = list("DeserterNT");
- name = "Isabelle"
- },
-/mob/living/simple_animal/bot/secbot/ed209/rockplanet{
- faction = list("DeserterNT");
- name = "Jamie"
- },
-/turf/open/floor/plating/asteroid/snow/icemoon,
-/area/ruin/unpowered/corprejectrooms)
-"fE" = (
-/obj/structure/chair,
-/obj/machinery/light/directional/north,
-/turf/open/floor/wood,
-/area/ruin/unpowered/corprejectrooms)
-"fH" = (
-/obj/machinery/light/directional/south,
-/turf/open/floor/wood,
-/area/ruin/unpowered/corprejectrooms)
-"fN" = (
-/obj/structure/cable/blue{
- icon_state = "6-8"
- },
-/obj/structure/cable/blue{
- icon_state = "5-8"
- },
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/corprejectengineering)
-"fS" = (
-/obj/structure/rack,
-/obj/item/gun/medbeam,
-/turf/open/floor/vault,
-/area/ruin/unpowered/corprejectvault)
-"fX" = (
-/obj/structure/cable/blue{
- icon_state = "8-10"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/plasteel/sepia,
-/area/ruin/unpowered/corprejectrooms)
-"gd" = (
-/obj/structure/cable/blue{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/plating/catwalk_floor,
-/area/ruin/unpowered/corprejectrooms)
-"gg" = (
-/obj/structure/cable/blue{
- icon_state = "6-10"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/plasteel/sepia,
-/area/ruin/unpowered/corprejectrooms)
-"gB" = (
-/obj/structure/cable/blue{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
- dir = 9
- },
-/turf/open/floor/plating/catwalk_floor,
-/area/ruin/unpowered/corprejectrooms)
-"gL" = (
-/obj/machinery/light/directional/south,
-/obj/structure/cable/blue{
- icon_state = "5-8"
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered/corprejectrooms)
-"gT" = (
-/obj/item/ammo_casing/shotgun/incendiary{
- pixel_y = 10
- },
-/obj/structure/cable/blue{
- icon_state = "1-5"
- },
-/turf/open/floor/vault,
-/area/ruin/unpowered/corprejectvault)
-"hn" = (
-/turf/closed/wall/r_wall,
-/area/ruin/unpowered/corprejectrooms)
-"hu" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
- dir = 9
- },
-/obj/machinery/light/directional/west,
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/corprejectengineering)
-"hz" = (
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/unpowered/corprejectrooms)
-"hG" = (
-/obj/structure/cable/blue{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/corprejectengineering)
-"hV" = (
-/turf/open/floor/vault,
-/area/ruin/unpowered/corprejectrooms)
-"io" = (
-/obj/structure/closet/wall/red/directional/west,
-/obj/item/keycard/office{
- desc = "Only Elite level employees are authorized to handle this keycard. All other employees may face termination if found in possession.";
- name = "Vault Card";
- puzzle_id = "NTB5"
- },
-/turf/open/floor/vault,
-/area/ruin/unpowered/corprejectrooms)
-"iu" = (
-/obj/structure/cable/blue{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4,
-/obj/machinery/door/keycard{
- name = "Vault Unit Gamma";
- puzzle_id = "NTB5"
- },
-/turf/open/floor/vault,
-/area/ruin/unpowered/corprejectvault)
-"iX" = (
-/obj/structure/cable/blue{
- icon_state = "6-8"
- },
-/obj/structure/cable/blue{
- icon_state = "0-8"
- },
-/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium,
-/obj/structure/window/reinforced/tinted{
- dir = 4
- },
-/obj/structure/window/reinforced/tinted{
- dir = 1
- },
-/obj/machinery/door/poddoor/shutters,
-/turf/open/floor/plating,
-/area/ruin/unpowered/corprejectvault)
-"ja" = (
-/obj/structure/cable/blue{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4,
-/obj/machinery/door/keycard{
- name = "WorkSpaces";
- puzzle_id = "NTB3"
- },
-/turf/open/floor/plasteel/sepia,
-/area/ruin/unpowered/corprejectrooms)
-"jd" = (
-/obj/structure/cable/blue{
- icon_state = "4-10"
- },
-/turf/open/floor/vault,
-/area/ruin/unpowered/corprejectrooms)
-"jy" = (
-/mob/living/simple_animal/bot/secbot/ed209/rockplanet{
- faction = list("DeserterNT");
- name = "Jimmothy"
- },
-/turf/open/floor/vault,
-/area/ruin/unpowered/corprejectvault)
-"jY" = (
-/obj/effect/turf_decal/corner/opaque/white/diagonal,
-/obj/machinery/power/apc/auto_name/directional/south,
-/obj/structure/cable/blue{
- icon_state = "0-8"
- },
-/turf/open/floor/mineral/titanium/tiled/blue,
-/area/ruin/unpowered/corprejectrooms)
-"kq" = (
-/obj/structure/cable/blue{
- icon_state = "9-10"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4,
-/turf/open/floor/plasteel/sepia,
-/area/ruin/unpowered/corprejectrooms)
-"kF" = (
-/obj/structure/cable/blue{
- icon_state = "5-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/corprejectengineering)
-"kY" = (
-/obj/effect/turf_decal/corner/opaque/white/diagonal,
-/obj/structure/table/optable,
-/obj/machinery/light/directional/north,
-/turf/open/floor/mineral/titanium/tiled/blue,
-/area/ruin/unpowered/corprejectrooms)
-"la" = (
-/obj/structure/cable/blue{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
- dir = 4
- },
-/obj/machinery/door/keycard{
- name = "Engineering and Sciences";
- puzzle_id = "NTB3"
- },
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/corprejectengineering)
-"lc" = (
-/obj/machinery/atmospherics/components/unary/tank/air{
- dir = 4;
- piping_layer = 4
- },
-/turf/open/floor/plasteel/patterned/ridged,
-/area/ruin/unpowered/corprejectengineering)
-"le" = (
-/obj/structure/barricade/sandbags,
-/turf/open/floor/vault,
-/area/ruin/unpowered/corprejectrooms)
-"lj" = (
-/obj/structure/mecha_wreckage/ripley/mkii,
-/obj/machinery/light/directional/east,
-/turf/open/floor/mech_bay_recharge_floor,
-/area/ruin/unpowered/corprejectengineering)
-"lk" = (
-/turf/closed/mineral/snowmountain/icemoon,
-/area/ruin/unpowered/corprejectrooms)
-"lF" = (
-/obj/structure/mecha_wreckage/honker/dark,
-/obj/machinery/light/directional/east,
-/turf/open/floor/mech_bay_recharge_floor,
-/area/ruin/unpowered/corprejectengineering)
-"lL" = (
-/obj/effect/turf_decal/corner/opaque/white/diagonal,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
- dir = 8
- },
-/turf/open/floor/mineral/titanium/tiled/blue,
-/area/ruin/unpowered/corprejectrooms)
-"lM" = (
-/obj/machinery/autolathe/hacked,
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/corprejectengineering)
-"mt" = (
-/obj/structure/cable/blue{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
- dir = 4
- },
-/obj/machinery/light/directional/south,
-/turf/open/floor/plating/catwalk_floor,
-/area/ruin/unpowered/corprejectrooms)
-"mN" = (
-/obj/machinery/power/terminal{
- dir = 8
- },
-/obj/structure/cable/blue,
-/obj/structure/cable/blue{
- icon_state = "2-10"
- },
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/corprejectengineering)
-"mU" = (
-/obj/effect/turf_decal/corner/opaque/white/diagonal,
-/obj/structure/cable/blue{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
- dir = 10
- },
-/turf/open/floor/mineral/titanium/tiled/blue,
-/area/ruin/unpowered/corprejectrooms)
-"nb" = (
-/obj/structure/cable/blue{
- icon_state = "4-8"
- },
-/turf/open/floor/vault,
-/area/ruin/unpowered/corprejectrooms)
-"nk" = (
-/obj/structure/cable/blue{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
- dir = 9
- },
-/mob/living/simple_animal/hostile/nanotrasen/ranged/assault{
- desc = "No longer a member of Nanotrasen's more militaristic forces. Seems grumpy.";
- faction = list("DeserterNT");
- name = "Benny Bleighch"
- },
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/corprejectengineering)
-"nl" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/corprejectengineering)
-"nN" = (
-/obj/structure/rack,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/door/window/westright{
- dir = 4
- },
-/obj/item/storage/toolbox/emergency/old,
-/turf/open/floor/plasteel/mono,
-/area/ruin/unpowered/corprejectengineering)
-"nW" = (
-/obj/structure/cable/blue{
- icon_state = "1-10"
- },
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/corprejectengineering)
-"nX" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/ruin/unpowered/corprejectengineering)
-"nZ" = (
-/obj/structure/fence,
-/turf/open/floor/vault,
-/area/ruin/unpowered/corprejectrooms)
-"or" = (
-/mob/living/simple_animal/hostile/nanotrasen/elite{
- desc = "A former major player for Nanotrasen militaristic needs. He doesn't seem like someone who'd want to talk over tea.";
- faction = list("DeserterNT");
- name = "Sam the Sharp"
- },
-/obj/machinery/light/directional/north,
-/turf/open/floor/vault,
-/area/ruin/unpowered/corprejectrooms)
-"ou" = (
-/obj/structure/rack,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/machinery/door/window/westright,
-/obj/item/clothing/gloves/color/fyellow,
-/obj/item/clothing/gloves/color/yellow,
-/turf/open/floor/plasteel/mono,
-/area/ruin/unpowered/corprejectengineering)
-"oB" = (
-/obj/structure/curtain/cloth/fancy,
-/turf/open/floor/carpet/lone,
-/area/ruin/unpowered/corprejectrooms)
-"oF" = (
-/obj/structure/chair/stool/bar,
-/turf/open/floor/plasteel/grimy,
-/area/ruin/unpowered/corprejectrooms)
-"oP" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/unpowered/corprejectrooms)
-"pd" = (
-/obj/structure/cable/blue{
- icon_state = "2-5"
- },
-/obj/structure/cable/blue{
- icon_state = "0-5"
- },
-/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium,
-/obj/structure/window/reinforced/tinted{
- dir = 8
- },
-/obj/structure/window/reinforced/tinted{
- dir = 1
- },
-/obj/machinery/door/poddoor/shutters{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered/corprejectvault)
-"ph" = (
-/obj/structure/cable/blue{
- icon_state = "2-9"
- },
-/obj/structure/cable/blue{
- icon_state = "0-9"
- },
-/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium,
-/obj/structure/window/reinforced/tinted{
- dir = 4
- },
-/obj/structure/window/reinforced/tinted{
- dir = 1
- },
-/obj/machinery/door/poddoor/shutters{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered/corprejectvault)
-"pi" = (
-/obj/structure/fence/door{
- dir = 4
- },
-/obj/structure/cable/blue{
- icon_state = "4-8"
- },
-/turf/open/floor/vault,
-/area/ruin/unpowered/corprejectrooms)
-"px" = (
-/obj/structure/cable/blue{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4,
-/turf/open/floor/plasteel/sepia,
-/area/ruin/unpowered/corprejectrooms)
-"pz" = (
-/mob/living/simple_animal/bot/secbot/ed209/rockplanet{
- faction = list("DeserterNT");
- name = "Jordan"
- },
-/turf/open/floor/plating/asteroid/snow/icemoon,
-/area/ruin/unpowered/corprejectrooms)
-"pD" = (
-/obj/structure/table/wood/poker,
-/obj/structure/cable/blue{
- icon_state = "4-10"
- },
-/obj/structure/cable/blue{
- icon_state = "4-5"
- },
-/turf/open/floor/plasteel/grimy,
-/area/ruin/unpowered/corprejectrooms)
-"pE" = (
-/obj/structure/cable/blue{
- icon_state = "1-2"
- },
-/obj/structure/cable/blue,
-/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium,
-/obj/structure/window/reinforced/tinted{
- dir = 4
- },
-/obj/machinery/door/poddoor/shutters{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered/corprejectvault)
-"qe" = (
-/obj/structure/cable/blue{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4,
-/obj/machinery/door/keycard{
- name = "Vault Access";
- puzzle_id = "NTB5"
- },
-/turf/open/floor/vault,
-/area/ruin/unpowered/corprejectrooms)
-"qw" = (
-/obj/structure/cable/blue{
- icon_state = "1-2"
- },
-/obj/structure/cable/blue,
-/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium,
-/obj/structure/window/reinforced/tinted{
- dir = 8
- },
-/obj/machinery/door/poddoor/shutters{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered/corprejectvault)
-"qO" = (
-/obj/structure/sign/departments/medbay,
-/turf/closed/wall/r_wall,
-/area/ruin/unpowered/corprejectrooms)
-"qT" = (
-/obj/structure/cable/blue{
- icon_state = "1-6"
- },
-/obj/structure/cable/blue,
-/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium,
-/obj/structure/window/reinforced/tinted{
- dir = 8
- },
-/obj/structure/window/reinforced/tinted,
-/obj/machinery/door/poddoor/shutters{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered/corprejectvault)
-"rH" = (
-/obj/effect/turf_decal/corner/opaque/white/diagonal,
-/obj/machinery/vending/wallmed{
- pixel_x = -25
- },
-/obj/structure/cable/blue{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
- dir = 1
- },
-/turf/open/floor/mineral/titanium/tiled/blue,
-/area/ruin/unpowered/corprejectrooms)
-"rW" = (
-/obj/structure/cable/blue{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4,
-/obj/machinery/door/keycard{
- name = "Employees Only";
- puzzle_id = "NTB2"
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered/corprejectrooms)
-"sG" = (
-/obj/effect/turf_decal/corner/opaque/white/diagonal,
-/obj/structure/cable/blue{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4,
-/obj/machinery/light/directional/west,
-/turf/open/floor/mineral/titanium/tiled/blue,
-/area/ruin/unpowered/corprejectrooms)
-"tb" = (
-/obj/effect/turf_decal/corner/opaque/white/diagonal,
-/mob/living/simple_animal/hostile/nanotrasen/ranged/smg{
- desc = "An officer no longer part of Nanotrasen's private security force, he seems rather unpleased to meet you.";
- faction = list("DeserterNT");
- name = "Rebecca Slouch"
- },
-/turf/open/floor/mineral/titanium/tiled/blue,
-/area/ruin/unpowered/corprejectrooms)
-"tD" = (
-/obj/structure/cable/blue{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/unpowered/corprejectrooms)
-"tI" = (
-/obj/effect/turf_decal/corner/opaque/white/diagonal,
-/obj/item/bedsheet/medical,
-/obj/structure/bed,
-/obj/structure/curtain,
-/turf/open/floor/mineral/titanium/tiled/blue,
-/area/ruin/unpowered/corprejectrooms)
-"tM" = (
-/obj/effect/turf_decal/corner/opaque/white/diagonal,
-/obj/machinery/vending/wallmed{
- pixel_x = 25
- },
-/turf/open/floor/mineral/titanium/tiled/blue,
-/area/ruin/unpowered/corprejectrooms)
-"tN" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/grille,
-/turf/open/floor/plating,
-/area/ruin/unpowered/corprejectrooms)
-"ue" = (
-/obj/structure/table/reinforced,
-/obj/item/gun/energy/disabler,
-/obj/item/restraints/handcuffs,
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/unpowered/corprejectrooms)
-"um" = (
-/obj/structure/cable/blue{
- icon_state = "1-10"
- },
-/obj/structure/cable/blue,
-/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium,
-/obj/structure/window/reinforced/tinted{
- dir = 4
- },
-/obj/structure/window/reinforced/tinted,
-/obj/machinery/door/poddoor/shutters{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered/corprejectvault)
-"uE" = (
-/obj/structure/fans/tiny,
-/obj/machinery/door/keycard{
- name = "Nanotrasen Secure Solutions";
- puzzle_id = "NTB1"
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered/corprejectrooms)
-"uN" = (
-/obj/structure/cable/blue{
- icon_state = "6-9"
- },
-/obj/structure/cable/blue{
- icon_state = "0-9"
- },
-/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium,
-/obj/structure/window/reinforced/tinted{
- dir = 8
- },
-/obj/structure/window/reinforced/tinted,
-/obj/machinery/door/poddoor/shutters{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered/corprejectvault)
-"uO" = (
-/obj/structure/cable/blue{
- icon_state = "5-10"
- },
-/obj/structure/cable/blue{
- icon_state = "0-5"
- },
-/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium,
-/obj/structure/window/reinforced/tinted{
- dir = 4
- },
-/obj/structure/window/reinforced/tinted,
-/obj/machinery/door/poddoor/shutters{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered/corprejectvault)
-"vl" = (
-/obj/machinery/vending/cola/pwr_game,
-/turf/open/floor/plasteel/sepia,
-/area/ruin/unpowered/corprejectrooms)
-"vv" = (
-/obj/structure/cable/blue{
- icon_state = "5-8"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
- dir = 1
- },
-/turf/open/floor/plasteel/sepia,
-/area/ruin/unpowered/corprejectrooms)
-"vP" = (
-/obj/structure/bed,
-/obj/item/bedsheet/dorms,
-/turf/open/floor/carpet/lone,
-/area/ruin/unpowered/corprejectrooms)
-"wl" = (
-/obj/structure/cable/blue{
- icon_state = "4-8"
- },
-/obj/structure/cable/blue{
- icon_state = "0-8"
- },
-/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium,
-/obj/structure/window/reinforced/tinted,
-/obj/machinery/door/poddoor/shutters,
-/turf/open/floor/plating,
-/area/ruin/unpowered/corprejectvault)
-"wo" = (
-/obj/structure/flora/tree/pine,
-/turf/open/floor/plating/asteroid/snow/icemoon,
-/area/ruin/unpowered/corprejectrooms)
-"ws" = (
-/obj/structure/cable/blue{
- icon_state = "4-8"
- },
-/obj/structure/cable/blue{
- icon_state = "0-4"
- },
-/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium,
-/obj/structure/window/reinforced/tinted,
-/obj/machinery/door/poddoor/shutters,
-/turf/open/floor/plating,
-/area/ruin/unpowered/corprejectvault)
-"wy" = (
-/obj/structure/cable/blue{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4,
-/turf/open/floor/plating/catwalk_floor,
-/area/ruin/unpowered/corprejectrooms)
-"wB" = (
-/obj/structure/table/reinforced,
-/obj/item/reagent_containers/food/snacks/donut/trumpet,
-/obj/item/reagent_containers/food/snacks/donut/matcha,
-/obj/item/reagent_containers/food/snacks/donut/laugh,
-/obj/item/reagent_containers/food/snacks/donut/jelly/choco,
-/obj/item/reagent_containers/food/snacks/donut/jelly/apple,
-/obj/item/reagent_containers/food/snacks/donut/chaos,
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/unpowered/corprejectrooms)
-"wE" = (
-/obj/structure/closet/emcloset,
-/obj/machinery/light/directional/west,
-/turf/open/floor/plasteel/sepia,
-/area/ruin/unpowered/corprejectrooms)
-"xf" = (
-/obj/structure/cable/blue{
- icon_state = "5-8"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/unpowered/corprejectrooms)
-"xp" = (
-/obj/structure/cable/blue{
- icon_state = "2-10"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4,
-/turf/open/floor/wood,
-/area/ruin/unpowered/corprejectrooms)
-"xq" = (
-/obj/structure/chair,
-/turf/open/floor/wood,
-/area/ruin/unpowered/corprejectrooms)
-"xX" = (
-/obj/machinery/vending/wardrobe,
-/turf/open/floor/plasteel/sepia,
-/area/ruin/unpowered/corprejectrooms)
-"ya" = (
-/obj/structure/rack,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/machinery/door/window/westright,
-/obj/item/storage/belt,
-/obj/item/keycard/swordfish{
- desc = "Nanotrasen Corporate Security Solutions, no place safer in the galaxy!";
- name = "Secure Solutions Card";
- puzzle_id = "NTB4"
- },
-/turf/open/floor/plasteel/mono,
-/area/ruin/unpowered/corprejectengineering)
-"yd" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
- dir = 10
- },
-/mob/living/simple_animal/bot/secbot/ed209/rockplanet{
- faction = list("DeserterNT");
- name = "Jerry"
- },
-/turf/open/floor/plasteel/sepia,
-/area/ruin/unpowered/corprejectrooms)
-"yf" = (
-/obj/structure/cable/blue{
- icon_state = "5-8"
- },
-/obj/structure/cable/blue{
- icon_state = "0-5"
- },
-/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium,
-/obj/structure/window/reinforced/tinted,
-/obj/structure/window/reinforced/tinted{
- dir = 4
- },
-/obj/machinery/door/poddoor/shutters,
-/turf/open/floor/plating,
-/area/ruin/unpowered/corprejectvault)
-"yo" = (
-/obj/structure/table/glass,
-/obj/item/pen,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
- dir = 5
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered/corprejectrooms)
-"yp" = (
-/turf/open/floor/wood,
-/area/ruin/unpowered/corprejectrooms)
-"yy" = (
-/obj/item/restraints/legcuffs/beartrap{
- armed = 1
- },
-/obj/machinery/door/window,
-/obj/structure/cable/blue{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4,
-/obj/structure/cable/blue{
- icon_state = "9-10"
- },
-/obj/structure/cable/blue{
- icon_state = "5-6"
- },
-/turf/open/floor/vault,
-/area/ruin/unpowered/corprejectvault)
-"yD" = (
-/obj/item/keycard/entry{
- desc = "Nanotrasen Corporate Security Solutions, no place safer in the galaxy!";
- name = "Keycard to NT Secure Solutions";
- puzzle_id = "NTB1"
- },
-/turf/open/floor/plating/snowed/temperatre,
-/area/ruin/unpowered/corprejectrooms)
-"yI" = (
-/obj/machinery/vending/sustenance,
-/turf/open/floor/plasteel/sepia,
-/area/ruin/unpowered/corprejectrooms)
-"yK" = (
-/obj/structure/chair/stool/bar,
-/obj/structure/cable/blue{
- icon_state = "4-9"
- },
-/mob/living/simple_animal/hostile/nanotrasen/ranged/smg{
- desc = "An officer no longer part of Nanotrasen's private security force, he seems rather unpleased to meet you.";
- faction = list("DeserterNT");
- name = "Gloria the Glorious"
- },
-/turf/open/floor/plasteel/grimy,
-/area/ruin/unpowered/corprejectrooms)
-"yO" = (
-/obj/structure/cable/blue{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4,
-/mob/living/simple_animal/hostile/viscerator{
- faction = list("DeserterNT");
- name = "Mia"
- },
-/turf/open/floor/plating/catwalk_floor,
-/area/ruin/unpowered/corprejectrooms)
-"yS" = (
-/obj/structure/fence/door,
-/obj/structure/cable/blue{
- icon_state = "6-10"
- },
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/unpowered/corprejectrooms)
-"za" = (
-/obj/structure/cable/blue{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
- dir = 5
- },
-/turf/open/floor/plating/catwalk_floor,
-/area/ruin/unpowered/corprejectrooms)
-"zc" = (
-/obj/structure/chair{
- dir = 8
- },
-/mob/living/simple_animal/hostile/nanotrasen/screaming{
- desc = "An officer no longer part of Nanotrasen's private security force, he seems rather unpleased to meet you.";
- faction = list("DeserterNT");
- name = "Jimmy Firecracker"
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered/corprejectrooms)
-"zh" = (
-/obj/structure/table/wood/poker,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/cable/blue{
- icon_state = "6-8"
- },
-/obj/item/keycard/stockroom{
- desc = "Nanotrasen Corporate Security Solutions, no place safer in the galaxy!";
- name = "Science and Medine Workspaces Card";
- puzzle_id = "NTB3"
- },
-/turf/open/floor/plasteel/grimy,
-/area/ruin/unpowered/corprejectrooms)
-"zz" = (
-/obj/structure/table/reinforced,
-/obj/item/reagent_containers/food/drinks/shaker,
-/obj/item/storage/box/drinkingglasses,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/plasteel/grimy,
-/area/ruin/unpowered/corprejectrooms)
-"zM" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/on/layer2{
- dir = 1
- },
-/turf/open/floor/plating/catwalk_floor,
-/area/ruin/unpowered/corprejectrooms)
-"Aj" = (
-/obj/structure/cable/blue{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4,
-/mob/living/simple_animal/hostile/viscerator{
- faction = list("DeserterNT");
- name = "Lu Bu"
- },
-/obj/machinery/light/directional/east,
-/turf/open/floor/plating/catwalk_floor,
-/area/ruin/unpowered/corprejectrooms)
-"Al" = (
-/turf/template_noop,
-/area/template_noop)
-"At" = (
-/obj/structure/closet/secure_closet/evidence,
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/unpowered/corprejectrooms)
-"AT" = (
-/obj/structure/fence,
-/obj/structure/cable/blue{
- icon_state = "2-6"
- },
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/unpowered/corprejectrooms)
-"Bb" = (
-/obj/structure/bed,
-/obj/item/bedsheet/patriot,
-/turf/open/floor/carpet/lone,
-/area/ruin/unpowered/corprejectrooms)
-"Bl" = (
-/obj/structure/chair/stool/bar,
-/obj/structure/cable/blue{
- icon_state = "8-9"
- },
-/turf/open/floor/plasteel/grimy,
-/area/ruin/unpowered/corprejectrooms)
-"Bo" = (
-/obj/structure/cable/blue{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4,
-/obj/machinery/door/keycard{
- name = "Medical and Solutions";
- puzzle_id = "NTB3"
- },
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/corprejectengineering)
-"BM" = (
-/obj/structure/cable/blue{
- icon_state = "4-10"
- },
-/obj/structure/cable/blue{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
- dir = 4
- },
-/obj/machinery/door/keycard{
- name = "Secure Solutions";
- puzzle_id = "NTB4"
- },
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/unpowered/corprejectrooms)
-"Cm" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4,
-/obj/structure/cable/blue{
- icon_state = "1-5"
- },
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/corprejectengineering)
-"Cv" = (
-/obj/machinery/power/apc/auto_name/directional/south,
-/obj/structure/cable/blue{
- icon_state = "0-5"
- },
-/obj/machinery/light/directional/south,
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/unpowered/corprejectrooms)
-"CA" = (
-/obj/structure/table/reinforced,
-/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/launcher/punching_glove,
-/obj/item/mmi/posibrain,
-/obj/item/mmi,
-/obj/item/circuitboard/mecha/honker/main,
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/corprejectengineering)
-"CS" = (
-/obj/effect/decal/cleanable/cobweb,
-/obj/structure/filingcabinet,
-/obj/item/folder/documents{
- name = "folder- 'EGREGORE PROJECT'"
- },
-/turf/open/floor/vault,
-/area/ruin/unpowered/corprejectvault)
-"CU" = (
-/obj/item/gun/ballistic/shotgun/automatic/combat,
-/obj/structure/chair{
- dir = 1
- },
-/obj/effect/mob_spawn/human/corpse/nanotrasensoldier{
- name = "Alfred Ososs"
- },
-/obj/effect/decal/cleanable/blood/drip,
-/obj/effect/decal/cleanable/blood/old,
-/obj/structure/cable/blue{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4,
-/turf/open/floor/vault,
-/area/ruin/unpowered/corprejectvault)
-"Dh" = (
-/obj/structure/cable/blue{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4,
-/mob/living/simple_animal/hostile/viscerator{
- faction = list("DeserterNT");
- name = "Olivia"
- },
-/turf/open/floor/plating/catwalk_floor,
-/area/ruin/unpowered/corprejectrooms)
-"Di" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
-/turf/open/floor/wood,
-/area/ruin/unpowered/corprejectrooms)
-"Dl" = (
-/obj/structure/cable/blue{
- icon_state = "2-4"
- },
-/obj/structure/cable/blue{
- icon_state = "2-8"
- },
-/obj/structure/cable/blue{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/corprejectengineering)
-"Dx" = (
-/obj/item/ammo_casing/shotgun/dragonsbreath{
- pixel_x = -7;
- pixel_y = 11
- },
-/obj/item/ammo_casing/shotgun/dragonsbreath{
- pixel_y = 6
- },
-/obj/structure/cable/blue{
- icon_state = "1-9"
- },
-/turf/open/floor/vault,
-/area/ruin/unpowered/corprejectvault)
-"DS" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4,
-/turf/open/floor/plasteel/sepia,
-/area/ruin/unpowered/corprejectrooms)
-"DV" = (
-/obj/structure/flora/ausbushes/sparsegrass,
-/turf/open/floor/plating/asteroid/snow/icemoon,
-/area/ruin/unpowered/corprejectrooms)
-"En" = (
-/obj/item/gun/ballistic/automatic/smg/proto,
-/obj/structure/rack,
-/turf/open/floor/vault,
-/area/ruin/unpowered/corprejectvault)
-"Er" = (
-/obj/structure/cable/blue{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
- dir = 4
- },
-/obj/machinery/door/keycard{
- name = "Break Room";
- puzzle_id = "NTB2"
- },
-/turf/open/floor/plasteel/sepia,
-/area/ruin/unpowered/corprejectrooms)
-"Ev" = (
-/turf/closed/wall/r_wall,
-/area/ruin/unpowered/corprejectvault)
-"EA" = (
-/obj/structure/table/reinforced,
-/obj/machinery/chem_dispenser/drinks/beer/fullupgrade{
- dir = 1
- },
-/obj/structure/cable/blue{
- icon_state = "4-9"
- },
-/obj/machinery/light/directional/south,
-/turf/open/floor/plasteel/grimy,
-/area/ruin/unpowered/corprejectrooms)
-"EJ" = (
-/obj/structure/cable/blue{
- icon_state = "5-10"
- },
-/obj/structure/cable/blue{
- icon_state = "0-5"
- },
-/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium,
-/obj/structure/window/reinforced/tinted{
- dir = 8
- },
-/obj/structure/window/reinforced/tinted{
- dir = 1
- },
-/obj/machinery/door/poddoor/shutters{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered/corprejectvault)
-"EL" = (
-/obj/structure/cable/blue{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/plating/catwalk_floor,
-/area/ruin/unpowered/corprejectrooms)
-"Fa" = (
-/obj/structure/closet/firecloset/wall/directional/north,
-/obj/structure/cable/blue{
- icon_state = "5-6"
- },
-/turf/open/floor/plasteel/sepia,
-/area/ruin/unpowered/corprejectrooms)
-"Fz" = (
-/obj/structure/cable/blue{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4,
-/obj/machinery/light/directional/west,
-/turf/open/floor/plating/catwalk_floor,
-/area/ruin/unpowered/corprejectrooms)
-"FI" = (
-/obj/structure/sign/barsign,
-/turf/closed/wall/r_wall,
-/area/ruin/unpowered/corprejectrooms)
-"FW" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/plasteel/sepia,
-/area/ruin/unpowered/corprejectrooms)
-"FZ" = (
-/obj/machinery/vending/cigarette,
-/turf/open/floor/plasteel/sepia,
-/area/ruin/unpowered/corprejectrooms)
-"Gb" = (
-/obj/structure/table/glass,
-/obj/item/paper_bin/construction,
-/turf/open/floor/wood,
-/area/ruin/unpowered/corprejectrooms)
-"Ge" = (
-/obj/structure/cable/blue{
- icon_state = "2-5"
- },
-/turf/open/floor/vault,
-/area/ruin/unpowered/corprejectvault)
-"GN" = (
-/obj/structure/sign/poster/contraband/donut_corp,
-/turf/closed/wall/r_wall,
-/area/ruin/unpowered/corprejectrooms)
-"GX" = (
-/obj/structure/table/wood/poker,
-/turf/open/floor/plasteel/grimy,
-/area/ruin/unpowered/corprejectrooms)
-"Hs" = (
-/obj/machinery/power/apc/auto_name/directional/south,
-/obj/structure/cable/blue{
- icon_state = "0-9"
- },
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/corprejectengineering)
-"Hw" = (
-/obj/structure/table/reinforced,
-/obj/machinery/chem_dispenser/drinks/fullupgrade{
- dir = 1
- },
-/obj/structure/cable/blue{
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel/grimy,
-/area/ruin/unpowered/corprejectrooms)
-"Hz" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
- dir = 4
- },
-/obj/machinery/door/window{
- dir = 1;
- req_access = null;
- req_one_access = null;
- req_one_access_txt = "55"
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered/corprejectrooms)
-"HX" = (
-/obj/effect/turf_decal/corner/opaque/white/diagonal,
-/obj/structure/cable/blue{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
- dir = 4
- },
-/obj/machinery/door/keycard{
- name = "Secure Solutions";
- puzzle_id = "NTB4"
- },
-/turf/open/floor/mineral/titanium/tiled/blue,
-/area/ruin/unpowered/corprejectrooms)
-"HY" = (
-/obj/structure/flora/grass/brown,
-/turf/open/floor/plating/asteroid/snow/icemoon,
-/area/ruin/unpowered/corprejectrooms)
-"Ie" = (
-/obj/effect/turf_decal/corner/opaque/white/diagonal,
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
- dir = 8
- },
-/turf/open/floor/mineral/titanium/tiled/blue,
-/area/ruin/unpowered/corprejectrooms)
-"Ik" = (
-/obj/structure/fence{
- dir = 4
- },
-/obj/structure/cable/blue{
- icon_state = "1-2"
- },
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/unpowered/corprejectrooms)
-"Is" = (
-/obj/item/ammo_casing/shotgun/incendiary,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
- dir = 4
- },
-/turf/open/floor/vault,
-/area/ruin/unpowered/corprejectvault)
-"It" = (
-/obj/item/ammo_casing/shotgun/buckshot{
- pixel_x = 10;
- pixel_y = 4
- },
-/obj/item/ammo_casing/shotgun/buckshot{
- pixel_x = -9
- },
-/obj/structure/cable/blue{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
- dir = 5
- },
-/turf/open/floor/vault,
-/area/ruin/unpowered/corprejectvault)
-"Iy" = (
-/obj/effect/turf_decal/corner/opaque/white/diagonal,
-/obj/structure/bedsheetbin,
-/obj/item/roller,
-/obj/item/roller,
-/obj/structure/cable/blue{
- icon_state = "4-10"
- },
-/obj/structure/table/reinforced,
-/turf/open/floor/mineral/titanium/tiled/blue,
-/area/ruin/unpowered/corprejectrooms)
-"IE" = (
-/obj/structure/rack,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/door/window/westright{
- dir = 4
- },
-/obj/item/storage/toolbox/mechanical/old/heirloom,
-/turf/open/floor/plasteel/mono,
-/area/ruin/unpowered/corprejectengineering)
-"II" = (
-/obj/item/skub,
-/turf/open/floor/plating/catwalk_floor,
-/area/ruin/unpowered/corprejectrooms)
-"IL" = (
-/obj/structure/cable/blue{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4,
-/turf/open/floor/wood,
-/area/ruin/unpowered/corprejectrooms)
-"IU" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
-/turf/open/floor/wood,
-/area/ruin/unpowered/corprejectrooms)
-"Jk" = (
-/obj/item/ammo_casing/shotgun/laserscatter{
- pixel_x = 10
- },
-/obj/item/ammo_casing/shotgun/laserscatter{
- pixel_y = 7
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
- dir = 8
- },
-/turf/open/floor/vault,
-/area/ruin/unpowered/corprejectvault)
-"Kg" = (
-/obj/structure/cable/blue{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
- dir = 6
- },
-/obj/machinery/light/directional/west,
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/corprejectengineering)
-"Kk" = (
-/obj/structure/bed,
-/obj/effect/mob_spawn/human/clown/corpse,
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/unpowered/corprejectrooms)
-"Kn" = (
-/obj/machinery/power/apc/auto_name/directional/south,
-/obj/structure/cable/blue,
-/mob/living/simple_animal/bot/secbot/ed209/rockplanet{
- faction = list("DeserterNT");
- name = "Dell"
- },
-/turf/open/floor/vault,
-/area/ruin/unpowered/corprejectvault)
-"Ku" = (
-/obj/item/poster/random_official,
-/obj/item/poster/random_official,
-/obj/item/poster/random_official,
-/obj/item/poster/random_official,
-/obj/item/poster/random_official,
-/obj/item/poster/random_official,
-/obj/structure/table/glass,
-/turf/open/floor/vault,
-/area/ruin/unpowered/corprejectvault)
-"KF" = (
-/obj/structure/cable/blue{
- icon_state = "2-9"
- },
-/turf/open/floor/vault,
-/area/ruin/unpowered/corprejectvault)
-"Lo" = (
-/mob/living/simple_animal/bot/secbot/ed209/rockplanet{
- faction = list("DeserterNT");
- name = "Phillip"
- },
-/turf/open/floor/vault,
-/area/ruin/unpowered/corprejectvault)
-"LA" = (
-/obj/effect/turf_decal/corner/opaque/white/diagonal,
-/turf/open/floor/mineral/titanium/tiled/blue,
-/area/ruin/unpowered/corprejectrooms)
-"LB" = (
-/obj/effect/turf_decal/corner/opaque/white/diagonal,
-/obj/structure/cable/blue{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4,
-/turf/open/floor/mineral/titanium/tiled/blue,
-/area/ruin/unpowered/corprejectrooms)
-"LH" = (
-/obj/effect/turf_decal/corner/opaque/white/diagonal,
-/mob/living/simple_animal/bot/medbot/derelict{
- faction = list("DeserterNT");
- name = "Asshole Medibot"
- },
-/obj/structure/cable/blue{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4,
-/turf/open/floor/mineral/titanium/tiled/blue,
-/area/ruin/unpowered/corprejectrooms)
-"LK" = (
-/obj/item/bedsheet/nanotrasen,
-/obj/structure/bed,
-/turf/open/floor/carpet/lone,
-/area/ruin/unpowered/corprejectrooms)
-"LY" = (
-/obj/structure/cable/blue{
- icon_state = "4-6"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
- dir = 1
- },
-/turf/open/floor/plasteel/sepia,
-/area/ruin/unpowered/corprejectrooms)
-"Mc" = (
-/obj/structure/table/glass,
-/obj/item/fireaxe,
-/turf/open/floor/vault,
-/area/ruin/unpowered/corprejectvault)
-"Md" = (
-/obj/structure/rack,
-/obj/item/ammo_box/magazine/smgm9mm/ap,
-/obj/item/ammo_box/magazine/smgm9mm/inc,
-/obj/machinery/light/small/directional/east,
-/turf/open/floor/vault,
-/area/ruin/unpowered/corprejectvault)
-"Mh" = (
-/obj/structure/flora/ausbushes/lavendergrass,
-/turf/open/floor/plating/asteroid/snow/icemoon,
-/area/ruin/unpowered/corprejectrooms)
-"Mk" = (
-/turf/open/floor/plating/asteroid/snow/icemoon,
-/area/ruin/unpowered/corprejectrooms)
-"MR" = (
-/mob/living/simple_animal/hostile/viscerator{
- faction = list("DeserterNT");
- name = "Amelia"
- },
-/turf/open/floor/plating/catwalk_floor,
-/area/ruin/unpowered/corprejectrooms)
-"Nk" = (
-/obj/structure/chair/stool/bar,
-/obj/structure/cable/blue{
- icon_state = "5-10"
- },
-/turf/open/floor/plasteel/grimy,
-/area/ruin/unpowered/corprejectrooms)
-"ND" = (
-/obj/structure/safe,
-/obj/item/stack/sheet/mineral/plasma/twenty,
-/obj/item/stack/sheet/mineral/uranium/twenty,
-/obj/item/spacecash/bundle/c1000,
-/obj/item/spacecash/bundle/c1000,
-/obj/item/stack/sheet/bluespace_crystal/five,
-/obj/item/stack/sheet/mineral/bananium{
- amount = 15
- },
-/obj/item/stack/sheet/mineral/gold/twenty,
-/obj/item/stack/sheet/mineral/runite/ten,
-/obj/item/toy/figure/captain,
-/obj/item/organ/cyberimp/brain/anti_stun,
-/obj/item/disk/design_disk/adv/knight_gear,
-/turf/open/floor/vault,
-/area/ruin/unpowered/corprejectvault)
-"NJ" = (
-/obj/structure/bed,
-/obj/item/bedsheet/cosmos,
-/turf/open/floor/carpet/lone,
-/area/ruin/unpowered/corprejectrooms)
-"NL" = (
-/mob/living/simple_animal/hostile/viscerator{
- faction = list("DeserterNT");
- name = "Guan Yu"
- },
-/turf/open/floor/plating/catwalk_floor,
-/area/ruin/unpowered/corprejectrooms)
-"NO" = (
-/obj/structure/cable/blue{
- icon_state = "2-5"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
- dir = 6
- },
-/turf/open/floor/vault,
-/area/ruin/unpowered/corprejectrooms)
-"NQ" = (
-/obj/machinery/power/apc/auto_name/directional/west,
-/obj/structure/cable/blue{
- icon_state = "0-6"
- },
-/turf/open/floor/plasteel/grimy,
-/area/ruin/unpowered/corprejectrooms)
-"Oc" = (
-/obj/structure/cable/blue{
- icon_state = "1-6"
- },
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/corprejectengineering)
-"Ok" = (
-/obj/structure/AIcore/deactivated,
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/corprejectengineering)
-"ON" = (
-/obj/effect/turf_decal/corner/opaque/white/diagonal,
-/obj/structure/cable/blue{
- icon_state = "2-5"
- },
-/obj/structure/cable/blue{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4,
-/obj/machinery/door/keycard{
- name = "Medical and Solutions";
- puzzle_id = "NTB3"
- },
-/turf/open/floor/mineral/titanium/tiled/blue,
-/area/ruin/unpowered/corprejectrooms)
-"OP" = (
-/obj/effect/turf_decal/corner/opaque/white/diagonal,
-/obj/structure/table/rolling,
-/obj/item/storage/backpack/duffelbag/med/surgery,
-/obj/item/storage/belt/medical,
-/obj/item/storage/firstaid/medical,
-/obj/item/clothing/neck/stethoscope,
-/turf/open/floor/mineral/titanium/tiled/blue,
-/area/ruin/unpowered/corprejectrooms)
-"Pe" = (
-/obj/structure/cable/blue{
- icon_state = "1-2"
- },
-/obj/structure/cable/blue{
- icon_state = "1-10"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
- dir = 8
- },
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/corprejectengineering)
-"Pj" = (
-/turf/open/lava,
-/area/ruin/unpowered/corprejectrooms)
-"PA" = (
-/obj/structure/barricade/sandbags,
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/unpowered/corprejectrooms)
-"PF" = (
-/obj/structure/cable/blue{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4,
-/mob/living/simple_animal/hostile/viscerator{
- faction = list("DeserterNT");
- name = "Emma"
- },
-/turf/open/floor/plating/catwalk_floor,
-/area/ruin/unpowered/corprejectrooms)
-"PS" = (
-/obj/structure/table/reinforced,
-/obj/machinery/cell_charger,
-/obj/structure/cable/blue{
- icon_state = "0-9"
- },
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/corprejectengineering)
-"PU" = (
-/obj/structure/bed,
-/obj/effect/mob_spawn/human/corpse/cargo_tech,
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/unpowered/corprejectrooms)
-"Qf" = (
-/obj/structure/bed,
-/obj/effect/mob_spawn/human/corpse/syndicatesoldier,
-/obj/machinery/light/directional/north,
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/unpowered/corprejectrooms)
-"Qi" = (
-/obj/structure/flora/ausbushes/fullgrass,
-/mob/living/simple_animal/bot/secbot/ed209/rockplanet{
- faction = list("DeserterNT");
- name = "Gary"
- },
-/turf/open/floor/plating/asteroid/snow/icemoon,
-/area/ruin/unpowered/corprejectrooms)
-"Qr" = (
-/obj/machinery/power/port_gen/pacman,
-/obj/structure/cable/blue{
- icon_state = "0-2"
- },
-/turf/open/floor/plasteel/mono,
-/area/ruin/unpowered/corprejectengineering)
-"Qt" = (
-/obj/machinery/vending/boozeomat/all_access,
-/turf/open/floor/plasteel/grimy,
-/area/ruin/unpowered/corprejectrooms)
-"QZ" = (
-/obj/structure/cable/blue{
- icon_state = "4-9"
- },
-/mob/living/simple_animal/hostile/nanotrasen/ranged/smg{
- desc = "An officer no longer part of Nanotrasen's private security force, he seems rather unpleased to meet you.";
- faction = list("DeserterNT");
- name = "Todd Clorox"
- },
-/obj/structure/cable/blue{
- icon_state = "6-9"
- },
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/corprejectengineering)
-"Rb" = (
-/obj/structure/cable/blue{
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel/grimy,
-/area/ruin/unpowered/corprejectrooms)
-"Rh" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
- dir = 4
- },
-/mob/living/simple_animal/hostile/nanotrasen/elite{
- desc = "A former major player for Nanotrasen militaristic needs. He doesn't seem like someone who'd want to talk over tea.";
- faction = list("DeserterNT");
- name = "Max the Maniac"
- },
-/turf/open/floor/vault,
-/area/ruin/unpowered/corprejectrooms)
-"Ri" = (
-/obj/structure/barricade/sandbags,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/vault,
-/area/ruin/unpowered/corprejectrooms)
-"Rm" = (
-/obj/structure/fence/corner{
- dir = 10
- },
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/unpowered/corprejectrooms)
-"Rp" = (
-/obj/effect/turf_decal/corner/opaque/white/diagonal,
-/mob/living/simple_animal/hostile/nanotrasen/ranged/assault{
- desc = "No longer a member of Nanotrasen's more militaristic forces. Seems grumpy.";
- faction = list("DeserterNT");
- name = "Gordon Lary"
- },
-/turf/open/floor/mineral/titanium/tiled/blue,
-/area/ruin/unpowered/corprejectrooms)
-"Rs" = (
-/obj/structure/fence{
- dir = 4
- },
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/unpowered/corprejectrooms)
-"RE" = (
-/obj/structure/fence,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/vault,
-/area/ruin/unpowered/corprejectrooms)
-"Sr" = (
-/obj/structure/cable/blue{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/plasteel/sepia,
-/area/ruin/unpowered/corprejectrooms)
-"Sy" = (
-/obj/structure/cable/blue{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/corprejectengineering)
-"SF" = (
-/obj/structure/barricade/sandbags,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/unpowered/corprejectrooms)
-"SI" = (
-/obj/structure/cable/blue{
- icon_state = "4-9"
- },
-/obj/structure/cable/blue{
- icon_state = "0-9"
- },
-/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium,
-/obj/structure/window/reinforced/tinted,
-/obj/structure/window/reinforced/tinted{
- dir = 8
- },
-/obj/machinery/door/poddoor/shutters,
-/turf/open/floor/plating,
-/area/ruin/unpowered/corprejectvault)
-"SV" = (
-/obj/effect/turf_decal/corner/opaque/white/diagonal,
-/obj/structure/bed,
-/obj/item/bedsheet/medical,
-/obj/structure/curtain,
-/turf/open/floor/mineral/titanium/tiled/blue,
-/area/ruin/unpowered/corprejectrooms)
-"Tb" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
- dir = 4
- },
-/mob/living/simple_animal/hostile/nanotrasen/ranged/assault{
- desc = "No longer a member of Nanotrasen's more militaristic forces. Seems grumpy.";
- faction = list("DeserterNT");
- name = "Gary Larson"
- },
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/unpowered/corprejectrooms)
-"Te" = (
-/mob/living/simple_animal/hostile/viscerator{
- faction = list("DeserterNT");
- name = "Charlotte"
- },
-/turf/open/floor/plating/catwalk_floor,
-/area/ruin/unpowered/corprejectrooms)
-"Tn" = (
-/obj/structure/cable/blue{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4,
-/obj/structure/cable/blue{
- icon_state = "1-6"
- },
-/obj/structure/cable/blue{
- icon_state = "1-10"
- },
-/turf/open/floor/vault,
-/area/ruin/unpowered/corprejectvault)
-"To" = (
-/obj/structure/cable/blue{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4,
-/obj/machinery/light/directional/east,
-/turf/open/floor/plating/catwalk_floor,
-/area/ruin/unpowered/corprejectrooms)
-"Tu" = (
-/obj/structure/table/glass,
-/obj/item/paper{
- desc = "Standard Nanotrasen typeface for important documents.";
- default_raw_text = "Welcome to the NNTVS 'Not Nanotrasen Vault Station'! We are never happier to have people on board than when we get new arrivals ready to betray and renounce their allegiance to the coporate egregory known as Nanotrasen! ";
- name = "Corporate Desertion and You!"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
- dir = 5
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered/corprejectrooms)
-"TN" = (
-/obj/structure/cable/blue{
- icon_state = "1-2"
- },
-/turf/open/floor/vault,
-/area/ruin/unpowered/corprejectvault)
-"TQ" = (
-/obj/structure/cable/blue{
- icon_state = "1-5"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
- dir = 4
- },
-/mob/living/simple_animal/bot/secbot/ed209/rockplanet{
- faction = list("DeserterNT");
- name = "Derek"
- },
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/unpowered/corprejectrooms)
-"Uq" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
- dir = 4
- },
-/mob/living/simple_animal/hostile/nanotrasen/ranged/assault{
- desc = "No longer a member of Nanotrasen's more militaristic forces. Seems grumpy.";
- faction = list("DeserterNT");
- name = "Nancy Drew"
- },
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/unpowered/corprejectrooms)
-"Us" = (
-/mob/living/simple_animal/hostile/nanotrasen/ranged/smg{
- desc = "An officer no longer part of Nanotrasen's private security force, he seems rather unpleased to meet you.";
- faction = list("DeserterNT");
- name = "Larry Liessahl"
- },
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/corprejectengineering)
-"Ut" = (
-/obj/machinery/vending/security,
-/obj/machinery/light/directional/south,
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/unpowered/corprejectrooms)
-"UF" = (
-/turf/closed/wall/r_wall,
-/area/ruin/unpowered/corprejectengineering)
-"UN" = (
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/corprejectengineering)
-"UT" = (
-/obj/structure/cable/blue{
- icon_state = "4-9"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/unpowered/corprejectrooms)
-"UZ" = (
-/obj/structure/cable/blue{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4,
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/corprejectengineering)
-"Vc" = (
-/obj/structure/mecha_wreckage/phazon,
-/turf/open/floor/mech_bay_recharge_floor,
-/area/ruin/unpowered/corprejectengineering)
-"Vy" = (
-/obj/structure/cable/blue{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
- dir = 10
- },
-/turf/open/floor/plating/catwalk_floor,
-/area/ruin/unpowered/corprejectrooms)
-"VB" = (
-/mob/living/simple_animal/hostile/viscerator{
- faction = list("DeserterNT");
- name = "Sophia"
- },
-/turf/open/floor/plating/catwalk_floor,
-/area/ruin/unpowered/corprejectrooms)
-"VM" = (
-/obj/structure/table/glass,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
- dir = 10
- },
-/obj/item/keycard/cheese{
- desc = "Nanotrasen Corporate Security Solutions, no place safer in the galaxy!";
- name = "Employee Card";
- puzzle_id = "NTB2"
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered/corprejectrooms)
-"Wa" = (
-/obj/item/bedsheet/nanotrasen,
-/obj/structure/bed,
-/obj/machinery/light/directional/east,
-/turf/open/floor/carpet/lone,
-/area/ruin/unpowered/corprejectrooms)
-"WT" = (
-/turf/open/floor/plasteel/sepia,
-/area/ruin/unpowered/corprejectrooms)
-"WV" = (
-/obj/structure/cable/blue{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4,
-/turf/open/floor/plating/catwalk_floor,
-/area/ruin/unpowered/corprejectrooms)
-"Xa" = (
-/obj/structure/mecha_wreckage/marauder,
-/turf/open/floor/mech_bay_recharge_floor,
-/area/ruin/unpowered/corprejectengineering)
-"Xt" = (
-/mob/living/simple_animal/bot/secbot/ed209/rockplanet{
- faction = list("DeserterNT");
- name = "Jonathon"
- },
-/turf/open/floor/plating/catwalk_floor,
-/area/ruin/unpowered/corprejectrooms)
-"XB" = (
-/obj/effect/turf_decal/corner/opaque/white/diagonal,
-/mob/living/simple_animal/bot/secbot/ed209/rockplanet{
- faction = list("DeserterNT");
- name = "Zack"
- },
-/turf/open/floor/mineral/titanium/tiled/blue,
-/area/ruin/unpowered/corprejectrooms)
-"XL" = (
-/obj/structure/rack,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/door/window/westright{
- dir = 4
- },
-/obj/item/clothing/mask/gas/welding,
-/turf/open/floor/plasteel/mono,
-/area/ruin/unpowered/corprejectengineering)
-"Yj" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/machinery/power/apc/auto_name/directional/south,
-/obj/structure/cable/blue{
- icon_state = "0-4"
- },
-/mob/living/simple_animal/hostile/nanotrasen/screaming{
- desc = "An officer no longer part of Nanotrasen's private security force, he seems rather unpleased to meet you.";
- faction = list("DeserterNT");
- name = "Wendy Wallaby"
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered/corprejectrooms)
-"Ym" = (
-/obj/structure/cable/blue{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4,
-/obj/structure/railing{
- dir = 4
- },
-/obj/structure/railing{
- dir = 8
- },
-/turf/open/floor/vault,
-/area/ruin/unpowered/corprejectrooms)
-"Zh" = (
-/obj/item/phone,
-/obj/structure/table/glass,
-/obj/machinery/light/small/directional/west,
-/turf/open/floor/vault,
-/area/ruin/unpowered/corprejectvault)
-"Zu" = (
-/obj/structure/cable/blue{
- icon_state = "4-10"
- },
-/obj/structure/cable/blue{
- icon_state = "0-4"
- },
-/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium,
-/obj/structure/window/reinforced/tinted{
- dir = 8
- },
-/obj/structure/window/reinforced/tinted{
- dir = 1
- },
-/obj/machinery/door/poddoor/shutters,
-/turf/open/floor/plating,
-/area/ruin/unpowered/corprejectvault)
-"ZM" = (
-/turf/open/floor/plating/snowed/temperatre,
-/area/ruin/unpowered/corprejectrooms)
-"ZP" = (
-/obj/machinery/airalarm/directional/east,
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/corprejectengineering)
-"ZV" = (
-/obj/structure/cable/blue{
- icon_state = "4-5"
- },
-/mob/living/simple_animal/hostile/nanotrasen/screaming{
- desc = "An officer no longer part of Nanotrasen's private security force, he seems rather unpleased to meet you.";
- faction = list("DeserterNT");
- name = "Wetzel the Pretzel"
- },
-/turf/open/floor/plasteel/grimy,
-/area/ruin/unpowered/corprejectrooms)
-"ZX" = (
-/obj/structure/cable/blue{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
- dir = 6
- },
-/turf/open/floor/plating/catwalk_floor,
-/area/ruin/unpowered/corprejectrooms)
-
-(1,1,1) = {"
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-"}
-(2,1,1) = {"
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-ZM
-ZM
-ZM
-yD
-ZM
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-"}
-(3,1,1) = {"
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-ZM
-ZM
-ZM
-ZM
-ZM
-ZM
-ZM
-ZM
-ZM
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-"}
-(4,1,1) = {"
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-hn
-hn
-hn
-hn
-ZM
-hn
-hn
-hn
-hn
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-"}
-(5,1,1) = {"
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-hn
-hn
-hn
-hn
-uE
-hn
-hn
-hn
-hn
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-"}
-(6,1,1) = {"
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-hn
-hn
-fE
-yp
-yp
-yp
-fH
-hn
-hn
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-"}
-(7,1,1) = {"
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-hn
-hn
-xq
-IU
-yo
-dq
-Gb
-hn
-hn
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-"}
-(8,1,1) = {"
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-hn
-hn
-ed
-Di
-Tu
-zc
-Yj
-hn
-hn
-hn
-hn
-hn
-hn
-hn
-hn
-hn
-hn
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-"}
-(9,1,1) = {"
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-hn
-hn
-hn
-xq
-yp
-Hz
-yp
-gL
-hn
-hn
-hn
-hn
-hn
-hn
-hn
-hn
-hn
-hn
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-"}
-(10,1,1) = {"
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-hn
-hn
-hn
-hn
-fE
-yp
-VM
-xp
-IL
-rW
-wy
-wy
-Dh
-To
-PF
-wy
-za
-hn
-hn
-hn
-hn
-hn
-hn
-hn
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-"}
-(11,1,1) = {"
-Al
-Al
-Al
-Al
-Al
-Al
-hn
-hn
-hn
-Xt
-hn
-tN
-tN
-tN
-tN
-tN
-hn
-hn
-hn
-hn
-hn
-hn
-hn
-Er
-hn
-hn
-hn
-hn
-hn
-hn
-hn
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-"}
-(12,1,1) = {"
-Al
-Al
-Al
-Al
-Al
-Al
-hn
-hn
-Te
-VB
-hn
-tN
-Pj
-Pj
-Pj
-Pj
-Pj
-Pj
-Pj
-tN
-tN
-hn
-wE
-Sr
-Fa
-oF
-GX
-NQ
-Qt
-hn
-hn
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-"}
-(13,1,1) = {"
-Al
-Al
-Al
-Al
-Al
-Al
-hn
-hn
-II
-hn
-hn
-Pj
-Pj
-pd
-qw
-qw
-qw
-qT
-Pj
-Pj
-tN
-tN
-xX
-fX
-LY
-yK
-GX
-ZV
-EA
-FI
-hn
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-"}
-(14,1,1) = {"
-Al
-Al
-Al
-Al
-Al
-Al
-hn
-hn
-MR
-hn
-Pj
-Pj
-EJ
-Ev
-Ev
-Ev
-Ev
-Ev
-uN
-Pj
-Pj
-tN
-vl
-FW
-vv
-Bl
-pD
-Rb
-Hw
-hn
-hn
-hn
-hn
-hn
-Al
-Al
-Al
-Al
-"}
-(15,1,1) = {"
-Al
-Al
-Al
-Al
-hn
-hn
-hn
-hn
-NL
-hn
-Pj
-Zu
-Ev
-Ev
-CS
-Zh
-Ku
-Ev
-Ev
-SI
-Pj
-tN
-FZ
-gg
-WT
-Nk
-zh
-em
-zz
-hn
-hn
-hn
-hn
-hn
-Al
-Al
-Al
-Al
-"}
-(16,1,1) = {"
-Al
-Al
-Al
-Al
-hn
-hn
-hn
-hn
-hn
-tN
-Pj
-aR
-Ev
-Ge
-gT
-Is
-jy
-ND
-Ev
-wl
-Pj
-tN
-yI
-yd
-kq
-DS
-DS
-ce
-px
-ja
-WV
-za
-hn
-hn
-Al
-Al
-Al
-Al
-"}
-(17,1,1) = {"
-Al
-Al
-Al
-Al
-hn
-hn
-hV
-io
-NO
-qe
-Ym
-iu
-yy
-Tn
-CU
-It
-TN
-Kn
-Ev
-ws
-Pj
-tN
-oB
-oB
-oB
-oB
-oB
-oB
-hn
-hn
-hn
-dw
-hn
-hn
-Al
-Al
-Al
-Al
-"}
-(18,1,1) = {"
-Al
-Al
-Al
-Al
-hn
-hn
-or
-jd
-Rh
-tN
-Pj
-cP
-Ev
-KF
-Dx
-Jk
-Lo
-Mc
-Ev
-ws
-Pj
-tN
-LK
-vP
-Wa
-Bb
-NJ
-LK
-hn
-cN
-hn
-gd
-hn
-hn
-Al
-Al
-Al
-Al
-"}
-(19,1,1) = {"
-Al
-Al
-Al
-Al
-hn
-hn
-le
-nb
-Ri
-tN
-Pj
-iX
-Ev
-Ev
-En
-Md
-fS
-Ev
-Ev
-yf
-Pj
-hn
-hn
-hn
-hn
-hn
-hn
-hn
-hn
-ff
-hn
-gd
-hn
-Al
-Al
-Al
-Al
-Al
-"}
-(20,1,1) = {"
-Al
-Al
-Al
-hn
-hn
-hn
-nZ
-pi
-RE
-tN
-Pj
-Pj
-eW
-Ev
-Ev
-Ev
-Ev
-Ev
-uO
-Pj
-Pj
-tN
-HY
-pz
-Mk
-DV
-lk
-lk
-lk
-lk
-hn
-gd
-aQ
-zM
-hn
-hn
-Al
-Al
-"}
-(21,1,1) = {"
-Al
-Al
-Al
-hn
-hn
-hn
-PA
-tD
-SF
-hn
-hn
-Pj
-Pj
-ph
-pE
-pE
-pE
-um
-Pj
-Pj
-tN
-tN
-Mk
-Mk
-Mk
-Mk
-UF
-UF
-UF
-UF
-UF
-la
-nX
-UF
-UF
-hn
-Al
-Al
-"}
-(22,1,1) = {"
-Al
-Al
-Al
-hn
-hn
-At
-hz
-xf
-Tb
-Ut
-hn
-tN
-Pj
-Pj
-Pj
-Pj
-Pj
-Pj
-Pj
-tN
-tN
-Mh
-Mk
-Mk
-wo
-Mk
-UF
-Qr
-Kg
-bI
-Cm
-kF
-hu
-lc
-UF
-hn
-Al
-Al
-"}
-(23,1,1) = {"
-Al
-Al
-Al
-hn
-hn
-AT
-dO
-Rm
-oP
-ue
-hn
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-hn
-tN
-Mk
-Mk
-Qi
-Mk
-Mk
-Mk
-UF
-cK
-Dl
-mN
-Pe
-Oc
-cl
-lM
-UF
-hn
-Al
-Al
-"}
-(24,1,1) = {"
-Al
-Al
-Al
-hn
-hn
-Kk
-eK
-Ik
-TQ
-dt
-GN
-ZX
-WV
-yO
-WV
-Aj
-WV
-za
-hn
-Mk
-HY
-Mk
-Mk
-Mk
-Mk
-HY
-UF
-Qr
-hG
-aF
-ya
-ou
-QZ
-CA
-UF
-hn
-Al
-Al
-"}
-(25,1,1) = {"
-Al
-Al
-Al
-hn
-hn
-Qf
-hz
-yS
-Uq
-wB
-hn
-EL
-hn
-hn
-hn
-hn
-hn
-HX
-qO
-hn
-hn
-hn
-qO
-hn
-hn
-hn
-UF
-UN
-nl
-XL
-IE
-nN
-fN
-PS
-UF
-hn
-Al
-Al
-"}
-(26,1,1) = {"
-Al
-Al
-Al
-hn
-hn
-PU
-hz
-Rs
-UT
-Cv
-hn
-EL
-hn
-hn
-hn
-hn
-hn
-mU
-LB
-LH
-rH
-sG
-ON
-wy
-Fz
-wy
-Bo
-UZ
-nk
-Sy
-Sy
-nW
-Us
-Hs
-UF
-hn
-Al
-Al
-"}
-(27,1,1) = {"
-Al
-Al
-Al
-hn
-hn
-hn
-hn
-hn
-BM
-hn
-hn
-mt
-hn
-hn
-hn
-hn
-hn
-OP
-lL
-XB
-Ie
-Iy
-qO
-hn
-hn
-hn
-UF
-lj
-cF
-Vc
-Xa
-lF
-ZP
-Ok
-UF
-hn
-Al
-Al
-"}
-(28,1,1) = {"
-Al
-Al
-Al
-hn
-hn
-hn
-hn
-hn
-Vy
-WV
-WV
-gB
-hn
-hn
-Al
-hn
-hn
-kY
-tb
-LA
-Rp
-jY
-hn
-hn
-hn
-hn
-UF
-UF
-UF
-UF
-UF
-UF
-UF
-UF
-UF
-hn
-Al
-Al
-"}
-(29,1,1) = {"
-Al
-Al
-Al
-Al
-Al
-Al
-hn
-hn
-hn
-hn
-hn
-hn
-hn
-hn
-Al
-hn
-hn
-dG
-tM
-SV
-SV
-tI
-hn
-hn
-hn
-hn
-hn
-hn
-hn
-hn
-hn
-hn
-hn
-hn
-hn
-hn
-Al
-Al
-"}
-(30,1,1) = {"
-Al
-Al
-Al
-Al
-Al
-Al
-hn
-hn
-hn
-hn
-hn
-hn
-hn
-hn
-Al
-hn
-hn
-hn
-hn
-hn
-hn
-hn
-hn
-hn
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-"}
-(31,1,1) = {"
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-hn
-hn
-hn
-hn
-hn
-hn
-hn
-hn
-hn
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-"}
-(32,1,1) = {"
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-"}
-(33,1,1) = {"
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-"}
-(34,1,1) = {"
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-Al
-"}
diff --git a/_maps/RandomRuins/IceRuins/icemoon_surface_engioutpost.dmm b/_maps/RandomRuins/IceRuins/icemoon_surface_engioutpost.dmm
deleted file mode 100644
index b514b1c40f9..00000000000
--- a/_maps/RandomRuins/IceRuins/icemoon_surface_engioutpost.dmm
+++ /dev/null
@@ -1,2727 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"aa" = (
-/turf/open/floor/plating/asteroid/snow/icemoon,
-/area/ruin/unpowered)
-"ab" = (
-/turf/open/floor/plating/snowed/smoothed/icemoon,
-/area/ruin)
-"ac" = (
-/obj/effect/mob_spawn/human/engineer,
-/turf/open/floor/plating/snowed/smoothed/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"ad" = (
-/obj/machinery/power/floodlight,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plating/snowed/smoothed/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"ae" = (
-/turf/closed/wall/r_wall,
-/area/overmap_encounter/planetoid/ice/explored)
-"af" = (
-/obj/structure/lattice,
-/turf/open/floor/plating/asteroid/snow/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"ag" = (
-/obj/structure/cable,
-/turf/open/floor/plating/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"ah" = (
-/obj/effect/decal/cleanable/blood,
-/turf/open/floor/plating/snowed/smoothed/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"ai" = (
-/obj/item/disk/holodisk/ruin/snowengieruin,
-/turf/open/floor/plating/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"aj" = (
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"al" = (
-/turf/open/floor/plating/ice/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"am" = (
-/obj/machinery/power/emitter,
-/obj/effect/turf_decal/industrial/warning/cee{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plating/snowed/smoothed/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"an" = (
-/obj/item/chair/plastic,
-/turf/open/floor/plating/snowed/smoothed/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"ao" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating/snowed/smoothed/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"ap" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating/snowed/smoothed/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"aq" = (
-/obj/machinery/field/generator,
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating/snowed/smoothed/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"ar" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 5
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/plating/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"as" = (
-/obj/effect/decal/cleanable/blood/tracks,
-/turf/open/floor/plating/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"at" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"au" = (
-/obj/effect/decal/cleanable/blood/splatter,
-/obj/effect/decal/cleanable/blood/tracks,
-/turf/open/floor/plating/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"av" = (
-/turf/template_noop,
-/area/template_noop)
-"aw" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 8
- },
-/obj/effect/turf_decal/corner/transparent/neutral/full,
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"ax" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber,
-/turf/open/floor/engine/o2,
-/area/ruin)
-"ay" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/high_volume,
-/turf/open/floor/engine/o2,
-/area/ruin)
-"az" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber,
-/turf/open/floor/engine/n2,
-/area/ruin)
-"aA" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/high_volume,
-/turf/open/floor/engine/n2,
-/area/ruin)
-"aB" = (
-/turf/closed/wall,
-/area/ruin)
-"aC" = (
-/obj/effect/turf_decal/trimline/opaque/yellow/filled/line{
- dir = 4
- },
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"aD" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible,
-/obj/effect/turf_decal/atmos/oxygen,
-/turf/open/floor/engine/o2,
-/area/ruin)
-"aE" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/turf/open/floor/engine/o2,
-/area/ruin)
-"aF" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible,
-/obj/effect/turf_decal/atmos/nitrogen,
-/turf/open/floor/engine/n2,
-/area/ruin)
-"aG" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/turf/open/floor/engine/n2,
-/area/ruin)
-"aH" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/turf/open/floor/plating/snowed/smoothed/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"aI" = (
-/obj/item/pda/engineering{
- note = "To-do: Check on singularity status. Get a pint at eat. Nag the research manager for RCDs."
- },
-/turf/open/floor/plating/asteroid/snow/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"aJ" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating/ice/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"aK" = (
-/obj/effect/turf_decal/trimline/opaque/yellow/filled/line{
- dir = 8
- },
-/obj/machinery/light/small/broken/directional/west,
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"aL" = (
-/obj/effect/turf_decal/trimline/opaque/yellow/filled/line{
- dir = 4
- },
-/obj/machinery/light/small/directional/east,
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"aM" = (
-/obj/effect/spawner/structure/window/plasma/reinforced,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible,
-/obj/machinery/door/firedoor/border_only{
- dir = 1
- },
-/obj/machinery/door/firedoor/border_only,
-/turf/open/floor/plating/airless,
-/area/ruin)
-"aO" = (
-/turf/closed/wall/r_wall/rust,
-/area/overmap_encounter/planetoid/ice/explored)
-"aP" = (
-/obj/effect/turf_decal/corner/opaque/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/obj/structure/tank_dispenser/oxygen,
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"aQ" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/firedoor/window,
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"aR" = (
-/obj/effect/turf_decal/trimline/opaque/yellow/filled/line{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
- },
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"aS" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/effect/turf_decal/corner/opaque/red/diagonal,
-/turf/open/floor/plasteel/white,
-/area/ruin)
-"aT" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/table/reinforced,
-/obj/effect/turf_decal/corner/opaque/red/diagonal,
-/obj/item/reagent_containers/food/drinks/coffee{
- pixel_y = 6
- },
-/obj/item/reagent_containers/food/drinks/coffee{
- pixel_x = -6;
- pixel_y = 3
- },
-/obj/item/reagent_containers/food/drinks/coffee{
- pixel_x = 6;
- pixel_y = 3
- },
-/obj/item/reagent_containers/food/drinks/coffee,
-/turf/open/floor/plasteel/white,
-/area/ruin)
-"aU" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/obj/structure/table/reinforced,
-/obj/item/trash/plate,
-/obj/effect/turf_decal/corner/opaque/red/diagonal,
-/turf/open/floor/plasteel/white,
-/area/ruin)
-"aV" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 5
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/obj/effect/turf_decal/trimline/opaque/yellow/filled/corner{
- dir = 8
- },
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"aW" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 4
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"aX" = (
-/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
- dir = 1
- },
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 4
- },
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 1
- },
-/obj/machinery/light/small/directional/north,
-/obj/machinery/meter/atmos,
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"aY" = (
-/obj/machinery/atmospherics/components/trinary/mixer/flipped{
- dir = 8
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"aZ" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 4
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"ba" = (
-/obj/machinery/atmospherics/pipe/manifold/green/visible{
- dir = 1
- },
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 1
- },
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"bb" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 10
- },
-/obj/machinery/meter/atmos,
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"bc" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"bd" = (
-/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/plating/asteroid/snow/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"be" = (
-/obj/item/card/id{
- access = list(200,204,11,12,10);
- assignment = "Senior Station Engineer";
- desc = "A card used to provide ID and determine access across the station. There's blood dripping from the corner. Ew.";
- name = "George 'Plastic' Miller's ID Card (Senior Station Engineer)";
- registered_age = 47;
- registered_name = "George 'Plastic' Miller"
- },
-/turf/open/floor/plating/asteroid/snow/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"bf" = (
-/obj/effect/gibspawner/generic,
-/obj/effect/decal/cleanable/blood,
-/obj/effect/decal/cleanable/blood/gibs/core,
-/turf/open/floor/plating/asteroid/snow/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"bh" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating/snowed/smoothed/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"bi" = (
-/obj/machinery/door/airlock/engineering{
- name = "The Singularity Engine";
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/dark{
- initial_gas_mix = "ICEMOON_ATMOS"
- },
-/area/overmap_encounter/planetoid/ice/explored)
-"bj" = (
-/obj/effect/turf_decal/corner/opaque/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"bk" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
- },
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"bl" = (
-/obj/structure/cable{
- 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/door/airlock/engineering{
- name = "The Singularity Engine";
- dir = 8
- },
-/turf/open/floor/plasteel/dark{
- initial_gas_mix = "ICEMOON_ATMOS"
- },
-/area/ruin)
-"bm" = (
-/obj/effect/turf_decal/trimline/opaque/yellow/filled/warning{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"bn" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/corner/opaque/red/diagonal,
-/obj/machinery/holopad/emergency/engineering,
-/turf/open/floor/plasteel/white,
-/area/ruin)
-"bo" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 4
- },
-/obj/structure/chair/plastic{
- dir = 4
- },
-/obj/effect/turf_decal/corner/opaque/red/diagonal,
-/turf/open/floor/plasteel/white,
-/area/ruin)
-"bp" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/obj/structure/table/reinforced,
-/obj/effect/turf_decal/corner/opaque/red/diagonal,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plasteel/white,
-/area/ruin)
-"bq" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/catwalk/over/plated_catwalk,
-/turf/open/floor/plating/icemoon,
-/area/ruin)
-"br" = (
-/obj/effect/turf_decal/trimline/opaque/yellow/filled/warning{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"bs" = (
-/obj/effect/turf_decal/trimline/opaque/yellow/filled/warning{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/plasteel/dark{
- initial_gas_mix = "ICEMOON_ATMOS"
- },
-/area/ruin)
-"bt" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/meter/atmos/layer2,
-/turf/open/floor/plating/icemoon,
-/area/ruin)
-"bu" = (
-/obj/machinery/atmospherics/pipe/simple/supply/visible{
- dir = 10
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/trimline/opaque/yellow/filled/warning{
- dir = 8
- },
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"bv" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/meter/atmos,
-/obj/effect/turf_decal/corner/transparent/neutral/full,
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"bw" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/corner/transparent/neutral/full,
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"bx" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 1
- },
-/obj/machinery/power/apc/unlocked{
- dir = 4;
- pixel_x = 25
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"by" = (
-/obj/item/stack/rods{
- amount = 2
- },
-/obj/item/shard/plasma,
-/turf/open/floor/plating/snowed/smoothed/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"bz" = (
-/obj/item/clothing/suit/space/hardsuit/engine,
-/turf/open/floor/plating/asteroid/snow/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"bA" = (
-/obj/item/flashlight/flare,
-/turf/open/floor/plating/asteroid/snow/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"bB" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/turf/open/floor/plating/snowed/smoothed/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"bC" = (
-/turf/open/floor/plating/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"bD" = (
-/obj/effect/decal/cleanable/robot_debris,
-/obj/effect/turf_decal/corner/opaque/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/obj/item/book/manual/wiki/engineering,
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"bE" = (
-/obj/effect/turf_decal/trimline/opaque/yellow/filled/line{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 8
- },
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"bF" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/structure/catwalk/over/plated_catwalk,
-/turf/open/floor/plating/icemoon,
-/area/ruin)
-"bG" = (
-/obj/effect/turf_decal/trimline/opaque/yellow/filled/warning{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"bH" = (
-/obj/effect/turf_decal/trimline/opaque/yellow/filled/warning{
- dir = 8
- },
-/obj/item/pda/clear{
- note = "Chief's asked me to check on the machinery inside PDA. He's also worried about Build, but i'm sure Harry'll handle the construction. I just need to work on Internals. Fuck i'm hungry"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/plasteel/dark{
- initial_gas_mix = "ICEMOON_ATMOS"
- },
-/area/ruin)
-"bI" = (
-/obj/machinery/door/airlock/atmos{
- name = "Atmospherics";
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/plasteel/dark{
- initial_gas_mix = "ICEMOON_ATMOS"
- },
-/area/ruin)
-"bJ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/plating/icemoon,
-/area/ruin)
-"bK" = (
-/obj/machinery/atmospherics/pipe/layer_manifold{
- dir = 4
- },
-/turf/open/floor/plating/icemoon,
-/area/ruin)
-"bL" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
- dir = 1
- },
-/turf/open/floor/plating/icemoon,
-/area/ruin)
-"bM" = (
-/obj/machinery/atmospherics/pipe/simple/supply/visible,
-/obj/effect/turf_decal/trimline/opaque/yellow/filled/warning{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 4
- },
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"bN" = (
-/obj/machinery/atmospherics/components/trinary/filter/flipped{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/effect/turf_decal/corner/transparent/neutral/full,
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"bO" = (
-/obj/machinery/atmospherics/pipe/simple/dark/visible{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/obj/effect/turf_decal/corner/transparent/neutral/full,
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"bP" = (
-/obj/machinery/atmospherics/pipe/simple/dark/visible{
- dir = 10
- },
-/obj/machinery/meter/atmos,
-/obj/effect/turf_decal/corner/transparent/neutral/full,
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"bQ" = (
-/obj/machinery/atmospherics/components/binary/pump,
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"bR" = (
-/obj/effect/spawner/structure/window/plasma,
-/turf/open/floor/plating/snowed/smoothed/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"bS" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating/snowed/smoothed/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"bT" = (
-/obj/item/pipe_dispenser,
-/turf/open/floor/plating/asteroid/snow/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"bU" = (
-/obj/structure/sign/poster/official/build{
- pixel_x = -32
- },
-/obj/effect/turf_decal/trimline/opaque/yellow/filled/line{
- dir = 8
- },
-/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
- },
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"bV" = (
-/obj/effect/mob_spawn/human/corpse/assistant,
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"bW" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/red/diagonal,
-/turf/open/floor/plasteel/white,
-/area/ruin)
-"bX" = (
-/obj/effect/turf_decal/corner/opaque/red/diagonal,
-/turf/open/floor/plasteel/white,
-/area/ruin)
-"bY" = (
-/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/effect/turf_decal/corner/opaque/red/diagonal,
-/turf/open/floor/plasteel/white,
-/area/ruin)
-"bZ" = (
-/obj/structure/sign/poster/official/safety_internals{
- pixel_x = 32
- },
-/obj/effect/turf_decal/trimline/opaque/yellow/filled/line{
- dir = 4
- },
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"ca" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 1
- },
-/obj/effect/turf_decal/trimline/opaque/yellow/filled/warning{
- dir = 1
- },
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"cb" = (
-/obj/item/flashlight,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/effect/turf_decal/corner/transparent/neutral/full,
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"cc" = (
-/obj/item/book/manual/wiki/engineering,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/effect/turf_decal/corner/transparent/neutral/full,
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"cd" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/effect/turf_decal/corner/transparent/neutral/full,
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"ce" = (
-/obj/machinery/atmospherics/pipe/manifold/dark/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 8
- },
-/obj/effect/turf_decal/corner/transparent/neutral/full,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"cf" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 1
- },
-/obj/machinery/airalarm/directional/east,
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"cg" = (
-/obj/item/wallframe/apc,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating/snowed/smoothed/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"ch" = (
-/obj/effect/turf_decal/trimline/opaque/yellow/filled/line{
- dir = 10
- },
-/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
- },
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"ci" = (
-/obj/machinery/light/broken/directional/south,
-/obj/effect/turf_decal/trimline/opaque/yellow/filled/line,
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"cj" = (
-/obj/structure/sign/poster/official/pda_ad{
- pixel_y = -32
- },
-/obj/effect/turf_decal/trimline/opaque/yellow/filled/corner{
- dir = 8
- },
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"ck" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"cl" = (
-/obj/effect/turf_decal/trimline/opaque/yellow/filled/line{
- dir = 4
- },
-/obj/machinery/light/dim/directional/east,
-/obj/machinery/newscaster/directional/north{
- pixel_x = 32
- },
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"cm" = (
-/obj/machinery/atmospherics/pipe/simple/supply/visible{
- dir = 5
- },
-/obj/structure/sign/poster/contraband/atmosia_independence{
- pixel_x = -32
- },
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"cn" = (
-/obj/machinery/atmospherics/pipe/manifold4w/supply/visible,
-/obj/machinery/meter/atmos/distro_loop,
-/obj/effect/turf_decal/corner/transparent/neutral/full,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"co" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 8
- },
-/obj/effect/turf_decal/corner/transparent/neutral/full,
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"cp" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/effect/turf_decal/corner/transparent/neutral/full,
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"cq" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 6
- },
-/obj/effect/turf_decal/corner/transparent/neutral/full,
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"cr" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 8
- },
-/obj/effect/turf_decal/corner/transparent/neutral/full,
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"cs" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 1
- },
-/obj/machinery/light/dim/directional/east,
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"ct" = (
-/obj/machinery/door/airlock/engineering/glass{
- name = "Production Room";
- req_access_txt = "204"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/trimline/opaque/yellow/filled/warning,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/turf/open/floor/plasteel/dark{
- initial_gas_mix = "ICEMOON_ATMOS"
- },
-/area/ruin)
-"cu" = (
-/obj/structure/girder,
-/turf/open/floor/plating/icemoon,
-/area/ruin)
-"cv" = (
-/obj/machinery/atmospherics/components/unary/thermomachine/heater{
- dir = 4
- },
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"cw" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/visible{
- dir = 4
- },
-/obj/effect/turf_decal/corner/transparent/neutral/full,
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"cx" = (
-/obj/machinery/atmospherics/pipe/manifold/green/visible,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 1
- },
-/obj/effect/turf_decal/corner/transparent/neutral/full,
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"cy" = (
-/obj/machinery/atmospherics/pipe/manifold4w/green/visible,
-/obj/effect/turf_decal/corner/transparent/neutral/full,
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"cz" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 4
- },
-/obj/effect/turf_decal/corner/transparent/neutral/full,
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"cA" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/components/binary/pump,
-/obj/effect/turf_decal/corner/transparent/neutral/full,
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"cB" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 9
- },
-/obj/machinery/meter/atmos,
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"cC" = (
-/obj/effect/decal/cleanable/oil,
-/obj/effect/turf_decal/industrial/warning{
- dir = 10
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating/snowed/smoothed/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"cD" = (
-/obj/effect/decal/cleanable/blood,
-/obj/effect/turf_decal/industrial/warning,
-/turf/open/floor/plating/snowed/smoothed/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"cE" = (
-/obj/effect/turf_decal/industrial/warning,
-/turf/open/floor/plating/snowed/smoothed/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"cF" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/industrial/warning,
-/turf/open/floor/plating/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"cG" = (
-/obj/machinery/field/generator,
-/obj/effect/turf_decal/industrial/warning{
- dir = 6
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"cH" = (
-/obj/effect/turf_decal/trimline/opaque/yellow/filled/line{
- dir = 1
- },
-/obj/structure/cable,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"cI" = (
-/obj/machinery/modular_computer/console/preset/civilian,
-/obj/effect/turf_decal/corner/transparent/neutral/three_quarters{
- dir = 1
- },
-/turf/open/floor/plasteel/dark{
- initial_gas_mix = "ICEMOON_ATMOS"
- },
-/area/ruin)
-"cJ" = (
-/obj/item/construction/rcd,
-/obj/structure/rack,
-/obj/item/rcd_ammo,
-/obj/item/rcd_ammo,
-/obj/item/rcd_upgrade/frames,
-/obj/effect/turf_decal/corner/transparent/neutral/half,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plasteel/dark{
- initial_gas_mix = "ICEMOON_ATMOS"
- },
-/area/ruin)
-"cK" = (
-/obj/machinery/airalarm/directional/west,
-/obj/structure/table/reinforced,
-/obj/effect/spawner/lootdrop/donkpockets,
-/obj/effect/turf_decal/corner/transparent/neutral/half{
- dir = 4
- },
-/turf/open/floor/plasteel/dark{
- initial_gas_mix = "ICEMOON_ATMOS"
- },
-/area/ruin)
-"cL" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"cM" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 8
- },
-/obj/machinery/vending/snack/random,
-/obj/effect/turf_decal/corner/transparent/neutral/three_quarters{
- dir = 4
- },
-/turf/open/floor/plasteel/dark{
- initial_gas_mix = "ICEMOON_ATMOS"
- },
-/area/ruin)
-"cN" = (
-/obj/effect/turf_decal/industrial/warning/corner,
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"cO" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 1
- },
-/obj/effect/turf_decal/industrial/warning,
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"cP" = (
-/obj/machinery/atmospherics/components/binary/pump,
-/obj/effect/turf_decal/industrial/warning,
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"cQ" = (
-/obj/effect/turf_decal/industrial/warning/corner,
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 8
- },
-/obj/machinery/light/small/directional/south,
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"cR" = (
-/obj/machinery/atmospherics/pipe/simple/dark/visible{
- dir = 6
- },
-/obj/effect/turf_decal/industrial/warning,
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"cS" = (
-/obj/machinery/atmospherics/pipe/simple/dark/visible{
- dir = 9
- },
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 8
- },
-/obj/machinery/meter/atmos,
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"cT" = (
-/obj/machinery/power/emitter{
- dir = 1
- },
-/obj/effect/turf_decal/industrial/warning/cee,
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/plating/ice/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"cU" = (
-/obj/effect/mob_spawn/human/engineer,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating/ice/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"cV" = (
-/obj/machinery/vending/cigarette,
-/obj/effect/turf_decal/corner/transparent/neutral/half{
- dir = 4
- },
-/turf/open/floor/plasteel/dark{
- initial_gas_mix = "ICEMOON_ATMOS"
- },
-/area/ruin)
-"cW" = (
-/obj/effect/turf_decal/trimline/transparent/neutral/filled/line,
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"cX" = (
-/obj/effect/turf_decal/trimline/transparent/neutral/filled/line,
-/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
- },
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"cY" = (
-/obj/effect/turf_decal/corner/transparent/neutral/half{
- dir = 8
- },
-/obj/item/kirbyplants/random,
-/turf/open/floor/plasteel/dark{
- initial_gas_mix = "ICEMOON_ATMOS"
- },
-/area/ruin)
-"cZ" = (
-/obj/effect/spawner/structure/window/plasma/reinforced,
-/obj/machinery/atmospherics/pipe/simple/supply/visible,
-/obj/machinery/door/firedoor/border_only{
- dir = 1
- },
-/obj/machinery/door/firedoor/border_only,
-/turf/open/floor/plating/airless,
-/area/ruin)
-"da" = (
-/obj/effect/spawner/structure/window/plasma/reinforced,
-/obj/machinery/atmospherics/pipe/simple/brown/visible,
-/obj/machinery/door/firedoor/border_only{
- dir = 1
- },
-/obj/machinery/door/firedoor/border_only,
-/turf/open/floor/plating/airless,
-/area/ruin)
-"db" = (
-/obj/effect/spawner/structure/window/plasma/reinforced,
-/obj/machinery/atmospherics/pipe/simple/dark/visible,
-/obj/machinery/door/firedoor/border_only{
- dir = 1
- },
-/obj/machinery/door/firedoor/border_only,
-/turf/open/floor/plating/airless,
-/area/ruin)
-"dc" = (
-/obj/machinery/power/rad_collector,
-/obj/structure/cable,
-/turf/open/floor/plating/snowed/smoothed/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"dd" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/plating/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"de" = (
-/obj/machinery/rnd/production/circuit_imprinter/department,
-/obj/effect/turf_decal/corner/transparent/neutral/half{
- dir = 1
- },
-/turf/open/floor/plasteel/dark{
- initial_gas_mix = "ICEMOON_ATMOS"
- },
-/area/ruin)
-"df" = (
-/obj/machinery/rnd/production/protolathe/department/engineering,
-/obj/machinery/light/small/broken/directional/south,
-/obj/effect/turf_decal/corner/transparent/neutral/half{
- dir = 1
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 1
- },
-/turf/open/floor/plasteel/dark{
- initial_gas_mix = "ICEMOON_ATMOS"
- },
-/area/ruin)
-"dg" = (
-/obj/machinery/autolathe,
-/obj/effect/turf_decal/corner/transparent/neutral/half{
- dir = 1
- },
-/turf/open/floor/plasteel/dark{
- initial_gas_mix = "ICEMOON_ATMOS"
- },
-/area/ruin)
-"dh" = (
-/obj/structure/sign/poster/contraband/grey_tide,
-/turf/closed/wall,
-/area/ruin)
-"di" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/engineering/glass{
- name = "Engineering Foyer"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/turf/open/floor/plasteel/dark{
- initial_gas_mix = "ICEMOON_ATMOS"
- },
-/area/ruin)
-"dj" = (
-/turf/closed/wall/rust,
-/area/ruin)
-"dk" = (
-/obj/machinery/atmospherics/pipe/simple/supply/visible,
-/turf/open/floor/engine/air,
-/area/ruin)
-"dl" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/obj/effect/turf_decal/atmos/air,
-/turf/open/floor/engine/air,
-/area/ruin)
-"dm" = (
-/obj/machinery/atmospherics/pipe/simple/brown/visible,
-/turf/open/floor/engine/vacuum,
-/area/ruin)
-"dn" = (
-/obj/machinery/atmospherics/pipe/simple/dark/visible,
-/obj/effect/turf_decal/atmos/mix,
-/turf/open/floor/engine/vacuum,
-/area/ruin)
-"do" = (
-/obj/machinery/power/port_gen/pacman,
-/obj/effect/decal/cleanable/oil/streak,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/plating/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"dp" = (
-/obj/machinery/light/built/directional/south,
-/turf/open/floor/plating/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"dq" = (
-/obj/item/tank/internals/plasma,
-/turf/open/floor/plating/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"dr" = (
-/obj/machinery/power/floodlight,
-/obj/structure/cable,
-/turf/open/floor/plating/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"ds" = (
-/obj/structure/tank_dispenser,
-/turf/open/floor/plating/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"dt" = (
-/obj/effect/turf_decal/trimline/transparent/neutral/filled/line{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
- },
-/turf/open/floor/plasteel/dark{
- initial_gas_mix = "ICEMOON_ATMOS"
- },
-/area/ruin)
-"du" = (
-/obj/effect/turf_decal/trimline/transparent/neutral/filled/line{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/turf/open/floor/plasteel/dark{
- initial_gas_mix = "ICEMOON_ATMOS"
- },
-/area/ruin)
-"dv" = (
-/obj/effect/turf_decal/trimline/transparent/neutral/filled/line{
- dir = 1
- },
-/obj/machinery/airalarm/directional/north,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plasteel/dark{
- initial_gas_mix = "ICEMOON_ATMOS"
- },
-/area/ruin)
-"dw" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1
- },
-/turf/open/floor/engine/air,
-/area/ruin)
-"dx" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/high_volume{
- dir = 1
- },
-/turf/open/floor/engine/air,
-/area/ruin)
-"dy" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1
- },
-/turf/open/floor/engine/vacuum,
-/area/ruin)
-"dz" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/high_volume{
- dir = 1
- },
-/turf/open/floor/engine/vacuum,
-/area/ruin)
-"dA" = (
-/obj/effect/turf_decal/trimline/transparent/neutral/filled/line,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 1
- },
-/obj/effect/turf_decal/weather/snow{
- dir = 10
- },
-/turf/open/floor/plasteel/dark{
- initial_gas_mix = "ICEMOON_ATMOS"
- },
-/area/ruin)
-"dB" = (
-/obj/effect/turf_decal/trimline/transparent/neutral/filled/line,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
- },
-/obj/effect/turf_decal/weather/snow,
-/turf/open/floor/plasteel/dark{
- initial_gas_mix = "ICEMOON_ATMOS"
- },
-/area/ruin)
-"dC" = (
-/obj/effect/turf_decal/trimline/transparent/neutral/filled/line,
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 8
- },
-/obj/effect/turf_decal/weather/snow{
- dir = 6
- },
-/turf/open/floor/plasteel/dark{
- initial_gas_mix = "ICEMOON_ATMOS"
- },
-/area/ruin)
-"dD" = (
-/obj/structure/girder,
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"dE" = (
-/obj/structure/door_assembly/door_assembly_eng,
-/turf/open/floor/plasteel/dark{
- initial_gas_mix = "ICEMOON_ATMOS"
- },
-/area/ruin)
-"em" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/atmos{
- name = "Atmospherics";
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/plasteel/dark{
- initial_gas_mix = "ICEMOON_ATMOS"
- },
-/area/ruin)
-"eS" = (
-/obj/structure/chair/plastic,
-/obj/effect/turf_decal/corner/opaque/red/diagonal,
-/turf/open/floor/plasteel/white,
-/area/ruin)
-"fr" = (
-/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
- },
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"fE" = (
-/obj/machinery/atmospherics/components/trinary/filter/flipped{
- dir = 8
- },
-/obj/effect/turf_decal/corner/transparent/neutral/full,
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"fU" = (
-/obj/effect/turf_decal/trimline/opaque/yellow/filled/line,
-/obj/item/kirbyplants/random,
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"gl" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 8
- },
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"gJ" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/table/reinforced,
-/obj/effect/turf_decal/corner/opaque/red/diagonal,
-/obj/item/stack/tape/industrial,
-/turf/open/floor/plasteel/white,
-/area/ruin)
-"he" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 1
- },
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"hE" = (
-/obj/machinery/atmospherics/pipe/simple/dark/visible{
- dir = 8
- },
-/obj/effect/turf_decal/corner/transparent/neutral/full,
-/obj/item/stack/tape/industrial,
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"hN" = (
-/obj/machinery/portable_atmospherics/pump,
-/obj/effect/turf_decal/box,
-/turf/open/floor/plasteel/dark{
- initial_gas_mix = "ICEMOON_ATMOS"
- },
-/area/ruin)
-"iq" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"js" = (
-/turf/open/floor/plating/asteroid/snow/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"jP" = (
-/turf/open/floor/plasteel/dark{
- initial_gas_mix = "ICEMOON_ATMOS"
- },
-/area/ruin)
-"kp" = (
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/plating/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"kD" = (
-/obj/machinery/power/rad_collector,
-/obj/structure/cable,
-/turf/open/floor/plating/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"lg" = (
-/obj/effect/turf_decal/corner/transparent/neutral/full,
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"rB" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating/ice/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"rG" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/visible{
- dir = 4
- },
-/obj/machinery/meter/atmos/distro_loop,
-/turf/open/floor/plating/icemoon,
-/area/ruin)
-"sT" = (
-/obj/machinery/pipedispenser,
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"va" = (
-/turf/closed/wall/r_wall,
-/area/ruin)
-"vn" = (
-/turf/open/floor/plating/snowed/smoothed/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"wA" = (
-/obj/effect/spawner/structure/window/plasma/reinforced,
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/obj/machinery/door/firedoor/border_only{
- dir = 1
- },
-/obj/machinery/door/firedoor/border_only,
-/turf/open/floor/plating/airless,
-/area/ruin)
-"xG" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"zK" = (
-/obj/machinery/power/emitter{
- dir = 1
- },
-/obj/effect/turf_decal/industrial/warning/cee,
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/plating/ice/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"zZ" = (
-/obj/effect/turf_decal/trimline/opaque/yellow/filled/corner{
- dir = 4
- },
-/obj/machinery/vending/cola/random,
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"De" = (
-/turf/closed/wall,
-/area/overmap_encounter/planetoid/ice/explored)
-"DH" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 1
- },
-/obj/effect/turf_decal/trimline/opaque/yellow/filled/corner{
- dir = 1
- },
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"Fc" = (
-/turf/closed/wall/ice,
-/area/overmap_encounter/planetoid/ice/explored)
-"Fg" = (
-/obj/effect/turf_decal/box,
-/obj/machinery/power/tesla_coil,
-/turf/open/floor/plasteel/dark{
- initial_gas_mix = "ICEMOON_ATMOS"
- },
-/area/ruin)
-"Fp" = (
-/obj/structure/table/reinforced,
-/obj/effect/turf_decal/corner/opaque/red/diagonal,
-/obj/item/storage/belt/utility,
-/obj/item/lightreplacer,
-/turf/open/floor/plasteel/white,
-/area/ruin)
-"Gx" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/structure/table/reinforced,
-/obj/effect/turf_decal/corner/opaque/red/diagonal,
-/obj/item/storage/toolbox/drone,
-/turf/open/floor/plasteel/white,
-/area/ruin)
-"GX" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/corner/opaque/red/diagonal,
-/turf/open/floor/plasteel/white,
-/area/ruin)
-"Ha" = (
-/obj/structure/table/reinforced,
-/obj/machinery/microwave,
-/obj/effect/turf_decal/corner/transparent/neutral/three_quarters{
- dir = 8
- },
-/turf/open/floor/plasteel/dark{
- initial_gas_mix = "ICEMOON_ATMOS"
- },
-/area/ruin)
-"Jh" = (
-/obj/item/stack/tape/industrial,
-/turf/open/floor/plating/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"Jq" = (
-/obj/machinery/atmospherics/pipe/manifold/dark/visible{
- dir = 4
- },
-/obj/effect/turf_decal/corner/transparent/neutral/full,
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"JM" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/effect/turf_decal/corner/opaque/red/diagonal,
-/turf/open/floor/plasteel/white,
-/area/ruin)
-"LM" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/plating/ice/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"Oz" = (
-/obj/machinery/airalarm/directional/west,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
- },
-/turf/open/floor/plasteel/icemoon,
-/area/ruin)
-"OH" = (
-/obj/structure/chair/plastic{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/red/diagonal,
-/turf/open/floor/plasteel/white,
-/area/ruin)
-"Pj" = (
-/obj/machinery/door/airlock/atmos{
- name = "Storage"
- },
-/turf/open/floor/plasteel/dark{
- initial_gas_mix = "ICEMOON_ATMOS"
- },
-/area/ruin)
-"Pn" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plating/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"PU" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/structure/chair/plastic{
- dir = 4
- },
-/obj/effect/turf_decal/corner/opaque/red/diagonal,
-/turf/open/floor/plasteel/white,
-/area/ruin)
-"Qj" = (
-/turf/closed/wall/ice,
-/area/ruin)
-"Qx" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/structure/table/reinforced,
-/obj/item/folder/red,
-/obj/item/pen{
- pixel_x = 6;
- pixel_y = 12
- },
-/obj/effect/turf_decal/corner/opaque/red/diagonal,
-/turf/open/floor/plasteel/white,
-/area/ruin)
-"QL" = (
-/turf/open/floor/plasteel/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"Rj" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/table/reinforced,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plasteel/white,
-/area/ruin)
-"RD" = (
-/obj/effect/decal/cleanable/blood/tracks,
-/obj/item/stack/tape/industrial,
-/turf/open/floor/plating/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"UO" = (
-/obj/machinery/space_heater,
-/obj/effect/turf_decal/box,
-/turf/open/floor/plasteel/dark{
- initial_gas_mix = "ICEMOON_ATMOS"
- },
-/area/ruin)
-"Xl" = (
-/obj/machinery/portable_atmospherics/scrubber,
-/obj/effect/turf_decal/box,
-/turf/open/floor/plasteel/dark{
- initial_gas_mix = "ICEMOON_ATMOS"
- },
-/area/ruin)
-"XP" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/layer_manifold{
- dir = 4
- },
-/turf/open/floor/plating/icemoon,
-/area/ruin)
-"Ym" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating/snowed/smoothed/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-
-(1,1,1) = {"
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-"}
-(2,1,1) = {"
-av
-av
-js
-Fc
-vn
-Fc
-vn
-vn
-vn
-js
-by
-bR
-bR
-ae
-ae
-ae
-ae
-ae
-aO
-av
-"}
-(3,1,1) = {"
-av
-av
-av
-js
-ao
-vn
-al
-al
-vn
-vn
-vn
-vn
-vn
-vn
-al
-al
-vn
-do
-ae
-av
-"}
-(4,1,1) = {"
-av
-av
-av
-js
-js
-js
-ao
-al
-al
-al
-al
-al
-al
-al
-al
-al
-vn
-xG
-Fc
-av
-"}
-(5,1,1) = {"
-av
-av
-av
-av
-js
-js
-js
-aH
-aH
-bc
-bc
-vn
-Ym
-Ym
-cC
-cT
-bS
-Pn
-aO
-av
-"}
-(6,1,1) = {"
-av
-av
-av
-av
-js
-js
-js
-js
-js
-js
-js
-js
-af
-al
-cD
-rB
-vn
-bC
-aO
-av
-"}
-(7,1,1) = {"
-av
-aa
-av
-av
-js
-js
-js
-js
-js
-bd
-js
-js
-js
-af
-cE
-LM
-dc
-bC
-ae
-av
-"}
-(8,1,1) = {"
-av
-vn
-vn
-js
-js
-js
-js
-aI
-js
-be
-js
-js
-js
-af
-af
-LM
-ag
-bC
-Fc
-av
-"}
-(9,1,1) = {"
-av
-ac
-vn
-vn
-ap
-js
-js
-js
-js
-bf
-bz
-js
-js
-af
-af
-LM
-kD
-dp
-ae
-av
-"}
-(10,1,1) = {"
-av
-vn
-vn
-vn
-ap
-al
-js
-js
-js
-js
-js
-bT
-js
-af
-vn
-LM
-dc
-dq
-Fc
-av
-"}
-(11,1,1) = {"
-av
-ad
-bS
-bS
-aq
-al
-al
-js
-js
-js
-bA
-js
-js
-af
-cE
-LM
-dc
-bC
-Fc
-av
-"}
-(12,1,1) = {"
-av
-vn
-vn
-vn
-ck
-al
-al
-aJ
-js
-js
-js
-js
-js
-js
-cF
-cU
-vn
-bC
-aO
-av
-"}
-(13,1,1) = {"
-av
-vn
-vn
-am
-ar
-at
-at
-at
-at
-dd
-bB
-bB
-bB
-at
-cG
-zK
-bS
-dr
-ae
-av
-"}
-(14,1,1) = {"
-av
-vn
-ah
-vn
-as
-au
-as
-RD
-as
-bh
-vn
-vn
-cg
-vn
-vn
-vn
-vn
-bC
-ae
-av
-"}
-(15,1,1) = {"
-av
-vn
-ai
-bC
-bC
-bC
-bC
-bC
-vn
-bh
-bC
-Jh
-kp
-bC
-bC
-bC
-bC
-ds
-ae
-av
-"}
-(16,1,1) = {"
-av
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-aO
-bi
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-av
-"}
-(17,1,1) = {"
-js
-js
-js
-js
-js
-js
-js
-va
-aP
-bj
-bD
-va
-av
-av
-av
-av
-av
-av
-av
-av
-"}
-(18,1,1) = {"
-js
-js
-js
-js
-js
-js
-js
-va
-iq
-bk
-he
-va
-av
-av
-av
-av
-av
-av
-av
-av
-"}
-(19,1,1) = {"
-js
-af
-js
-js
-js
-vn
-De
-va
-aQ
-bl
-aQ
-va
-aB
-aB
-aB
-aB
-aB
-aB
-av
-av
-"}
-(20,1,1) = {"
-js
-af
-af
-QL
-js
-js
-af
-aK
-aR
-bm
-bE
-bU
-ch
-ct
-cH
-Oz
-de
-aB
-av
-av
-"}
-(21,1,1) = {"
-js
-af
-QL
-QL
-af
-af
-QL
-bX
-aS
-GX
-PU
-bV
-ci
-aB
-cI
-gl
-df
-aB
-av
-av
-"}
-(22,1,1) = {"
-js
-js
-js
-af
-QL
-QL
-QL
-Fp
-Rj
-gJ
-Gx
-bW
-fU
-aQ
-cJ
-aj
-dg
-aB
-av
-av
-"}
-(23,1,1) = {"
-js
-vn
-js
-af
-QL
-QL
-QL
-bX
-aS
-bn
-JM
-bX
-cj
-aB
-aB
-aQ
-aB
-aB
-ab
-av
-"}
-(24,1,1) = {"
-js
-js
-af
-QL
-vn
-QL
-QL
-eS
-aT
-bo
-JM
-bX
-aj
-Ha
-cK
-cV
-aB
-dj
-Qj
-Qj
-"}
-(25,1,1) = {"
-av
-js
-af
-QL
-QL
-QL
-QL
-eS
-aU
-bp
-Qx
-bX
-aj
-aj
-aj
-cW
-dh
-dt
-dA
-Qj
-"}
-(26,1,1) = {"
-av
-av
-af
-af
-vn
-an
-QL
-bX
-OH
-bq
-bF
-bY
-fr
-fr
-cL
-cX
-di
-du
-dB
-dD
-"}
-(27,1,1) = {"
-av
-av
-av
-js
-js
-vn
-vn
-aL
-aC
-br
-bG
-bZ
-cl
-zZ
-cM
-cY
-aB
-dv
-dC
-dE
-"}
-(28,1,1) = {"
-av
-av
-av
-av
-vn
-vn
-vn
-aB
-va
-bs
-bH
-va
-aB
-cu
-cu
-aB
-dj
-Qj
-Qj
-dj
-"}
-(29,1,1) = {"
-av
-av
-av
-av
-va
-Fg
-Fg
-Xl
-va
-em
-bI
-va
-av
-av
-av
-av
-av
-av
-av
-Qj
-"}
-(30,1,1) = {"
-av
-av
-av
-av
-va
-jP
-jP
-jP
-Pj
-bt
-bJ
-va
-av
-av
-av
-av
-av
-av
-av
-Qj
-"}
-(31,1,1) = {"
-av
-av
-av
-av
-va
-hN
-UO
-UO
-va
-XP
-bK
-va
-va
-va
-va
-va
-av
-av
-av
-av
-"}
-(32,1,1) = {"
-av
-av
-av
-av
-va
-va
-va
-va
-va
-rG
-bL
-ca
-cm
-cv
-cN
-va
-va
-va
-va
-av
-"}
-(33,1,1) = {"
-av
-av
-av
-av
-va
-ax
-aD
-aM
-aV
-bu
-bM
-DH
-cn
-cw
-cO
-cZ
-dk
-dw
-va
-av
-"}
-(34,1,1) = {"
-av
-av
-av
-av
-va
-ay
-aE
-wA
-aW
-bv
-bN
-lg
-co
-cq
-cP
-wA
-dl
-dx
-va
-av
-"}
-(35,1,1) = {"
-av
-av
-av
-av
-va
-va
-va
-va
-aX
-bw
-bO
-cb
-cp
-cx
-cQ
-va
-va
-va
-va
-av
-"}
-(36,1,1) = {"
-av
-av
-av
-av
-va
-az
-aF
-aM
-aY
-aw
-hE
-cc
-cq
-cy
-cO
-da
-dm
-dy
-va
-av
-"}
-(37,1,1) = {"
-av
-av
-av
-av
-va
-aA
-aG
-wA
-aZ
-bv
-fE
-cd
-cr
-cz
-cR
-db
-dn
-dz
-va
-av
-"}
-(38,1,1) = {"
-av
-av
-av
-av
-va
-va
-va
-va
-ba
-bw
-bP
-ce
-Jq
-cA
-cS
-va
-va
-va
-va
-av
-"}
-(39,1,1) = {"
-av
-av
-av
-av
-av
-av
-av
-va
-bb
-bx
-bQ
-cf
-cs
-cB
-sT
-va
-av
-av
-av
-av
-"}
-(40,1,1) = {"
-av
-av
-av
-av
-av
-av
-av
-va
-va
-va
-va
-va
-va
-va
-va
-va
-av
-av
-av
-av
-"}
diff --git a/_maps/RandomRuins/IceRuins/icemoon_underground_abandoned_newcops.dmm b/_maps/RandomRuins/IceRuins/icemoon_underground_abandoned_newcops.dmm
deleted file mode 100644
index bf034757b5a..00000000000
--- a/_maps/RandomRuins/IceRuins/icemoon_underground_abandoned_newcops.dmm
+++ /dev/null
@@ -1,2434 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"aF" = (
-/obj/machinery/door/airlock/centcom{
- name = "Dormitories";
- req_access_txt = "150";
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood,
-/area/ruin/powered)
-"bf" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/holopad/emergency/command,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"bF" = (
-/obj/machinery/computer/mech_bay_power_console,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"bH" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"bV" = (
-/obj/machinery/door/airlock/external{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"ch" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood{
- icon_state = "wood-broken4"
- },
-/area/ruin/powered)
-"cl" = (
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/obj/item/clothing/head/helmet/space/syndicate,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"cn" = (
-/obj/structure/table,
-/obj/item/toy/talking/AI,
-/obj/effect/turf_decal/corner/opaque/red{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/red{
- dir = 4
- },
-/obj/effect/turf_decal/corner/opaque/red{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"cu" = (
-/obj/machinery/door/airlock/centcom{
- name = "Dormitories";
- req_access_txt = "150";
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood,
-/area/ruin/powered)
-"dm" = (
-/obj/structure/table,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"dX" = (
-/obj/structure/table/wood,
-/obj/structure/frame/machine,
-/obj/item/stack/cable_coil/cut,
-/obj/item/circuitboard/machine/chem_dispenser/drinks/beer,
-/turf/open/floor/wood{
- icon_state = "wood-broken7"
- },
-/area/ruin/powered)
-"eu" = (
-/obj/item/circuitboard/machine/mech_recharger,
-/obj/structure/frame/machine,
-/obj/item/stack/cable_coil/cut,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"eX" = (
-/obj/machinery/door/airlock/centcom{
- name = "Air Traffic Control";
- req_access_txt = "150"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"fa" = (
-/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium,
-/turf/open/floor/plating/airless,
-/area/ruin/powered)
-"fb" = (
-/obj/structure/girder,
-/obj/item/stack/telecrystal,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"fL" = (
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/obj/machinery/vending/cigarette,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"fP" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"gj" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"gp" = (
-/turf/template_noop,
-/area/template_noop)
-"gt" = (
-/obj/item/clothing/mask/gas/syndicate,
-/obj/item/mining_scanner,
-/obj/item/pickaxe,
-/obj/structure/closet/syndicate,
-/obj/item/tank/internals/emergency_oxygen/engi,
-/obj/item/clothing/suit/hooded/wintercoat,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"gZ" = (
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/obj/structure/chair/stool,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"ha" = (
-/obj/item/reagent_containers/food/drinks/shaker,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood{
- icon_state = "wood-broken3"
- },
-/area/ruin/powered)
-"ic" = (
-/obj/machinery/vending/boozeomat,
-/turf/open/floor/wood,
-/area/ruin/powered)
-"ij" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/wood{
- icon_state = "wood-broken3"
- },
-/area/ruin/powered)
-"iB" = (
-/obj/structure/table,
-/obj/effect/turf_decal/corner/opaque/red{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/red{
- dir = 4
- },
-/obj/effect/turf_decal/corner/opaque/red,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"iD" = (
-/obj/structure/closet/cardboard/metal,
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"iR" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"iS" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/item/rack_parts,
-/obj/item/clothing/suit/space/syndicate,
-/obj/item/clothing/head/helmet/space/syndicate,
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/powered)
-"iY" = (
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/obj/machinery/vending/toyliberationstation,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"jp" = (
-/obj/effect/spawner/lootdrop/maintenance/two,
-/obj/structure/closet/syndicate,
-/obj/item/flashlight/flare,
-/obj/item/toy/crayon/spraycan,
-/obj/effect/turf_decal/box/red,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"jI" = (
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/obj/structure/table/wood,
-/obj/item/paicard,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"jK" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"jX" = (
-/obj/structure/table/wood,
-/obj/structure/frame/machine,
-/obj/item/stack/cable_coil/cut,
-/obj/item/circuitboard/machine/chem_dispenser/drinks,
-/turf/open/floor/wood{
- icon_state = "wood-broken7"
- },
-/area/ruin/powered)
-"ke" = (
-/obj/structure/table/wood,
-/obj/item/storage/box/syndie_kit/sleepytime,
-/obj/machinery/light/directional/east,
-/turf/open/floor/wood,
-/area/ruin/powered)
-"kj" = (
-/obj/item/shard{
- icon_state = "tiny"
- },
-/obj/item/shard{
- icon_state = "small";
- pixel_x = 6;
- pixel_y = 5
- },
-/obj/item/stack/cable_coil/cut,
-/obj/item/shard{
- pixel_x = -4;
- pixel_y = 3
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood,
-/area/ruin/powered)
-"kS" = (
-/obj/effect/spawner/lootdrop/maintenance/two,
-/obj/structure/closet/syndicate,
-/obj/item/megaphone/sec{
- name = "syndicate megaphone"
- },
-/obj/item/toy/sword,
-/obj/item/toy/sword,
-/obj/effect/turf_decal/box/red,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"kT" = (
-/obj/structure/door_assembly/door_assembly_centcom,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"lw" = (
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"lN" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/light_construct/directional/south,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"mc" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/rack,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"mz" = (
-/obj/item/toy/cards/deck/syndicate{
- pixel_x = -6;
- pixel_y = 6
- },
-/obj/structure/table_frame/wood,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"mE" = (
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"nm" = (
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"ok" = (
-/obj/structure/table/wood,
-/obj/item/radio{
- icon_state = "radio"
- },
-/turf/open/floor/wood{
- icon_state = "wood-broken6"
- },
-/area/ruin/powered)
-"ot" = (
-/obj/structure/toilet{
- dir = 8
- },
-/obj/structure/window/reinforced/tinted{
- dir = 1
- },
-/obj/machinery/door/window{
- dir = 8;
- icon_state = "right";
- name = "Tactical Toilet";
- opacity = 1
- },
-/turf/open/floor/plasteel/freezer,
-/area/ruin/powered)
-"oU" = (
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"ps" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/wood,
-/area/ruin/powered)
-"pW" = (
-/obj/machinery/vending/tool,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"qi" = (
-/obj/structure/frame/computer,
-/obj/effect/turf_decal/corner/opaque/red{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/red{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"qt" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood,
-/area/ruin/powered)
-"rv" = (
-/turf/open/floor/plating/asteroid/snow/icemoon,
-/area/template_noop)
-"rG" = (
-/turf/open/floor/plating/asteroid/snow/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"sf" = (
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/obj/structure/table/wood,
-/obj/item/chair/stool,
-/obj/effect/gibspawner/human,
-/obj/item/disk/nuclear/fake,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"so" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/wood{
- icon_state = "wood-broken5"
- },
-/area/ruin/powered)
-"sW" = (
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/obj/effect/gibspawner/human,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"tg" = (
-/obj/structure/table_frame/wood,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood{
- icon_state = "wood-broken5"
- },
-/area/ruin/powered)
-"tr" = (
-/obj/machinery/washing_machine,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/freezer,
-/area/ruin/powered)
-"tt" = (
-/obj/item/toy/nuke,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood,
-/area/ruin/powered)
-"tJ" = (
-/obj/machinery/door/poddoor/shuttledock{
- dir = 4
- },
-/obj/structure/fans/tiny,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"tP" = (
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/obj/structure/frame/computer,
-/obj/item/shard{
- icon_state = "tiny"
- },
-/obj/item/shard{
- pixel_x = -6;
- pixel_y = -5
- },
-/obj/item/shard{
- icon_state = "medium"
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"tS" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"ud" = (
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/obj/item/kirbyplants/random,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"ux" = (
-/obj/item/chair/stool,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"vk" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/obj/structure/table,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/powered)
-"vw" = (
-/obj/structure/bed,
-/obj/item/bedsheet/syndie{
- layer = 3
- },
-/turf/open/floor/wood{
- icon_state = "wood-broken7"
- },
-/area/ruin/powered)
-"vH" = (
-/obj/item/storage/box/syndie_kit/sleepytime,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood,
-/area/ruin/powered)
-"vV" = (
-/turf/closed/wall/mineral/plastitanium/nodiagonal,
-/area/ruin/powered)
-"wO" = (
-/obj/structure/closet/syndicate,
-/obj/effect/spawner/lootdrop/maintenance/two,
-/obj/item/card/id/syndicate/anyone,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"xa" = (
-/obj/structure/frame/computer,
-/turf/open/floor/plating/airless,
-/area/ruin/powered)
-"xn" = (
-/obj/machinery/door/airlock/external{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"xA" = (
-/obj/structure/chair/office{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"xB" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/obj/structure/closet/syndicate,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/powered)
-"yB" = (
-/obj/effect/turf_decal/industrial/warning/corner,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"yO" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood{
- icon_state = "wood-broken3"
- },
-/area/ruin/powered)
-"yW" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood{
- icon_state = "wood-broken"
- },
-/area/ruin/powered)
-"zj" = (
-/obj/structure/sink{
- dir = 8;
- pixel_x = 11
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"zI" = (
-/obj/structure/frame/computer,
-/obj/effect/turf_decal/corner/opaque/red{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/red{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"zL" = (
-/obj/structure/girder,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"zU" = (
-/obj/structure/mirror{
- pixel_x = 28
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/freezer,
-/area/ruin/powered)
-"Ai" = (
-/obj/machinery/button/door/indestructible{
- id = "abandonednewcopshuttle";
- name = "mission launch control";
- pixel_x = -26
- },
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/item/broken_bottle,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"AE" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"AW" = (
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/obj/structure/chair/stool,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Bd" = (
-/obj/structure/marker_beacon{
- picked_color = "Burgundy"
- },
-/turf/open/floor/plating/asteroid/snow/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"Bo" = (
-/obj/item/documents/syndicate,
-/obj/item/clothing/gloves/krav_maga/combatglovesplus,
-/obj/structure/safe,
-/obj/item/gun/ballistic/automatic/pistol,
-/turf/open/floor/wood,
-/area/ruin/powered)
-"Br" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 10
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"BS" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 5
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Cd" = (
-/obj/structure/girder,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Cs" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood,
-/area/ruin/powered)
-"CU" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"CV" = (
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Di" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Ds" = (
-/turf/closed/wall/mineral/plastitanium,
-/area/ruin/powered)
-"Dv" = (
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"DG" = (
-/obj/structure/urinal{
- pixel_y = 28
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/freezer,
-/area/ruin/powered)
-"Ec" = (
-/obj/machinery/door/poddoor/shuttledock{
- name = "Stolen Shuttle Storage"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Ez" = (
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/obj/item/broken_bottle{
- pixel_x = 3;
- pixel_y = 5
- },
-/obj/item/shard,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"EV" = (
-/obj/machinery/light/small/directional/west{
- brightness = 3
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/freezer,
-/area/ruin/powered)
-"Fb" = (
-/obj/structure/closet/syndicate,
-/obj/item/clothing/shoes/jackboots,
-/obj/item/clothing/glasses/night,
-/obj/item/radio/headset,
-/obj/item/kitchen/knife/combat/survival,
-/obj/item/radio{
- icon_state = "radio"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/item/clothing/under/color/black,
-/turf/open/floor/wood,
-/area/ruin/powered)
-"Fh" = (
-/obj/machinery/door/airlock/centcom{
- name = "Auxiliary Dock";
- req_access_txt = ""
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Fo" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Fr" = (
-/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"FL" = (
-/obj/structure/flora/bush,
-/turf/open/floor/plating/asteroid/snow/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"GU" = (
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/obj/item/paper/fluff/stations/centcom/disk_memo,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Ha" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Hy" = (
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/obj/machinery/light/directional/west,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"HB" = (
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/gibspawner/human,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"IG" = (
-/obj/effect/turf_decal/industrial/warning,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Je" = (
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"JE" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood{
- icon_state = "wood-broken6"
- },
-/area/ruin/powered)
-"JN" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/obj/structure/closet/syndicate,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/spawner/lootdrop/maintenance/two,
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/powered)
-"Kk" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/obj/structure/closet/syndicate,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/spawner/lootdrop/maintenance/two,
-/obj/item/ammo_box/magazine/m10mm,
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/powered)
-"Ko" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Kx" = (
-/obj/item/soap/syndie,
-/obj/machinery/light/small/directional/north,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"KJ" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"KN" = (
-/obj/structure/table/wood,
-/obj/item/toy/plush/nukeplushie,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood,
-/area/ruin/powered)
-"KZ" = (
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Lh" = (
-/obj/item/bedsheet/syndie,
-/obj/structure/bed,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood,
-/area/ruin/powered)
-"Lq" = (
-/obj/structure/fans/tiny,
-/obj/machinery/door/poddoor/shuttledock{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Lt" = (
-/obj/structure/light_construct/directional/south,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood{
- icon_state = "wood-broken"
- },
-/area/ruin/powered)
-"LA" = (
-/obj/structure/rack,
-/obj/item/clothing/suit/space/syndicate,
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/powered)
-"LL" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"LP" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"LR" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/holopad/emergency/bar,
-/turf/open/floor/wood,
-/area/ruin/powered)
-"LU" = (
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Ml" = (
-/obj/structure/closet/syndicate,
-/obj/item/toy/figure/syndie,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"PH" = (
-/obj/machinery/door/airlock/centcom{
- name = "Dormitories";
- req_access_txt = "150";
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood{
- icon_state = "wood-broken4"
- },
-/area/ruin/powered)
-"Qb" = (
-/obj/structure/closet/syndicate,
-/obj/item/tank/internals/emergency_oxygen/engi,
-/obj/item/clothing/suit/hooded/wintercoat,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Qf" = (
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/obj/item/chair/stool,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"QT" = (
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/obj/machinery/vending/coffee,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Rj" = (
-/obj/machinery/door/poddoor/shutters{
- id = "abandonednewcopshuttle";
- name = "Shuttle Dock";
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Ro" = (
-/obj/structure/table/wood,
-/obj/item/storage/box/syndie_kit/sleepytime,
-/turf/open/floor/wood,
-/area/ruin/powered)
-"Rx" = (
-/obj/machinery/door/airlock/centcom{
- name = "Dormitories";
- req_access_txt = "150";
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood{
- icon_state = "wood-broken5"
- },
-/area/ruin/powered)
-"Si" = (
-/obj/structure/table/wood,
-/obj/item/storage/box/drinkingglasses,
-/obj/item/shard{
- icon_state = "small"
- },
-/turf/open/floor/wood,
-/area/ruin/powered)
-"Ss" = (
-/obj/effect/turf_decal/industrial/warning,
-/obj/machinery/light/directional/north,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"SN" = (
-/obj/structure/table/wood,
-/obj/item/storage/box/syndie_kit/sleepytime,
-/obj/machinery/light/directional/west,
-/turf/open/floor/wood{
- icon_state = "wood-broken6"
- },
-/area/ruin/powered)
-"SQ" = (
-/obj/machinery/vending/cola,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Uf" = (
-/obj/item/bedsheet/syndie,
-/obj/structure/bed,
-/turf/open/floor/wood{
- icon_state = "wood-broken7"
- },
-/area/ruin/powered)
-"Ut" = (
-/obj/item/chair/stool,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"VK" = (
-/obj/structure/table/wood,
-/obj/item/chair/stool,
-/obj/item/storage/photo_album/syndicate{
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/item/camera{
- pixel_x = -2
- },
-/turf/open/floor/wood,
-/area/ruin/powered)
-"VM" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/obj/machinery/light/directional/south,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"VT" = (
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/obj/structure/bed/dogbed/cayenne,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Wp" = (
-/obj/effect/decal/cleanable/dirt,
-/mob/living/simple_animal/hostile/syndicate/ranged/shotgun/space,
-/turf/open/floor/plasteel/freezer,
-/area/ruin/powered)
-"Ws" = (
-/obj/item/clothing/mask/gas/syndicate,
-/obj/item/mining_scanner,
-/obj/item/pickaxe,
-/obj/structure/closet/syndicate,
-/obj/item/tank/internals/emergency_oxygen/engi,
-/obj/item/clothing/suit/hooded/wintercoat,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/directional/north,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"Wt" = (
-/turf/open/floor/plating,
-/area/ruin/powered)
-"WE" = (
-/obj/machinery/door/airlock/centcom{
- name = "Dormitories";
- req_access_txt = "150"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"WI" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood{
- icon_state = "wood-broken"
- },
-/area/ruin/powered)
-"WM" = (
-/obj/machinery/door/airlock/external{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"WV" = (
-/obj/structure/flora/grass/both,
-/turf/open/floor/plating/asteroid/snow/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"WW" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/wood,
-/area/ruin/powered)
-"WY" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"Xk" = (
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/obj/structure/light_construct/directional/east,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Xn" = (
-/obj/structure/flora/tree/pine,
-/turf/open/floor/plating/asteroid/snow/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"XN" = (
-/obj/machinery/light/directional/south,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"YJ" = (
-/obj/machinery/door/airlock/centcom{
- name = "Restroom";
- req_access_txt = "150";
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"YQ" = (
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"YU" = (
-/obj/structure/mecha_wreckage/mauler,
-/obj/machinery/light/directional/north,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/ruin/powered)
-"Zc" = (
-/obj/structure/closet/cardboard,
-/obj/effect/turf_decal/industrial/warning/corner,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Zk" = (
-/obj/item/bedsheet/syndie,
-/obj/structure/bed,
-/turf/open/floor/wood,
-/area/ruin/powered)
-"ZL" = (
-/obj/machinery/door/airlock/centcom{
- name = "EVA Equipment";
- req_access_txt = "150";
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"ZN" = (
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/obj/machinery/light/directional/south,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"ZU" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"ZZ" = (
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/obj/structure/table/wood,
-/obj/item/storage/crayons{
- pixel_x = -2;
- pixel_y = 5
- },
-/obj/item/storage/crayons{
- pixel_x = 2;
- pixel_y = 5
- },
-/obj/item/pizzabox/bomb,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-
-(1,1,1) = {"
-gp
-gp
-gp
-gp
-gp
-gp
-gp
-gp
-gp
-Bd
-rG
-Bd
-rG
-Bd
-rG
-Bd
-rG
-Bd
-rG
-Bd
-rG
-Bd
-rG
-Bd
-rG
-Bd
-gp
-gp
-gp
-gp
-gp
-gp
-"}
-(2,1,1) = {"
-gp
-gp
-gp
-gp
-gp
-gp
-gp
-gp
-gp
-rG
-rG
-rG
-rG
-rG
-rG
-rG
-rG
-rG
-rG
-rG
-rG
-rG
-rG
-rG
-rG
-rG
-gp
-gp
-gp
-gp
-gp
-gp
-"}
-(3,1,1) = {"
-gp
-gp
-gp
-gp
-gp
-gp
-gp
-gp
-gp
-Bd
-rG
-rG
-rG
-rG
-rG
-rG
-rG
-rG
-rG
-rG
-rG
-rG
-rG
-rG
-rG
-Bd
-gp
-gp
-gp
-gp
-gp
-gp
-"}
-(4,1,1) = {"
-gp
-gp
-gp
-gp
-gp
-gp
-gp
-gp
-gp
-rG
-rG
-rG
-rG
-rG
-rG
-rG
-rG
-rG
-rG
-rG
-rG
-rG
-rG
-rG
-rG
-rG
-gp
-gp
-gp
-gp
-gp
-gp
-"}
-(5,1,1) = {"
-gp
-gp
-gp
-gp
-gp
-gp
-gp
-gp
-gp
-Bd
-rG
-rG
-rG
-rG
-rG
-rG
-rG
-rG
-rG
-rG
-rG
-rG
-rG
-rG
-rG
-Bd
-gp
-gp
-gp
-gp
-gp
-gp
-"}
-(6,1,1) = {"
-gp
-gp
-gp
-gp
-gp
-gp
-gp
-gp
-gp
-rG
-rG
-rG
-rG
-rG
-rG
-rG
-rG
-rG
-rG
-rG
-rG
-rG
-rG
-rG
-rG
-rG
-gp
-gp
-gp
-gp
-gp
-gp
-"}
-(7,1,1) = {"
-gp
-gp
-gp
-gp
-gp
-gp
-gp
-gp
-gp
-Bd
-rG
-rG
-rG
-rG
-rG
-rG
-rG
-rG
-rG
-rG
-rG
-rG
-rG
-rG
-rG
-Bd
-gp
-gp
-gp
-gp
-gp
-gp
-"}
-(8,1,1) = {"
-gp
-gp
-gp
-gp
-gp
-gp
-gp
-gp
-gp
-rG
-rG
-rG
-rG
-rG
-rG
-rG
-rG
-rG
-rG
-rG
-rG
-rG
-rG
-rG
-rG
-rG
-rG
-gp
-gp
-gp
-gp
-gp
-"}
-(9,1,1) = {"
-gp
-gp
-gp
-gp
-gp
-gp
-rG
-rG
-rG
-Bd
-rG
-Bd
-rG
-Bd
-rG
-Bd
-rG
-Bd
-rG
-Bd
-rG
-Bd
-rG
-Bd
-rG
-Bd
-rG
-rG
-gp
-gp
-gp
-gp
-"}
-(10,1,1) = {"
-gp
-gp
-rG
-rG
-Xn
-rG
-FL
-rG
-WV
-rG
-rG
-rG
-rG
-WV
-rG
-rG
-rG
-Fr
-xn
-Fr
-rG
-Xn
-WV
-rG
-rG
-rG
-Xn
-rG
-gp
-gp
-gp
-gp
-"}
-(11,1,1) = {"
-vV
-vV
-vV
-vV
-rG
-rG
-rG
-rG
-rG
-rG
-FL
-rG
-rG
-rG
-rG
-WV
-rG
-Fr
-LP
-Fr
-rG
-rG
-rG
-rG
-WV
-rG
-rG
-rG
-rG
-gp
-gp
-gp
-"}
-(12,1,1) = {"
-Ec
-bH
-LP
-vV
-rG
-rG
-rG
-WV
-WV
-rG
-Xn
-rG
-rG
-Xn
-rG
-rG
-rG
-Fr
-bV
-Fr
-rG
-rG
-rG
-rG
-rG
-rG
-rG
-WV
-rG
-gp
-gp
-gp
-"}
-(13,1,1) = {"
-Ec
-bH
-lw
-vV
-FL
-FL
-rG
-rG
-rG
-rG
-rG
-rG
-rG
-vV
-vV
-vV
-vV
-vV
-Rj
-vV
-vV
-vV
-vV
-Xn
-rG
-rG
-WV
-rG
-rG
-gp
-gp
-gp
-"}
-(14,1,1) = {"
-Ec
-bH
-LP
-vV
-rG
-rG
-rG
-rG
-rG
-WV
-rG
-FL
-vV
-vV
-tP
-Ut
-Hy
-LU
-LP
-Ai
-Si
-Lt
-vV
-vV
-vV
-Fr
-vV
-vV
-Xn
-gp
-gp
-gp
-"}
-(15,1,1) = {"
-Ec
-bH
-XN
-vV
-rG
-rG
-rG
-Xn
-rG
-rG
-rG
-rG
-Fr
-fL
-LP
-Je
-mE
-AW
-LP
-AW
-KN
-ha
-tg
-vV
-iS
-mc
-LA
-vV
-rG
-gp
-gp
-gp
-"}
-(16,1,1) = {"
-Ec
-iR
-LP
-vV
-rG
-Xn
-rG
-rG
-rG
-rG
-rG
-rG
-Fr
-lw
-LP
-AW
-jI
-sf
-Je
-Ut
-tg
-LR
-ic
-vV
-Qb
-WY
-WY
-vV
-rG
-gp
-gp
-gp
-"}
-(17,1,1) = {"
-Ec
-bH
-LP
-Cd
-vV
-Fr
-Fr
-Fr
-vV
-vV
-vV
-vV
-Cd
-Je
-GU
-LP
-ZZ
-mz
-Ez
-gZ
-ok
-tt
-jX
-vV
-Ws
-lw
-LP
-vV
-rG
-gp
-gp
-gp
-"}
-(18,1,1) = {"
-Ec
-iR
-LP
-LP
-LP
-LP
-LP
-LP
-LP
-LP
-LP
-Wt
-Fh
-Xk
-lw
-Je
-Je
-cl
-LP
-VT
-VK
-kj
-dX
-vV
-gt
-LP
-LL
-vV
-WV
-gp
-gp
-gp
-"}
-(19,1,1) = {"
-Ec
-bH
-LP
-vV
-vV
-Fr
-Fr
-Fr
-vV
-Cd
-vV
-vV
-vV
-Cd
-QT
-sW
-LP
-Qf
-Je
-Je
-LP
-Je
-Cd
-vV
-Fr
-ZL
-Cd
-vV
-rG
-rG
-gp
-gp
-"}
-(20,1,1) = {"
-Ec
-bH
-LP
-vV
-rG
-WV
-rG
-Xn
-rG
-WV
-rG
-rG
-WV
-vV
-SQ
-KZ
-Je
-iY
-LP
-Je
-lw
-HB
-kT
-ZU
-LP
-ZU
-xB
-vV
-rG
-Xn
-gp
-gp
-"}
-(21,1,1) = {"
-Ec
-jK
-XN
-vV
-rG
-Xn
-rG
-rG
-rG
-rG
-rG
-Xn
-rG
-vV
-vV
-Cd
-YJ
-vV
-Cd
-ud
-Je
-ZN
-Cd
-LP
-oU
-ZU
-Ml
-Fr
-rG
-rG
-gp
-gp
-"}
-(22,1,1) = {"
-Ec
-bH
-LP
-vV
-rG
-rG
-Xn
-rG
-rG
-WV
-rG
-rG
-rG
-vV
-Ds
-DG
-LP
-EV
-vV
-Fr
-WM
-Fr
-Cd
-eu
-LP
-LP
-Kk
-Fr
-rG
-rG
-gp
-gp
-"}
-(23,1,1) = {"
-Ec
-bH
-LP
-vV
-WV
-rG
-rG
-WV
-rG
-rG
-Xn
-rG
-rG
-vV
-Kx
-tS
-Wp
-ot
-Cd
-Fr
-Wt
-Fr
-vV
-YU
-LL
-ZU
-JN
-Fr
-rG
-rG
-gp
-gp
-"}
-(24,1,1) = {"
-Ec
-bH
-LP
-vV
-rG
-Xn
-rG
-rG
-Xn
-rG
-rG
-Xn
-WV
-Fr
-tr
-zU
-zj
-vV
-Cd
-Fr
-LP
-Fr
-Cd
-bF
-oU
-LP
-wO
-Fr
-rG
-WV
-gp
-gp
-"}
-(25,1,1) = {"
-vV
-vV
-vV
-vV
-rG
-rG
-WV
-rG
-rG
-WV
-rG
-rG
-rG
-vV
-vV
-vV
-vV
-fb
-vV
-Fr
-Di
-Fr
-vV
-pW
-Di
-ux
-vk
-vV
-rG
-Xn
-gp
-gp
-"}
-(26,1,1) = {"
-gp
-gp
-gp
-gp
-rG
-rG
-rG
-Xn
-rG
-rG
-Xn
-rG
-rG
-rG
-rG
-vV
-vV
-vV
-Cd
-Fr
-Wt
-Fr
-vV
-vV
-vV
-vV
-Cd
-vV
-vV
-vV
-vV
-vV
-"}
-(27,1,1) = {"
-gp
-gp
-gp
-gp
-gp
-rG
-rG
-rG
-WV
-rG
-rG
-rG
-Xn
-rG
-rG
-vV
-Wt
-LP
-Wt
-Fr
-bV
-Fr
-Wt
-Wt
-LP
-vV
-Uf
-yO
-Cd
-yW
-Lh
-vV
-"}
-(28,1,1) = {"
-gp
-gp
-gp
-gp
-gp
-gp
-rv
-Xn
-rG
-rG
-rG
-Xn
-rG
-rG
-Xn
-vV
-LP
-Zc
-KJ
-CU
-CU
-CU
-CU
-iD
-LP
-vV
-ke
-Cs
-vV
-vH
-Bo
-vV
-"}
-(29,1,1) = {"
-gp
-gp
-gp
-gp
-gp
-gp
-gp
-rG
-rG
-WV
-rG
-rG
-rG
-rG
-rG
-vV
-yB
-Ha
-LP
-Wt
-mE
-Wt
-Wt
-BS
-CV
-vV
-Ds
-PH
-vV
-aF
-vV
-vV
-"}
-(30,1,1) = {"
-gp
-gp
-gp
-gp
-gp
-gp
-gp
-gp
-rG
-rG
-Xn
-rG
-WV
-rG
-rG
-vV
-IG
-LP
-LP
-LP
-LP
-LP
-LP
-Wt
-bH
-WE
-WW
-ps
-ij
-ch
-Fb
-fa
-"}
-(31,1,1) = {"
-gp
-gp
-gp
-gp
-gp
-gp
-gp
-gp
-vV
-vV
-fa
-fa
-fa
-vV
-vV
-vV
-Ss
-lw
-Wt
-Di
-LP
-LP
-lw
-LP
-VM
-vV
-qt
-so
-Cs
-ps
-Fb
-fa
-"}
-(32,1,1) = {"
-gp
-gp
-gp
-gp
-gp
-gp
-gp
-gp
-fa
-cn
-dm
-jp
-ZU
-LP
-Wt
-Cd
-IG
-LP
-LP
-LP
-LP
-LP
-LP
-LP
-bH
-Cd
-zL
-cu
-zL
-Rx
-vV
-vV
-"}
-(33,1,1) = {"
-gp
-gp
-gp
-gp
-gp
-gp
-gp
-gp
-fa
-zI
-xA
-LP
-ZU
-lw
-ZU
-Cd
-IG
-LP
-LP
-LP
-lw
-LP
-Wt
-Wt
-AE
-vV
-Ro
-WI
-vV
-Cs
-SN
-vV
-"}
-(34,1,1) = {"
-gp
-gp
-gp
-gp
-gp
-gp
-gp
-gp
-fa
-xa
-Di
-bf
-LP
-ZU
-LP
-eX
-IG
-LP
-mE
-LP
-LP
-LP
-LP
-Wt
-gj
-Cd
-Zk
-Cs
-vV
-JE
-vw
-vV
-"}
-(35,1,1) = {"
-gp
-gp
-gp
-gp
-gp
-gp
-gp
-gp
-fa
-qi
-xA
-ZU
-LP
-ZU
-lN
-vV
-nm
-Br
-LP
-LP
-LP
-LP
-Di
-fP
-YQ
-vV
-vV
-vV
-vV
-vV
-vV
-vV
-"}
-(36,1,1) = {"
-gp
-gp
-gp
-gp
-gp
-gp
-gp
-gp
-fa
-iB
-dm
-kS
-ZU
-LP
-LP
-vV
-LP
-Dv
-Fo
-Ko
-Fo
-Ko
-Ko
-YQ
-LP
-vV
-gp
-gp
-gp
-gp
-gp
-gp
-"}
-(37,1,1) = {"
-gp
-gp
-gp
-gp
-gp
-gp
-gp
-gp
-vV
-vV
-fa
-fa
-fa
-vV
-vV
-vV
-tJ
-Lq
-Lq
-Lq
-Lq
-Lq
-Lq
-Lq
-Lq
-vV
-gp
-gp
-gp
-gp
-gp
-gp
-"}
diff --git a/_maps/RandomRuins/IceRuins/icemoon_underground_abandoned_village.dmm b/_maps/RandomRuins/IceRuins/icemoon_underground_abandoned_village.dmm
index 946d28dc1a1..aabd7f47699 100644
--- a/_maps/RandomRuins/IceRuins/icemoon_underground_abandoned_village.dmm
+++ b/_maps/RandomRuins/IceRuins/icemoon_underground_abandoned_village.dmm
@@ -101,9 +101,6 @@
"la" = (
/obj/effect/decal/cleanable/blood/gibs/up,
/obj/effect/mob_spawn/human/corpse/assistant,
-/mob/living/simple_animal/hostile/skeleton/eskimo{
- name = "Village Hunter"
- },
/turf/open/floor/plating/asteroid/snow/icemoon,
/area/overmap_encounter/planetoid/cave/explored)
"lg" = (
@@ -178,8 +175,8 @@
/turf/open/floor/plating/asteroid/snow/icemoon,
/area/overmap_encounter/planetoid/cave/explored)
"pP" = (
-/obj/structure/chair/sofa/brown/left/directional/north,
/obj/effect/decal/cleanable/dirt,
+/obj/structure/chair/sofa/brown/right/directional/north,
/turf/open/floor/wood,
/area/ruin/powered)
"pV" = (
@@ -309,7 +306,7 @@
/turf/open/floor/carpet,
/area/ruin/powered)
"yb" = (
-/obj/structure/chair/sofa/brown/right/directional/north,
+/obj/structure/chair/sofa/brown/left/directional/north,
/turf/open/floor/wood,
/area/ruin/powered)
"yS" = (
@@ -486,7 +483,7 @@
/area/ruin/powered)
"PQ" = (
/obj/effect/decal/cleanable/blood/splatter,
-/mob/living/simple_animal/hostile/frontier/ranged/trooper,
+/mob/living/simple_animal/hostile/human/frontier/ranged/trooper,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/wood,
/area/ruin/powered)
diff --git a/_maps/RandomRuins/IceRuins/icemoon_underground_brazillianlab.dmm b/_maps/RandomRuins/IceRuins/icemoon_underground_brazillianlab.dmm
index 7fde8785482..4954a9a5aaf 100644
--- a/_maps/RandomRuins/IceRuins/icemoon_underground_brazillianlab.dmm
+++ b/_maps/RandomRuins/IceRuins/icemoon_underground_brazillianlab.dmm
@@ -55,7 +55,7 @@
/turf/open/floor/plating/asteroid/snow/icemoon,
/area/overmap_encounter/planetoid/cave/explored)
"ct" = (
-/mob/living/simple_animal/hostile/asteroid/whitesands/ranged/hunter{
+/mob/living/simple_animal/hostile/human/hermit/ranged/hunter{
faction = list("brazillian")
},
/turf/open/floor/wood{
@@ -88,7 +88,7 @@
/area/ruin/unpowered)
"fB" = (
/obj/structure/chair/stool/bar,
-/mob/living/simple_animal/hostile/asteroid/whitesands/survivor{
+/mob/living/simple_animal/hostile/human/hermit/survivor{
desc = " A wild-eyed figure, wearing tattered mining equipment and boasting a malformed body.";
faction = list("brazillian")
},
@@ -101,7 +101,7 @@
/turf/open/floor/plating/asteroid/snow/icemoon,
/area/ruin/unpowered)
"gH" = (
-/mob/living/simple_animal/hostile/asteroid/whitesands/ranged/gunslinger{
+/mob/living/simple_animal/hostile/human/hermit/ranged/gunslinger{
faction = list("brazillian")
},
/turf/open/floor/carpet/green{
@@ -117,7 +117,7 @@
"hp" = (
/obj/item/stack/cable_coil,
/obj/effect/decal/cleanable/dirt,
-/mob/living/simple_animal/hostile/asteroid/whitesands/ranged/hunter{
+/mob/living/simple_animal/hostile/human/hermit/ranged/hunter{
faction = list("brazillian")
},
/turf/open/floor/wood{
@@ -128,7 +128,7 @@
/turf/closed/wall/mineral/wood/nonmetal,
/area/overmap_encounter/planetoid/cave/explored)
"ht" = (
-/mob/living/simple_animal/hostile/asteroid/whitesands/ranged/hunter{
+/mob/living/simple_animal/hostile/human/hermit/ranged/hunter{
faction = list("brazillian")
},
/turf/open/floor/plating/asteroid/snow/icemoon,
@@ -177,7 +177,7 @@
/obj/structure/chair/wood{
dir = 1
},
-/mob/living/simple_animal/hostile/asteroid/whitesands/survivor{
+/mob/living/simple_animal/hostile/human/hermit/survivor{
desc = " A wild-eyed figure, wearing tattered mining equipment and boasting a malformed body.";
faction = list("brazillian")
},
@@ -341,7 +341,7 @@
/turf/open/floor/plating/asteroid/snow/icemoon,
/area/overmap_encounter/planetoid/cave/explored)
"qS" = (
-/mob/living/simple_animal/hostile/asteroid/whitesands/survivor{
+/mob/living/simple_animal/hostile/human/hermit/survivor{
desc = "The greatest chef this side of the wastes.";
faction = list("brazillian");
health = 150;
@@ -475,7 +475,7 @@
/obj/structure/bed,
/obj/structure/curtain,
/obj/effect/decal/cleanable/dirt,
-/mob/living/simple_animal/hostile/asteroid/whitesands/survivor{
+/mob/living/simple_animal/hostile/human/hermit/survivor{
desc = " A wild-eyed figure, wearing tattered mining equipment and boasting a malformed body.";
faction = list("brazillian")
},
@@ -535,7 +535,7 @@
/turf/open/floor/plating/asteroid/snow/icemoon,
/area/overmap_encounter/planetoid/cave/explored)
"zy" = (
-/mob/living/simple_animal/hostile/asteroid/whitesands/survivor{
+/mob/living/simple_animal/hostile/human/hermit/survivor{
desc = " A wild-eyed figure, wearing tattered mining equipment and boasting a malformed body.";
faction = list("brazillian")
},
@@ -545,7 +545,7 @@
/obj/structure/chair/wood{
dir = 8
},
-/mob/living/simple_animal/hostile/asteroid/whitesands/ranged/hunter{
+/mob/living/simple_animal/hostile/human/hermit/ranged/hunter{
faction = list("brazillian")
},
/turf/open/floor/wood{
@@ -635,7 +635,7 @@
/area/ruin/unpowered)
"CI" = (
/obj/structure/flora/junglebush/c,
-/mob/living/simple_animal/hostile/asteroid/whitesands/ranged/hunter{
+/mob/living/simple_animal/hostile/human/hermit/ranged/hunter{
faction = list("brazillian")
},
/turf/open/floor/plating/grass/jungle{
@@ -775,7 +775,7 @@
"JM" = (
/obj/structure/bed,
/obj/structure/curtain,
-/mob/living/simple_animal/hostile/asteroid/whitesands/ranged/hunter{
+/mob/living/simple_animal/hostile/human/hermit/ranged/hunter{
faction = list("brazillian")
},
/obj/effect/turf_decal/corner/opaque/green/border,
@@ -827,7 +827,7 @@
/obj/structure/chair/stool/bar{
dir = 4
},
-/mob/living/simple_animal/hostile/asteroid/whitesands/survivor{
+/mob/living/simple_animal/hostile/human/hermit/survivor{
desc = " A wild-eyed figure, wearing tattered mining equipment and boasting a malformed body.";
faction = list("brazillian")
},
@@ -895,7 +895,7 @@
},
/area/ruin/unpowered)
"NR" = (
-/mob/living/simple_animal/hostile/asteroid/whitesands/survivor{
+/mob/living/simple_animal/hostile/human/hermit/survivor{
desc = " A wild-eyed figure, wearing tattered mining equipment and boasting a malformed body.";
faction = list("brazillian")
},
@@ -1070,7 +1070,7 @@
},
/area/ruin/unpowered)
"Ux" = (
-/mob/living/simple_animal/hostile/asteroid/whitesands/ranged/hunter{
+/mob/living/simple_animal/hostile/human/hermit/ranged/hunter{
faction = list("brazillian")
},
/turf/open/floor/plating/grass/jungle{
@@ -1205,7 +1205,7 @@
},
/area/ruin/unpowered)
"Yy" = (
-/mob/living/simple_animal/hostile/asteroid/whitesands/survivor{
+/mob/living/simple_animal/hostile/human/hermit/survivor{
desc = " A wild-eyed figure, wearing tattered mining equipment and boasting a malformed body.";
faction = list("brazillian")
},
diff --git a/_maps/RandomRuins/IceRuins/icemoon_underground_drakelair.dmm b/_maps/RandomRuins/IceRuins/icemoon_underground_drakelair.dmm
deleted file mode 100644
index 113fde2af9c..00000000000
--- a/_maps/RandomRuins/IceRuins/icemoon_underground_drakelair.dmm
+++ /dev/null
@@ -1,1587 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"ar" = (
-/obj/structure/stone_tile/cracked{
- dir = 4
- },
-/obj/structure/stone_tile/surrounding_tile{
- dir = 1
- },
-/obj/structure/stone_tile/block/cracked,
-/turf/open/indestructible/boss,
-/area/ruin)
-"aX" = (
-/obj/item/borg/upgrade/modkit/cooldown,
-/obj/item/stack/sheet/mineral/gold/five,
-/obj/item/stack/sheet/mineral/diamond,
-/turf/open/floor/mineral/gold,
-/area/ruin/powered)
-"cd" = (
-/obj/item/coin/gold,
-/obj/item/stack/sheet/mineral/diamond,
-/turf/open/floor/mineral/gold,
-/area/ruin/powered)
-"cf" = (
-/obj/structure/stone_tile/slab/cracked,
-/turf/open/indestructible/boss,
-/area/ruin)
-"ci" = (
-/obj/structure/stone_tile/slab/cracked,
-/turf/open/floor/grass/snow/basalt,
-/area/overmap_encounter/planetoid/ice/explored)
-"ct" = (
-/obj/structure/stone_tile/cracked,
-/turf/open/floor/grass/snow/basalt,
-/area/overmap_encounter/planetoid/ice/explored)
-"cA" = (
-/obj/structure/stone_tile/surrounding_tile/cracked{
- dir = 1
- },
-/obj/structure/stone_tile/surrounding_tile/cracked,
-/obj/structure/stone_tile/surrounding_tile/cracked{
- dir = 4
- },
-/turf/open/floor/plating/asteroid/snow/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"dK" = (
-/obj/item/spacecash/bundle/c1000,
-/turf/open/floor/mineral/gold,
-/area/ruin/powered)
-"dS" = (
-/obj/structure/stone_tile/block/cracked{
- dir = 4
- },
-/obj/structure/stone_tile/cracked{
- dir = 4
- },
-/turf/open/floor/grass/snow/basalt,
-/area/overmap_encounter/planetoid/ice/explored)
-"dV" = (
-/obj/structure/stone_tile/slab,
-/turf/open/indestructible/boss,
-/area/ruin)
-"eg" = (
-/obj/structure/stone_tile/surrounding_tile/cracked{
- dir = 1
- },
-/obj/structure/stone_tile/block/cracked{
- dir = 10
- },
-/turf/open/floor/grass/snow/basalt,
-/area/overmap_encounter/planetoid/ice/explored)
-"ex" = (
-/obj/structure/stone_tile/surrounding_tile/cracked{
- dir = 1
- },
-/obj/structure/stone_tile/surrounding_tile/cracked{
- dir = 8
- },
-/turf/open/floor/grass/snow/basalt,
-/area/overmap_encounter/planetoid/ice/explored)
-"eS" = (
-/obj/structure/grille/indestructable,
-/turf/open/floor/plasteel/rockvault/sandstone,
-/area/ruin/powered)
-"eU" = (
-/obj/item/coin/gold,
-/obj/item/spacecash/bundle/c1000,
-/turf/open/floor/mineral/gold,
-/area/ruin/powered)
-"fG" = (
-/obj/structure/stone_tile/surrounding_tile/cracked{
- dir = 4
- },
-/obj/structure/stone_tile/surrounding_tile/cracked{
- dir = 1
- },
-/obj/structure/stone_tile/center,
-/turf/open/floor/grass/snow/basalt,
-/area/overmap_encounter/planetoid/ice/explored)
-"fY" = (
-/turf/open/floor/grass/snow/basalt,
-/area/overmap_encounter/planetoid/ice/explored)
-"gC" = (
-/obj/item/storage/bag/quiver/empty,
-/turf/open/floor/mineral/gold,
-/area/ruin/powered)
-"hh" = (
-/obj/structure/stone_tile/slab,
-/turf/closed/indestructible/riveted/uranium{
- base_icon_state = "iron_wall";
- icon = 'icons/turf/walls/iron_wall.dmi';
- icon_state = "iron_wall-0"
- },
-/area/ruin)
-"ie" = (
-/turf/open/floor/plating/asteroid/snow/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"if" = (
-/obj/structure/flora/rock/icy,
-/turf/open/floor/plating/asteroid/snow/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"iu" = (
-/obj/structure/stone_tile/surrounding_tile/cracked{
- dir = 8
- },
-/turf/open/floor/plating/asteroid/snow/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"iT" = (
-/obj/structure/stone_tile/slab,
-/mob/living/simple_animal/hostile/megafauna/dragon/icemoon{
- loot = list(/obj/structure/closet/crate/necropolis/dragon,/obj/item/keycard/gatedrop/drakelair);
- crusher_loot = list(/obj/structure/closet/crate/necropolis/dragon/crusher,/obj/item/keycard/gatedrop/drakelair)
- },
-/turf/open/indestructible/boss,
-/area/ruin)
-"jf" = (
-/obj/structure/stone_tile/slab/cracked,
-/turf/closed/indestructible/riveted/uranium{
- base_icon_state = "iron_wall";
- icon = 'icons/turf/walls/iron_wall.dmi';
- icon_state = "iron_wall-0"
- },
-/area/ruin)
-"jE" = (
-/obj/structure/stone_tile/slab/cracked{
- dir = 6
- },
-/turf/open/floor/grass/snow/basalt,
-/area/overmap_encounter/planetoid/ice/explored)
-"jQ" = (
-/obj/structure/stone_tile/surrounding_tile/cracked{
- dir = 8
- },
-/obj/structure/stone_tile/surrounding_tile/cracked{
- dir = 4
- },
-/obj/structure/stone_tile/surrounding_tile/cracked{
- dir = 1
- },
-/turf/open/floor/grass/snow/basalt,
-/area/overmap_encounter/planetoid/ice/explored)
-"ka" = (
-/obj/structure/flora/grass/brown,
-/turf/open/floor/plating/asteroid/snow/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"kd" = (
-/obj/item/coin/gold,
-/obj/item/ammo_casing/caseless/arrow/ash,
-/turf/open/floor/mineral/gold,
-/area/ruin/powered)
-"kA" = (
-/obj/item/nullrod/scythe/talking/necro,
-/turf/open/floor/mineral/gold,
-/area/ruin/powered)
-"kC" = (
-/obj/structure/stone_tile/slab,
-/obj/structure/necropolis_gate,
-/turf/open/indestructible/boss,
-/area/ruin)
-"kP" = (
-/obj/item/clothing/head/helmet/knight,
-/turf/open/floor/mineral/gold,
-/area/ruin/powered)
-"li" = (
-/obj/structure/stone_tile/slab,
-/turf/open/floor/plating/asteroid/snow/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"mx" = (
-/obj/structure/stone_tile/block/cracked{
- dir = 8
- },
-/obj/structure/stone_tile/cracked,
-/turf/open/floor/plating/asteroid/snow/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"nD" = (
-/turf/closed/indestructible/riveted/uranium{
- base_icon_state = "iron_wall";
- icon = 'icons/turf/walls/iron_wall.dmi';
- icon_state = "iron_wall-0"
- },
-/area/ruin/powered)
-"qa" = (
-/obj/structure/stone_tile/surrounding_tile/cracked{
- dir = 1
- },
-/turf/open/floor/plating/asteroid/snow/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"rX" = (
-/turf/closed/indestructible/riveted/uranium{
- base_icon_state = "iron_wall";
- icon = 'icons/turf/walls/iron_wall.dmi';
- icon_state = "iron_wall-0"
- },
-/area/ruin)
-"rY" = (
-/obj/structure/stone_tile/block/cracked{
- dir = 9
- },
-/obj/structure/stone_tile/block/cracked{
- dir = 4
- },
-/turf/open/floor/grass/snow/basalt,
-/area/overmap_encounter/planetoid/ice/explored)
-"sm" = (
-/obj/structure/stone_tile/slab/cracked,
-/obj/structure/fans/tiny/invisible,
-/obj/machinery/door/keycard/gates/drakelair,
-/turf/open/indestructible/boss{
- initial_gas_mix = "o2=22;n2=82;TEMP=293.15"
- },
-/area/ruin/powered)
-"tm" = (
-/obj/structure/stone_tile/surrounding_tile/cracked{
- dir = 4
- },
-/obj/structure/stone_tile/center,
-/obj/structure/stone_tile/surrounding_tile/cracked{
- dir = 1
- },
-/obj/structure/stone_tile/surrounding_tile/cracked{
- dir = 8
- },
-/turf/open/floor/grass/snow/basalt,
-/area/overmap_encounter/planetoid/ice/explored)
-"tD" = (
-/turf/template_noop,
-/area/template_noop)
-"tI" = (
-/obj/structure/flora/tree/dead,
-/turf/open/floor/plating/asteroid/snow/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"uu" = (
-/turf/open/floor/plasteel/rockvault/sandstone,
-/area/ruin/powered)
-"va" = (
-/obj/structure/stone_tile/cracked{
- dir = 8
- },
-/obj/structure/stone_tile/cracked,
-/obj/structure/stone_tile/block/cracked{
- dir = 1
- },
-/turf/open/indestructible/boss,
-/area/ruin)
-"vB" = (
-/obj/item/clothing/head/helmet/knight,
-/obj/item/ammo_casing/caseless/arrow/ash,
-/turf/open/floor/mineral/gold,
-/area/ruin/powered)
-"wf" = (
-/obj/structure/stone_tile/slab/cracked{
- dir = 4
- },
-/turf/open/floor/grass/snow/basalt,
-/area/overmap_encounter/planetoid/ice/explored)
-"wl" = (
-/obj/item/clothing/suit/armor/vest/capcarapace,
-/turf/open/floor/mineral/gold,
-/area/ruin/powered)
-"wD" = (
-/obj/item/clothing/head/caphat/nt,
-/turf/open/floor/mineral/gold,
-/area/ruin/powered)
-"wK" = (
-/obj/structure/stone_tile/center,
-/obj/structure/stone_tile/surrounding_tile{
- dir = 8
- },
-/obj/structure/stone_tile/surrounding_tile/cracked{
- dir = 4
- },
-/obj/structure/stone_tile/surrounding_tile/cracked,
-/turf/open/indestructible/boss{
- initial_gas_mix = "o2=22;n2=82;TEMP=293.15"
- },
-/area/ruin/powered)
-"wX" = (
-/turf/closed/indestructible/rock/snow,
-/area/overmap_encounter/planetoid/cave/explored)
-"xo" = (
-/obj/structure/stone_tile/slab,
-/obj/structure/fans/tiny/invisible,
-/obj/machinery/door/keycard/gates/drakelair,
-/turf/open/indestructible/boss{
- initial_gas_mix = "o2=22;n2=82;TEMP=293.15"
- },
-/area/ruin/powered)
-"xu" = (
-/obj/structure/stone_tile/slab,
-/turf/open/indestructible/boss{
- initial_gas_mix = "o2=22;n2=82;TEMP=293.15"
- },
-/area/ruin/powered)
-"xW" = (
-/obj/item/clothing/suit/armor/riot/knight,
-/turf/open/floor/mineral/gold,
-/area/ruin/powered)
-"xX" = (
-/obj/structure/bonfire/prelit,
-/turf/open/floor/plasteel/rockvault/sandstone,
-/area/ruin/powered)
-"yx" = (
-/obj/structure/stone_tile/slab/cracked,
-/obj/machinery/door/keycard/gates/drakelair,
-/turf/open/indestructible/boss{
- initial_gas_mix = "o2=22;n2=82;TEMP=293.15"
- },
-/area/ruin/powered)
-"yA" = (
-/obj/structure/stone_tile/slab,
-/obj/machinery/door/keycard/gates/drakelair,
-/turf/open/indestructible/boss{
- initial_gas_mix = "o2=22;n2=82;TEMP=293.15"
- },
-/area/ruin/powered)
-"yD" = (
-/turf/closed/indestructible/riveted/uranium{
- base_icon_state = "icerock_wall";
- icon = 'icons/turf/mining.dmi';
- icon_state = "icerock"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"yL" = (
-/obj/structure/stone_tile/block/cracked{
- dir = 9
- },
-/obj/structure/stone_tile/surrounding_tile/cracked{
- dir = 8
- },
-/turf/open/floor/grass/snow/basalt,
-/area/overmap_encounter/planetoid/ice/explored)
-"Ai" = (
-/obj/structure/stone_tile/cracked,
-/turf/open/floor/plating/asteroid/snow/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"Ax" = (
-/obj/item/stack/sheet/mineral/gold/five,
-/turf/open/floor/mineral/gold,
-/area/ruin/powered)
-"Cc" = (
-/obj/structure/closet/crate/necropolis,
-/turf/open/floor/mineral/gold,
-/area/ruin/powered)
-"CK" = (
-/obj/structure/stone_tile/slab/cracked{
- dir = 5
- },
-/obj/structure/stone_tile/surrounding_tile/cracked,
-/turf/open/floor/grass/snow/basalt,
-/area/overmap_encounter/planetoid/ice/explored)
-"CN" = (
-/obj/structure/stone_tile/cracked{
- dir = 1
- },
-/obj/structure/stone_tile/surrounding_tile/cracked{
- dir = 8
- },
-/turf/open/floor/grass/snow/basalt,
-/area/overmap_encounter/planetoid/ice/explored)
-"CS" = (
-/obj/structure/stone_tile/cracked{
- dir = 8
- },
-/turf/open/floor/grass/snow/basalt,
-/area/overmap_encounter/planetoid/ice/explored)
-"Dz" = (
-/obj/structure/stone_tile/block/cracked{
- dir = 8
- },
-/turf/open/floor/plating/asteroid/snow/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"DL" = (
-/obj/structure/flora/rock/pile/icy,
-/turf/open/floor/plating/asteroid/snow/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"DM" = (
-/obj/item/coin/gold,
-/obj/item/stack/sheet/mineral/gold/five,
-/turf/open/floor/mineral/gold,
-/area/ruin/powered)
-"EF" = (
-/obj/structure/bonfire/prelit,
-/turf/open/floor/mineral/gold,
-/area/ruin/powered)
-"Fw" = (
-/turf/open/floor/mineral/gold,
-/area/ruin/powered)
-"FA" = (
-/obj/structure/flora/grass/both,
-/turf/open/floor/plating/asteroid/snow/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"FF" = (
-/obj/structure/bed/pod,
-/obj/item/flashlight/flare/torch,
-/turf/open/floor/plasteel/rockvault/sandstone,
-/area/ruin/powered)
-"Gb" = (
-/turf/closed/mineral/snowmountain/cavern/icemoon,
-/area/overmap_encounter/planetoid/cave/explored)
-"Gh" = (
-/obj/effect/decal/remains/human{
- desc = "Some human remains, the only thing that could burn remains to a crisp like this is a plasmafire, or a dragon..."
- },
-/obj/effect/decal/cleanable/ash/large,
-/obj/item/shield/riot/roman{
- pixel_x = -12
- },
-/obj/item/nullrod/claymore{
- pixel_x = 20
- },
-/turf/open/floor/grass/snow/basalt,
-/area/overmap_encounter/planetoid/ice/explored)
-"Gv" = (
-/obj/machinery/door/keycard/gates/drakelair{
- color = "#EFC51D"
- },
-/turf/open/floor/mineral/gold,
-/area/ruin/powered)
-"Hb" = (
-/obj/structure/stone_tile/block/cracked{
- dir = 1
- },
-/obj/structure/stone_tile/cracked,
-/turf/open/floor/grass/snow/basalt,
-/area/overmap_encounter/planetoid/ice/explored)
-"HL" = (
-/obj/structure/stone_tile/cracked{
- dir = 1
- },
-/turf/open/floor/grass/snow/basalt,
-/area/overmap_encounter/planetoid/ice/explored)
-"IB" = (
-/obj/structure/stone_tile/block/cracked{
- dir = 1
- },
-/obj/structure/stone_tile/block/cracked,
-/turf/open/indestructible/boss,
-/area/ruin)
-"JL" = (
-/obj/structure/flora/grass/green,
-/turf/open/floor/plating/asteroid/snow/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"JS" = (
-/obj/item/stack/sheet/mineral/diamond,
-/turf/open/floor/mineral/gold,
-/area/ruin/powered)
-"Kg" = (
-/obj/structure/sink/puddle,
-/turf/open/floor/plasteel/rockvault/sandstone,
-/area/ruin/powered)
-"Lh" = (
-/obj/structure/stone_tile/cracked{
- dir = 8
- },
-/obj/structure/stone_tile/slab/cracked{
- dir = 8
- },
-/turf/open/floor/grass/snow/basalt,
-/area/overmap_encounter/planetoid/ice/explored)
-"Li" = (
-/obj/structure/fluff/drake_statue,
-/turf/open/floor/plating/asteroid/snow/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"MA" = (
-/obj/structure/stone_tile/cracked,
-/obj/structure/stone_tile/cracked{
- dir = 4
- },
-/obj/structure/stone_tile/surrounding_tile{
- dir = 8
- },
-/obj/structure/stone_tile/surrounding_tile{
- dir = 1
- },
-/turf/open/indestructible/boss{
- initial_gas_mix = "o2=22;n2=82;TEMP=293.15"
- },
-/area/ruin/powered)
-"Ov" = (
-/obj/structure/stone_tile/slab/cracked{
- dir = 10
- },
-/obj/structure/stone_tile/slab/cracked{
- dir = 8
- },
-/obj/structure/stone_tile/center,
-/turf/open/floor/plating/asteroid/snow/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"OF" = (
-/obj/structure/flora/ash/fireblossom,
-/obj/structure/stone_tile/cracked{
- dir = 4
- },
-/obj/structure/stone_tile/cracked{
- dir = 8
- },
-/turf/open/floor/grass/snow/basalt,
-/area/overmap_encounter/planetoid/ice/explored)
-"Pt" = (
-/obj/machinery/button/door{
- id = "ashdrake_cell1";
- pixel_y = 23
- },
-/turf/open/floor/plasteel/rockvault/sandstone,
-/area/ruin/powered)
-"Qu" = (
-/obj/structure/stone_tile/slab/cracked{
- dir = 5
- },
-/turf/open/floor/grass/snow/basalt,
-/area/overmap_encounter/planetoid/ice/explored)
-"QM" = (
-/obj/item/coin/gold,
-/turf/open/floor/mineral/gold,
-/area/ruin/powered)
-"Sj" = (
-/obj/structure/stone_tile/center,
-/turf/open/floor/grass/snow/basalt,
-/area/overmap_encounter/planetoid/ice/explored)
-"SI" = (
-/obj/structure/stone_tile/block/cracked{
- dir = 6
- },
-/turf/open/floor/grass/snow/basalt,
-/area/overmap_encounter/planetoid/ice/explored)
-"Tf" = (
-/obj/item/coin/gold,
-/obj/item/borg/upgrade/modkit/cooldown,
-/turf/open/floor/mineral/gold,
-/area/ruin/powered)
-"Tv" = (
-/obj/item/extinguisher/mini,
-/obj/structure/stone_tile/cracked{
- dir = 1
- },
-/obj/structure/stone_tile/surrounding_tile/cracked,
-/turf/open/floor/grass/snow/basalt,
-/area/overmap_encounter/planetoid/ice/explored)
-"VO" = (
-/obj/structure/stone_tile/slab,
-/turf/open/floor/grass/snow/basalt,
-/area/overmap_encounter/planetoid/ice/explored)
-"Wb" = (
-/obj/effect/gibspawner,
-/obj/item/clothing/head/crown,
-/turf/open/floor/plasteel/rockvault/sandstone,
-/area/ruin/powered)
-"Wp" = (
-/obj/structure/stone_tile/cracked{
- dir = 4
- },
-/turf/open/floor/grass/snow/basalt,
-/area/overmap_encounter/planetoid/ice/explored)
-"WN" = (
-/obj/machinery/door/airlock/gold/glass,
-/turf/open/floor/plasteel/rockvault/sandstone,
-/area/ruin/powered)
-"Xi" = (
-/obj/structure/stone_tile/block/cracked{
- dir = 8
- },
-/obj/structure/stone_tile/block/cracked{
- dir = 4
- },
-/turf/open/indestructible/boss,
-/area/ruin)
-"Xq" = (
-/obj/structure/bed/pod,
-/obj/item/flashlight/flare/torch,
-/obj/effect/mob_spawn/human/corpse/wizard,
-/turf/open/floor/plasteel/rockvault/sandstone,
-/area/ruin/powered)
-"XC" = (
-/obj/structure/stone_tile/block/cracked{
- dir = 4
- },
-/obj/structure/stone_tile/surrounding_tile/cracked{
- dir = 4
- },
-/turf/open/floor/grass/snow/basalt,
-/area/overmap_encounter/planetoid/ice/explored)
-"XG" = (
-/obj/machinery/door/poddoor/gates/indestructible{
- id = "ashdrake_cell2"
- },
-/turf/open/floor/plasteel/rockvault/sandstone,
-/area/ruin/powered)
-"XJ" = (
-/obj/structure/toilet,
-/turf/open/floor/plasteel/rockvault/sandstone,
-/area/ruin/powered)
-"YK" = (
-/obj/structure/stone_tile/block/cracked{
- dir = 4
- },
-/turf/open/floor/plating/asteroid/snow/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-"YQ" = (
-/obj/machinery/button/door{
- id = "ashdrake_cell2";
- pixel_y = 23
- },
-/turf/open/floor/plasteel/rockvault/sandstone,
-/area/ruin/powered)
-"Ze" = (
-/obj/structure/stone_tile/surrounding_tile/cracked{
- dir = 8
- },
-/obj/structure/stone_tile/center,
-/obj/structure/stone_tile/surrounding_tile/cracked{
- dir = 4
- },
-/obj/structure/stone_tile/surrounding_tile/cracked{
- dir = 1
- },
-/turf/open/floor/grass/snow/basalt,
-/area/overmap_encounter/planetoid/ice/explored)
-"Zl" = (
-/obj/structure/stone_tile/block/cracked{
- dir = 1
- },
-/turf/open/floor/grass/snow/basalt,
-/area/overmap_encounter/planetoid/ice/explored)
-"Zp" = (
-/obj/item/gun/ballistic/bow,
-/turf/open/floor/mineral/gold,
-/area/ruin/powered)
-"ZT" = (
-/obj/machinery/door/poddoor/gates/indestructible{
- id = "ashdrake_cell1"
- },
-/turf/open/floor/plasteel/rockvault/sandstone,
-/area/ruin/powered)
-"ZZ" = (
-/obj/structure/stone_tile/slab/cracked{
- dir = 4
- },
-/turf/open/floor/plating/asteroid/snow/icemoon,
-/area/overmap_encounter/planetoid/ice/explored)
-
-(1,1,1) = {"
-tD
-tD
-tD
-tD
-tD
-tD
-Gb
-Gb
-Gb
-Gb
-Gb
-Gb
-Gb
-Gb
-Gb
-Gb
-nD
-ie
-tD
-tD
-tD
-tD
-tD
-tD
-tD
-tD
-tD
-tD
-tD
-tD
-"}
-(2,1,1) = {"
-tD
-tD
-tD
-Gb
-Gb
-Gb
-Gb
-Gb
-wX
-wX
-wX
-wX
-wX
-wX
-wX
-wX
-nD
-ie
-ie
-ie
-ie
-tD
-tD
-tD
-tD
-tD
-tD
-tD
-tD
-tD
-"}
-(3,1,1) = {"
-tD
-tD
-Gb
-Gb
-wX
-wX
-wX
-wX
-wX
-nD
-nD
-nD
-nD
-nD
-nD
-nD
-nD
-ie
-ie
-ie
-ie
-ie
-tD
-tD
-tD
-ie
-ie
-ie
-tD
-tD
-"}
-(4,1,1) = {"
-tD
-Gb
-Gb
-Gb
-wX
-nD
-nD
-nD
-nD
-nD
-FF
-uu
-uu
-uu
-uu
-uu
-nD
-ie
-FA
-ie
-DL
-ie
-tI
-ie
-ie
-ie
-ie
-ie
-ie
-tD
-"}
-(5,1,1) = {"
-tD
-Gb
-Gb
-Gb
-wX
-nD
-EF
-dK
-EF
-nD
-XJ
-uu
-uu
-Wb
-uu
-Kg
-nD
-ie
-ie
-ie
-ie
-ie
-ie
-ie
-ie
-FA
-ie
-ie
-ie
-tD
-"}
-(6,1,1) = {"
-tD
-Gb
-Gb
-wX
-wX
-nD
-JS
-DM
-Tf
-nD
-nD
-nD
-eS
-eS
-ZT
-eS
-nD
-ie
-ie
-ka
-ie
-ie
-ie
-ie
-ie
-ie
-ie
-ie
-ie
-tD
-"}
-(7,1,1) = {"
-tD
-Gb
-Gb
-wX
-nD
-nD
-QM
-xW
-Fw
-QM
-Fw
-nD
-Pt
-uu
-uu
-xX
-nD
-ie
-ie
-ie
-ie
-FA
-ie
-if
-ie
-ie
-ie
-tI
-ie
-tD
-"}
-(8,1,1) = {"
-Gb
-Gb
-Gb
-wX
-nD
-Fw
-QM
-QM
-cd
-gC
-dK
-WN
-uu
-uu
-uu
-uu
-nD
-ie
-DL
-ie
-ie
-ie
-ie
-ie
-ie
-ie
-ie
-ie
-ie
-tD
-"}
-(9,1,1) = {"
-Gb
-Gb
-Gb
-wX
-nD
-QM
-Fw
-Ax
-QM
-QM
-JS
-nD
-uu
-uu
-uu
-uu
-nD
-ie
-ie
-ie
-ie
-ie
-JL
-ie
-ie
-ie
-ie
-ie
-ie
-ie
-"}
-(10,1,1) = {"
-Gb
-Gb
-Gb
-wX
-nD
-QM
-xW
-eU
-Zp
-Fw
-QM
-nD
-uu
-uu
-uu
-uu
-nD
-ie
-ie
-ie
-DL
-ie
-ie
-ie
-ie
-ie
-DL
-ie
-if
-ie
-"}
-(11,1,1) = {"
-Gb
-Gb
-Gb
-wX
-nD
-dK
-QM
-QM
-dK
-Fw
-Fw
-nD
-uu
-uu
-uu
-uu
-nD
-ie
-tI
-if
-ie
-ie
-tI
-ie
-ka
-ie
-ie
-ie
-ie
-ie
-"}
-(12,1,1) = {"
-Gb
-wX
-wX
-wX
-nD
-Fw
-Fw
-eU
-Ax
-QM
-EF
-nD
-xX
-uu
-uu
-xX
-nD
-ie
-ie
-ie
-ie
-ie
-ie
-ie
-ie
-ka
-ie
-ie
-ie
-ie
-"}
-(13,1,1) = {"
-Gb
-wX
-nD
-nD
-nD
-kP
-Fw
-QM
-EF
-nD
-nD
-nD
-rX
-rX
-rX
-rX
-rX
-Li
-ie
-ie
-ie
-ie
-ie
-ie
-ie
-ie
-ie
-ie
-ie
-ie
-"}
-(14,1,1) = {"
-Gb
-wX
-nD
-Cc
-Gv
-Fw
-kP
-QM
-QM
-sm
-xu
-yx
-dV
-cf
-ar
-dV
-jf
-Hb
-CS
-ct
-wf
-rY
-CK
-HL
-CN
-mx
-Dz
-eg
-VO
-iu
-"}
-(15,1,1) = {"
-Gb
-wX
-nD
-kA
-Gv
-Fw
-JS
-wl
-wD
-sm
-MA
-yA
-iT
-dV
-dV
-va
-kC
-dS
-OF
-Gh
-Tv
-ex
-Qu
-Lh
-HL
-fY
-Ze
-jQ
-fY
-ci
-"}
-(16,1,1) = {"
-tD
-wX
-nD
-Cc
-Gv
-Fw
-Fw
-Fw
-kP
-xo
-wK
-yA
-cf
-IB
-dV
-Xi
-hh
-Zl
-Ov
-yL
-jE
-fG
-fY
-Wp
-XC
-ci
-Sj
-VO
-ZZ
-li
-"}
-(17,1,1) = {"
-tD
-wX
-nD
-nD
-nD
-QM
-xW
-Zp
-EF
-nD
-nD
-nD
-rX
-rX
-rX
-rX
-rX
-Li
-ie
-ie
-qa
-YK
-cA
-SI
-tm
-li
-Ai
-Ai
-ie
-ie
-"}
-(18,1,1) = {"
-tD
-wX
-wX
-wX
-nD
-Fw
-Fw
-Fw
-JS
-Fw
-EF
-nD
-xX
-uu
-uu
-xX
-nD
-ie
-ie
-ie
-ie
-ie
-ie
-ie
-ie
-ie
-ie
-ie
-ie
-ie
-"}
-(19,1,1) = {"
-tD
-tD
-Gb
-wX
-nD
-dK
-QM
-kd
-QM
-QM
-cd
-nD
-uu
-uu
-uu
-uu
-nD
-ie
-ie
-FA
-ie
-ie
-ie
-ie
-ie
-ie
-ie
-DL
-ie
-ie
-"}
-(20,1,1) = {"
-tD
-tD
-Gb
-wX
-nD
-Fw
-QM
-Fw
-Fw
-eU
-QM
-nD
-uu
-uu
-uu
-uu
-nD
-ie
-ie
-ie
-ie
-ie
-ie
-tI
-ie
-ie
-ie
-ie
-ie
-ie
-"}
-(21,1,1) = {"
-tD
-tD
-Gb
-wX
-nD
-QM
-Fw
-QM
-QM
-Fw
-Fw
-WN
-uu
-uu
-uu
-uu
-nD
-if
-ie
-ie
-tI
-DL
-ie
-ie
-ie
-ie
-FA
-ie
-ie
-ie
-"}
-(22,1,1) = {"
-tD
-tD
-tD
-wX
-nD
-nD
-QM
-Ax
-vB
-Fw
-QM
-nD
-YQ
-uu
-uu
-xX
-nD
-ie
-ie
-ie
-ie
-ie
-ie
-ie
-ie
-ie
-ie
-ie
-ie
-ie
-"}
-(23,1,1) = {"
-tD
-tD
-tD
-Gb
-wX
-nD
-JS
-QM
-aX
-nD
-nD
-nD
-eS
-eS
-XG
-eS
-nD
-ie
-ie
-ie
-if
-ie
-ie
-ie
-if
-ie
-ie
-ie
-ie
-tD
-"}
-(24,1,1) = {"
-tD
-tD
-tD
-yD
-wX
-nD
-EF
-Fw
-EF
-nD
-XJ
-uu
-uu
-uu
-uu
-Kg
-nD
-ie
-ka
-ie
-ie
-ie
-ie
-FA
-ie
-ie
-ie
-ie
-ie
-tD
-"}
-(25,1,1) = {"
-tD
-tD
-tD
-tD
-wX
-nD
-nD
-nD
-nD
-nD
-Xq
-uu
-uu
-uu
-uu
-uu
-nD
-ie
-ie
-ie
-ka
-ie
-ie
-ie
-ie
-ie
-FA
-ie
-ie
-tD
-"}
-(26,1,1) = {"
-tD
-tD
-tD
-tD
-wX
-wX
-wX
-wX
-wX
-nD
-nD
-nD
-nD
-nD
-nD
-nD
-nD
-ie
-ie
-ie
-ie
-ie
-ie
-ie
-ie
-ie
-ie
-ie
-tD
-tD
-"}
-(27,1,1) = {"
-tD
-tD
-tD
-tD
-Gb
-Gb
-Gb
-Gb
-wX
-wX
-wX
-wX
-wX
-wX
-wX
-wX
-nD
-ie
-ie
-tI
-ie
-ie
-ie
-ie
-ie
-ie
-tD
-tD
-tD
-tD
-"}
-(28,1,1) = {"
-tD
-tD
-tD
-tD
-Gb
-Gb
-Gb
-Gb
-Gb
-Gb
-Gb
-Gb
-Gb
-Gb
-Gb
-Gb
-nD
-ie
-ie
-ie
-ie
-ie
-ie
-ie
-tD
-tD
-tD
-tD
-tD
-tD
-"}
-(29,1,1) = {"
-tD
-tD
-tD
-tD
-tD
-tD
-Gb
-Gb
-Gb
-Gb
-tD
-tD
-tD
-tD
-tD
-tD
-tD
-tD
-tD
-tD
-tD
-tD
-tD
-tD
-tD
-tD
-tD
-tD
-tD
-tD
-"}
diff --git a/_maps/RandomRuins/JungleRuins/jungle_bombed_starport.dmm b/_maps/RandomRuins/JungleRuins/jungle_bombed_starport.dmm
index dee3343b8d7..2b04f2a3edb 100644
--- a/_maps/RandomRuins/JungleRuins/jungle_bombed_starport.dmm
+++ b/_maps/RandomRuins/JungleRuins/jungle_bombed_starport.dmm
@@ -5611,7 +5611,7 @@
/area/overmap_encounter/planetoid/jungle/explored)
"LM" = (
/obj/structure/closet,
-/obj/item/clothing/suit/armor/vest/capcarapace/ngr_captain,
+/obj/item/clothing/suit/armor/ngr/captain,
/obj/item/clothing/under/syndicate/ngr/officer,
/obj/item/gun/ballistic/automatic/pistol,
/obj/item/ammo_box/magazine/m10mm,
@@ -7195,7 +7195,7 @@
/turf/open/floor/plating/rust,
/area/ruin/jungle/starport)
"WR" = (
-/obj/machinery/computer/communications{
+/obj/structure/frame/computer{
dir = 4
},
/turf/open/floor/mineral/plastitanium/red,
@@ -7296,7 +7296,7 @@
/obj/effect/decal/remains/human,
/obj/effect/decal/cleanable/vomit/old,
/obj/item/clothing/under/syndicate/ngr/officer,
-/obj/item/clothing/suit/armor/vest/capcarapace/ngr_captain,
+/obj/item/clothing/suit/armor/ngr/captain,
/obj/item/clothing/shoes/combat,
/turf/open/floor/mineral/plastitanium,
/area/ruin/jungle/starport/tower)
diff --git a/_maps/RandomRuins/JungleRuins/jungle_botany.dmm b/_maps/RandomRuins/JungleRuins/jungle_botany.dmm
deleted file mode 100644
index 6888c97fc9a..00000000000
--- a/_maps/RandomRuins/JungleRuins/jungle_botany.dmm
+++ /dev/null
@@ -1,1013 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"aM" = (
-/obj/structure/table,
-/obj/item/disk/data,
-/obj/item/disk/data,
-/obj/item/disk/data,
-/obj/item/disk/data,
-/obj/item/disk/data,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"aP" = (
-/obj/item/kirbyplants/fullysynthetic,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"cI" = (
-/obj/effect/mob_spawn/human/corpse/assistant,
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"dJ" = (
-/obj/structure/closet/crate/radiation,
-/obj/item/stack/sheet/mineral/uranium/twenty,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"ez" = (
-/obj/structure/bed,
-/obj/item/bedsheet/medical,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"eQ" = (
-/obj/machinery/washing_machine,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"fM" = (
-/obj/structure/chair/greyscale{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"fR" = (
-/obj/effect/decal/cleanable/xenoblood/xgibs/larva,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"gb" = (
-/obj/structure/table,
-/obj/item/plant_analyzer,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"ge" = (
-/obj/structure/spacevine/dense,
-/obj/machinery/smartfridge/drying_rack,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"hl" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/command,
-/obj/effect/turf_decal/industrial/warning,
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"hL" = (
-/obj/item/reagent_containers/food/drinks/bottle/hooch,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"ii" = (
-/obj/structure/closet/secure_closet/hydroponics,
-/obj/effect/turf_decal/box,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"ik" = (
-/obj/effect/decal/cleanable/blood/gibs/up,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"iG" = (
-/obj/machinery/vending/cigarette,
-/obj/effect/turf_decal/box,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"jc" = (
-/obj/machinery/seed_extractor,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"jf" = (
-/obj/structure/closet/crate/large,
-/obj/item/circuitboard/machine/biogenerator,
-/obj/item/reagent_containers/spray/pestspray,
-/obj/item/reagent_containers/spray/pestspray,
-/obj/item/reagent_containers/spray/weedspray,
-/obj/item/reagent_containers/spray/weedspray,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"ji" = (
-/obj/item/seeds/tomato/killer,
-/obj/item/seeds/kudzu,
-/obj/item/seeds/cannabis,
-/obj/item/seeds/random,
-/obj/structure/closet/crate/secure/hydroponics,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"js" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/blood/tracks,
-/obj/structure/spacevine,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"jK" = (
-/obj/machinery/door/airlock/external{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"ke" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"kj" = (
-/obj/machinery/vending/sovietsoda,
-/obj/effect/turf_decal/box,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"lb" = (
-/obj/machinery/power/smes,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"lK" = (
-/obj/machinery/hydroponics/constructable,
-/obj/structure/spacevine,
-/obj/item/reagent_containers/food/snacks/grown/cherries,
-/obj/item/reagent_containers/food/snacks/grown/cherries,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"mg" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/glass,
-/obj/effect/turf_decal/industrial/warning,
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"mB" = (
-/obj/machinery/door/airlock/external{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"mN" = (
-/obj/structure/spacevine/dense,
-/obj/item/reagent_containers/food/snacks/grown/carrot,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"nl" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/xenoblood/xgibs,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"nJ" = (
-/obj/structure/flora/ausbushes/sparsegrass,
-/obj/structure/spacevine,
-/turf/open/floor/plating/grass/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"nS" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/effect/decal/cleanable/blood/tracks,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"oc" = (
-/obj/machinery/door/airlock/glass{
- dir = 4
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"om" = (
-/obj/effect/decal/cleanable/blood,
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 10
- },
-/obj/effect/mob_spawn/human/corpse/cargo_tech,
-/obj/item/clothing/mask/cigarette/rollie/trippy{
- pixel_x = 7;
- pixel_y = 15
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"oR" = (
-/obj/structure/table,
-/obj/item/storage/fancy/cigarettes/cigpack_robust,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"pt" = (
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/structure/glowshroom/single,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"pO" = (
-/obj/machinery/hydroponics/constructable,
-/obj/item/reagent_containers/food/snacks/grown/ambrosia,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"qM" = (
-/obj/structure/sign/poster/contraband/ambrosia_vulgaris,
-/turf/closed/wall,
-/area/ruin/powered)
-"ru" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/spacevine,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"sv" = (
-/obj/machinery/hydroponics/constructable,
-/obj/item/reagent_containers/food/snacks/grown/garlic{
- pixel_y = -3
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"uC" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 4;
- pixel_y = 11
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"uK" = (
-/obj/structure/flora/ausbushes/sparsegrass,
-/obj/structure/flora/grass/jungle,
-/turf/open/floor/plating/grass/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"uM" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"wl" = (
-/obj/structure/table,
-/obj/item/screwdriver/power{
- pixel_y = 6
- },
-/obj/item/storage/belt/utility,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"wD" = (
-/obj/structure/sign/poster/contraband/kudzu{
- pixel_x = 3
- },
-/turf/closed/wall,
-/area/ruin/powered)
-"wP" = (
-/obj/structure/closet/crate/medical,
-/obj/item/stack/medical/ointment/herb,
-/obj/item/stack/medical/suture/medicated,
-/obj/item/stack/medical/suture/medicated,
-/obj/item/stack/medical/ointment/herb,
-/obj/item/gun/syringe,
-/obj/item/reagent_containers/syringe/piercing,
-/obj/item/reagent_containers/syringe/piercing,
-/obj/item/reagent_containers/syringe/piercing,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"wU" = (
-/obj/structure/flora/ausbushes/grassybush,
-/turf/open/floor/plating/grass/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"yr" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/spacevine,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"yt" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock{
- dir = 4
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"yR" = (
-/obj/machinery/hydroponics/constructable,
-/obj/effect/decal/cleanable/xenoblood,
-/obj/item/reagent_containers/food/snacks/grown/berries,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"yS" = (
-/obj/structure/table,
-/obj/item/storage/toolbox/mechanical{
- pixel_y = 6
- },
-/obj/item/storage/toolbox/electrical,
-/obj/item/storage/fancy/rollingpapers,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"zm" = (
-/obj/structure/flora/grass/jungle,
-/obj/structure/spacevine,
-/turf/open/floor/plating/grass/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"Aq" = (
-/obj/structure/table,
-/obj/item/paper_bin,
-/obj/item/pen,
-/obj/item/folder,
-/obj/item/stamp,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"AD" = (
-/obj/structure/bed,
-/obj/item/bedsheet/black,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Cj" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"DL" = (
-/obj/machinery/power/port_gen/pacman,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"DS" = (
-/obj/structure/closet/crate/bin,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"EJ" = (
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 4;
- pixel_y = 7
- },
-/mob/living/simple_animal/hostile/killertomato,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"FF" = (
-/obj/effect/decal/cleanable/xenoblood,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"FG" = (
-/obj/machinery/door/airlock{
- dir = 4
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"FR" = (
-/obj/structure/glowshroom/single,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"FZ" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/spacevine/dense,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Gq" = (
-/obj/structure/table,
-/obj/item/book/manual/hydroponics_pod_people,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Gx" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 8
- },
-/mob/living/simple_animal/hostile/killertomato,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"GW" = (
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 4;
- pixel_y = 11
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Hm" = (
-/obj/structure/chair/greyscale{
- dir = 8
- },
-/obj/effect/decal/cleanable/blood/gibs/old,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"HQ" = (
-/obj/structure/flora/ausbushes/sparsegrass,
-/turf/open/floor/plating/grass/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"Ia" = (
-/obj/machinery/hydroponics/constructable,
-/obj/structure/spacevine,
-/obj/item/reagent_containers/food/snacks/grown/ambrosia,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Ie" = (
-/obj/structure/table,
-/obj/machinery/plantgenes,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Ig" = (
-/obj/structure/table,
-/obj/item/clothing/glasses/meson,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"IG" = (
-/obj/structure/closet/crate/large,
-/obj/item/inducer,
-/obj/item/circuitboard/machine/smes,
-/obj/item/stock_parts/cell/potato,
-/obj/item/stock_parts/cell/potato,
-/obj/item/stock_parts/cell/potato,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"JU" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Ke" = (
-/obj/structure/sign/departments/botany,
-/turf/closed/wall,
-/area/ruin/powered)
-"Kn" = (
-/obj/structure/sign/departments/botany,
-/turf/closed/wall/r_wall,
-/area/ruin/powered)
-"Kt" = (
-/obj/structure/chair/greyscale{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"LW" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/item/reagent_containers/food/snacks/grown/berries,
-/obj/structure/glowshroom/single,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Mq" = (
-/obj/machinery/suit_storage_unit/standard_unit,
-/obj/effect/turf_decal/industrial/warning/corner,
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 8
- },
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ruin/powered)
-"Nk" = (
-/obj/structure/table,
-/obj/item/reagent_containers/food/snacks/salad/jungle{
- pixel_y = 7
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Nn" = (
-/obj/item/spear,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Np" = (
-/obj/structure/girder/reinforced,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"NE" = (
-/obj/structure/grille/broken,
-/obj/structure/spacevine,
-/turf/open/floor/plating,
-/area/overmap_encounter/planetoid/jungle/explored)
-"OT" = (
-/obj/machinery/door/airlock,
-/obj/effect/decal/cleanable/blood/footprints,
-/obj/effect/turf_decal/industrial/warning,
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"OX" = (
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Pm" = (
-/obj/structure/sign/departments/engineering,
-/turf/closed/wall/r_wall,
-/area/ruin/powered)
-"Pp" = (
-/obj/structure/grille/broken,
-/obj/structure/spacevine,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Pq" = (
-/obj/effect/decal/cleanable/xenoblood,
-/obj/structure/spacevine/dense,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Pz" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Qa" = (
-/obj/structure/spacevine/dense,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Qc" = (
-/obj/effect/spawner/structure/window/hollow/reinforced,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Qg" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/spacevine,
-/obj/item/reagent_containers/food/snacks/grown/banana,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Qu" = (
-/obj/structure/door_assembly/door_assembly_com{
- dir = 4
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"QJ" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/engineering{
- locked = 1;
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Rj" = (
-/obj/structure/closet/crate{
- icon_state = "crateopen"
- },
-/obj/item/stack/sheet/mineral/plasma/twenty,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Se" = (
-/obj/structure/closet/secure_closet/personal,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Sh" = (
-/obj/structure/flora/grass/jungle,
-/turf/open/floor/plating/grass/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"Ss" = (
-/obj/machinery/power/terminal{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"SB" = (
-/obj/machinery/vending/hydronutrients,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"SQ" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/sign/poster/contraband/kudzu{
- pixel_x = 2
- },
-/turf/closed/wall,
-/area/ruin/powered)
-"Ti" = (
-/obj/machinery/door/airlock,
-/obj/effect/turf_decal/industrial/warning,
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"TO" = (
-/obj/structure/salvageable/seed,
-/obj/effect/turf_decal/box,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"TV" = (
-/obj/structure/spacevine,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Uo" = (
-/obj/structure/table,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/item/reagent_containers/food/snacks/salad/fruit{
- pixel_y = 8
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Vn" = (
-/obj/structure/table,
-/obj/item/clipboard,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"VH" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Wo" = (
-/obj/structure/sign/poster/contraband/donut_corp,
-/turf/closed/wall,
-/area/ruin/powered)
-"WE" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Xg" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/spacevine,
-/obj/item/reagent_containers/food/snacks/grown/banana,
-/mob/living/simple_animal/hostile/venus_human_trap,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Yc" = (
-/obj/effect/decal/cleanable/blood,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"YN" = (
-/obj/structure/table,
-/obj/item/toy/cards/deck/tarot{
- pixel_x = -8
- },
-/obj/item/reagent_containers/food/snacks/salad/herbsalad{
- pixel_x = 8;
- pixel_y = 12
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Zq" = (
-/obj/machinery/suit_storage_unit/standard_unit,
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 1
- },
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 4
- },
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ruin/powered)
-"ZO" = (
-/obj/structure/bed,
-/obj/item/bedsheet/green,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"ZU" = (
-/turf/closed/wall,
-/area/ruin/powered)
-
-(1,1,1) = {"
-ZU
-Ke
-jK
-jK
-Ke
-ZU
-Qc
-ZU
-Qc
-Qc
-wU
-Sh
-"}
-(2,1,1) = {"
-Np
-Mq
-Pz
-Pz
-Zq
-ZU
-aM
-Vn
-Aq
-Qc
-NE
-nJ
-"}
-(3,1,1) = {"
-ZU
-ZU
-mB
-mB
-wD
-ZU
-OX
-fM
-TV
-Pq
-NE
-NE
-"}
-(4,1,1) = {"
-ZU
-yS
-JU
-VH
-VH
-hl
-js
-nS
-om
-TV
-TV
-Qc
-"}
-(5,1,1) = {"
-ZU
-gb
-Cj
-Yc
-TO
-ZU
-pt
-uM
-Gx
-Qa
-jf
-ZU
-"}
-(6,1,1) = {"
-ZU
-Gq
-FR
-OX
-ii
-Np
-DS
-ik
-WE
-Yc
-wP
-Qc
-"}
-(7,1,1) = {"
-ZU
-ZU
-Kn
-oc
-ZU
-Np
-ZU
-ZU
-SQ
-Qu
-ZU
-ZU
-"}
-(8,1,1) = {"
-ZU
-qM
-ji
-OX
-FR
-pO
-ZU
-iG
-WE
-fR
-Kt
-ZU
-"}
-(9,1,1) = {"
-Sh
-ZU
-SB
-Qg
-Yc
-yR
-Np
-kj
-nl
-OX
-YN
-ZU
-"}
-(10,1,1) = {"
-nJ
-Qc
-lK
-ru
-Xg
-VH
-mg
-VH
-ke
-OX
-Hm
-ZU
-"}
-(11,1,1) = {"
-nJ
-Pp
-Ia
-FZ
-TV
-sv
-ZU
-Uo
-ke
-FF
-aP
-ZU
-"}
-(12,1,1) = {"
-zm
-Qc
-ge
-LW
-mN
-Ia
-ZU
-Nk
-WE
-DS
-ZU
-ZU
-"}
-(13,1,1) = {"
-Sh
-ZU
-jc
-yr
-Ie
-ZU
-ZU
-ZU
-yt
-ZU
-ZU
-HQ
-"}
-(14,1,1) = {"
-wU
-ZU
-Pm
-QJ
-ZU
-ZU
-AD
-Ti
-uC
-Se
-Qc
-Sh
-"}
-(15,1,1) = {"
-HQ
-ZU
-wl
-WE
-IG
-ZU
-ZU
-ZU
-EJ
-Se
-ZU
-uK
-"}
-(16,1,1) = {"
-Sh
-Np
-Ig
-WE
-dJ
-ZU
-ZO
-OT
-GW
-eQ
-Qc
-Sh
-"}
-(17,1,1) = {"
-Sh
-Np
-Rj
-WE
-OX
-ZU
-ZU
-ZU
-FG
-ZU
-ZU
-wU
-"}
-(18,1,1) = {"
-Sh
-ZU
-lb
-Ss
-OX
-Wo
-ez
-Nn
-cI
-Qc
-Sh
-HQ
-"}
-(19,1,1) = {"
-HQ
-ZU
-DL
-Cj
-OX
-ZU
-oR
-OX
-hL
-Qc
-HQ
-Sh
-"}
-(20,1,1) = {"
-Sh
-ZU
-ZU
-ZU
-ZU
-ZU
-ZU
-Qc
-Qc
-ZU
-Sh
-Sh
-"}
diff --git a/_maps/RandomRuins/JungleRuins/jungle_cavecrew.dmm b/_maps/RandomRuins/JungleRuins/jungle_cavecrew.dmm
index 928318c23ff..5c4e6c34e7a 100644
--- a/_maps/RandomRuins/JungleRuins/jungle_cavecrew.dmm
+++ b/_maps/RandomRuins/JungleRuins/jungle_cavecrew.dmm
@@ -368,7 +368,7 @@
/turf/open/floor/plasteel,
/area/ruin/jungle/cavecrew/hallway)
"ei" = (
-/obj/machinery/computer/communications{
+/obj/structure/frame/computer{
dir = 8
},
/obj/effect/turf_decal/techfloor{
@@ -558,7 +558,7 @@
/area/overmap_encounter/planetoid/cave/explored)
"gF" = (
/obj/structure/closet/cabinet,
-/obj/item/clothing/under/rank/security/officer/frontier/officer,
+/obj/item/clothing/under/frontiersmen/officer,
/obj/item/clothing/suit/armor/frontier,
/obj/item/clothing/head/beret/sec/frontier/officer,
/turf/open/floor/carpet/red_gold,
@@ -658,7 +658,7 @@
dir = 4;
name = "tactical swivel chair"
},
-/mob/living/simple_animal/hostile/frontier/ranged/officer/neutured,
+/mob/living/simple_animal/hostile/human/frontier/ranged/officer/neutured,
/turf/open/floor/plasteel/dark,
/area/ruin/jungle/cavecrew/bridge)
"iE" = (
@@ -1342,7 +1342,7 @@
/obj/structure/cable{
icon_state = "1-8"
},
-/mob/living/simple_animal/hostile/frontier/ranged/trooper/heavy/neutered,
+/mob/living/simple_animal/hostile/human/frontier/ranged/trooper/heavy/neutered,
/turf/open/floor/plasteel/patterned/brushed,
/area/ruin/jungle/cavecrew/security)
"pB" = (
@@ -1432,7 +1432,7 @@
/area/ruin/jungle/cavecrew/hallway)
"rN" = (
/obj/effect/decal/cleanable/dirt/dust,
-/mob/living/simple_animal/hostile/frontier/ranged/trooper/neutered,
+/mob/living/simple_animal/hostile/human/frontier/ranged/trooper/neutered,
/turf/open/floor/plating/dirt/old,
/area/ruin/powered)
"rQ" = (
@@ -1671,7 +1671,7 @@
/obj/effect/turf_decal/siding/wood{
dir = 5
},
-/obj/item/clothing/under/rank/security/officer/frontier,
+/obj/item/clothing/under/frontiersmen,
/obj/item/clothing/head/beret/sec/frontier,
/obj/machinery/light_switch{
pixel_y = 21;
@@ -1832,7 +1832,7 @@
/obj/structure/railing/corner{
dir = 8
},
-/mob/living/simple_animal/hostile/frontier/ranged/trooper/skm/neutured,
+/mob/living/simple_animal/hostile/human/frontier/ranged/trooper/skm/neutured,
/turf/open/floor/plasteel/stairs{
dir = 1
},
@@ -2354,7 +2354,7 @@
/obj/effect/turf_decal/spline/fancy/opaque/black{
dir = 8
},
-/mob/living/simple_animal/hostile/frontier/ranged/neutered,
+/mob/living/simple_animal/hostile/human/frontier/ranged/neutered,
/turf/open/floor/plasteel,
/area/ruin/jungle/cavecrew/hallway)
"CN" = (
@@ -2365,7 +2365,7 @@
dir = 9
},
/obj/effect/decal/cleanable/dirt/dust,
-/mob/living/simple_animal/hostile/frontier,
+/mob/living/simple_animal/hostile/human/frontier,
/obj/structure/cable{
icon_state = "4-8"
},
@@ -2570,7 +2570,7 @@
/turf/open/floor/plating/dirt/jungle,
/area/overmap_encounter/planetoid/cave/explored)
"Fw" = (
-/mob/living/simple_animal/hostile/frontier/ranged/mosin/neutered,
+/mob/living/simple_animal/hostile/human/frontier/ranged/mosin/neutered,
/turf/open/floor/plating/dirt/jungle,
/area/ruin/powered)
"Fy" = (
@@ -2797,7 +2797,7 @@
dir = 4;
layer = 3.1
},
-/mob/living/simple_animal/hostile/frontier/ranged/neutered,
+/mob/living/simple_animal/hostile/human/frontier/ranged/neutered,
/turf/open/water/jungle,
/area/ruin/jungle/cavecrew/cargo)
"II" = (
@@ -3208,7 +3208,7 @@
/obj/structure/cable{
icon_state = "2-5"
},
-/mob/living/simple_animal/hostile/frontier/ranged/trooper/rifle/neutered,
+/mob/living/simple_animal/hostile/human/frontier/ranged/trooper/rifle/neutered,
/turf/open/floor/plasteel,
/area/ruin/jungle/cavecrew/hallway)
"MW" = (
@@ -3244,7 +3244,7 @@
/obj/structure/closet/cabinet,
/obj/effect/decal/cleanable/dirt/dust,
/obj/effect/decal/cleanable/cobweb/cobweb2,
-/obj/item/clothing/under/rank/security/officer/frontier,
+/obj/item/clothing/under/frontiersmen,
/obj/item/clothing/head/beret/sec/frontier,
/obj/item/clothing/under/misc/pj/blue,
/obj/machinery/light/small/broken/directional/north,
@@ -3391,7 +3391,7 @@
/obj/structure/cable{
icon_state = "1-2"
},
-/mob/living/simple_animal/hostile/frontier/ranged/neutered,
+/mob/living/simple_animal/hostile/human/frontier/ranged/neutered,
/turf/open/floor/plating,
/area/ruin/powered)
"Pg" = (
@@ -3931,9 +3931,9 @@
},
/obj/effect/turf_decal/industrial/outline/yellow,
/obj/effect/decal/cleanable/cobweb,
-/obj/item/clothing/under/rank/security/officer/frontier,
-/obj/item/clothing/under/rank/security/officer/frontier,
-/obj/item/clothing/under/rank/security/officer/frontier,
+/obj/item/clothing/under/frontiersmen,
+/obj/item/clothing/under/frontiersmen,
+/obj/item/clothing/under/frontiersmen,
/obj/item/clothing/suit/armor/vest/bulletproof/frontier,
/obj/item/clothing/suit/armor/vest/bulletproof/frontier,
/obj/item/clothing/suit/armor/vest/bulletproof/frontier,
@@ -4092,7 +4092,7 @@
/turf/open/floor/plating/dirt/jungle,
/area/ruin/powered)
"Xx" = (
-/mob/living/simple_animal/hostile/frontier/ranged/mosin/neutered,
+/mob/living/simple_animal/hostile/human/frontier/ranged/mosin/neutered,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/tech,
/area/ship/storage)
diff --git a/_maps/RandomRuins/JungleRuins/jungle_medtech_outbreak.dmm b/_maps/RandomRuins/JungleRuins/jungle_medtech_outbreak.dmm
index 0f68c7b7ebd..e8f075b9005 100644
--- a/_maps/RandomRuins/JungleRuins/jungle_medtech_outbreak.dmm
+++ b/_maps/RandomRuins/JungleRuins/jungle_medtech_outbreak.dmm
@@ -22,7 +22,7 @@
/obj/effect/turf_decal/industrial/warning{
dir = 6
},
-/mob/living/simple_animal/hostile/zombie,
+/mob/living/simple_animal/hostile/human/zombie,
/turf/open/floor/plasteel/white,
/area/ship/science)
"aM" = (
@@ -234,7 +234,7 @@
/area/ship/engineering/electrical)
"fe" = (
/obj/effect/decal/cleanable/dirt/dust,
-/mob/living/simple_animal/hostile/zombie{
+/mob/living/simple_animal/hostile/human/zombie{
zombiejob = "Geneticist"
},
/turf/open/floor/plasteel/tech/techmaint,
@@ -511,7 +511,7 @@
dir = 1
},
/obj/effect/gibspawner/human,
-/mob/living/simple_animal/hostile/zombie{
+/mob/living/simple_animal/hostile/human/zombie{
zombiejob = "Janitor"
},
/turf/open/floor/plasteel/dark,
@@ -542,7 +542,7 @@
"jL" = (
/obj/structure/chair/comfy/orange/directional/north,
/obj/effect/decal/cleanable/dirt/dust,
-/mob/living/simple_animal/hostile/zombie{
+/mob/living/simple_animal/hostile/human/zombie{
name = "Zombiefied Facility Director";
zombiejob = "Research Director"
},
@@ -1113,7 +1113,7 @@
/area/ship/medical)
"rf" = (
/obj/effect/turf_decal/corner/opaque/orange/full,
-/mob/living/simple_animal/hostile/zombie,
+/mob/living/simple_animal/hostile/human/zombie,
/turf/open/floor/plasteel/white,
/area/ship/science/storage)
"ro" = (
@@ -1281,14 +1281,14 @@
/turf/open/floor/plating,
/area/ship/science/storage)
"uT" = (
-/mob/living/simple_animal/hostile/zombie,
+/mob/living/simple_animal/hostile/human/zombie,
/turf/open/floor/plating,
/area/ship/medical)
"ve" = (
/obj/effect/turf_decal/industrial/warning{
dir = 10
},
-/mob/living/simple_animal/hostile/zombie,
+/mob/living/simple_animal/hostile/human/zombie,
/turf/open/floor/plasteel/white,
/area/ship/science)
"vf" = (
@@ -1308,7 +1308,7 @@
dir = 10
},
/obj/machinery/light/directional/south,
-/mob/living/simple_animal/hostile/zombie,
+/mob/living/simple_animal/hostile/human/zombie,
/turf/open/floor/plasteel/white,
/area/ship/medical)
"vu" = (
@@ -1679,7 +1679,7 @@
pixel_x = -13;
pixel_y = -6
},
-/mob/living/simple_animal/hostile/zombie,
+/mob/living/simple_animal/hostile/human/zombie,
/turf/open/floor/plasteel/tech,
/area/ship/crew/office)
"Bh" = (
@@ -1743,7 +1743,7 @@
/turf/open/floor/plasteel/white,
/area/ship/science/storage)
"Cg" = (
-/mob/living/simple_animal/hostile/zombie{
+/mob/living/simple_animal/hostile/human/zombie{
zombiejob = "Assistant"
},
/obj/item/rack_parts,
@@ -2208,7 +2208,7 @@
/turf/open/floor/plasteel/tech,
/area/ship/science)
"Jx" = (
-/mob/living/simple_animal/hostile/zombie{
+/mob/living/simple_animal/hostile/human/zombie{
zombiejob = "Chemist"
},
/turf/open/floor/plasteel/white,
@@ -2411,7 +2411,7 @@
pixel_x = 4;
pixel_y = -13
},
-/mob/living/simple_animal/hostile/zombie{
+/mob/living/simple_animal/hostile/human/zombie{
zombiejob = "Assistant"
},
/turf/open/floor/plasteel/dark,
@@ -3069,7 +3069,7 @@
dir = 5
},
/obj/effect/decal/cleanable/dirt/dust,
-/mob/living/simple_animal/hostile/zombie{
+/mob/living/simple_animal/hostile/human/zombie{
zombiejob = "Assistant"
},
/turf/open/floor/plasteel/white,
diff --git a/_maps/RandomRuins/JungleRuins/jungle_nest.dmm b/_maps/RandomRuins/JungleRuins/jungle_nest.dmm
deleted file mode 100644
index 2783fc59549..00000000000
--- a/_maps/RandomRuins/JungleRuins/jungle_nest.dmm
+++ /dev/null
@@ -1,814 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"aH" = (
-/obj/structure/alien/weeds,
-/obj/structure/table/wood/fancy,
-/obj/machinery/chem_dispenser/drinks/beer{
- dir = 8
- },
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/cave/explored)
-"aW" = (
-/obj/structure/alien/weeds,
-/obj/structure/bed/nest,
-/obj/item/storage/bag/books,
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/cave/explored)
-"bB" = (
-/obj/structure/alien/weeds,
-/obj/structure/mecha_wreckage/seraph,
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/cave/explored)
-"ce" = (
-/obj/structure/alien/weeds,
-/obj/effect/mob_spawn/human/corpse/cargo_tech,
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/cave/explored)
-"cj" = (
-/obj/structure/alien/weeds,
-/obj/item/clothing/head/crown,
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/cave/explored)
-"cO" = (
-/obj/structure/alien/weeds,
-/obj/structure/barricade/wooden,
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/cave/explored)
-"dj" = (
-/obj/structure/alien/weeds,
-/obj/structure/alien/weeds/node,
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/cave/explored)
-"eA" = (
-/obj/structure/flora/ausbushes/pointybush,
-/turf/open/floor/plating/dirt/jungle,
-/area/overmap_encounter/planetoid/jungle/explored)
-"eB" = (
-/obj/structure/flora/ausbushes/reedbush,
-/turf/open/floor/plating/dirt/jungle,
-/area/overmap_encounter/planetoid/jungle/explored)
-"eG" = (
-/obj/structure/alien/weeds,
-/obj/structure/bed/nest,
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/cave/explored)
-"fj" = (
-/obj/structure/alien/weeds,
-/obj/structure/mecha_wreckage/ripley,
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/cave/explored)
-"fZ" = (
-/obj/structure/flora/ausbushes/grassybush,
-/turf/open/floor/plating/dirt/jungle,
-/area/overmap_encounter/planetoid/jungle/explored)
-"gU" = (
-/obj/structure/alien/weeds,
-/obj/effect/decal/remains/xeno,
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/cave/explored)
-"hu" = (
-/obj/structure/alien/weeds,
-/obj/structure/alien/weeds/node,
-/obj/machinery/vending/boozeomat,
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/cave/explored)
-"ia" = (
-/obj/structure/alien/weeds,
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/cave/explored)
-"iF" = (
-/turf/closed/mineral/random/jungle,
-/area/overmap_encounter/planetoid/cave/explored)
-"jI" = (
-/obj/structure/alien/resin/wall,
-/turf/closed/mineral/random/jungle,
-/area/overmap_encounter/planetoid/cave/explored)
-"kd" = (
-/obj/structure/alien/resin/membrane,
-/obj/structure/alien/weeds,
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/cave/explored)
-"lh" = (
-/obj/structure/alien/weeds,
-/obj/structure/sink/oil_well,
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/cave/explored)
-"lS" = (
-/obj/structure/alien/weeds,
-/obj/structure/bed/nest,
-/obj/item/clothing/glasses/night,
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/cave/explored)
-"mW" = (
-/obj/structure/alien/weeds,
-/obj/effect/decal/cleanable/xenoblood/xgibs/larva/body,
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/cave/explored)
-"nn" = (
-/obj/structure/barricade/wooden,
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/cave/explored)
-"oB" = (
-/obj/effect/decal/cleanable/xenoblood/xgibs/larva/body,
-/turf/open/floor/plating/dirt/jungle,
-/area/overmap_encounter/planetoid/jungle/explored)
-"oX" = (
-/obj/structure/alien/weeds,
-/obj/structure/alien/egg,
-/obj/item/toy/toy_xeno,
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/cave/explored)
-"qK" = (
-/obj/structure/flora/junglebush,
-/turf/open/floor/plating/dirt/jungle,
-/area/overmap_encounter/planetoid/jungle/explored)
-"rY" = (
-/obj/structure/alien/weeds,
-/obj/structure/table/wood/fancy,
-/obj/item/reagent_containers/food/drinks/bottle/fernet,
-/obj/item/reagent_containers/food/drinks/bottle/champagne,
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/cave/explored)
-"sw" = (
-/obj/structure/alien/resin/wall,
-/turf/open/floor/plating/dirt/jungle,
-/area/overmap_encounter/planetoid/cave/explored)
-"tZ" = (
-/obj/effect/decal/cleanable/xenoblood,
-/turf/open/floor/plating/dirt/jungle,
-/area/overmap_encounter/planetoid/jungle/explored)
-"ul" = (
-/obj/structure/alien/weeds,
-/obj/structure/bed/nest,
-/obj/item/storage/box/alienhandcuffs,
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/cave/explored)
-"uo" = (
-/obj/structure/alien/weeds,
-/obj/effect/mob_spawn/human/corpse/assistant,
-/obj/structure/bed/nest,
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/cave/explored)
-"uR" = (
-/obj/effect/decal/cleanable/xenoblood/xgibs/up,
-/turf/open/floor/plating/dirt/jungle,
-/area/overmap_encounter/planetoid/jungle/explored)
-"vg" = (
-/obj/structure/alien/weeds,
-/obj/structure/bed/nest,
-/obj/item/clothing/under/costume/mech_suit/blue,
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/cave/explored)
-"vt" = (
-/obj/structure/alien/resin/wall,
-/turf/open/floor/plating/grass,
-/area/overmap_encounter/planetoid/cave/explored)
-"vW" = (
-/obj/structure/alien/weeds,
-/obj/structure/bed/nest,
-/obj/item/mecha_parts/mecha_equipment/weapon/energy/plasma,
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/cave/explored)
-"wc" = (
-/obj/structure/alien/weeds,
-/obj/structure/alien/egg,
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/cave/explored)
-"wg" = (
-/obj/structure/alien/weeds,
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/cave/explored)
-"wl" = (
-/obj/structure/alien/weeds,
-/obj/effect/decal/cleanable/xenoblood/xgibs/torso,
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/jungle/explored)
-"wt" = (
-/obj/structure/alien/weeds,
-/obj/structure/alien/resin/wall,
-/obj/structure/sign/poster/contraband/lusty_xenomorph,
-/turf/open/floor/plating/grass,
-/area/overmap_encounter/planetoid/cave/explored)
-"xY" = (
-/obj/structure/alien/weeds,
-/obj/effect/mob_spawn/human/corpse/assistant,
-/obj/structure/bed/nest,
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/cave/explored)
-"ya" = (
-/obj/effect/decal/cleanable/xenoblood/xgibs/larva,
-/turf/open/floor/plating/dirt/jungle,
-/area/overmap_encounter/planetoid/jungle/explored)
-"yF" = (
-/obj/structure/alien/weeds,
-/obj/structure/alien/resin/wall,
-/turf/open/floor/plating/grass,
-/area/overmap_encounter/planetoid/cave/explored)
-"yG" = (
-/obj/structure/alien/weeds,
-/mob/living/simple_animal/hostile/alien/maid,
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/cave/explored)
-"yV" = (
-/obj/structure/alien/resin/wall,
-/obj/structure/alien/weeds,
-/turf/closed/mineral/random/jungle,
-/area/overmap_encounter/planetoid/cave/explored)
-"zi" = (
-/obj/structure/alien/resin/wall,
-/obj/structure/alien/weeds,
-/turf/open/floor/plating/dirt/jungle,
-/area/overmap_encounter/planetoid/cave/explored)
-"zv" = (
-/obj/structure/alien/weeds,
-/turf/open/floor/plating/dirt/jungle,
-/area/overmap_encounter/planetoid/jungle/explored)
-"zy" = (
-/obj/structure/alien/resin/wall,
-/obj/structure/alien/weeds,
-/turf/open/floor/plating/grass,
-/area/overmap_encounter/planetoid/cave/explored)
-"zz" = (
-/obj/structure/alien/weeds,
-/obj/effect/decal/remains/xeno/larva,
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/cave/explored)
-"AC" = (
-/obj/structure/alien/weeds,
-/obj/structure/barricade/wooden/crude,
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/cave/explored)
-"AE" = (
-/obj/structure/alien/weeds,
-/obj/structure/bed/nest,
-/obj/item/clothing/head/helmet/riot,
-/obj/item/shield/riot,
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/cave/explored)
-"AI" = (
-/obj/structure/alien/weeds,
-/obj/structure/alien/weeds/node,
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/cave/explored)
-"Du" = (
-/obj/structure/alien/weeds,
-/obj/effect/mob_spawn/human/corpse/nanotrasensoldier,
-/obj/structure/bed/nest,
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/cave/explored)
-"DP" = (
-/obj/structure/alien/resin/wall,
-/obj/structure/sign/poster/contraband/backdoor_xeno_babes_6,
-/turf/open/floor/plating/grass,
-/area/overmap_encounter/planetoid/cave/explored)
-"Ee" = (
-/obj/structure/alien/weeds,
-/obj/structure/bed/nest,
-/obj/item/kitchen/knife/combat/survival,
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/cave/explored)
-"EC" = (
-/obj/structure/alien/weeds,
-/obj/structure/bed/nest,
-/obj/effect/spawner/lootdrop/maintenance/two,
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/cave/explored)
-"Fe" = (
-/obj/structure/alien/weeds,
-/obj/structure/bed/nest,
-/obj/item/cartridge,
-/obj/item/clothing/under/rank/civilian/curator,
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/cave/explored)
-"FA" = (
-/obj/structure/alien/weeds,
-/obj/structure/bed/nest,
-/obj/item/clothing/head/helmet/space/eva,
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/cave/explored)
-"Gk" = (
-/obj/structure/alien/weeds,
-/mob/living/simple_animal/hostile/alien/sentinel,
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/cave/explored)
-"Gt" = (
-/obj/structure/alien/weeds,
-/obj/structure/alien/resin/membrane,
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/cave/explored)
-"Hh" = (
-/obj/structure/alien/weeds,
-/mob/living/simple_animal/hostile/alien/drone,
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/cave/explored)
-"Hz" = (
-/obj/structure/alien/weeds,
-/obj/structure/alien/egg/burst,
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/cave/explored)
-"II" = (
-/turf/open/floor/plating/dirt/jungle,
-/area/overmap_encounter/planetoid/jungle/explored)
-"KR" = (
-/obj/structure/alien/weeds,
-/obj/structure/table/wood/fancy,
-/obj/machinery/dish_drive,
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/cave/explored)
-"Lg" = (
-/obj/structure/alien/weeds,
-/obj/structure/alien/resin/membrane,
-/turf/open/floor/plating/grass,
-/area/overmap_encounter/planetoid/cave/explored)
-"Lh" = (
-/obj/structure/alien/weeds,
-/mob/living/simple_animal/hostile/alien/queen/large,
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/cave/explored)
-"MJ" = (
-/obj/structure/alien/weeds,
-/obj/effect/decal/remains/human,
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/cave/explored)
-"Ne" = (
-/obj/structure/alien/weeds,
-/obj/structure/alien/weeds/node,
-/mob/living/simple_animal/hostile/alien,
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/cave/explored)
-"NK" = (
-/obj/structure/alien/weeds,
-/obj/item/bodypart/chest/larva,
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/cave/explored)
-"RG" = (
-/obj/structure/alien/weeds,
-/turf/closed/mineral/random/jungle,
-/area/overmap_encounter/planetoid/cave/explored)
-"TS" = (
-/obj/structure/alien/weeds,
-/obj/structure/bed/nest,
-/obj/item/mecha_parts/mecha_equipment/drill/diamonddrill,
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/cave/explored)
-"TY" = (
-/obj/structure/flora/junglebush/large,
-/turf/open/floor/plating/dirt/jungle,
-/area/overmap_encounter/planetoid/jungle/explored)
-"UV" = (
-/obj/structure/alien/weeds,
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/jungle/explored)
-"VK" = (
-/obj/structure/flora/tree/jungle/small,
-/turf/open/floor/plating/dirt/jungle,
-/area/overmap_encounter/planetoid/jungle/explored)
-"VT" = (
-/obj/structure/alien/weeds,
-/obj/structure/table/wood/fancy,
-/obj/machinery/chem_dispenser/drinks{
- dir = 8
- },
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/cave/explored)
-"Wb" = (
-/turf/template_noop,
-/area/template_noop)
-"Wj" = (
-/obj/structure/flora/tree/jungle,
-/turf/open/floor/plating/dirt/jungle,
-/area/overmap_encounter/planetoid/jungle/explored)
-"Yq" = (
-/obj/structure/flora/ausbushes/stalkybush,
-/turf/open/floor/plating/dirt/jungle,
-/area/overmap_encounter/planetoid/jungle/explored)
-
-(1,1,1) = {"
-Wb
-Wb
-Wb
-Wb
-iF
-iF
-II
-II
-tZ
-eB
-Wb
-Wb
-Wb
-Wb
-Wb
-"}
-(2,1,1) = {"
-Wb
-Wb
-iF
-iF
-iF
-iF
-RG
-Yq
-II
-Wj
-II
-Wb
-Wb
-Wb
-Wb
-"}
-(3,1,1) = {"
-Wb
-iF
-jI
-zi
-zi
-zi
-vt
-zv
-zv
-II
-II
-II
-Wb
-Wb
-Wb
-"}
-(4,1,1) = {"
-iF
-jI
-zy
-Hz
-zz
-NK
-zy
-zy
-zy
-ya
-TY
-II
-Wb
-Wb
-Wb
-"}
-(5,1,1) = {"
-iF
-vt
-wc
-ia
-ia
-ia
-ia
-vg
-zy
-zv
-II
-II
-fZ
-Wb
-Wb
-"}
-(6,1,1) = {"
-iF
-vt
-wc
-AI
-fj
-ce
-ia
-ia
-zy
-zy
-zy
-zy
-II
-II
-Wb
-"}
-(7,1,1) = {"
-iF
-sw
-vt
-ia
-Lh
-ia
-yF
-Gt
-yF
-lh
-lS
-zy
-II
-qK
-Wb
-"}
-(8,1,1) = {"
-iF
-iF
-vt
-mW
-ia
-ia
-yF
-ia
-yF
-dj
-Du
-zy
-eB
-oB
-Yq
-"}
-(9,1,1) = {"
-iF
-iF
-vt
-vt
-cj
-mW
-yF
-Hh
-yF
-Gk
-AE
-zy
-UV
-II
-II
-"}
-(10,1,1) = {"
-Wb
-iF
-iF
-vt
-oX
-yF
-yF
-ia
-yF
-ia
-zy
-vt
-UV
-VK
-II
-"}
-(11,1,1) = {"
-Wb
-iF
-iF
-vt
-yF
-yF
-EC
-ia
-yF
-Gt
-zy
-cO
-UV
-UV
-TY
-"}
-(12,1,1) = {"
-Wb
-iF
-iF
-vt
-ia
-gU
-AI
-ia
-ia
-ia
-kd
-AC
-wl
-UV
-II
-"}
-(13,1,1) = {"
-Wb
-iF
-sw
-zy
-Gt
-yF
-yF
-yF
-yF
-yF
-zy
-nn
-UV
-UV
-eA
-"}
-(14,1,1) = {"
-Wb
-iF
-vt
-uo
-ia
-ia
-ia
-ia
-bB
-vW
-zy
-zy
-zy
-zy
-uR
-"}
-(15,1,1) = {"
-Wb
-iF
-DP
-FA
-ia
-Hh
-ia
-wg
-xY
-yF
-yF
-Fe
-aW
-zy
-Yq
-"}
-(16,1,1) = {"
-Wb
-iF
-sw
-Ee
-ia
-AI
-ia
-ia
-TS
-yF
-ia
-Ne
-eG
-zy
-iF
-"}
-(17,1,1) = {"
-Wb
-iF
-jI
-vt
-yF
-Lg
-yF
-yF
-yF
-yF
-ia
-MJ
-ul
-yV
-iF
-"}
-(18,1,1) = {"
-Wb
-Wb
-iF
-jI
-vt
-ia
-ia
-ia
-ia
-ia
-ia
-zy
-vt
-jI
-iF
-"}
-(19,1,1) = {"
-Wb
-Wb
-Wb
-iF
-jI
-vt
-vt
-Gt
-yF
-wt
-yF
-zy
-iF
-iF
-Wb
-"}
-(20,1,1) = {"
-Wb
-Wb
-Wb
-Wb
-iF
-iF
-vt
-ia
-ia
-ia
-KR
-zy
-iF
-Wb
-Wb
-"}
-(21,1,1) = {"
-Wb
-Wb
-Wb
-Wb
-Wb
-Wb
-jI
-vt
-hu
-yG
-rY
-yV
-iF
-Wb
-Wb
-"}
-(22,1,1) = {"
-Wb
-Wb
-Wb
-Wb
-Wb
-Wb
-Wb
-jI
-vt
-VT
-aH
-yV
-Wb
-Wb
-Wb
-"}
-(23,1,1) = {"
-Wb
-Wb
-Wb
-Wb
-Wb
-Wb
-Wb
-iF
-sw
-vt
-jI
-jI
-Wb
-Wb
-Wb
-"}
-(24,1,1) = {"
-Wb
-Wb
-Wb
-Wb
-Wb
-Wb
-Wb
-Wb
-iF
-iF
-iF
-Wb
-Wb
-Wb
-Wb
-"}
-(25,1,1) = {"
-Wb
-Wb
-Wb
-Wb
-Wb
-Wb
-Wb
-Wb
-Wb
-Wb
-Wb
-Wb
-Wb
-Wb
-Wb
-"}
diff --git a/_maps/RandomRuins/JungleRuins/jungle_paradise.dmm b/_maps/RandomRuins/JungleRuins/jungle_paradise.dmm
index bc462784bca..9457e639c5c 100644
--- a/_maps/RandomRuins/JungleRuins/jungle_paradise.dmm
+++ b/_maps/RandomRuins/JungleRuins/jungle_paradise.dmm
@@ -1711,7 +1711,7 @@
/turf/open/floor/mineral/titanium/white,
/area/overmap_encounter/planetoid/cave/explored)
"kk" = (
-/obj/machinery/computer/communications{
+/obj/structure/frame/computer{
dir = 4
},
/turf/open/floor/mineral/titanium/blue,
diff --git a/_maps/RandomRuins/JungleRuins/jungle_pirate.dmm b/_maps/RandomRuins/JungleRuins/jungle_pirate.dmm
deleted file mode 100644
index 83f17d9f702..00000000000
--- a/_maps/RandomRuins/JungleRuins/jungle_pirate.dmm
+++ /dev/null
@@ -1,747 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"ay" = (
-/obj/structure/statue/sandstone/venus{
- dir = 1
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"aR" = (
-/obj/effect/decal/cleanable/oil,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"ch" = (
-/obj/structure/railing/corner{
- dir = 8
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"cM" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/pod/dark,
-/area/overmap_encounter/planetoid/jungle/explored)
-"ej" = (
-/obj/structure/railing,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"eK" = (
-/obj/item/bedsheet/syndie,
-/obj/structure/bed,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"eV" = (
-/obj/structure/railing,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood,
-/area/overmap_encounter/planetoid/jungle/explored)
-"gz" = (
-/obj/structure/stairs/east,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"gE" = (
-/obj/structure/closet/crate/wooden/toy,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"gW" = (
-/obj/structure/railing,
-/obj/effect/decal/cleanable/ash,
-/obj/structure/fluff/oldturret,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"iw" = (
-/obj/item/ammo_box/c45,
-/obj/structure/table/wood/poker,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"iC" = (
-/obj/item/ammo_box/c9mm,
-/obj/structure/table/wood/poker,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"iY" = (
-/obj/structure/railing{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"jc" = (
-/obj/structure/railing{
- dir = 1
- },
-/obj/structure/railing{
- dir = 8
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"jN" = (
-/obj/effect/turf_decal/siding/wood/corner{
- dir = 1
- },
-/turf/open/floor/plating/dirt/jungle/dark/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"kh" = (
-/turf/closed/wall/mineral/wood,
-/area/ruin/unpowered)
-"lv" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/siding/wood{
- dir = 1
- },
-/turf/open/floor/wood,
-/area/overmap_encounter/planetoid/jungle/explored)
-"lN" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/stairs/east,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"nD" = (
-/obj/item/ammo_box/a40mm,
-/obj/structure/table/wood/poker,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"of" = (
-/turf/open/floor/pod/dark,
-/area/overmap_encounter/planetoid/jungle/explored)
-"oj" = (
-/obj/effect/decal/cleanable/food/egg_smudge,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"oX" = (
-/obj/structure/curtain/bounty,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"pd" = (
-/obj/item/storage/bag/money/vault,
-/obj/item/storage/bag/money/vault,
-/obj/item/storage/bag/money/vault,
-/obj/item/storage/bag/money/vault,
-/obj/item/storage/bag/money/vault,
-/obj/structure/rack,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"pR" = (
-/obj/structure/railing{
- dir = 4
- },
-/mob/living/simple_animal/hostile/pirate/ranged,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"qL" = (
-/obj/structure/table/wood/poker,
-/obj/item/gun/energy/laser,
-/turf/open/floor/carpet/red,
-/area/ruin/unpowered)
-"rc" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood,
-/area/overmap_encounter/planetoid/jungle/explored)
-"sH" = (
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"tw" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 1
- },
-/turf/open/floor/plating/dirt/jungle/dark/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"tG" = (
-/turf/open/water/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"uf" = (
-/obj/structure/closet/crate/goldcrate,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"xd" = (
-/turf/open/floor/plating/dirt/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"xT" = (
-/obj/structure/bonfire/prelit,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"ze" = (
-/obj/structure/railing/corner{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"zk" = (
-/obj/structure/railing{
- dir = 1
- },
-/obj/structure/railing{
- dir = 5
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"zN" = (
-/obj/effect/turf_decal/siding/wood/corner{
- dir = 4
- },
-/turf/open/floor/plating/dirt/jungle/dark/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"BV" = (
-/obj/structure/bonfire/prelit,
-/turf/open/floor/plating/dirt/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"CG" = (
-/obj/structure/curtain/bounty,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"Dh" = (
-/obj/structure/closet/crate/goldcrate,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood,
-/area/overmap_encounter/planetoid/jungle/explored)
-"Dm" = (
-/obj/structure/shuttle/engine/propulsion/burst{
- dir = 4
- },
-/turf/open/water/jungle/lit,
-/area/ruin/unpowered)
-"DC" = (
-/obj/structure/railing,
-/obj/structure/railing{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"DH" = (
-/mob/living/simple_animal/hostile/pirate/ranged/space,
-/turf/open/floor/carpet/red,
-/area/ruin/unpowered)
-"DS" = (
-/mob/living/simple_animal/hostile/pirate/ranged,
-/turf/open/floor/wood,
-/area/overmap_encounter/planetoid/jungle/explored)
-"DV" = (
-/obj/vehicle/ridden/lavaboat,
-/turf/open/water/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"Er" = (
-/obj/structure/dresser,
-/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"Ew" = (
-/obj/structure/table/wood/poker,
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/mob/living/simple_animal/parrot{
- faction = list("pirate");
- name = "Pegwing"
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"Fi" = (
-/obj/structure/railing,
-/turf/open/floor/wood,
-/area/overmap_encounter/planetoid/jungle/explored)
-"Ic" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 4
- },
-/turf/open/floor/plating/dirt/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"IH" = (
-/obj/item/reagent_containers/glass/bucket/wooden,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"Jx" = (
-/turf/open/floor/wood,
-/area/overmap_encounter/planetoid/jungle/explored)
-"Kd" = (
-/obj/structure/fermenting_barrel,
-/turf/open/floor/wood,
-/area/overmap_encounter/planetoid/jungle/explored)
-"Kl" = (
-/turf/open/floor/plating/dirt/jungle/dark/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"KD" = (
-/obj/machinery/grill,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"LD" = (
-/obj/item/ammo_box/c45_speedloader,
-/obj/structure/table/wood/poker,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"LT" = (
-/mob/living/simple_animal/hostile/pirate/melee,
-/obj/structure/chair/wood,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood,
-/area/overmap_encounter/planetoid/jungle/explored)
-"MX" = (
-/obj/structure/fluff/oldturret,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"Nq" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/water/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"NY" = (
-/obj/structure/railing,
-/obj/effect/decal/cleanable/ash/large,
-/obj/structure/fluff/oldturret,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"Pp" = (
-/obj/structure/railing{
- dir = 1
- },
-/obj/effect/decal/cleanable/ash,
-/obj/structure/fluff/oldturret,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"PI" = (
-/obj/structure/closet/crate/secure/weapon,
-/obj/item/gun/energy/laser,
-/obj/item/gun/energy/laser,
-/obj/item/gun/energy/laser,
-/turf/open/floor/wood,
-/area/overmap_encounter/planetoid/jungle/explored)
-"Qq" = (
-/turf/template_noop,
-/area/template_noop)
-"RY" = (
-/obj/effect/decal/cleanable/food/flour,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"Sk" = (
-/obj/structure/safe,
-/obj/item/gun/ballistic/shotgun/brimstone,
-/obj/item/gun/ballistic/shotgun/brimstone,
-/obj/item/gun/ballistic/shotgun/brimstone,
-/obj/item/gun/grenadelauncher,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"SA" = (
-/obj/structure/railing,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"Th" = (
-/obj/structure/railing{
- dir = 1
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"TH" = (
-/obj/structure/railing,
-/obj/structure/railing{
- dir = 8
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"TX" = (
-/obj/structure/closet/crate/secure/loot,
-/turf/open/floor/wood,
-/area/overmap_encounter/planetoid/jungle/explored)
-"UA" = (
-/obj/structure/railing{
- dir = 1
- },
-/obj/effect/decal/cleanable/ash/large,
-/obj/structure/fluff/oldturret,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"UR" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 8
- },
-/turf/open/floor/plating/dirt/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"UX" = (
-/mob/living/simple_animal/hostile/pirate/melee,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"Vf" = (
-/turf/open/floor/carpet/red,
-/area/ruin/unpowered)
-"Wk" = (
-/obj/structure/closet/crate/critter,
-/obj/effect/decal/cleanable/dirt,
-/mob/living/simple_animal/parrot{
- faction = list("pirate")
- },
-/turf/open/floor/wood,
-/area/overmap_encounter/planetoid/jungle/explored)
-"Wp" = (
-/obj/structure/railing/corner{
- dir = 1
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"WA" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/oil,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"Xb" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/carpet/red,
-/area/ruin/unpowered)
-"Xt" = (
-/obj/structure/table/wood/poker,
-/obj/item/nullrod/claymore/saber/pirate,
-/obj/item/melee/transforming/energy/sword/saber/pirate,
-/turf/open/floor/carpet/red,
-/area/ruin/unpowered)
-"XA" = (
-/mob/living/simple_animal/hostile/pirate/melee,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"Zl" = (
-/obj/structure/ore_box,
-/turf/open/floor/wood,
-/area/overmap_encounter/planetoid/jungle/explored)
-"ZM" = (
-/obj/structure/closet/crate/goldcrate,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-
-(1,1,1) = {"
-Qq
-Qq
-xd
-xd
-Kl
-Kl
-tG
-tG
-tG
-tG
-tG
-Kl
-Kl
-Qq
-Qq
-"}
-(2,1,1) = {"
-Qq
-BV
-xd
-Kl
-Kl
-tG
-tG
-tG
-ay
-MX
-tG
-tG
-Kl
-Kl
-Qq
-"}
-(3,1,1) = {"
-Ic
-Ic
-zN
-Kl
-tG
-tG
-tG
-tG
-sH
-sH
-tG
-tG
-tG
-Kl
-Qq
-"}
-(4,1,1) = {"
-lv
-rc
-tw
-tG
-tG
-tG
-tG
-Th
-sH
-WA
-ej
-tG
-tG
-Kl
-Qq
-"}
-(5,1,1) = {"
-Zl
-Jx
-tw
-tG
-tG
-tG
-jc
-Wp
-UX
-sH
-ch
-TH
-tG
-Kl
-Kl
-"}
-(6,1,1) = {"
-Kd
-Jx
-tw
-tG
-tG
-tG
-UA
-sH
-sH
-sH
-sH
-gW
-tG
-tG
-Kl
-"}
-(7,1,1) = {"
-Dh
-eV
-tw
-tG
-tG
-jc
-ze
-sH
-uf
-uf
-sH
-ch
-TH
-tG
-Kl
-"}
-(8,1,1) = {"
-Jx
-Fi
-tG
-tG
-DV
-Pp
-XA
-nD
-kh
-kh
-iC
-UX
-NY
-DV
-Kl
-"}
-(9,1,1) = {"
-PI
-eV
-tG
-tG
-tG
-Th
-sH
-LD
-kh
-kh
-iw
-aR
-SA
-tG
-Kl
-"}
-(10,1,1) = {"
-LT
-Jx
-of
-cM
-of
-WA
-sH
-sH
-oj
-sH
-sH
-sH
-sH
-tG
-tG
-"}
-(11,1,1) = {"
-Jx
-Jx
-cM
-of
-of
-IH
-gz
-RY
-KD
-xT
-sH
-lN
-gE
-tG
-tG
-"}
-(12,1,1) = {"
-TX
-Fi
-tG
-tG
-tG
-kh
-kh
-oX
-kh
-kh
-oX
-kh
-kh
-tG
-tG
-"}
-(13,1,1) = {"
-Wk
-eV
-tG
-tG
-DV
-kh
-Er
-Xb
-qL
-Xt
-Vf
-pd
-kh
-DV
-Kl
-"}
-(14,1,1) = {"
-Kd
-Fi
-tw
-tG
-tG
-kh
-eK
-DH
-Xb
-Vf
-Vf
-ZM
-kh
-tG
-Kl
-"}
-(15,1,1) = {"
-Kd
-rc
-tw
-tG
-tG
-kh
-kh
-Ew
-sH
-sH
-Sk
-kh
-kh
-tG
-Kl
-"}
-(16,1,1) = {"
-DS
-Jx
-tw
-tG
-tG
-Dm
-kh
-kh
-oX
-CG
-kh
-kh
-Dm
-tG
-Kl
-"}
-(17,1,1) = {"
-UR
-UR
-jN
-Kl
-tG
-tG
-Dm
-zk
-pR
-iY
-DC
-Dm
-tG
-Kl
-Kl
-"}
-(18,1,1) = {"
-Qq
-xd
-xd
-Kl
-tG
-tG
-tG
-tG
-tG
-Nq
-tG
-tG
-tG
-Kl
-Qq
-"}
-(19,1,1) = {"
-Qq
-BV
-xd
-Kl
-Kl
-Kl
-tG
-tG
-tG
-tG
-tG
-tG
-Kl
-Kl
-Qq
-"}
-(20,1,1) = {"
-Qq
-Qq
-xd
-xd
-xd
-Kl
-Kl
-Kl
-tG
-tG
-Kl
-Kl
-Kl
-Qq
-Qq
-"}
diff --git a/_maps/RandomRuins/JungleRuins/jungle_pizzawave.dmm b/_maps/RandomRuins/JungleRuins/jungle_pizzawave.dmm
deleted file mode 100644
index e4dee4cec86..00000000000
--- a/_maps/RandomRuins/JungleRuins/jungle_pizzawave.dmm
+++ /dev/null
@@ -1,452 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"a" = (
-/turf/closed/mineral/random/jungle,
-/area/overmap_encounter/planetoid/cave/explored)
-"b" = (
-/obj/machinery/jukebox,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/vaporwave,
-/area/overmap_encounter/planetoid/cave/explored)
-"c" = (
-/obj/structure/table/wood,
-/turf/open/floor/grass,
-/area/overmap_encounter/planetoid/cave/explored)
-"d" = (
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/memeorgans,
-/turf/open/floor/grass,
-/area/overmap_encounter/planetoid/cave/explored)
-"e" = (
-/obj/structure/flora/ausbushes/fullgrass,
-/turf/open/floor/grass,
-/area/overmap_encounter/planetoid/cave/explored)
-"f" = (
-/mob/living/simple_animal/hostile/lizard/space,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/vaporwave,
-/area/overmap_encounter/planetoid/cave/explored)
-"g" = (
-/obj/structure/table/wood/fancy/purple,
-/turf/open/floor/plasteel/vaporwave,
-/area/overmap_encounter/planetoid/cave/explored)
-"h" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/vaporwave,
-/area/overmap_encounter/planetoid/cave/explored)
-"i" = (
-/turf/open/floor/grass,
-/area/overmap_encounter/planetoid/cave/explored)
-"j" = (
-/obj/structure/flora/ausbushes/brflowers,
-/turf/open/floor/grass,
-/area/overmap_encounter/planetoid/cave/explored)
-"k" = (
-/mob/living/simple_animal/butterfly,
-/turf/open/floor/grass,
-/area/overmap_encounter/planetoid/cave/explored)
-"l" = (
-/obj/structure/flora/ausbushes/reedbush,
-/turf/open/floor/grass,
-/area/overmap_encounter/planetoid/cave/explored)
-"m" = (
-/obj/structure/table/wood,
-/obj/item/reagent_containers/food/drinks/colocup/lean,
-/turf/open/floor/grass,
-/area/overmap_encounter/planetoid/cave/explored)
-"n" = (
-/obj/structure/table/wood/fancy/purple,
-/obj/item/flashlight/glowstick/pink,
-/obj/item/flashlight/glowstick,
-/obj/item/flashlight/glowstick/blue,
-/obj/item/flashlight/glowstick/cyan,
-/obj/item/flashlight/glowstick/orange,
-/obj/item/flashlight/glowstick/red,
-/obj/item/flashlight/glowstick/yellow,
-/turf/open/floor/plasteel/vaporwave,
-/area/overmap_encounter/planetoid/cave/explored)
-"p" = (
-/obj/structure/statue/sandstone/venus{
- dir = 8
- },
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/vaporwave,
-/area/overmap_encounter/planetoid/cave/explored)
-"s" = (
-/obj/structure/flora/tree/jungle,
-/turf/open/floor/grass,
-/area/overmap_encounter/planetoid/cave/explored)
-"t" = (
-/obj/structure/musician/piano,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/vaporwave,
-/area/overmap_encounter/planetoid/cave/explored)
-"u" = (
-/obj/structure/table/wood/fancy/purple,
-/obj/item/storage/pill_bottle/zoom,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/spacecash/bundle/c1000,
-/turf/open/floor/plasteel/vaporwave,
-/area/overmap_encounter/planetoid/cave/explored)
-"v" = (
-/obj/structure/flora/ausbushes/lavendergrass,
-/obj/structure/flora/ausbushes/brflowers,
-/turf/open/floor/grass,
-/area/overmap_encounter/planetoid/cave/explored)
-"w" = (
-/obj/structure/window/reinforced/tinted/fulltile,
-/obj/structure/grille,
-/turf/open/floor/plasteel/vaporwave,
-/area/overmap_encounter/planetoid/cave/explored)
-"x" = (
-/obj/structure/sink/puddle,
-/turf/open/floor/grass,
-/area/overmap_encounter/planetoid/cave/explored)
-"z" = (
-/turf/template_noop,
-/area/template_noop)
-"A" = (
-/obj/structure/flora/ausbushes/sunnybush,
-/turf/open/floor/grass,
-/area/overmap_encounter/planetoid/cave/explored)
-"B" = (
-/obj/structure/table/wood,
-/obj/item/pizzabox/meat,
-/turf/open/floor/grass,
-/area/overmap_encounter/planetoid/cave/explored)
-"D" = (
-/mob/living/simple_animal/pet/gondola,
-/turf/open/floor/grass,
-/area/overmap_encounter/planetoid/cave/explored)
-"E" = (
-/obj/structure/flora/tree/jungle/small,
-/turf/open/floor/grass,
-/area/overmap_encounter/planetoid/cave/explored)
-"F" = (
-/obj/machinery/door/airlock/grunge,
-/turf/open/floor/plasteel/vaporwave,
-/area/overmap_encounter/planetoid/cave/explored)
-"G" = (
-/obj/structure/table/wood,
-/obj/item/storage/pill_bottle/dice,
-/obj/item/spacecash/bundle/c1000,
-/turf/open/floor/grass,
-/area/overmap_encounter/planetoid/cave/explored)
-"H" = (
-/obj/structure/flora/ausbushes/lavendergrass,
-/turf/open/floor/grass,
-/area/overmap_encounter/planetoid/cave/explored)
-"I" = (
-/obj/structure/table/wood/fancy/royalblue,
-/obj/item/clothing/glasses/sunglasses/big,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/vaporwave,
-/area/overmap_encounter/planetoid/cave/explored)
-"K" = (
-/obj/machinery/door/airlock/grunge,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/vaporwave,
-/area/overmap_encounter/planetoid/cave/explored)
-"L" = (
-/obj/structure/bed/pod,
-/turf/open/floor/grass,
-/area/overmap_encounter/planetoid/cave/explored)
-"M" = (
-/obj/structure/statue/sandstone/venus,
-/obj/effect/decal/cleanable/cobweb,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/vaporwave,
-/area/overmap_encounter/planetoid/cave/explored)
-"N" = (
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/minor/kittyears_or_rabbitears,
-/turf/open/floor/grass,
-/area/overmap_encounter/planetoid/cave/explored)
-"O" = (
-/turf/open/floor/plasteel/vaporwave,
-/area/overmap_encounter/planetoid/cave/explored)
-"P" = (
-/obj/effect/decal/cleanable/greenglow,
-/turf/closed/wall,
-/area/overmap_encounter/planetoid/cave/explored)
-"Q" = (
-/obj/structure/table/wood/fancy/royalblue,
-/obj/item/statuebust,
-/turf/open/floor/plasteel/vaporwave,
-/area/overmap_encounter/planetoid/cave/explored)
-"R" = (
-/obj/effect/decal/cleanable/greenglow,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/closed/wall,
-/area/overmap_encounter/planetoid/cave/explored)
-"S" = (
-/mob/living/simple_animal/hostile/lightgeist,
-/turf/open/floor/plasteel/vaporwave,
-/area/overmap_encounter/planetoid/cave/explored)
-"T" = (
-/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/grass,
-/area/overmap_encounter/planetoid/cave/explored)
-"U" = (
-/obj/structure/table/wood/fancy/purple,
-/obj/item/clothing/suit/det_suit,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/vaporwave,
-/area/overmap_encounter/planetoid/cave/explored)
-
-(1,1,1) = {"
-z
-z
-z
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-z
-z
-"}
-(2,1,1) = {"
-z
-z
-a
-a
-a
-a
-a
-i
-i
-i
-l
-a
-a
-a
-z
-"}
-(3,1,1) = {"
-z
-a
-a
-a
-a
-i
-H
-i
-i
-s
-i
-H
-a
-a
-z
-"}
-(4,1,1) = {"
-a
-a
-a
-a
-e
-i
-k
-i
-D
-i
-x
-i
-B
-a
-a
-"}
-(5,1,1) = {"
-a
-a
-H
-i
-i
-i
-N
-d
-i
-v
-i
-k
-c
-a
-a
-"}
-(6,1,1) = {"
-a
-a
-i
-P
-P
-R
-P
-P
-P
-P
-P
-i
-e
-T
-a
-"}
-(7,1,1) = {"
-a
-i
-l
-P
-M
-h
-U
-u
-O
-t
-P
-i
-i
-G
-a
-"}
-(8,1,1) = {"
-a
-i
-i
-w
-I
-h
-O
-S
-O
-h
-K
-H
-k
-m
-a
-"}
-(9,1,1) = {"
-a
-k
-e
-w
-Q
-O
-f
-h
-O
-O
-F
-i
-i
-a
-a
-"}
-(10,1,1) = {"
-a
-j
-i
-P
-p
-O
-g
-n
-O
-b
-P
-j
-L
-a
-a
-"}
-(11,1,1) = {"
-a
-i
-i
-P
-P
-P
-P
-P
-P
-P
-P
-i
-a
-a
-z
-"}
-(12,1,1) = {"
-a
-a
-i
-i
-k
-i
-i
-i
-i
-i
-H
-A
-a
-a
-z
-"}
-(13,1,1) = {"
-z
-a
-a
-a
-j
-l
-e
-i
-k
-E
-i
-a
-a
-a
-z
-"}
-(14,1,1) = {"
-z
-a
-a
-a
-a
-a
-a
-H
-i
-i
-a
-a
-a
-z
-z
-"}
-(15,1,1) = {"
-z
-z
-z
-a
-a
-a
-a
-a
-a
-a
-a
-z
-z
-z
-z
-"}
diff --git a/_maps/RandomRuins/JungleRuins/jungle_seedling.dmm b/_maps/RandomRuins/JungleRuins/jungle_seedling.dmm
deleted file mode 100644
index 3dff53c3263..00000000000
--- a/_maps/RandomRuins/JungleRuins/jungle_seedling.dmm
+++ /dev/null
@@ -1,462 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"cO" = (
-/obj/machinery/door/airlock/survival_pod,
-/turf/open/floor/plasteel/tech/grid,
-/area/ruin/powered)
-"dT" = (
-/obj/structure/flora/stump,
-/turf/open/floor/plating/dirt/jungle/dark/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"fj" = (
-/obj/structure/flora/rock/jungle,
-/turf/open/floor/plating/grass/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"iB" = (
-/obj/structure/fence/corner{
- dir = 1
- },
-/turf/open/floor/plating/grass/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"iJ" = (
-/obj/structure/flora/junglebush/large,
-/turf/open/floor/plating/grass/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"iX" = (
-/obj/structure/fence/cut/large{
- dir = 8
- },
-/turf/open/floor/plating/grass/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"kj" = (
-/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/plating/dirt/jungle/dark/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"mh" = (
-/obj/structure/fence/corner{
- dir = 8
- },
-/turf/open/floor/plating/grass/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"ms" = (
-/obj/machinery/hydroponics/soil,
-/turf/open/floor/plating/grass/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"mt" = (
-/obj/item/storage/bag/medical,
-/obj/machinery/light/small/directional/south,
-/turf/open/floor/plasteel/tech/grid,
-/area/ruin/powered)
-"nW" = (
-/obj/machinery/power/shuttle/engine/electric{
- dir = 8
- },
-/turf/open/floor/plasteel/tech/grid,
-/area/ruin/powered)
-"pl" = (
-/obj/structure/closet/crate/freezer,
-/obj/item/organ/cyberimp/arm/surgery,
-/obj/item/organ/eyes/night_vision/mushroom,
-/obj/item/organ/heart/cybernetic/tier3,
-/obj/item/organ/liver/plasmaman,
-/obj/item/organ/tongue/robot,
-/obj/item/organ/moth_wings,
-/obj/item/organ/stomach/cybernetic/tier2,
-/turf/open/floor/plasteel/freezer,
-/area/ruin/powered)
-"pN" = (
-/obj/item/clothing/mask/breath/medical,
-/turf/open/floor/plasteel/freezer,
-/area/ruin/powered)
-"rN" = (
-/obj/structure/flora/tree/jungle/small,
-/turf/open/floor/plating/grass/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"rZ" = (
-/obj/machinery/hydroponics/soil,
-/obj/effect/decal/cleanable/food/tomato_smudge,
-/turf/open/floor/plating/grass/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"so" = (
-/obj/structure/flora/rock,
-/turf/open/floor/plating/grass/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"uY" = (
-/turf/closed/wall/mineral/titanium/survival/pod,
-/area/ruin/powered)
-"vZ" = (
-/obj/structure/fence/door,
-/turf/open/floor/plating/grass/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"wa" = (
-/obj/structure/flora/rock/pile,
-/turf/open/floor/plating/dirt/jungle/dark/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"wT" = (
-/obj/structure/fence/end{
- dir = 8
- },
-/turf/open/floor/plating/grass/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"wW" = (
-/obj/structure/flora/junglebush/c,
-/turf/open/floor/plating/grass/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"xV" = (
-/obj/structure/flora/rock/pile,
-/turf/open/floor/plating/dirt/jungle/wasteland/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"zA" = (
-/obj/item/stack/rods,
-/turf/open/floor/plating/dirt/jungle/dark/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"Ef" = (
-/mob/living/simple_animal/hostile/venus_human_trap,
-/turf/open/water/jungle,
-/area/overmap_encounter/planetoid/jungle/explored)
-"FT" = (
-/obj/item/scythe,
-/turf/open/floor/plating/grass/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"Io" = (
-/turf/closed/mineral,
-/area/overmap_encounter/planetoid/jungle/explored)
-"JL" = (
-/turf/open/water/jungle,
-/area/overmap_encounter/planetoid/jungle/explored)
-"Ld" = (
-/obj/item/clothing/suit/hooded/wintercoat/medical,
-/turf/open/floor/plasteel/freezer,
-/area/ruin/powered)
-"Lt" = (
-/turf/open/floor/plating/dirt/jungle/dark/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"Nj" = (
-/mob/living/simple_animal/bot/medbot/rockplanet,
-/obj/item/circuitboard/machine/techfab/department/medical,
-/turf/open/floor/plasteel/freezer,
-/area/ruin/powered)
-"Pe" = (
-/obj/structure/closet/crate/freezer/blood,
-/turf/open/floor/plasteel/tech/grid,
-/area/ruin/powered)
-"Py" = (
-/obj/structure/fence,
-/turf/open/floor/plating/grass/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"Qe" = (
-/obj/machinery/hydroponics/soil,
-/obj/item/reagent_containers/food/snacks/salad/jungle,
-/turf/open/floor/plating/grass/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"QF" = (
-/obj/item/stack/rods,
-/turf/open/floor/plating/grass/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"QG" = (
-/obj/effect/decal/cleanable/food/tomato_smudge,
-/turf/open/floor/plating/grass/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"QV" = (
-/obj/structure/flora/rock/jungle,
-/turf/open/floor/plating/dirt/jungle/dark/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"SA" = (
-/obj/structure/flora/junglebush,
-/turf/open/floor/plating/grass/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"SI" = (
-/obj/effect/turf_decal/dept/medical,
-/turf/closed/wall/mineral/titanium/survival/pod,
-/area/ruin/powered)
-"TD" = (
-/turf/open/floor/plating/grass/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"TM" = (
-/obj/item/cultivator/rake,
-/mob/living/simple_animal/hostile/venus_human_trap,
-/turf/open/floor/plating/grass/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"Uv" = (
-/obj/structure/fence{
- dir = 4
- },
-/turf/open/floor/plating/grass/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"Vf" = (
-/obj/structure/flora/junglebush/b,
-/turf/open/floor/plating/grass/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"Vu" = (
-/obj/structure/frame/machine,
-/turf/open/floor/plasteel/tech/grid,
-/area/ruin/unpowered)
-"VB" = (
-/turf/open/floor/plating/dirt/jungle,
-/area/overmap_encounter/planetoid/jungle/explored)
-"WA" = (
-/obj/effect/spawner/structure/window/survival_pod,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"WR" = (
-/obj/structure/flora/rock,
-/turf/open/floor/plating/dirt/jungle/wasteland/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"ZE" = (
-/turf/open/floor/plating/dirt/jungle/wasteland/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-
-(1,1,1) = {"
-SA
-ZE
-TD
-Io
-ZE
-Io
-ZE
-xV
-TD
-wW
-TD
-TD
-TD
-Vf
-TD
-"}
-(2,1,1) = {"
-WR
-xV
-Io
-Io
-Io
-Io
-Io
-TD
-rN
-TD
-TD
-SA
-TD
-TD
-TD
-"}
-(3,1,1) = {"
-ZE
-Io
-Io
-WA
-WA
-Io
-WR
-SA
-wW
-TD
-Vf
-TD
-TD
-wW
-TD
-"}
-(4,1,1) = {"
-ZE
-ZE
-uY
-Nj
-pl
-uY
-ZE
-mh
-Py
-Py
-Py
-Py
-iB
-TD
-iJ
-"}
-(5,1,1) = {"
-TD
-ZE
-SI
-Pe
-mt
-SI
-TD
-Uv
-Vf
-FT
-wW
-TD
-Uv
-fj
-TD
-"}
-(6,1,1) = {"
-rN
-fj
-uY
-Ld
-pN
-uY
-QF
-Uv
-SA
-Qe
-ms
-Vf
-Uv
-TD
-TD
-"}
-(7,1,1) = {"
-SA
-TD
-nW
-cO
-cO
-Vu
-Vf
-TD
-JL
-JL
-Ef
-TD
-Uv
-TD
-TD
-"}
-(8,1,1) = {"
-fj
-TD
-Lt
-QV
-kj
-wa
-TD
-QF
-rZ
-JL
-JL
-JL
-iX
-TD
-TD
-"}
-(9,1,1) = {"
-iJ
-TD
-wa
-Lt
-zA
-Lt
-Uv
-TD
-TM
-ms
-JL
-JL
-Uv
-SA
-TD
-"}
-(10,1,1) = {"
-TD
-Lt
-Lt
-Lt
-Lt
-QF
-Vf
-QG
-ms
-JL
-JL
-JL
-Uv
-TD
-iJ
-"}
-(11,1,1) = {"
-TD
-QV
-Lt
-Lt
-QV
-iX
-TD
-JL
-JL
-JL
-JL
-TD
-Uv
-TD
-TD
-"}
-(12,1,1) = {"
-TD
-Lt
-dT
-Lt
-TD
-TD
-TD
-JL
-JL
-JL
-JL
-wW
-Uv
-TD
-TD
-"}
-(13,1,1) = {"
-SA
-Lt
-Lt
-Lt
-wW
-TD
-QF
-TD
-JL
-JL
-so
-TD
-vZ
-TD
-TD
-"}
-(14,1,1) = {"
-TD
-Lt
-Lt
-TD
-TD
-iJ
-TD
-Vf
-TD
-wW
-TD
-TD
-wT
-TD
-TD
-"}
-(15,1,1) = {"
-TD
-VB
-rN
-wW
-TD
-Vf
-TD
-TD
-SA
-TD
-TD
-fj
-TD
-rN
-TD
-"}
diff --git a/_maps/RandomRuins/JungleRuins/jungle_surface_bombmakers_cabin.dmm b/_maps/RandomRuins/JungleRuins/jungle_surface_bombmakers_cabin.dmm
deleted file mode 100644
index 878e674b783..00000000000
--- a/_maps/RandomRuins/JungleRuins/jungle_surface_bombmakers_cabin.dmm
+++ /dev/null
@@ -1,731 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"aE" = (
-/obj/machinery/light/broken/directional/west,
-/turf/open/floor/wood,
-/area/ruin/powered)
-"bF" = (
-/obj/structure/closet/crate/bin,
-/obj/item/trash/popcorn,
-/obj/item/trash/candy,
-/obj/item/grenade/frag{
- name = "garbage"
- },
-/turf/open/floor/wood,
-/area/ruin/powered)
-"bM" = (
-/turf/open/floor/carpet/red,
-/area/ruin/powered)
-"dQ" = (
-/mob/living/simple_animal/hostile/rat,
-/obj/machinery/light/small/broken/directional/north,
-/turf/open/floor/wood,
-/area/ruin/powered)
-"eE" = (
-/turf/open/floor/wood{
- icon_state = "wood-broken7"
- },
-/area/ruin/powered)
-"eG" = (
-/obj/structure/flora/tree/jungle,
-/turf/open/floor/plating/grass/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"eX" = (
-/mob/living/simple_animal/hostile/rat{
- dir = 4
- },
-/turf/open/floor/carpet/red,
-/area/ruin/powered)
-"eZ" = (
-/turf/open/floor/wood{
- icon_state = "wood-broken5"
- },
-/area/ruin/powered)
-"fu" = (
-/obj/structure/table/wood,
-/obj/item/multitool{
- pixel_x = -5;
- pixel_y = 6
- },
-/obj/item/wirecutters/old{
- pixel_y = -1
- },
-/obj/item/stack/cable_coil/random/five{
- pixel_x = 9;
- pixel_y = 6
- },
-/turf/open/floor/wood,
-/area/ruin/powered)
-"gI" = (
-/obj/structure/table/wood/reinforced,
-/obj/item/ammo_casing/shotgun/improvised{
- pixel_x = 6;
- pixel_y = -5
- },
-/obj/item/ammo_casing/shotgun/improvised{
- pixel_x = -6;
- pixel_y = 6
- },
-/obj/item/ammo_casing/shotgun/improvised{
- pixel_x = 6;
- pixel_y = 8
- },
-/turf/open/floor/wood{
- icon_state = "wood-broken7"
- },
-/area/ruin/powered)
-"gO" = (
-/obj/structure/barricade/wooden,
-/turf/open/floor/plating/grass/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"hD" = (
-/obj/machinery/light/small/directional/south,
-/turf/open/floor/wood,
-/area/ruin/powered)
-"iH" = (
-/turf/open/floor/wood{
- icon_state = "wood-broken2"
- },
-/area/ruin/powered)
-"iS" = (
-/obj/structure/chair/plastic{
- dir = 8
- },
-/turf/open/floor/wood,
-/area/ruin/powered)
-"kn" = (
-/obj/machinery/hydroponics/soil,
-/obj/item/seeds/corn,
-/turf/open/floor/plating/grass/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"ky" = (
-/obj/structure/fence{
- dir = 4
- },
-/turf/open/floor/plating/grass/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"kL" = (
-/obj/structure/fence/cut/medium,
-/turf/open/floor/plating/grass/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"lN" = (
-/obj/structure/table/wood,
-/obj/item/grenade/chem_grenade/ez_clean{
- pixel_x = -4;
- pixel_y = 3
- },
-/obj/item/grenade/chem_grenade/cleaner{
- pixel_x = 6;
- pixel_y = 7
- },
-/obj/item/research_notes/loot/small{
- origin_type = "explosives";
- pixel_y = 4;
- value = 1200
- },
-/turf/open/floor/wood,
-/area/ruin/powered)
-"lW" = (
-/obj/structure/barricade/wooden/crude,
-/obj/machinery/door/airlock/wood,
-/turf/open/floor/wood,
-/area/ruin/powered)
-"oD" = (
-/turf/open/floor/wood{
- icon_state = "wood-broken"
- },
-/area/ruin/powered)
-"oH" = (
-/obj/structure/fence/corner{
- dir = 5
- },
-/turf/open/floor/plating/grass/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"qp" = (
-/obj/structure/noticeboard{
- desc = "A board with many old marks and paper scraps on it.";
- dir = 4;
- name = "Teacher's Board"
- },
-/turf/closed/wall/mineral/wood,
-/area/ruin/powered)
-"ri" = (
-/obj/structure/chair/plastic{
- dir = 8
- },
-/turf/open/floor/wood{
- icon_state = "wood-broken"
- },
-/area/ruin/powered)
-"rF" = (
-/mob/living/simple_animal/hostile/asteroid/hivelord/legion/dwarf{
- desc = "You can still see what was once a rather small human under the shifting mass of corruption. Its trying to keep you away from the main office for some reason.";
- name = "Student"
- },
-/turf/open/floor/wood,
-/area/ruin/powered)
-"rN" = (
-/obj/structure/dresser,
-/obj/item/research_notes/loot/medium{
- origin_type = "explosives";
- pixel_y = 6
- },
-/turf/open/floor/wood{
- icon_state = "wood-broken5"
- },
-/area/ruin/powered)
-"so" = (
-/obj/structure/flora/junglebush/c,
-/turf/open/floor/plating/grass/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"sV" = (
-/obj/structure/chair/comfy/grey/directional/south,
-/turf/open/floor/carpet/red,
-/area/ruin/powered)
-"sX" = (
-/obj/structure/bed,
-/obj/item/bedsheet/rd,
-/turf/open/floor/wood,
-/area/ruin/powered)
-"tc" = (
-/obj/structure/fence,
-/turf/open/floor/plating/grass/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"uH" = (
-/obj/structure/flora/tree/jungle/small,
-/turf/open/floor/plating/grass/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"vs" = (
-/obj/structure/flora/rock,
-/turf/open/floor/plating/grass/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"wq" = (
-/obj/structure/table/wood,
-/obj/item/grenade/firecracker{
- pixel_x = -8;
- pixel_y = -5
- },
-/obj/item/grenade/firecracker{
- pixel_x = -8;
- pixel_y = 8
- },
-/obj/item/grenade/firecracker{
- pixel_x = 4
- },
-/turf/open/floor/wood,
-/area/ruin/powered)
-"wz" = (
-/obj/structure/floodlight_frame,
-/turf/open/floor/plating/grass/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"wK" = (
-/obj/structure/table/wood,
-/turf/open/floor/wood{
- icon_state = "wood-broken5"
- },
-/area/ruin/powered)
-"xs" = (
-/obj/structure/table/wood/reinforced,
-/obj/item/storage/belt/utility/chief/full,
-/turf/open/floor/wood{
- icon_state = "wood-broken2"
- },
-/area/ruin/powered)
-"xQ" = (
-/obj/structure/flora/junglebush/b,
-/turf/open/floor/plating/grass/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"yu" = (
-/turf/closed/wall/mineral/wood,
-/area/ruin/powered)
-"yJ" = (
-/obj/structure/table/wood/reinforced,
-/obj/item/grenade/clusterbuster/soap{
- name = "Reality Devastator"
- },
-/turf/open/floor/wood,
-/area/ruin/powered)
-"zg" = (
-/obj/item/transfer_valve{
- pixel_x = 7;
- pixel_y = 2
- },
-/obj/item/transfer_valve{
- pixel_x = -8;
- pixel_y = 2
- },
-/obj/structure/table/wood/fancy/orange,
-/turf/open/floor/wood,
-/area/ruin/powered)
-"Bo" = (
-/obj/machinery/light/broken/directional/south,
-/turf/open/floor/wood,
-/area/ruin/powered)
-"Bz" = (
-/obj/structure/closet/toolcloset,
-/turf/open/floor/wood,
-/area/ruin/powered)
-"Cr" = (
-/obj/structure/table/wood,
-/obj/item/grenade/chem_grenade/large{
- pixel_x = -7;
- pixel_y = -1
- },
-/obj/item/grenade/chem_grenade/large{
- pixel_x = 4;
- pixel_y = 9
- },
-/obj/item/screwdriver/old{
- pixel_y = 10
- },
-/turf/open/floor/wood,
-/area/ruin/powered)
-"CR" = (
-/obj/structure/barricade/wooden/crude,
-/obj/machinery/door/airlock/wood{
- dir = 8
- },
-/turf/open/floor/wood,
-/area/ruin/powered)
-"DU" = (
-/mob/living/simple_animal/hostile/asteroid/hivelord/legion{
- name = "Student"
- },
-/turf/open/floor/wood{
- icon_state = "wood-broken7"
- },
-/area/ruin/powered)
-"FT" = (
-/obj/machinery/light/small/directional/south,
-/turf/open/floor/wood{
- icon_state = "wood-broken2"
- },
-/area/ruin/powered)
-"Gz" = (
-/obj/machinery/door/airlock/wood,
-/turf/open/floor/wood,
-/area/ruin/powered)
-"GE" = (
-/obj/structure/chair/stool/bar{
- dir = 4;
- name = "teacher's stool"
- },
-/turf/open/floor/wood,
-/area/ruin/powered)
-"Ho" = (
-/obj/structure/table/wood/reinforced,
-/obj/item/flashlight/lamp/green,
-/turf/open/floor/wood,
-/area/ruin/powered)
-"Hr" = (
-/obj/structure/fence/cut/large{
- dir = 4
- },
-/turf/open/floor/plating/grass/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"It" = (
-/obj/structure/flora/junglebush,
-/turf/open/floor/plating/grass/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"Jd" = (
-/obj/effect/mob_spawn/human/corpse/charredskeleton{
- desc = "Many die in the pursuit of science. Even more die making homebrew explosives in a random shack on some frontier planet.";
- name = "charred remains of the Teacher"
- },
-/turf/open/floor/carpet/red,
-/area/ruin/powered)
-"Je" = (
-/obj/machinery/hydroponics/soil,
-/turf/open/floor/plating/grass/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"Na" = (
-/obj/item/reagent_containers/food/snacks/grown/corn,
-/turf/open/floor/plating/grass/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"Oe" = (
-/turf/open/floor/plating/grass/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"Qj" = (
-/obj/item/grown/corncob,
-/turf/open/floor/plating/grass/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"Rc" = (
-/obj/structure/chair/plastic{
- dir = 8
- },
-/turf/open/floor/wood{
- icon_state = "wood-broken7"
- },
-/area/ruin/powered)
-"RR" = (
-/mob/living/simple_animal/hostile/rat{
- dir = 1
- },
-/obj/machinery/light/small/directional/south,
-/turf/open/floor/wood,
-/area/ruin/powered)
-"SI" = (
-/obj/structure/table/wood,
-/obj/item/grenade/stingbang{
- pixel_x = -5;
- pixel_y = 9
- },
-/obj/item/lighter/greyscale{
- pixel_x = 6
- },
-/turf/open/floor/wood{
- icon_state = "wood-broken2"
- },
-/area/ruin/powered)
-"Tb" = (
-/obj/structure/flora/junglebush/large,
-/turf/open/floor/plating/grass/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"TB" = (
-/turf/open/floor/wood,
-/area/ruin/powered)
-"TQ" = (
-/obj/structure/bookcase/random,
-/turf/open/floor/wood{
- icon_state = "wood-broken2"
- },
-/area/ruin/powered)
-"Ux" = (
-/obj/structure/barricade/wooden,
-/obj/machinery/door/airlock/wood{
- dir = 8
- },
-/turf/open/floor/wood,
-/area/ruin/powered)
-"Vq" = (
-/obj/structure/table/wood/reinforced,
-/obj/item/grenade/chem_grenade/adv_release{
- pixel_x = 6;
- pixel_y = 5
- },
-/obj/item/grenade/chem_grenade/adv_release{
- pixel_x = -5;
- pixel_y = 5
- },
-/obj/item/grenade/chem_grenade/adv_release{
- pixel_y = 5
- },
-/turf/open/floor/wood{
- icon_state = "wood-broken"
- },
-/area/ruin/powered)
-"WO" = (
-/obj/item/seeds/corn/snapcorn,
-/turf/open/floor/plating/grass/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"WW" = (
-/obj/structure/table/wood,
-/obj/item/clothing/mask/gas/welding,
-/obj/item/research_notes/loot/small{
- origin_type = "explosives";
- pixel_y = 3;
- value = 1200
- },
-/turf/open/floor/wood{
- icon_state = "wood-broken4"
- },
-/area/ruin/powered)
-"XH" = (
-/obj/machinery/light/small/directional/north,
-/turf/open/floor/wood,
-/area/ruin/powered)
-"Ym" = (
-/obj/item/tank/internals/plasma/full{
- pixel_x = -8;
- pixel_y = -1
- },
-/obj/item/tank/internals/plasma/full{
- pixel_x = 5
- },
-/obj/item/tank/internals/oxygen{
- pixel_x = -7;
- pixel_y = 8
- },
-/obj/item/tank/internals/oxygen{
- pixel_x = 4;
- pixel_y = -6
- },
-/obj/structure/table/wood/fancy/orange,
-/turf/open/floor/wood{
- icon_state = "wood-broken5"
- },
-/area/ruin/powered)
-"Zo" = (
-/turf/open/floor/wood{
- icon_state = "wood-broken4"
- },
-/area/ruin/powered)
-"ZH" = (
-/mob/living/simple_animal/hostile/cockroach/glockroach,
-/turf/open/floor/plating/grass/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"ZL" = (
-/obj/machinery/hydroponics/soil,
-/obj/item/reagent_containers/food/snacks/grown/corn,
-/turf/open/floor/plating/grass/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"ZX" = (
-/obj/machinery/hydroponics/soil,
-/obj/item/grown/corncob,
-/turf/open/floor/plating/grass/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-
-(1,1,1) = {"
-Oe
-It
-Oe
-Oe
-Oe
-It
-Tb
-Oe
-Oe
-xQ
-Oe
-Oe
-Oe
-Oe
-It
-"}
-(2,1,1) = {"
-Oe
-yu
-yu
-yu
-yu
-yu
-yu
-yu
-yu
-vs
-Oe
-Oe
-uH
-xQ
-Oe
-"}
-(3,1,1) = {"
-eG
-yu
-sX
-oD
-bF
-yu
-zg
-Ym
-yu
-yu
-vs
-Oe
-Oe
-It
-Tb
-"}
-(4,1,1) = {"
-Oe
-yu
-rN
-eX
-bM
-Gz
-eE
-TB
-Bz
-yu
-qp
-qp
-yu
-yu
-Oe
-"}
-(5,1,1) = {"
-Oe
-yu
-dQ
-Jd
-RR
-yu
-oD
-iH
-Zo
-aE
-oD
-GE
-TQ
-yu
-Oe
-"}
-(6,1,1) = {"
-Oe
-yu
-xs
-sV
-gI
-yu
-XH
-Zo
-rF
-TB
-TB
-eE
-TB
-lW
-xQ
-"}
-(7,1,1) = {"
-Oe
-yu
-Ho
-Vq
-yJ
-yu
-TB
-TB
-Zo
-TB
-eZ
-Zo
-oD
-yu
-Oe
-"}
-(8,1,1) = {"
-eG
-yu
-yu
-yu
-yu
-yu
-Ux
-CR
-yu
-lN
-fu
-wK
-hD
-yu
-It
-"}
-(9,1,1) = {"
-Oe
-ky
-so
-Oe
-Qj
-Oe
-Oe
-gO
-yu
-yu
-Rc
-TB
-oD
-yu
-Oe
-"}
-(10,1,1) = {"
-Tb
-ky
-Oe
-kn
-Oe
-ZX
-xQ
-kn
-Oe
-yu
-wq
-SI
-Bo
-yu
-Oe
-"}
-(11,1,1) = {"
-Oe
-Hr
-Oe
-Je
-WO
-Je
-wz
-ZL
-Oe
-yu
-iS
-TB
-DU
-yu
-xQ
-"}
-(12,1,1) = {"
-Oe
-ky
-Oe
-ZL
-Na
-Je
-Oe
-ZX
-so
-yu
-WW
-Cr
-FT
-yu
-Oe
-"}
-(13,1,1) = {"
-Oe
-ky
-Qj
-Je
-ZH
-kn
-Qj
-ZL
-Oe
-yu
-TB
-ri
-TB
-yu
-Oe
-"}
-(14,1,1) = {"
-Oe
-oH
-tc
-tc
-tc
-tc
-kL
-tc
-tc
-yu
-yu
-yu
-yu
-yu
-Oe
-"}
-(15,1,1) = {"
-Oe
-Oe
-Oe
-eG
-xQ
-Oe
-Oe
-It
-Tb
-Oe
-Oe
-Oe
-Oe
-Oe
-It
-"}
diff --git a/_maps/RandomRuins/JungleRuins/jungle_surface_coffinpirate.dmm b/_maps/RandomRuins/JungleRuins/jungle_surface_coffinpirate.dmm
deleted file mode 100644
index b4d280ba7a1..00000000000
--- a/_maps/RandomRuins/JungleRuins/jungle_surface_coffinpirate.dmm
+++ /dev/null
@@ -1,511 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"a" = (
-/turf/template_noop,
-/area/template_noop)
-"b" = (
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"c" = (
-/obj/structure/closet/crate/coffin,
-/obj/item/clothing/head/hooded/cloakhood/bone,
-/turf/open/floor/plating/grass/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"d" = (
-/obj/structure/closet/crate/coffin,
-/obj/item/reagent_containers/food/snacks/meat/slab/human/mutant/skeleton,
-/turf/open/floor/plating/grass/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"e" = (
-/obj/structure/table/wood,
-/obj/item/stack/sheet/mineral/wood,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"f" = (
-/obj/structure/chair/wood/wings{
- dir = 1
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"g" = (
-/obj/item/grown/bananapeel,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/airlock/wood,
-/turf/open/floor/plating/dirt/jungle/dark/lit,
-/area/ruin/unpowered)
-"h" = (
-/turf/open/floor/plating/grass/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"i" = (
-/obj/structure/closet/crate/coffin,
-/turf/open/floor/plating/grass/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"j" = (
-/obj/structure/table/wood,
-/obj/item/storage/toolbox/mechanical{
- pixel_x = -1;
- pixel_y = 2
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"k" = (
-/obj/item/reagent_containers/food/snacks/grown/banana,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"l" = (
-/turf/closed/wall/mineral/wood,
-/area/ruin/unpowered)
-"m" = (
-/obj/structure/closet/crate/coffin,
-/obj/effect/mob_spawn/human/corpse/charredskeleton,
-/turf/open/floor/plating/grass/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"n" = (
-/obj/structure/table/wood,
-/obj/item/flashlight/lamp/bananalamp,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"q" = (
-/obj/structure/closet/crate/coffin,
-/obj/item/reagent_containers/food/snacks/meat/slab/human/mutant/skeleton,
-/turf/open/floor/plating/dirt/jungle/dark/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"r" = (
-/obj/structure/flora/junglebush/c,
-/turf/open/floor/plating/grass/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"s" = (
-/obj/structure/sink/puddle,
-/turf/open/floor/plating/grass/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"u" = (
-/obj/structure/closet/crate/coffin,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"v" = (
-/turf/open/floor/plating/dirt/jungle/dark/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"w" = (
-/obj/structure/closet/crate/coffin,
-/obj/effect/decal/cleanable/dirt,
-/obj/item/cultivator/rake,
-/obj/item/shovel,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"x" = (
-/obj/item/grown/bananapeel,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"y" = (
-/obj/structure/flora/junglebush/b,
-/turf/open/floor/plating/grass/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"z" = (
-/obj/structure/closet/cabinet,
-/obj/item/clothing/head/pirate{
- pixel_y = -4
- },
-/obj/item/clothing/suit/pirate{
- pixel_y = -4
- },
-/obj/item/clothing/glasses/eyepatch{
- pixel_y = 2
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"A" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"B" = (
-/obj/structure/closet/crate/coffin,
-/obj/item/stack/sheet/bone,
-/obj/item/stack/sheet/bone,
-/obj/item/stack/sheet/bone,
-/turf/open/floor/plating/grass/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"C" = (
-/obj/structure/closet/crate/coffin,
-/obj/item/stack/sheet/bone,
-/turf/open/floor/plating/grass/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"E" = (
-/obj/structure/closet/crate/coffin,
-/obj/effect/decal/cleanable/dirt,
-/obj/item/reagent_containers/food/snacks/sugarcookie/spookycoffin,
-/obj/item/reagent_containers/food/snacks/sugarcookie/spookycoffin,
-/obj/item/reagent_containers/food/snacks/sugarcookie/spookycoffin,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"F" = (
-/obj/item/reagent_containers/food/snacks/grown/banana,
-/turf/open/floor/plating/dirt/jungle/dark/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"G" = (
-/obj/machinery/hydroponics/soil,
-/turf/open/floor/plating/dirt/jungle/dark/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"H" = (
-/obj/structure/closet/crate/coffin,
-/obj/effect/decal/cleanable/dirt,
-/obj/item/reagent_containers/food/drinks/beer{
- pixel_x = 8
- },
-/obj/item/reagent_containers/food/drinks/beer{
- pixel_x = -6
- },
-/obj/item/reagent_containers/food/snacks/sugarcookie/spookycoffin,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"I" = (
-/obj/structure/table/wood,
-/obj/item/melee/transforming/energy/sword/saber/pirate{
- pixel_x = 2;
- pixel_y = 3
- },
-/obj/item/flashlight/lamp/bananalamp{
- pixel_x = 3;
- pixel_y = 9
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"J" = (
-/obj/structure/closet/crate/coffin{
- desc = "It's a burial receptacle for some fruit.";
- name = "fridge"
- },
-/obj/item/reagent_containers/food/snacks/grown/banana,
-/obj/item/reagent_containers/food/snacks/grown/banana,
-/obj/item/reagent_containers/food/snacks/grown/banana,
-/obj/item/reagent_containers/food/snacks/grown/banana,
-/obj/item/reagent_containers/food/snacks/grown/bungofruit,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"K" = (
-/obj/structure/closet/crate/coffin,
-/obj/item/reagent_containers/food/snacks/monkeycube,
-/turf/open/floor/plating/dirt/jungle/dark/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"L" = (
-/obj/machinery/door/airlock/wood{
- dir = 8
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"M" = (
-/obj/structure/closet/crate/coffin,
-/obj/item/stack/sheet/bone,
-/obj/item/stack/sheet/bone,
-/turf/open/floor/plating/grass/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"N" = (
-/obj/structure/closet/crate/coffin,
-/obj/item/melee/baseball_bat/bone,
-/turf/open/floor/plating/grass/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"P" = (
-/obj/structure/closet/crate/coffin,
-/obj/effect/decal/cleanable/dirt,
-/obj/item/clothing/suit/hooded/cloak/bone,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"Q" = (
-/obj/structure/closet/crate/coffin,
-/obj/effect/decal/remains/human,
-/turf/open/floor/plating/grass/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"R" = (
-/obj/structure/bed/dogbed{
- name = "Palmo's bed"
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"S" = (
-/obj/structure/table/wood,
-/obj/item/paper{
- default_raw_text = "Forgot I had this paper on me, so I might as well use it as a diary. Today is the 23rd of July, or atleast that's what I made up in my head, and I am currently fulfilling my dream career of carving coffins. Yep, I'm living my best life here. I tamed a monkey a while back, named him Palmo, little guy's been a dear friend since. Until activity picks up on this planet I'm just gonna live a nice and quiet life, and then sell my masterfully crafted coffins to all those in need of them. Also, I found some peculiar fruit earlier, tastes pretty good but I think I probably ingested a few of the seeds. Shouldn't be TOO bad for me. Either way, I'm going to go to bed. Hopefully I find some more paper to use so I can keep writing.";
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/pen{
- pixel_x = -5;
- pixel_y = 2
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"T" = (
-/obj/structure/flora/grass/jungle,
-/turf/open/floor/plating/grass/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"U" = (
-/obj/structure/bed,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/mob_spawn/human/corpse/pirate{
- desc = "It looks like they died of a heart attack in their sleep."
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"V" = (
-/mob/living/carbon/monkey{
- dir = 8;
- name = "Palmo"
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"W" = (
-/obj/structure/closet/crate/coffin,
-/obj/item/reagent_containers/food/snacks/sugarcookie/spookyskull,
-/turf/open/floor/plating/grass/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"Y" = (
-/obj/structure/closet/crate/coffin,
-/obj/item/reagent_containers/glass/bucket/wooden,
-/obj/item/seeds/banana,
-/obj/item/seeds/banana,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"Z" = (
-/obj/structure/flora/junglebush,
-/turf/open/floor/plating/grass/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-
-(1,1,1) = {"
-a
-a
-v
-v
-v
-v
-v
-y
-a
-a
-d
-h
-h
-i
-a
-"}
-(2,1,1) = {"
-a
-v
-v
-l
-l
-l
-l
-T
-y
-h
-h
-h
-Z
-Q
-a
-"}
-(3,1,1) = {"
-a
-v
-l
-l
-U
-I
-l
-l
-M
-h
-i
-h
-h
-h
-a
-"}
-(4,1,1) = {"
-a
-v
-l
-z
-b
-b
-R
-l
-C
-h
-N
-h
-h
-i
-h
-"}
-(5,1,1) = {"
-a
-K
-l
-H
-b
-A
-P
-l
-c
-h
-h
-a
-a
-h
-i
-"}
-(6,1,1) = {"
-a
-l
-l
-l
-L
-l
-l
-l
-l
-h
-a
-a
-a
-a
-a
-"}
-(7,1,1) = {"
-a
-l
-E
-x
-b
-A
-b
-w
-l
-W
-a
-a
-a
-a
-a
-"}
-(8,1,1) = {"
-a
-l
-e
-b
-b
-b
-x
-A
-l
-Z
-h
-h
-a
-a
-a
-"}
-(9,1,1) = {"
-a
-l
-S
-f
-V
-A
-b
-A
-g
-h
-h
-s
-h
-h
-a
-"}
-(10,1,1) = {"
-a
-l
-j
-x
-A
-b
-b
-Y
-l
-m
-T
-h
-v
-G
-h
-"}
-(11,1,1) = {"
-a
-l
-l
-b
-b
-k
-n
-l
-l
-h
-G
-v
-G
-v
-T
-"}
-(12,1,1) = {"
-a
-a
-l
-l
-J
-u
-l
-l
-a
-B
-G
-F
-G
-q
-h
-"}
-(13,1,1) = {"
-a
-a
-a
-l
-l
-l
-l
-a
-a
-i
-C
-G
-v
-h
-r
-"}
-(14,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-h
-h
-h
-h
-a
-"}
diff --git a/_maps/RandomRuins/JungleRuins/jungle_surface_ikea_ai.dmm b/_maps/RandomRuins/JungleRuins/jungle_surface_ikea_ai.dmm
deleted file mode 100644
index 6cb02b13e8d..00000000000
--- a/_maps/RandomRuins/JungleRuins/jungle_surface_ikea_ai.dmm
+++ /dev/null
@@ -1,277 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"b" = (
-/obj/structure/table/wood,
-/obj/item/borg/upgrade/ai,
-/turf/open/floor/wood,
-/area/ruin/powered)
-"e" = (
-/obj/structure/table/wood,
-/obj/item/mmi/posibrain,
-/obj/item/mmi/posibrain,
-/turf/open/floor/wood,
-/area/ruin/powered)
-"f" = (
-/obj/structure/table/wood,
-/obj/item/circuitboard/computer/borgupload,
-/obj/item/circuitboard/computer/aiupload,
-/turf/open/floor/wood,
-/area/ruin/powered)
-"g" = (
-/obj/structure/table/wood,
-/obj/item/borg/upgrade/transform/clown{
- desc = "Allows you to to turn a cyborg into a... something.";
- name = "borg module picker (Unknown)"
- },
-/obj/item/borg/upgrade/transform{
- desc = "Allows you to to turn a cyborg into a... something.";
- name = "borg module picker (Unknown)";
- new_module = /obj/item/robot_module/syndicate_medical
- },
-/turf/open/floor/wood,
-/area/ruin/powered)
-"h" = (
-/obj/machinery/door/airlock/wood{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/ruin/powered)
-"k" = (
-/turf/open/floor/wood,
-/area/ruin/powered)
-"n" = (
-/obj/effect/decal/remains/robot,
-/turf/open/floor/wood,
-/area/ruin/powered)
-"p" = (
-/obj/machinery/recharge_station,
-/turf/open/floor/wood,
-/area/ruin/powered)
-"q" = (
-/obj/item/bodypart/head/robot,
-/turf/open/floor/wood,
-/area/ruin/powered)
-"r" = (
-/obj/structure/table/wood,
-/obj/item/aiModule/core/full/damaged{
- name = "Unknown AI Core Module"
- },
-/obj/item/aiModule/core/full/hulkamania{
- name = "Unknown AI Core Module"
- },
-/obj/item/aiModule/reset/purge,
-/obj/item/aiModule/core/full/paladin_devotion{
- name = "Unknown AI Core Module"
- },
-/obj/item/aiModule/reset,
-/obj/item/aiModule/core/full/tyrant{
- name = "Unknown AI Core Module"
- },
-/obj/item/aiModule/core/full/maintain{
- name = "Unknown AI Core Module"
- },
-/obj/item/aiModule/core/full/reporter{
- name = "Unknown AI Core Module"
- },
-/obj/item/aiModule/core/full/cybersun{
- name = "Unknown AI Core Module"
- },
-/obj/item/aiModule/core/full/corp{
- name = "Unknown AI Core Module"
- },
-/obj/item/aiModule/core/full/asimov{
- name = "Unknown AI Core Module"
- },
-/turf/open/floor/wood,
-/area/ruin/powered)
-"u" = (
-/obj/item/stock_parts/cell/hyper,
-/turf/open/floor/wood,
-/area/ruin/powered)
-"w" = (
-/obj/item/wallframe/camera,
-/turf/open/floor/wood,
-/area/ruin/powered)
-"x" = (
-/obj/item/stack/cable_coil,
-/turf/open/floor/wood,
-/area/ruin/powered)
-"y" = (
-/obj/structure/table/wood,
-/obj/item/circuitboard/machine/cyborgrecharger,
-/turf/open/floor/wood,
-/area/ruin/powered)
-"z" = (
-/turf/closed/wall/mineral/wood/nonmetal,
-/area/ruin/powered)
-"D" = (
-/obj/item/assembly/flash/handheld,
-/turf/open/floor/wood,
-/area/ruin/powered)
-"F" = (
-/obj/item/robot_suit/prebuilt,
-/turf/open/floor/wood,
-/area/ruin/powered)
-"G" = (
-/obj/item/assembly/flash/handheld,
-/obj/item/stock_parts/cell/hyper,
-/turf/open/floor/wood,
-/area/ruin/powered)
-"H" = (
-/obj/item/wallframe/camera,
-/obj/item/wallframe/camera,
-/obj/item/wallframe/camera,
-/obj/item/wallframe/camera,
-/obj/item/wallframe/camera,
-/turf/open/floor/wood,
-/area/ruin/powered)
-"J" = (
-/obj/structure/AIcore/latejoin_inactive,
-/turf/open/floor/wood,
-/area/ruin/powered)
-"L" = (
-/obj/item/bodypart/leg/right/robot,
-/turf/open/floor/wood,
-/area/ruin/powered)
-"M" = (
-/obj/item/bodypart/chest/robot,
-/obj/item/wallframe/camera,
-/turf/open/floor/wood,
-/area/ruin/powered)
-"N" = (
-/obj/item/robot_suit,
-/obj/item/wallframe/camera,
-/obj/item/wallframe/camera,
-/turf/open/floor/wood,
-/area/ruin/powered)
-"Q" = (
-/obj/item/paper{
- default_raw_text = "Welcome to your Space Ikea Brand Full AI Kit! There are all the amenities needed to create a functional AI for your installation in this easy to use kit! Note: Warranty void if exposed to: High Humidity, High Temperatures, Grass, Mud, The Jungle. Thank you for shopping Space Ikea!"
- },
-/turf/open/floor/wood,
-/area/ruin/powered)
-"R" = (
-/obj/item/bodypart/l_arm/robot,
-/turf/open/floor/wood,
-/area/ruin/powered)
-"S" = (
-/obj/item/wallframe/camera,
-/obj/item/wallframe/camera,
-/obj/item/wallframe/camera,
-/turf/open/floor/wood,
-/area/ruin/powered)
-"U" = (
-/turf/template_noop,
-/area/template_noop)
-"V" = (
-/obj/item/aiModule/core/freeformcore,
-/obj/item/stack/cable_coil,
-/turf/open/floor/wood,
-/area/ruin/powered)
-"Y" = (
-/obj/item/bodypart/r_arm/robot,
-/turf/open/floor/wood,
-/area/ruin/powered)
-"Z" = (
-/obj/item/bodypart/leg/left/robot,
-/turf/open/floor/wood,
-/area/ruin/powered)
-
-(1,1,1) = {"
-U
-z
-h
-h
-h
-z
-U
-"}
-(2,1,1) = {"
-U
-z
-k
-w
-Q
-z
-U
-"}
-(3,1,1) = {"
-U
-z
-n
-G
-R
-z
-U
-"}
-(4,1,1) = {"
-z
-z
-p
-H
-D
-z
-z
-"}
-(5,1,1) = {"
-z
-e
-q
-w
-S
-r
-z
-"}
-(6,1,1) = {"
-z
-f
-u
-J
-V
-y
-z
-"}
-(7,1,1) = {"
-z
-g
-w
-L
-n
-b
-z
-"}
-(8,1,1) = {"
-z
-z
-x
-M
-D
-z
-z
-"}
-(9,1,1) = {"
-U
-z
-D
-N
-Y
-z
-U
-"}
-(10,1,1) = {"
-U
-z
-F
-x
-Z
-z
-U
-"}
-(11,1,1) = {"
-U
-z
-z
-z
-z
-z
-U
-"}
diff --git a/_maps/RandomRuins/JungleRuins/jungle_surface_ninjashrine.dmm b/_maps/RandomRuins/JungleRuins/jungle_surface_ninjashrine.dmm
deleted file mode 100644
index 03072f2d6aa..00000000000
--- a/_maps/RandomRuins/JungleRuins/jungle_surface_ninjashrine.dmm
+++ /dev/null
@@ -1,425 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"a" = (
-/obj/structure/flora/ausbushes/lavendergrass,
-/turf/open/floor/plating/grass/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"c" = (
-/obj/item/throwing_star/ninja{
- pixel_x = 6;
- pixel_y = -5
- },
-/turf/open/floor/plating/dirt/jungle/dark/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"d" = (
-/obj/item/reagent_containers/food/snacks/grown/rice,
-/turf/open/water/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"f" = (
-/obj/item/reagent_containers/food/snacks/fortunecookie,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood/yew,
-/area/overmap_encounter/planetoid/jungle/explored)
-"h" = (
-/obj/structure/fluff/divine/convertaltar{
- desc = "An altar dedicated to a kami.";
- name = "altar"
- },
-/obj/item/storage/belt/weebstick,
-/obj/effect/decal/cleanable/dirt,
-/obj/item/bodypart/r_arm/robot{
- desc = "The only thing I know for real..."
- },
-/turf/open/floor/wood/yew,
-/area/overmap_encounter/planetoid/jungle/explored)
-"i" = (
-/mob/living/simple_animal/hostile/jungle/mega_arachnid,
-/turf/open/floor/plating/dirt/jungle/dark/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"j" = (
-/obj/structure/flora/ausbushes/ppflowers,
-/turf/open/floor/plating/grass/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"k" = (
-/obj/item/throwing_star/ninja{
- pixel_x = -8;
- pixel_y = -4
- },
-/turf/open/floor/plating/dirt/jungle/dark/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"l" = (
-/obj/effect/decal/cleanable/blood/old,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood/yew,
-/area/overmap_encounter/planetoid/jungle/explored)
-"q" = (
-/obj/structure/spider/cocoon,
-/turf/open/floor/plating/dirt/jungle/dark/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"s" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/item/reagent_containers/food/snacks/spiderling,
-/turf/open/floor/wood/yew,
-/area/overmap_encounter/planetoid/jungle/explored)
-"t" = (
-/obj/item/reagent_containers/food/snacks/spiderling,
-/turf/open/floor/plating/dirt/jungle/dark/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"u" = (
-/obj/item/clothing/suit/shrine_maiden,
-/obj/item/clothing/head/shrine_wig,
-/obj/effect/decal/cleanable/blood/old,
-/obj/effect/decal/remains/human,
-/obj/item/gohei,
-/turf/open/floor/plating/dirt/jungle/dark/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"v" = (
-/obj/item/reagent_containers/food/snacks/spiderling,
-/turf/open/floor/wood/yew,
-/area/overmap_encounter/planetoid/jungle/explored)
-"w" = (
-/turf/open/floor/wood/yew,
-/area/overmap_encounter/planetoid/jungle/explored)
-"x" = (
-/obj/structure/mineral_door/paperframe,
-/turf/open/floor/plating/dirt/jungle/dark/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"y" = (
-/obj/item/seeds/wheat/rice,
-/turf/open/water/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"z" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/mineral_door/paperframe,
-/turf/open/floor/wood/yew,
-/area/overmap_encounter/planetoid/jungle/explored)
-"A" = (
-/turf/closed/wall/mineral/wood,
-/area/overmap_encounter/planetoid/jungle/explored)
-"B" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/item/clothing/shoes/sneakers/black,
-/turf/open/floor/wood/yew,
-/area/overmap_encounter/planetoid/jungle/explored)
-"C" = (
-/obj/item/reagent_containers/food/snacks/salad/boiledrice,
-/obj/item/reagent_containers/food/drinks/bottle/sake{
- pixel_x = 12
- },
-/turf/open/floor/plating/dirt/jungle/dark/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"G" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood/yew,
-/area/overmap_encounter/planetoid/jungle/explored)
-"H" = (
-/turf/open/water/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"I" = (
-/obj/effect/decal/remains/human,
-/obj/item/clothing/head/rice_hat{
- pixel_y = 6
- },
-/turf/open/water/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"J" = (
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/wood/yew,
-/area/overmap_encounter/planetoid/jungle/explored)
-"K" = (
-/obj/item/toy/plush/spider,
-/turf/open/floor/plating/dirt/jungle/dark/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"M" = (
-/obj/structure/rack,
-/obj/item/katana{
- pixel_x = -3
- },
-/obj/item/katana{
- pixel_x = 8
- },
-/turf/open/floor/plating/dirt/jungle/dark/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"N" = (
-/obj/effect/decal/remains/human,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood/yew,
-/area/overmap_encounter/planetoid/jungle/explored)
-"O" = (
-/obj/structure/spider/cocoon,
-/turf/open/floor/wood/yew,
-/area/overmap_encounter/planetoid/jungle/explored)
-"P" = (
-/obj/effect/decal/cleanable/blood/old,
-/obj/effect/decal/cleanable/dirt,
-/obj/item/throwing_star/ninja{
- pixel_x = 7;
- pixel_y = -8
- },
-/turf/open/floor/wood/yew,
-/area/overmap_encounter/planetoid/jungle/explored)
-"Q" = (
-/obj/item/clothing/mask/balaclava{
- name = "ninja mask"
- },
-/turf/open/floor/wood/yew,
-/area/overmap_encounter/planetoid/jungle/explored)
-"R" = (
-/turf/open/floor/plating/dirt/jungle/dark/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"S" = (
-/obj/item/clothing/under/color/black,
-/turf/open/floor/wood/yew,
-/area/overmap_encounter/planetoid/jungle/explored)
-"T" = (
-/obj/structure/flora/ausbushes/brflowers,
-/turf/open/floor/plating/grass/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"U" = (
-/obj/structure/mineral_door/paperframe,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood/yew,
-/area/overmap_encounter/planetoid/jungle/explored)
-"W" = (
-/obj/item/book/granter/spell/smoke/lesser{
- desc = "This book is overflowing with the mystical arts of the ninja.";
- name = "Ninja Vanish"
- },
-/obj/structure/closet/crate/coffin,
-/turf/open/floor/plating/dirt/jungle/dark/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"X" = (
-/obj/item/throwing_star/ninja{
- pixel_x = 4;
- pixel_y = 4
- },
-/turf/open/floor/plating/dirt/jungle/dark/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"Y" = (
-/obj/item/reagent_containers/food/snacks/spiderlollipop,
-/turf/open/floor/plating/dirt/jungle/dark/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-
-(1,1,1) = {"
-H
-H
-H
-H
-T
-R
-R
-R
-R
-R
-T
-a
-T
-a
-"}
-(2,1,1) = {"
-H
-H
-R
-W
-j
-G
-A
-x
-A
-R
-A
-A
-A
-T
-"}
-(3,1,1) = {"
-H
-R
-A
-A
-A
-G
-R
-R
-R
-w
-c
-X
-A
-R
-"}
-(4,1,1) = {"
-R
-R
-w
-w
-v
-O
-R
-a
-u
-R
-P
-k
-R
-G
-"}
-(5,1,1) = {"
-R
-w
-R
-l
-R
-w
-w
-j
-T
-w
-G
-w
-w
-R
-"}
-(6,1,1) = {"
-R
-R
-R
-s
-t
-R
-N
-G
-Q
-R
-R
-w
-A
-w
-"}
-(7,1,1) = {"
-R
-R
-s
-R
-i
-K
-G
-h
-S
-w
-j
-R
-U
-R
-"}
-(8,1,1) = {"
-R
-R
-R
-R
-t
-R
-R
-G
-B
-R
-a
-R
-A
-R
-"}
-(9,1,1) = {"
-R
-G
-R
-R
-G
-t
-w
-w
-w
-w
-R
-R
-z
-R
-"}
-(10,1,1) = {"
-T
-j
-R
-R
-q
-R
-J
-R
-R
-w
-R
-R
-A
-R
-"}
-(11,1,1) = {"
-d
-H
-R
-f
-R
-w
-R
-R
-G
-R
-R
-M
-A
-a
-"}
-(12,1,1) = {"
-H
-y
-H
-A
-R
-R
-w
-R
-C
-Y
-R
-l
-A
-T
-"}
-(13,1,1) = {"
-H
-I
-d
-R
-R
-R
-w
-w
-R
-G
-A
-R
-j
-R
-"}
-(14,1,1) = {"
-d
-H
-H
-R
-R
-R
-R
-R
-R
-R
-R
-R
-R
-R
-"}
diff --git a/_maps/RandomRuins/JungleRuins/jungle_surface_roommates.dmm b/_maps/RandomRuins/JungleRuins/jungle_surface_roommates.dmm
deleted file mode 100644
index 86e44d0d848..00000000000
--- a/_maps/RandomRuins/JungleRuins/jungle_surface_roommates.dmm
+++ /dev/null
@@ -1,603 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"a" = (
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 6
- },
-/obj/effect/turf_decal/corner/opaque/lime{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/pink{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark,
-/area/ruin/jungle/roommates/shack)
-"b" = (
-/obj/structure/dresser,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 10
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/jungle/roommates/shack)
-"d" = (
-/obj/structure/closet/cabinet,
-/obj/item/toy/plush/hornet/gay,
-/obj/item/lipstick/random,
-/obj/item/lipstick/random,
-/obj/item/clothing/mask/gas/clown_hat,
-/obj/item/clothing/under/rank/civilian/clown/orange,
-/obj/item/clothing/under/rank/civilian/clown/rainbow,
-/obj/effect/turf_decal/corner/opaque/solgovgold,
-/obj/effect/turf_decal/corner/opaque/lime{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/pink{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/bottlegreen{
- dir = 4
- },
-/obj/item/clothing/under/rank/civilian/clown/orange,
-/obj/item/clothing/neck/tie/lesbian,
-/obj/item/bikehorn,
-/obj/effect/decal/cleanable/confetti,
-/turf/open/floor/plasteel/dark,
-/area/ruin/jungle/roommates/shack)
-"e" = (
-/obj/structure/mirror{
- pixel_x = 23
- },
-/obj/structure/table/wood,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 10
- },
-/obj/item/lipstick/jade{
- pixel_x = -4;
- pixel_y = 5
- },
-/obj/item/chainsaw{
- alpha = 30;
- desc = "A nearly see-through weapon, seems custom made for a mime. It has a slight coating of dried blood from seemingly years ago.";
- hitsound = null
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/jungle/roommates/shack)
-"j" = (
-/turf/open/floor/carpet/nanoweave/beige,
-/area/ruin/jungle/roommates/shack)
-"o" = (
-/obj/effect/turf_decal/corner/opaque/solgovgold,
-/obj/effect/turf_decal/corner/opaque/lime{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/pink{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/bottlegreen{
- dir = 4
- },
-/obj/item/reagent_containers/food/drinks/soda_cans/space_mountain_wind{
- pixel_x = 12;
- pixel_y = 12
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark,
-/area/ruin/jungle/roommates/shack)
-"p" = (
-/obj/structure/closet/crate/wooden,
-/obj/item/claymore{
- pixel_x = -3
- },
-/obj/item/claymore{
- pixel_x = 5
- },
-/obj/item/clothing/head/peaceflower{
- desc = "An extremely addictive flower, full of lesbian magic."
- },
-/obj/effect/turf_decal/corner/opaque/blue,
-/obj/effect/turf_decal/corner/opaque/red{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/purple{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/bottlegreen{
- dir = 4
- },
-/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/plasteel/dark,
-/area/ruin/jungle/roommates/shack)
-"q" = (
-/obj/effect/turf_decal/corner/opaque/solgovgold,
-/obj/effect/turf_decal/corner/opaque/lime{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/pink{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/bottlegreen{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark,
-/area/ruin/jungle/roommates/shack)
-"r" = (
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 10
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/jungle/roommates/shack)
-"s" = (
-/obj/effect/turf_decal/corner/opaque/solgovgold,
-/obj/effect/turf_decal/corner/opaque/lime{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/pink{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/bottlegreen{
- dir = 4
- },
-/obj/structure/table/wood,
-/obj/effect/decal/cleanable/confetti,
-/obj/item/grown/bananapeel{
- pixel_y = 7;
- pixel_x = 1
- },
-/obj/item/storage/crayons,
-/turf/open/floor/plasteel/dark,
-/area/ruin/jungle/roommates/shack)
-"t" = (
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 10
- },
-/obj/structure/table/wood,
-/obj/item/paper_bin{
- pixel_y = 4;
- pixel_x = 4
- },
-/obj/item/pen{
- pixel_x = -8;
- pixel_y = 5
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/jungle/roommates/shack)
-"u" = (
-/obj/effect/turf_decal/corner/opaque/blue,
-/obj/effect/turf_decal/corner/opaque/red{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/purple{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/bottlegreen{
- dir = 4
- },
-/obj/item/chair/wood{
- dir = 8;
- pixel_y = -9;
- pixel_x = 7
- },
-/obj/effect/decal/cleanable/generic,
-/turf/open/floor/plasteel/dark,
-/area/ruin/jungle/roommates/shack)
-"v" = (
-/obj/structure/closet/cabinet,
-/obj/item/clothing/under/dress/striped,
-/obj/item/clothing/under/rank/civilian/mime/skirt,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 10
- },
-/obj/item/clothing/mask/gas/mime,
-/obj/item/storage/backpack/mime,
-/obj/item/clothing/neck/tie/lesbian,
-/obj/item/clothing/under/rank/civilian/mime,
-/turf/open/floor/plasteel/dark,
-/area/ruin/jungle/roommates/shack)
-"w" = (
-/obj/effect/turf_decal/corner/opaque/solgovgold,
-/obj/effect/turf_decal/corner/opaque/lime{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/pink{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/bottlegreen{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/jungle/roommates/shack)
-"y" = (
-/obj/effect/turf_decal/corner/opaque/blue,
-/obj/effect/turf_decal/corner/opaque/red{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/purple{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/bottlegreen{
- dir = 4
- },
-/obj/effect/decal/cleanable/plastic,
-/obj/structure/table/wood,
-/obj/item/stack/cable_coil/pink,
-/obj/item/assembly/igniter{
- pixel_x = -5;
- pixel_y = 10
- },
-/obj/item/reagent_containers/food/drinks/soda_cans/canned_laughter{
- pixel_x = 5;
- pixel_y = 17
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/jungle/roommates/shack)
-"z" = (
-/obj/structure/bed{
- pixel_y = 14
- },
-/obj/item/bedsheet/clown{
- pixel_y = 15
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 6
- },
-/obj/effect/turf_decal/corner/opaque/red{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/purple{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/jungle/roommates/shack)
-"A" = (
-/obj/effect/turf_decal/corner/opaque/solgovgold,
-/obj/effect/turf_decal/corner/opaque/lime{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/pink{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/bottlegreen{
- dir = 4
- },
-/obj/item/reagent_containers/food/drinks/soda_cans/canned_laughter{
- pixel_x = -13;
- pixel_y = -6
- },
-/obj/item/reagent_containers/food/drinks/soda_cans/canned_laughter{
- pixel_x = -4;
- pixel_y = -6
- },
-/obj/item/reagent_containers/food/drinks/soda_cans/canned_laughter{
- pixel_x = 5;
- pixel_y = -6
- },
-/obj/item/reagent_containers/food/drinks/soda_cans/canned_laughter{
- pixel_x = 14;
- pixel_y = -6
- },
-/obj/item/reagent_containers/food/drinks/soda_cans/space_mountain_wind{
- pixel_x = 9;
- pixel_y = 6;
- layer = 3.1
- },
-/obj/item/reagent_containers/food/drinks/soda_cans/space_mountain_wind{
- pixel_y = 6;
- layer = 3.1
- },
-/obj/item/reagent_containers/food/drinks/soda_cans/space_mountain_wind{
- pixel_y = 6;
- pixel_x = -9;
- layer = 3.1
- },
-/obj/item/reagent_containers/food/drinks/soda_cans/dr_gibb{
- pixel_y = 15;
- pixel_x = -4
- },
-/obj/item/reagent_containers/food/drinks/soda_cans/dr_gibb{
- pixel_y = 15;
- pixel_x = -4;
- layer = 3.2
- },
-/obj/item/reagent_containers/food/drinks/soda_cans/dr_gibb{
- pixel_y = 15;
- pixel_x = 5;
- layer = 3.2
- },
-/obj/effect/decal/cleanable/plastic,
-/obj/effect/decal/cleanable/confetti,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark,
-/area/ruin/jungle/roommates/shack)
-"C" = (
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 10
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark,
-/area/ruin/jungle/roommates/shack)
-"D" = (
-/turf/open/floor/carpet/orange,
-/area/ruin/jungle/roommates/shack)
-"F" = (
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 6
- },
-/obj/effect/turf_decal/corner/opaque/red{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/purple{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/jungle/roommates/shack)
-"H" = (
-/obj/effect/turf_decal/corner/opaque/solgovgold,
-/obj/effect/turf_decal/corner/opaque/lime{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/pink{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/bottlegreen{
- dir = 4
- },
-/obj/item/trash/can/food{
- pixel_x = -9;
- pixel_y = -6
- },
-/obj/effect/decal/cleanable/confetti,
-/obj/item/restraints/handcuffs/cable,
-/turf/open/floor/plasteel/dark,
-/area/ruin/jungle/roommates/shack)
-"I" = (
-/turf/closed/wall/mineral/wood,
-/area/ruin/jungle/roommates/shack)
-"K" = (
-/obj/structure/mineral_door/wood,
-/turf/open/floor/wood,
-/area/ruin/jungle/roommates/shack)
-"L" = (
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 10
- },
-/obj/structure/chair/wood{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/jungle/roommates/shack)
-"N" = (
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 10
- },
-/obj/structure/chair/wood{
- dir = 1
- },
-/obj/machinery/light/small/broken/directional/east,
-/turf/open/floor/plasteel/dark,
-/area/ruin/jungle/roommates/shack)
-"R" = (
-/obj/machinery/light/small/broken/directional/south,
-/turf/open/floor/carpet/purple,
-/area/ruin/jungle/roommates/shack)
-"S" = (
-/obj/effect/turf_decal/corner/opaque/blue,
-/obj/effect/turf_decal/corner/opaque/red{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/purple{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/bottlegreen{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark,
-/area/ruin/jungle/roommates/shack)
-"T" = (
-/obj/structure/bed,
-/obj/item/bedsheet/mime,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 6
- },
-/obj/effect/turf_decal/corner/opaque/lime{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/pink{
- dir = 1
- },
-/obj/item/toy/plush/knight{
- pixel_y = -1
- },
-/obj/machinery/light/small/broken/directional/north,
-/turf/open/floor/plasteel/dark,
-/area/ruin/jungle/roommates/shack)
-"U" = (
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 10
- },
-/obj/structure/easel,
-/obj/item/canvas/twentythreeXtwentythree{
- pixel_x = 3
- },
-/obj/item/canvas/twentythreeXtwentythree{
- pixel_x = 3
- },
-/obj/item/canvas/twentythreeXtwentythree{
- pixel_x = 3
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/jungle/roommates/shack)
-"X" = (
-/obj/effect/turf_decal/corner/opaque/blue,
-/obj/effect/turf_decal/corner/opaque/red{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/purple{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/bottlegreen{
- dir = 4
- },
-/obj/item/trash/can/food{
- pixel_y = -1
- },
-/obj/item/trash/can/food{
- pixel_x = -6;
- pixel_y = 8
- },
-/obj/item/trash/can/food{
- pixel_x = -6
- },
-/obj/item/trash/can/food{
- pixel_y = 8;
- pixel_x = 5
- },
-/obj/item/trash/can/food{
- pixel_x = 8
- },
-/obj/item/trash/can/food{
- pixel_x = -10;
- pixel_y = -7
- },
-/obj/item/trash/can/food{
- pixel_y = -1
- },
-/obj/item/trash/can/food{
- pixel_y = -9
- },
-/obj/item/trash/can/food{
- pixel_y = 10
- },
-/obj/item/trash/can/food{
- pixel_y = 10;
- pixel_x = 9
- },
-/obj/item/trash/can/food{
- pixel_y = 10;
- pixel_x = 9
- },
-/obj/item/trash/can/food{
- pixel_y = 10;
- pixel_x = 9
- },
-/obj/item/trash/can/food{
- pixel_x = 6;
- pixel_y = -6
- },
-/obj/item/trash/can/food{
- pixel_x = -2;
- pixel_y = 4
- },
-/obj/item/trash/can/food{
- pixel_x = 3
- },
-/obj/effect/decal/cleanable/generic,
-/obj/effect/decal/cleanable/plastic,
-/obj/machinery/light/small/broken/directional/west,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark,
-/area/ruin/jungle/roommates/shack)
-"Y" = (
-/obj/effect/turf_decal/corner/opaque/blue,
-/obj/effect/turf_decal/corner/opaque/red{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/purple{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/bottlegreen{
- dir = 4
- },
-/obj/item/lipstick/purple{
- pixel_x = -4;
- pixel_y = -10
- },
-/obj/item/lipstick/jade{
- pixel_x = 6
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/jungle/roommates/shack)
-
-(1,1,1) = {"
-I
-I
-I
-I
-I
-I
-I
-"}
-(2,1,1) = {"
-I
-p
-d
-X
-s
-y
-I
-"}
-(3,1,1) = {"
-I
-A
-Y
-H
-u
-q
-I
-"}
-(4,1,1) = {"
-I
-S
-w
-S
-o
-D
-I
-"}
-(5,1,1) = {"
-I
-T
-z
-a
-F
-j
-K
-"}
-(6,1,1) = {"
-I
-r
-r
-r
-C
-R
-I
-"}
-(7,1,1) = {"
-I
-U
-r
-r
-L
-r
-I
-"}
-(8,1,1) = {"
-I
-t
-N
-v
-e
-b
-I
-"}
-(9,1,1) = {"
-I
-I
-I
-I
-I
-I
-I
-"}
diff --git a/_maps/RandomRuins/JungleRuins/jungle_surface_weed_shack.dmm b/_maps/RandomRuins/JungleRuins/jungle_surface_weed_shack.dmm
deleted file mode 100644
index 4c0987e0623..00000000000
--- a/_maps/RandomRuins/JungleRuins/jungle_surface_weed_shack.dmm
+++ /dev/null
@@ -1,949 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"aj" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/item/cigbutt/roach,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"aW" = (
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/machinery/power/port_gen/pacman,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"aY" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/item/rollingpaper,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"br" = (
-/mob/living/simple_animal/hostile/cockroach,
-/obj/effect/decal/cleanable/dirt,
-/obj/item/cigbutt/roach,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"cR" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/mob/living/simple_animal/hostile/cockroach,
-/obj/item/cigbutt/roach,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"dG" = (
-/obj/effect/turf_decal/weather/dirt{
- dir = 4
- },
-/turf/template_noop,
-/area/template_noop)
-"ec" = (
-/obj/structure/plaque{
- desc = "A motivational plaque reading: \"It's not a crack shack, it's a crack home <3\"";
- engraved = 1;
- name = "Motivational Plaque"
- },
-/turf/closed/wall/mineral/wood/nonmetal,
-/area/ruin/unpowered)
-"eT" = (
-/obj/effect/turf_decal/weather/dirt/corner{
- dir = 8
- },
-/turf/template_noop,
-/area/template_noop)
-"eZ" = (
-/obj/machinery/hydroponics/constructable,
-/obj/item/seeds/cannabis/ultimate,
-/turf/open/floor/light{
- currentcolor = "#FFFFFF"
- },
-/area/ruin/unpowered)
-"fx" = (
-/obj/effect/turf_decal/weather/dirt/corner{
- dir = 1
- },
-/turf/template_noop,
-/area/template_noop)
-"fP" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/item/reagent_containers/food/snacks/grown/cannabis,
-/obj/item/cigbutt/roach,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"gP" = (
-/obj/item/trash/chips,
-/turf/open/floor/wood{
- icon_state = "wood-broken4"
- },
-/area/ruin/unpowered)
-"gS" = (
-/obj/effect/turf_decal/weather/dirt{
- dir = 1
- },
-/turf/template_noop,
-/area/template_noop)
-"hg" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/weather/dirt/corner,
-/obj/effect/turf_decal/weather/dirt/corner{
- dir = 8
- },
-/turf/open/floor/wood{
- light_range = 2
- },
-/area/overmap_encounter/planetoid/jungle/explored)
-"il" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"iw" = (
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/machinery/power/floodlight{
- setting = 15
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"kD" = (
-/obj/machinery/hydroponics/constructable,
-/obj/item/cigbutt/roach,
-/turf/open/floor/light{
- currentcolor = "#FFFFFF"
- },
-/area/ruin/unpowered)
-"kM" = (
-/mob/living/simple_animal/hostile/cockroach,
-/obj/item/trash/cheesie,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"kW" = (
-/obj/structure/cable,
-/obj/machinery/power/port_gen/pacman,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"li" = (
-/obj/effect/turf_decal/weather/dirt{
- dir = 8
- },
-/turf/template_noop,
-/area/template_noop)
-"ls" = (
-/obj/machinery/hydroponics/constructable,
-/obj/item/rollingpaper,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/light{
- currentcolor = "#FFFFFF"
- },
-/area/ruin/unpowered)
-"lJ" = (
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/power/floodlight{
- setting = 15
- },
-/obj/item/seeds/cannabis/white,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"mx" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/item/trash/boritos,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"mQ" = (
-/obj/effect/turf_decal/weather/dirt{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/weather/dirt/corner{
- dir = 4
- },
-/turf/open/floor/wood{
- light_range = 2
- },
-/area/overmap_encounter/planetoid/jungle/explored)
-"nA" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/weather/dirt/corner{
- dir = 1
- },
-/turf/open/floor/wood{
- light_range = 2
- },
-/area/overmap_encounter/planetoid/jungle/explored)
-"nI" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/item/trash/cheesie,
-/turf/open/floor/wood{
- icon_state = "wood-broken3"
- },
-/area/ruin/unpowered)
-"nJ" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/wood{
- icon_state = "wood-broken4"
- },
-/area/ruin/unpowered)
-"ov" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/closed/wall/mineral/wood/nonmetal,
-/area/ruin/unpowered)
-"oE" = (
-/obj/machinery/hydroponics/constructable,
-/obj/item/seeds/cannabis,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/light{
- currentcolor = "#FFFFFF"
- },
-/area/ruin/unpowered)
-"qI" = (
-/obj/machinery/door/airlock/wood,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"rl" = (
-/obj/structure/bed/pod,
-/obj/structure/bed/pod{
- pixel_y = 10
- },
-/obj/item/seeds/cannabis/rainbow,
-/obj/item/clothing/head/beanie/rasta,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"sW" = (
-/obj/item/cigbutt/roach,
-/turf/open/floor/wood{
- icon_state = "wood-broken"
- },
-/area/ruin/unpowered)
-"uQ" = (
-/obj/machinery/power/terminal{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/item/cigbutt/roach,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"wn" = (
-/turf/open/floor/plating/dirt/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"xh" = (
-/obj/effect/turf_decal/weather/dirt{
- dir = 9
- },
-/obj/effect/turf_decal/weather/dirt{
- dir = 10
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood{
- light_range = 2
- },
-/area/overmap_encounter/planetoid/jungle/explored)
-"zz" = (
-/obj/item/trash/boritos,
-/obj/item/seeds/cannabis/death,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"zL" = (
-/obj/structure/closet/crate/hydroponics,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"Av" = (
-/mob/living/simple_animal/hostile/cockroach,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"AJ" = (
-/obj/item/trash/boritos,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"Cs" = (
-/obj/effect/turf_decal/weather/dirt{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood{
- light_range = 2
- },
-/area/overmap_encounter/planetoid/jungle/explored)
-"Cw" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/table/wood,
-/obj/item/storage/fancy/rollingpapers,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"DM" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/cigbutt/roach,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"DN" = (
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/item/cigbutt/roach,
-/obj/item/reagent_containers/glass/bucket,
-/turf/open/floor/wood{
- icon_state = "wood-broken7"
- },
-/area/ruin/unpowered)
-"Ey" = (
-/obj/effect/turf_decal/weather/dirt{
- dir = 10
- },
-/obj/effect/turf_decal/weather/dirt{
- dir = 6
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood{
- light_range = 2
- },
-/area/overmap_encounter/planetoid/jungle/explored)
-"EM" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/mob/living/simple_animal/hostile/cockroach,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"FK" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"FN" = (
-/obj/machinery/power/smes/engineering,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"Gc" = (
-/obj/item/cigbutt/roach,
-/turf/open/floor/wood{
- icon_state = "wood-broken3"
- },
-/area/ruin/unpowered)
-"Gi" = (
-/obj/structure/table/wood,
-/obj/item/rollingpaper,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"Hl" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/sink/kitchen{
- dir = 8;
- pixel_x = 11
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"Hp" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/reagent_containers/glass/bucket,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"HG" = (
-/obj/structure/table/wood,
-/obj/item/clothing/mask/cigarette/rollie/mindbreaker,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"HJ" = (
-/obj/item/cigbutt/roach,
-/obj/structure/plaque{
- pixel_y = 32
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"IF" = (
-/obj/effect/turf_decal/weather/dirt{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/weather/dirt/corner,
-/turf/open/floor/wood{
- icon_state = "wood-broken5";
- light_range = 2
- },
-/area/overmap_encounter/planetoid/jungle/explored)
-"Jb" = (
-/obj/effect/turf_decal/weather/dirt,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood{
- light_range = 2
- },
-/area/overmap_encounter/planetoid/jungle/explored)
-"JY" = (
-/mob/living/simple_animal/hostile/cockroach/glockroach,
-/turf/open/floor/plating/dirt/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"Kg" = (
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/machinery/power/terminal{
- dir = 1
- },
-/obj/machinery/power/apc/auto_name/directional/north,
-/obj/item/trash/cheesie,
-/obj/item/cigbutt/roach,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"Kq" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/item/seeds/cannabis,
-/turf/open/floor/wood{
- icon_state = "wood-broken"
- },
-/area/ruin/unpowered)
-"LD" = (
-/obj/machinery/hydroponics/constructable,
-/turf/open/floor/light{
- currentcolor = "#FFFFFF"
- },
-/area/ruin/unpowered)
-"Ma" = (
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/power/floodlight{
- setting = 15
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"Mj" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"NE" = (
-/obj/effect/turf_decal/weather/dirt{
- dir = 5
- },
-/turf/template_noop,
-/area/template_noop)
-"Pk" = (
-/mob/living/simple_animal/hostile/cockroach/glockroach,
-/obj/effect/decal/cleanable/dirt,
-/obj/item/cigbutt/roach,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"Pv" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/wood{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"PS" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/wood{
- icon_state = "wood-broken2"
- },
-/area/ruin/unpowered)
-"Qs" = (
-/mob/living/simple_animal/hostile/cockroach,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"Qt" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/wood,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"QQ" = (
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/power/floodlight{
- setting = 15
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"Rj" = (
-/mob/living/simple_animal/hostile/cockroach,
-/obj/item/reagent_containers/food/snacks/grown/cannabis,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"RW" = (
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/power/floodlight{
- setting = 15
- },
-/obj/item/rollingpaper,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/wood{
- icon_state = "wood-broken5"
- },
-/area/ruin/unpowered)
-"Tx" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"TK" = (
-/obj/structure/table/wood,
-/obj/item/clothing/mask/cigarette/rollie/cannabis{
- pixel_x = 8;
- pixel_y = 8
- },
-/obj/item/clothing/mask/cigarette/rollie/cannabis{
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/item/clothing/mask/cigarette/rollie/cannabis,
-/obj/item/storage/fancy/rollingpapers,
-/obj/item/storage/fancy/rollingpapers,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"Up" = (
-/obj/structure/table/wood,
-/obj/item/clothing/head/beanie/rasta,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"UC" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/reagent_containers/glass/bucket,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"Vn" = (
-/obj/effect/turf_decal/weather/dirt{
- dir = 6
- },
-/obj/effect/turf_decal/weather/dirt{
- dir = 5
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood{
- light_range = 2
- },
-/area/overmap_encounter/planetoid/jungle/explored)
-"VY" = (
-/obj/structure/table/wood,
-/obj/item/reagent_containers/food/snacks/grown/cannabis,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"Wo" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/cigbutt/roach,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"Xd" = (
-/obj/machinery/hydroponics/constructable,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/light{
- currentcolor = "#FFFFFF"
- },
-/area/ruin/unpowered)
-"XJ" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"XT" = (
-/obj/effect/turf_decal/weather/dirt{
- dir = 9
- },
-/turf/template_noop,
-/area/template_noop)
-"XW" = (
-/obj/effect/turf_decal/weather/dirt{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood{
- icon_state = "wood-broken";
- light_range = 2
- },
-/area/overmap_encounter/planetoid/jungle/explored)
-"Yj" = (
-/turf/closed/wall/mineral/wood/nonmetal,
-/area/ruin/unpowered)
-"YB" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"YL" = (
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"ZJ" = (
-/obj/effect/turf_decal/weather/dirt{
- dir = 6
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood{
- light_range = 2
- },
-/area/overmap_encounter/planetoid/jungle/explored)
-"ZK" = (
-/turf/template_noop,
-/area/template_noop)
-"ZS" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-
-(1,1,1) = {"
-ZK
-Yj
-Yj
-Yj
-ZK
-ZK
-Yj
-Yj
-Yj
-ZK
-ZK
-ZK
-ZK
-ZK
-ZK
-ZK
-ZK
-"}
-(2,1,1) = {"
-ZK
-Yj
-zL
-Yj
-Yj
-Yj
-Yj
-zz
-Yj
-Yj
-ZK
-ZK
-ZK
-ZK
-ZK
-ZK
-ZK
-"}
-(3,1,1) = {"
-ZK
-Yj
-aj
-nI
-fP
-YB
-Yj
-Pk
-sW
-Yj
-Yj
-ZK
-ZK
-ZK
-ZK
-ZK
-ZK
-"}
-(4,1,1) = {"
-ZK
-Yj
-iw
-LD
-LD
-Wo
-Yj
-YL
-br
-rl
-Yj
-ZK
-ZK
-ZK
-ZK
-ZK
-ZK
-"}
-(5,1,1) = {"
-ZK
-Yj
-RW
-LD
-eZ
-Kq
-Yj
-Kg
-YB
-Yj
-Yj
-ZK
-ZK
-ZK
-ZK
-ZK
-ZK
-"}
-(6,1,1) = {"
-Yj
-Yj
-QQ
-UC
-Av
-Tx
-Yj
-Gc
-cR
-Yj
-Yj
-Yj
-dG
-eT
-ZK
-ZK
-ZK
-"}
-(7,1,1) = {"
-Yj
-Mj
-Ma
-oE
-kD
-FK
-Yj
-Yj
-Pv
-Yj
-VY
-Yj
-wn
-NE
-dG
-eT
-ZK
-"}
-(8,1,1) = {"
-Yj
-Rj
-Ma
-LD
-Xd
-Hp
-TK
-Yj
-aY
-DM
-kM
-Yj
-wn
-wn
-wn
-NE
-eT
-"}
-(9,1,1) = {"
-Yj
-Yj
-Ma
-YL
-gP
-Tx
-Yj
-Yj
-il
-PS
-YL
-Yj
-wn
-xh
-JY
-wn
-gS
-"}
-(10,1,1) = {"
-Yj
-Yj
-Ma
-LD
-Xd
-FK
-ec
-HJ
-il
-Up
-ZS
-Yj
-wn
-mQ
-IF
-Ey
-gS
-"}
-(11,1,1) = {"
-Yj
-YL
-lJ
-LD
-ls
-DN
-Qt
-mx
-Cw
-HG
-Mj
-qI
-Cs
-nA
-Jb
-wn
-gS
-"}
-(12,1,1) = {"
-Yj
-Yj
-FN
-uQ
-EM
-Hl
-ov
-XJ
-Qs
-ZS
-nJ
-qI
-XW
-hg
-ZJ
-wn
-gS
-"}
-(13,1,1) = {"
-ZK
-Yj
-Yj
-Yj
-Yj
-Yj
-Yj
-aW
-kW
-AJ
-Qs
-Yj
-wn
-Vn
-wn
-wn
-gS
-"}
-(14,1,1) = {"
-ZK
-ZK
-ZK
-ZK
-ZK
-ZK
-Yj
-Yj
-Yj
-VY
-Gi
-Yj
-wn
-wn
-wn
-XT
-fx
-"}
-(15,1,1) = {"
-ZK
-ZK
-ZK
-ZK
-ZK
-ZK
-ZK
-ZK
-Yj
-Yj
-Yj
-Yj
-li
-li
-li
-fx
-ZK
-"}
-(16,1,1) = {"
-ZK
-ZK
-ZK
-ZK
-ZK
-ZK
-ZK
-ZK
-ZK
-Yj
-Yj
-ZK
-ZK
-ZK
-ZK
-ZK
-ZK
-"}
diff --git a/_maps/RandomRuins/JungleRuins/jungle_syndicate.dmm b/_maps/RandomRuins/JungleRuins/jungle_syndicate.dmm
index ebd33328938..6418550c8e7 100644
--- a/_maps/RandomRuins/JungleRuins/jungle_syndicate.dmm
+++ b/_maps/RandomRuins/JungleRuins/jungle_syndicate.dmm
@@ -123,7 +123,7 @@
/turf/open/floor/plating/rust,
/area/ruin/jungle/syndifort)
"ef" = (
-/mob/living/simple_animal/hostile/syndicate{
+/mob/living/simple_animal/hostile/human/syndicate{
desc = "God dammit Jerry! Why the fuck are you barricading yourself in with all of our weapon supplies?";
name = "Jerry";
unsuitable_atmos_damage = 0
@@ -180,7 +180,7 @@
/turf/open/floor/plating/grass/jungle/lit,
/area/overmap_encounter/planetoid/jungle/explored)
"fS" = (
-/mob/living/simple_animal/hostile/syndicate{
+/mob/living/simple_animal/hostile/human/syndicate{
unsuitable_atmos_damage = 0
},
/obj/effect/decal/cleanable/dirt/dust,
@@ -199,8 +199,6 @@
/area/overmap_encounter/planetoid/jungle/explored)
"gf" = (
/obj/structure/closet/crate/secure/gear,
-/obj/item/storage/box/syndimaid,
-/obj/item/storage/box/syndimaid,
/obj/item/blackmarket_uplink,
/obj/machinery/light/directional/west,
/turf/open/floor/plating,
@@ -533,7 +531,7 @@
/turf/open/floor/mineral/plastitanium/red,
/area/ruin/jungle/syndifort)
"rg" = (
-/mob/living/simple_animal/hostile/syndicate/space,
+/mob/living/simple_animal/hostile/human/syndicate/space,
/obj/structure/cable{
icon_state = "1-2"
},
@@ -1102,7 +1100,7 @@
/area/overmap_encounter/planetoid/jungle/explored)
"HR" = (
/obj/structure/chair/plastic,
-/mob/living/simple_animal/hostile/syndicate/ranged{
+/mob/living/simple_animal/hostile/human/syndicate/ranged{
unsuitable_atmos_damage = 0
},
/turf/open/floor/plating/dirt/jungle/lit,
@@ -1365,7 +1363,7 @@
/area/ruin/jungle/syndifort)
"Qs" = (
/obj/structure/cable,
-/mob/living/simple_animal/hostile/syndicate{
+/mob/living/simple_animal/hostile/human/syndicate{
unsuitable_atmos_damage = 0
},
/obj/machinery/light/directional/north,
diff --git a/_maps/RandomRuins/BeachRuins/beach_crashed_starwalker.dmm b/_maps/RandomRuins/LavaRuins/lavaland_crashed_starwalker.dmm
similarity index 70%
rename from _maps/RandomRuins/BeachRuins/beach_crashed_starwalker.dmm
rename to _maps/RandomRuins/LavaRuins/lavaland_crashed_starwalker.dmm
index f8724e04f0d..138b1e9d31e 100644
--- a/_maps/RandomRuins/BeachRuins/beach_crashed_starwalker.dmm
+++ b/_maps/RandomRuins/LavaRuins/lavaland_crashed_starwalker.dmm
@@ -2,16 +2,16 @@
"ao" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/pod,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"ar" = (
/obj/effect/decal/fakelattice{
icon_state = "lattice-55"
},
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
"as" = (
-/turf/closed/mineral/random/beach,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/turf/open/lava/smooth/lava_land_surface,
+/area/overmap_encounter/planetoid/lava/explored)
"av" = (
/obj/effect/turf_decal/industrial/warning{
dir = 9
@@ -24,7 +24,7 @@
/obj/item/wallframe/apc,
/obj/machinery/light/small/broken/directional/east,
/turf/open/floor/plasteel,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"aL" = (
/obj/structure/railing,
/obj/effect/decal/cleanable/dirt,
@@ -44,22 +44,21 @@
/obj/structure/cable/orange{
icon_state = "1-8"
},
-/obj/structure/spacevine/dense,
/turf/open/floor/plasteel/patterned/cargo_one,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"aN" = (
/obj/machinery/atmospherics/components/unary/shuttle/heater{
dir = 1
},
/obj/structure/window/reinforced,
/turf/open/floor/plating,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"bd" = (
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/obj/structure/flora/ausbushes/grassybush/hell,
+/turf/open/floor/plating/grass/lava/orange,
+/area/overmap_encounter/planetoid/lava/explored)
"bg" = (
-/turf/closed/mineral/random/beach,
+/turf/closed/mineral/random/volcanic,
/area/overmap_encounter/planetoid/cave/explored)
"bs" = (
/obj/structure/cable/cyan{
@@ -75,7 +74,7 @@
/turf/open/floor/plasteel/stairs{
dir = 4
},
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"bz" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/poddoor/shutters{
@@ -83,7 +82,7 @@
name = "Blast Shutters"
},
/turf/open/floor/engine/hull/interior,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"bI" = (
/obj/effect/turf_decal/industrial/warning{
dir = 4;
@@ -93,24 +92,22 @@
name = "armory locker";
req_one_access_txt = "1"
},
-/obj/item/storage/box/slugshot,
-/obj/item/ammo_box/c38,
-/obj/structure/spacevine,
+/obj/item/ammo_box/a12g,
/turf/open/floor/mineral/plastitanium,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"bL" = (
/obj/effect/turf_decal/number/zero{
dir = 8
},
/turf/closed/wall/mineral/plastitanium/nodiagonal,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/area/overmap_encounter/planetoid/lava/explored)
"bM" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating{
icon_state = "platingdmg1"
},
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/area/overmap_encounter/planetoid/lava/explored)
"bU" = (
/obj/effect/turf_decal/industrial/warning{
dir = 10;
@@ -118,9 +115,8 @@
},
/obj/effect/decal/cleanable/dirt/dust,
/obj/effect/decal/cleanable/dirt,
-/obj/structure/spacevine,
/turf/open/floor/mineral/plastitanium,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"bV" = (
/obj/structure/catwalk/over,
/obj/structure/sign/departments/medbay/alt{
@@ -136,8 +132,12 @@
icon_state = "1-2"
},
/obj/structure/grille/broken,
+/obj/item/stack/medical/bruise_pack/herb{
+ pixel_x = -10;
+ pixel_y = 12
+ },
/turf/open/floor/plating,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"cn" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/stack/cable_coil/cut/pink{
@@ -147,7 +147,7 @@
/turf/open/floor/plating{
icon_state = "panelscorched"
},
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/area/overmap_encounter/planetoid/lava/explored)
"co" = (
/obj/structure/catwalk/over,
/obj/effect/decal/cleanable/dirt/dust,
@@ -159,13 +159,8 @@
/obj/structure/cable/orange{
icon_state = "1-2"
},
-/obj/item/sensor_device{
- pixel_x = -9;
- pixel_y = -1
- },
-/obj/structure/spacevine,
/turf/open/floor/plating,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"cq" = (
/obj/structure/grille/broken,
/obj/effect/decal/cleanable/glass{
@@ -173,7 +168,7 @@
pixel_x = 16
},
/turf/open/floor/plating,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"cA" = (
/obj/machinery/light/directional/east,
/obj/structure/closet/crate/trashcart,
@@ -197,15 +192,14 @@
icon_state = "1-9"
},
/turf/open/floor/plasteel,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"cC" = (
/obj/effect/turf_decal/industrial/outline/yellow,
/obj/effect/decal/cleanable/wrapping,
/obj/effect/decal/cleanable/dirt,
-/obj/structure/spacevine,
/obj/structure/mopbucket,
/turf/open/floor/plasteel,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"cH" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
@@ -220,7 +214,7 @@
pixel_x = -9
},
/turf/open/floor/pod,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"cO" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/machinery/atmospherics/pipe/simple/orange/hidden{
@@ -239,14 +233,13 @@
pixel_x = -9;
pixel_y = 10
},
-/obj/structure/spacevine,
/turf/open/floor/plating/rust,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"cT" = (
/obj/effect/turf_decal/industrial/loading,
/obj/item/reagent_containers/food/snacks/monkeycube,
/turf/open/floor/plasteel/patterned/ridged,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"dh" = (
/obj/structure/chair/greyscale{
dir = 1
@@ -265,30 +258,28 @@
},
/obj/machinery/light/small/broken/directional/south,
/turf/open/floor/plasteel/tech/grid,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"di" = (
-/turf/open/floor/plating/dirt,
+/obj/structure/flora/ausbushes/fullgrass/hell,
+/turf/open/floor/plating/moss,
/area/overmap_encounter/planetoid/cave/explored)
"dm" = (
/obj/effect/decal/fakelattice{
icon_state = "lattice-74"
},
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
"dC" = (
/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium,
/obj/machinery/door/poddoor/shutters{
id = "pcarrier_windows"
},
/turf/open/floor/plating,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"dP" = (
-/obj/item/stack/rods{
- pixel_x = -9;
- pixel_y = 1
- },
-/turf/open/water/beach,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/obj/item/grown/log/tree,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
"dX" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -305,7 +296,7 @@
/obj/effect/decal/cleanable/blood/innards{
pixel_y = -7
},
-/turf/open/floor/plating/dirt,
+/turf/open/floor/plating/moss,
/area/overmap_encounter/planetoid/cave/explored)
"ef" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
@@ -325,7 +316,7 @@
icon = 'icons/obj/stairs.dmi';
dir = 8
},
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"ek" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/effect/decal/cleanable/dirt,
@@ -345,7 +336,7 @@
pixel_y = 5
},
/turf/open/floor/plasteel/patterned/cargo_one,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"er" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/structure/cable/yellow{
@@ -355,11 +346,7 @@
icon_state = "1-6"
},
/turf/open/floor/plating/rust,
-/area/ruin/beach/starwalker)
-"eJ" = (
-/mob/living/simple_animal/hostile/carp,
-/turf/open/water/beach,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/area/ruin/unpowered/crashed_starwalker)
"eN" = (
/obj/structure/catwalk/over,
/obj/machinery/door/airlock/glass,
@@ -376,14 +363,15 @@
icon_state = "1-2"
},
/turf/open/floor/plating,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"eT" = (
/obj/effect/decal/cleanable/blood/drip,
/obj/effect/decal/cleanable/blood/drip{
pixel_x = -21;
pixel_y = 11
},
-/turf/open/floor/plating/dirt,
+/obj/structure/flora/ausbushes/sparsegrass/hell,
+/turf/open/floor/plating/moss,
/area/overmap_encounter/planetoid/cave/explored)
"fj" = (
/obj/structure/window/reinforced,
@@ -401,15 +389,13 @@
pixel_y = 7
},
/turf/open/floor/plating,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"fk" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/obj/machinery/firealarm/directional/west,
-/obj/item/clothing/under/costume/sailor,
-/obj/structure/spacevine,
/turf/open/floor/pod,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"fu" = (
/obj/structure/window/reinforced,
/obj/machinery/door/window/northright{
@@ -422,7 +408,7 @@
dir = 1
},
/turf/open/floor/plating,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"fM" = (
/obj/structure/catwalk/over,
/obj/machinery/door/firedoor/border_only{
@@ -442,7 +428,7 @@
icon_state = "1-10"
},
/turf/open/floor/plating,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"gd" = (
/obj/structure/railing{
dir = 4
@@ -452,7 +438,7 @@
icon_state = "1-2"
},
/turf/open/floor/plasteel,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"gi" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/structure/toilet{
@@ -467,7 +453,7 @@
/obj/effect/decal/cleanable/vomit/old,
/obj/structure/curtain/bounty,
/turf/open/floor/pod/light,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"gr" = (
/obj/effect/turf_decal/industrial/warning,
/obj/structure/railing/corner{
@@ -482,7 +468,7 @@
},
/obj/structure/grille,
/turf/open/floor/plasteel/patterned,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"gu" = (
/obj/effect/turf_decal/siding/wood{
dir = 4
@@ -493,37 +479,26 @@
/turf/open/floor/wood{
icon_state = "wood-broken4"
},
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"gU" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/kirbyplants{
icon_state = "plant-10"
},
/turf/open/floor/pod/light,
-/area/ruin/beach/starwalker)
-"gV" = (
-/obj/item/reagent_containers/food/snacks/fishmeat/carp,
-/obj/item/reagent_containers/food/snacks/fishmeat/carp{
- pixel_y = 7;
- pixel_x = 4
- },
-/obj/effect/turf_decal/weather/sand{
- dir = 1
- },
-/turf/open/water/beach,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/area/ruin/unpowered/crashed_starwalker)
"hd" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/blood/tracks{
dir = 5
},
-/turf/open/floor/plating/dirt,
+/turf/open/floor/plating/moss,
/area/overmap_encounter/planetoid/cave/explored)
"hf" = (
/obj/effect/turf_decal/industrial/outline/yellow,
/obj/structure/grille,
/turf/open/floor/engine/hull,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"hg" = (
/obj/item/soap/deluxe,
/obj/item/bikehorn/rubberducky,
@@ -535,22 +510,11 @@
pixel_x = -32
},
/turf/open/floor/plating/catwalk_floor,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"hi" = (
-/obj/effect/turf_decal/weather/dirt{
- dir = 1
- },
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"hx" = (
-/mob/living/simple_animal/beachcarp/salmon{
- dir = 4
- },
-/obj/effect/decal/fakelattice{
- icon_state = "lattice-3"
- },
-/turf/open/water/beach,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/obj/structure/flora/ash/stem_shroom,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
"hN" = (
/obj/machinery/light/small/directional/east,
/obj/effect/decal/cleanable/blood/old{
@@ -558,12 +522,16 @@
pixel_y = 11;
icon_state = "floor6-old"
},
+/obj/item/stack/ore/salvage/scrapgold/five{
+ pixel_x = -7;
+ pixel_y = -11
+ },
+/obj/item/stack/ore/salvage/scrapuranium{
+ pixel_x = 3;
+ pixel_y = -9
+ },
/turf/open/floor/engine/hull,
-/area/ruin/beach/starwalker)
-"hV" = (
-/obj/structure/flora/ausbushes/fernybush,
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/area/ruin/unpowered/crashed_starwalker)
"ia" = (
/obj/machinery/atmospherics/components/unary/shuttle/heater{
dir = 1
@@ -575,12 +543,12 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
},
-/obj/structure/spacevine/weak,
/turf/open/floor/plating,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"id" = (
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/obj/structure/flora/ausbushes/fernybush/hell,
+/turf/open/floor/plating/grass/lava/orange,
+/area/overmap_encounter/planetoid/lava/explored)
"it" = (
/obj/effect/turf_decal/industrial/warning{
dir = 8
@@ -588,24 +556,17 @@
/obj/structure/closet/body_bag,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/obj/item/circuitboard/computer/rdconsole,
-/obj/item/stack/medical/suture/medicated,
-/obj/item/circuitboard/machine/rdserver,
-/obj/item/circuitboard/machine/protolathe/department/security,
-/obj/effect/mob_spawn/human/sec,
+/obj/effect/mob_spawn/human/corpse/frontier,
/turf/open/floor/plasteel,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"iw" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/fakelattice{
icon_state = "lattice-9"
},
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
"iA" = (
-/obj/machinery/mineral/ore_redemption{
- dir = 4
- },
/obj/structure/railing{
dir = 8
},
@@ -613,7 +574,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"iB" = (
/obj/machinery/button/door{
pixel_x = -23;
@@ -626,24 +587,24 @@
},
/obj/machinery/light/small/broken/directional/south,
/turf/open/floor/plasteel/tech/grid,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"iC" = (
/turf/closed/wall/mineral/plastitanium,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"iE" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/item/wallframe/firealarm,
/obj/machinery/light/broken/directional/south,
/obj/structure/frame/machine,
/turf/open/floor/plasteel,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"iN" = (
/obj/item/stack/ore/salvage/scrapmetal/five{
pixel_x = 13;
pixel_y = 17
},
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
"ju" = (
/obj/effect/decal/fakelattice{
icon_state = "lattice-3"
@@ -652,35 +613,39 @@
pixel_x = 7;
pixel_y = 11
},
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
"jC" = (
/obj/item/stack/rods{
pixel_x = -9;
pixel_y = 1
},
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
"jH" = (
/obj/structure/closet/crate/coffin,
/obj/effect/decal/cleanable/cobweb/cobweb2,
-/obj/effect/mob_spawn/human/corpse/pirate,
-/turf/open/floor/plating/dirt,
+/obj/effect/mob_spawn/human/corpse/frontier/ranged/officer,
+/turf/open/floor/plating/moss,
/area/overmap_encounter/planetoid/cave/explored)
"jL" = (
/obj/structure/disposalpipe/broken,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/ruin/beach/starwalker)
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/ruin/unpowered/crashed_starwalker)
"kg" = (
/obj/structure/table,
/obj/effect/decal/cleanable/dirt,
/obj/machinery/light/small/directional/east,
+/obj/item/kitchen/knife{
+ pixel_x = 7;
+ pixel_y = 10
+ },
/turf/open/floor/plasteel,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"kh" = (
-/mob/living/simple_animal/crab,
-/turf/open/floor/plating/dirt,
+/mob/living/simple_animal/hostile/asteroid/hivelord/legion,
+/turf/open/floor/plating/moss,
/area/overmap_encounter/planetoid/cave/explored)
"kv" = (
/obj/machinery/power/terminal,
@@ -691,11 +656,12 @@
pixel_x = -13;
pixel_y = 7
},
+/obj/machinery/portable_atmospherics/canister/toxins,
/turf/open/floor/pod,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"ky" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating/dirt,
+/turf/open/floor/plating/moss,
/area/overmap_encounter/planetoid/cave/explored)
"kK" = (
/obj/effect/decal/cleanable/blood/drip{
@@ -707,15 +673,12 @@
pixel_y = 15
},
/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
"kP" = (
/obj/structure/railing/corner{
dir = 4
},
-/obj/machinery/status_display/shuttle{
- pixel_y = 32
- },
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
icon_state = "6-8"
@@ -728,7 +691,7 @@
/turf/open/floor/plating{
icon_state = "platingdmg1"
},
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"kR" = (
/obj/structure/railing{
dir = 1
@@ -739,15 +702,14 @@
/obj/structure/cable/pink{
icon_state = "4-10"
},
-/obj/structure/spacevine,
/turf/open/floor/plasteel/stairs{
dir = 8
},
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"kX" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/blood/tracks,
-/turf/open/floor/plating/dirt,
+/turf/open/floor/plating/moss,
/area/overmap_encounter/planetoid/cave/explored)
"lc" = (
/obj/machinery/atmospherics/components/binary/pump{
@@ -759,12 +721,11 @@
/obj/structure/cable/green{
icon_state = "1-4"
},
-/obj/structure/spacevine/weak,
/obj/item/reagent_containers/food/snacks/breadslice/moldy{
pixel_x = 5
},
/turf/open/floor/pod,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"lq" = (
/obj/effect/turf_decal/industrial/outline/yellow,
/obj/structure/closet/crate/engineering,
@@ -777,28 +738,22 @@
/obj/item/stack/cable_coil,
/obj/item/stack/circuit_stack,
/obj/machinery/firealarm/directional/west,
-/obj/item/storage/box/ingredients/vegetarian,
-/obj/item/storage/box/ingredients/carnivore{
- pixel_x = -4;
- pixel_y = 6
- },
/turf/open/floor/plasteel/patterned,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"lM" = (
/obj/item/pushbroom{
pixel_x = 6;
pixel_y = 7
},
-/turf/open/water/beach,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
"lY" = (
-/obj/item/clothing/suit/space/hardsuit/swat,
/obj/machinery/suit_storage_unit/inherit,
/obj/item/tank/jetpack/oxygen/harness,
/obj/effect/turf_decal/industrial/outline/yellow,
/obj/machinery/light/directional/south,
/turf/open/floor/plasteel/tech/grid,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"ma" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -807,7 +762,7 @@
pixel_y = -6
},
/turf/open/floor/plating,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/area/overmap_encounter/planetoid/lava/explored)
"mb" = (
/obj/effect/decal/fakelattice{
icon_state = "lattice-5"
@@ -817,8 +772,8 @@
pixel_y = -6
},
/obj/item/stack/cable_coil/cut/blue,
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
"mi" = (
/obj/effect/decal/cleanable/blood/old{
icon_state = "gib1-old";
@@ -834,38 +789,35 @@
pixel_y = 11;
icon_state = "floor6-old"
},
-/obj/item/reagent_containers/food/snacks/meat/rawcrab{
- pixel_x = 3;
- pixel_y = 9
- },
-/turf/open/floor/plating/dirt,
+/mob/living/simple_animal/hostile/asteroid/hivelord/legion,
+/turf/open/floor/plating/moss,
/area/overmap_encounter/planetoid/cave/explored)
"mm" = (
-/obj/machinery/jukebox/disco,
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/cave/explored)
+/obj/item/stack/ore/salvage/scrapmetal/five{
+ pixel_x = 7
+ },
+/obj/effect/decal/fakelattice{
+ icon_state = "lattice-3"
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
"mU" = (
-/mob/living/simple_animal/hostile/carp,
-/turf/open/floor/plating/dirt,
+/obj/structure/flora/ausbushes/sparsegrass/hell,
+/turf/open/floor/plating/moss,
/area/overmap_encounter/planetoid/cave/explored)
"nw" = (
-/mob/living/simple_animal/hostile/carp{
- resize = 0.5;
- melee_damage_lower = 0;
- melee_damage_upper = 0;
- name = "Baby carp";
- desc = "A ferociously cute, fang-less creature that resembles a fish."
- },
/obj/effect/decal/cleanable/cobweb/cobweb2,
-/turf/open/floor/plating/dirt,
+/obj/structure/flora/ash/fern,
+/turf/open/floor/plating/moss,
/area/overmap_encounter/planetoid/cave/explored)
"nz" = (
/obj/item/stack/rods{
pixel_x = 9;
pixel_y = -11
},
-/turf/open/water/beach,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
"nB" = (
/obj/effect/turf_decal/industrial/warning{
dir = 8;
@@ -873,14 +825,20 @@
},
/obj/structure/rack,
/obj/machinery/firealarm/directional/north,
-/obj/item/storage/backpack/duffelbag/syndie,
+/obj/item/mine/pressure/explosive/shrapnel,
+/obj/item/mine/pressure/explosive/shrapnel{
+ pixel_x = 8
+ },
+/obj/item/mine/pressure/explosive/shrapnel{
+ pixel_x = -8
+ },
/turf/open/floor/mineral/plastitanium,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"nH" = (
/obj/machinery/smartfridge/organ,
/obj/machinery/firealarm/directional/north,
/turf/open/floor/plasteel/patterned/cargo_one,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"of" = (
/obj/effect/turf_decal/techfloor{
dir = 8
@@ -889,7 +847,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"ou" = (
/obj/effect/turf_decal/techfloor{
dir = 8
@@ -912,11 +870,14 @@
pixel_y = 2
},
/turf/open/floor/plasteel/tech/grid,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"oy" = (
-/mob/living/simple_animal/crab,
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/turf/open/floor/plating/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/stack/medical/bruise_pack/herb{
+ pixel_x = -10;
+ pixel_y = 12
+ },
+/turf/open/floor/plating/moss,
/area/overmap_encounter/planetoid/cave/explored)
"oz" = (
/obj/effect/decal/cleanable/glass{
@@ -926,13 +887,13 @@
/obj/effect/decal/fakelattice{
icon_state = "lattice-9"
},
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
"oC" = (
/turf/open/floor/plating{
icon_state = "panelscorched"
},
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"oG" = (
/obj/effect/turf_decal/techfloor/corner,
/obj/effect/decal/cleanable/dirt/dust,
@@ -943,31 +904,24 @@
pixel_x = -9;
pixel_y = -9
},
-/obj/item/door_seal{
- pixel_y = -1;
- pixel_x = 2
- },
/turf/open/floor/plasteel/tech/grid,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"oH" = (
-/obj/effect/turf_decal/weather/sand{
- dir = 5
- },
-/turf/open/water/beach,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/obj/structure/girder/displaced,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
"oQ" = (
-/obj/item/clothing/suit/pirate,
/obj/item/stack/cable_coil/cut/white{
pixel_x = -9;
pixel_y = -9
},
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
"pc" = (
/obj/structure/bed{
icon_state = "dirty_mattress"
},
-/turf/open/floor/plating/dirt,
+/turf/open/floor/plating/moss,
/area/overmap_encounter/planetoid/cave/explored)
"ph" = (
/obj/effect/decal/cleanable/dirt,
@@ -983,21 +937,31 @@
dir = 1
},
/turf/open/floor/plasteel,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"pj" = (
/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/item/wallframe/extinguisher_cabinet,
/obj/effect/decal/cleanable/cobweb/cobweb2,
+/obj/structure/closet/crate/secure/gear,
+/obj/item/ammo_box/c10mm/surplus,
+/obj/item/weaponcrafting/stock,
+/obj/item/weaponcrafting/stock{
+ pixel_x = -6
+ },
+/obj/item/weaponcrafting/receiver,
+/obj/item/weaponcrafting/receiver,
+/obj/item/weaponcrafting/stock{
+ pixel_x = 7
+ },
/turf/open/floor/plasteel/patterned,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"pk" = (
/obj/item/reagent_containers/food/snacks/monkeycube{
pixel_y = -1;
pixel_x = 6
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/ruin/beach/starwalker)
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/ruin/unpowered/crashed_starwalker)
"pm" = (
/obj/structure/catwalk/over,
/obj/effect/decal/cleanable/dirt,
@@ -1014,7 +978,7 @@
pixel_y = 5
},
/turf/open/floor/plating,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"pP" = (
/obj/machinery/computer/card/minor/cmo{
dir = 8
@@ -1027,34 +991,30 @@
name = "pepper"
},
/turf/open/floor/plasteel/tech/grid,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"pV" = (
-/obj/effect/turf_decal/weather/sand{
- dir = 10
- },
-/obj/effect/turf_decal/weather/sand{
- dir = 9
- },
-/turf/open/water/beach,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/girder/displaced,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
"qs" = (
/obj/effect/decal/fakelattice{
icon_state = "lattice-3"
},
-/turf/open/water/beach,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
"qv" = (
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/area/overmap_encounter/planetoid/lava/explored)
"qx" = (
/obj/item/stack/ore/salvage/scrapmetal/ten{
pixel_x = -14;
pixel_y = 14
},
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
"qS" = (
/obj/structure/railing{
dir = 8
@@ -1064,11 +1024,11 @@
/obj/machinery/cell_charger,
/obj/structure/grille/broken,
/turf/open/floor/plating/rust,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"rl" = (
-/obj/effect/overlay/palmtree_r,
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/obj/item/grown/log/tree,
+/turf/open/floor/plating/grass/lava/orange,
+/area/overmap_encounter/planetoid/lava/explored)
"rt" = (
/obj/structure/catwalk/over,
/obj/machinery/atmospherics/pipe/simple/orange/hidden,
@@ -1079,17 +1039,13 @@
/obj/structure/cable/green{
icon_state = "1-2"
},
-/obj/item/stack/medical/ointment/herb{
- pixel_x = -6;
- pixel_y = -8
- },
/turf/open/floor/plating,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"ry" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/engine/hull/interior,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/area/overmap_encounter/planetoid/lava/explored)
"rA" = (
/obj/item/stack/ore/salvage/scrapplasma/five{
pixel_x = -3;
@@ -1098,11 +1054,11 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/blood/drip,
/turf/open/floor/engine/hull,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"rH" = (
/obj/structure/closet/crate/silvercrate,
/obj/item/clothing/neck/cloak/qm,
-/turf/open/floor/plating/dirt,
+/turf/open/floor/plating/moss,
/area/overmap_encounter/planetoid/cave/explored)
"rI" = (
/obj/effect/turf_decal/siding/wood{
@@ -1112,17 +1068,22 @@
/turf/open/floor/wood{
icon_state = "wood-broken"
},
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"rK" = (
/obj/effect/decal/cleanable/blood/drip{
pixel_x = -21;
pixel_y = 11
},
+/obj/structure/poddoor_assembly/shutters,
/turf/open/floor/engine/hull/interior,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"rN" = (
+/obj/item/stack/rods{
+ pixel_x = 9;
+ pixel_y = -11
+ },
/turf/open/floor/plating/rust,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/area/overmap_encounter/planetoid/lava/explored)
"rT" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/power/smes{
@@ -1135,7 +1096,7 @@
icon_state = "0-5"
},
/turf/open/floor/pod,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"rX" = (
/obj/effect/turf_decal/industrial/warning{
dir = 4;
@@ -1144,8 +1105,21 @@
/obj/structure/table/reinforced,
/obj/machinery/airalarm/directional/north,
/obj/machinery/light/small/broken/directional/east,
+/obj/item/ammo_casing/shotgun/improvised{
+ pixel_x = -11;
+ pixel_y = 10
+ },
+/obj/item/ammo_casing/shotgun/improvised{
+ pixel_x = -6
+ },
+/obj/item/ammo_casing/shotgun/improvised{
+ pixel_y = 4
+ },
+/obj/item/ammo_casing/shotgun/improvised{
+ pixel_x = 6
+ },
/turf/open/floor/mineral/plastitanium,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"sw" = (
/obj/effect/turf_decal/siding/wood/end,
/obj/effect/decal/cleanable/dirt/dust,
@@ -1162,9 +1136,8 @@
/obj/structure/cable/cyan{
icon_state = "8-10"
},
-/obj/structure/spacevine,
/turf/open/floor/wood,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"sy" = (
/obj/effect/turf_decal/techfloor{
dir = 8
@@ -1174,17 +1147,9 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"sA" = (
-/obj/structure/flora/ausbushes/sparsegrass{
- pixel_x = -14;
- pixel_y = 4
- },
-/obj/structure/flora/ausbushes/sparsegrass{
- pixel_y = -22;
- pixel_x = -20
- },
-/turf/open/floor/plating/dirt,
+/turf/open/floor/plating/moss,
/area/overmap_encounter/planetoid/cave/explored)
"sH" = (
/obj/structure/window/reinforced,
@@ -1198,7 +1163,7 @@
dir = 1
},
/turf/open/floor/plating,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"sJ" = (
/obj/machinery/door/airlock/maintenance{
dir = 4
@@ -1219,15 +1184,15 @@
icon_state = "4-8"
},
/turf/open/floor/plasteel,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"tm" = (
/obj/item/stack/ore/salvage/scrapmetal/five,
/obj/effect/decal/cleanable/blood/drip,
/turf/open/floor/engine/hull,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"tG" = (
-/turf/open/water/beach,
-/area/ruin/unpowered)
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/ruin/unpowered/crashed_starwalker)
"tT" = (
/obj/effect/decal/fakelattice{
icon_state = "lattice-3"
@@ -1237,8 +1202,8 @@
pixel_y = -6
},
/obj/item/stack/rods,
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
"tV" = (
/obj/effect/turf_decal/techfloor{
dir = 1
@@ -1247,12 +1212,8 @@
/obj/structure/chair/comfy/shuttle{
dir = 8
},
-/obj/item/camera_bug{
- pixel_x = -2;
- pixel_y = 8
- },
/turf/open/floor/plasteel/tech/grid,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"tW" = (
/obj/structure/table/reinforced,
/obj/machinery/button/door{
@@ -1276,39 +1237,36 @@
pixel_x = 6;
pixel_y = 6
},
-/obj/machinery/recharger{
- pixel_x = -6;
- pixel_y = 6
- },
/obj/effect/decal/cleanable/dirt/dust,
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
/obj/item/paper_bin{
pixel_x = 6;
pixel_y = 5
},
+/obj/item/ammo_box/a357{
+ pixel_y = 6
+ },
/turf/open/floor/plasteel/dark,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"tY" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/stack/ore/salvage/scrapmetal/five,
/turf/open/floor/plasteel/grimy,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"uf" = (
/obj/effect/decal/cleanable/blood/drip{
pixel_x = -21;
pixel_y = 11
},
-/obj/effect/turf_decal/weather/dirt{
- dir = 1
- },
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
"uC" = (
/obj/effect/decal/cleanable/blood/old{
pixel_x = -15;
pixel_y = -5
},
-/turf/open/floor/plating/dirt,
+/obj/structure/flora/ausbushes/sparsegrass/hell,
+/turf/open/floor/plating/moss,
/area/overmap_encounter/planetoid/cave/explored)
"uM" = (
/obj/structure/fermenting_barrel{
@@ -1319,12 +1277,8 @@
pixel_y = -3;
pixel_x = 8
},
-/obj/item/reagent_containers/food/drinks/bottle/lizardwine{
- pixel_x = -4;
- pixel_y = -3
- },
/obj/effect/decal/cleanable/cobweb/cobweb2,
-/turf/open/floor/plating/dirt,
+/turf/open/floor/plating/moss,
/area/overmap_encounter/planetoid/cave/explored)
"uR" = (
/obj/effect/turf_decal/industrial/warning,
@@ -1340,20 +1294,15 @@
start_charge = 0
},
/turf/open/floor/plasteel/patterned,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"uU" = (
-/obj/structure/barricade/wooden,
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/ruin/beach/starwalker)
+/obj/structure/flora/ash/fern,
+/turf/open/floor/plating/moss,
+/area/overmap_encounter/planetoid/cave/explored)
"ve" = (
-/obj/structure/flora/ausbushes/stalkybush{
- pixel_y = 11
- },
-/obj/effect/turf_decal/weather/sand{
- dir = 9
- },
-/turf/open/water/beach,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/obj/structure/flora/rock/lava,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
"vf" = (
/obj/structure/cable{
icon_state = "1-8"
@@ -1364,13 +1313,12 @@
/obj/effect/turf_decal/industrial/warning{
dir = 4
},
-/obj/structure/spacevine,
/obj/item/stack/sheet/mineral/plasma/five{
pixel_x = -2;
pixel_y = -3
},
/turf/open/floor/pod,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"vg" = (
/obj/structure/railing{
dir = 4
@@ -1386,10 +1334,11 @@
/turf/open/floor/plasteel/stairs{
dir = 1
},
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"vw" = (
-/turf/open/water/beach,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/obj/structure/flora/tree/tall/whitesands,
+/turf/open/floor/plating/grass/lava/orange,
+/area/overmap_encounter/planetoid/lava/explored)
"vy" = (
/obj/effect/decal/fakelattice{
icon_state = "lattice-3"
@@ -1398,8 +1347,8 @@
pixel_x = -12;
pixel_y = 11
},
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
"vO" = (
/obj/effect/turf_decal/industrial/traffic{
dir = 8
@@ -1410,11 +1359,11 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/engine/hull/interior,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/area/overmap_encounter/planetoid/lava/explored)
"wc" = (
/obj/structure/closet/crate/coffin,
-/obj/effect/mob_spawn/human/corpse/pirate,
-/turf/open/floor/plating/dirt,
+/obj/effect/mob_spawn/human/corpse/frontier,
+/turf/open/floor/plating/moss,
/area/overmap_encounter/planetoid/cave/explored)
"wh" = (
/obj/effect/turf_decal/techfloor{
@@ -1434,28 +1383,18 @@
dir = 4
},
/turf/open/floor/plasteel/patterned,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"wl" = (
/obj/structure/cable/green{
icon_state = "4-9"
},
/obj/item/clothing/shoes/jackboots,
/turf/open/floor/pod,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"wp" = (
-/obj/effect/turf_decal/weather/dirt{
- dir = 6
- },
-/obj/structure/flora/ausbushes/reedbush{
- pixel_y = 22;
- pixel_x = -4
- },
-/obj/structure/flora/ausbushes/reedbush{
- pixel_y = 14;
- pixel_x = -17
- },
-/turf/open/water/beach,
-/area/overmap_encounter/planetoid/cave/explored)
+/obj/structure/flora/ash/fireblossom,
+/turf/open/floor/plating/grass/lava/orange,
+/area/overmap_encounter/planetoid/lava/explored)
"ws" = (
/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium,
/obj/machinery/door/poddoor/shutters{
@@ -1463,7 +1402,7 @@
dir = 4
},
/turf/open/floor/plating,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"wx" = (
/obj/structure/catwalk/over,
/obj/effect/decal/cleanable/dirt,
@@ -1478,11 +1417,11 @@
},
/obj/machinery/light/broken/directional/east,
/turf/open/floor/plating,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"wI" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
"wJ" = (
/obj/structure/railing/corner{
dir = 4
@@ -1495,30 +1434,25 @@
/obj/structure/cable/orange{
icon_state = "2-10"
},
-/obj/structure/spacevine/dense,
/turf/open/floor/plasteel/patterned/cargo_one,
-/area/ruin/beach/starwalker)
-"xl" = (
-/obj/effect/decal/fakelattice{
- icon_state = "lattice-12"
- },
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/area/ruin/unpowered/crashed_starwalker)
"xt" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating/dirt,
+/obj/structure/flora/ausbushes/sparsegrass/hell,
+/turf/open/floor/plating/moss,
/area/overmap_encounter/planetoid/cave/explored)
"xu" = (
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/obj/structure/flora/rock/beach,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
"xy" = (
/obj/effect/decal/cleanable/blood{
pixel_y = 11;
pixel_x = 6
},
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
"xG" = (
/obj/machinery/light/floor,
/obj/effect/turf_decal/industrial/warning/dust{
@@ -1526,23 +1460,13 @@
},
/obj/effect/decal/cleanable/plasma,
/turf/open/floor/engine/hull/interior,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"xL" = (
-/obj/item/stack/rods{
- pixel_x = 9;
- pixel_y = -11
- },
-/obj/effect/turf_decal/weather/sand{
- dir = 8
- },
-/turf/open/water/beach,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/area/overmap_encounter/planetoid/lava/explored)
"ye" = (
/obj/item/stack/ore/salvage/scrapmetal/five{
pixel_x = 7
},
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
"yi" = (
/obj/effect/decal/cleanable/oil,
/obj/effect/decal/cleanable/dirt,
@@ -1553,18 +1477,14 @@
dir = 4
},
/turf/open/floor/plasteel/patterned,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"yn" = (
/obj/effect/decal/fakelattice{
icon_state = "lattice-12"
},
-/obj/item/stack/ore/salvage/scrapsilver/five{
- pixel_x = -7;
- pixel_y = 8
- },
-/obj/structure/spacevine,
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/obj/structure/foamedmetal,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
"yp" = (
/obj/structure/railing,
/obj/machinery/atmospherics/pipe/simple/orange/hidden{
@@ -1582,19 +1502,16 @@
/turf/open/floor/plasteel/stairs{
dir = 4
},
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"ys" = (
/obj/machinery/door/airlock/external/glass{
dir = 8
},
/turf/open/floor/plating,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"yJ" = (
-/obj/item/clothing/head/pirate/captain{
- armor = list("melee"=40,"bullet"=30,"laser"=25,"energy"=35,"bomb"=25,"bio"=10,"rad"=0,"fire"=50,"acid"=60)
- },
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/turf/open/floor/plating/rust,
+/area/overmap_encounter/planetoid/lava/explored)
"yQ" = (
/obj/effect/turf_decal/techfloor{
dir = 8
@@ -1610,7 +1527,7 @@
/obj/structure/frame/machine,
/obj/structure/railing,
/turf/open/floor/plasteel,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"ze" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/blood/drip,
@@ -1619,15 +1536,16 @@
pixel_y = 15
},
/turf/open/floor/engine/hull,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"zq" = (
/obj/structure/grille/broken,
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/obj/item/stack/ore/salvage/scrapmetal/five,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
"zy" = (
/obj/structure/foamedmetal,
/turf/template_noop,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/area/overmap_encounter/planetoid/lava/explored)
"zz" = (
/obj/structure/railing{
dir = 1
@@ -1642,21 +1560,21 @@
/turf/open/floor/plasteel/stairs{
dir = 4
},
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"zT" = (
/obj/effect/turf_decal/siding/wood{
dir = 10
},
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/wood,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"zW" = (
/obj/effect/decal/fakelattice{
icon_state = "lattice-141"
},
-/obj/structure/spacevine,
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/obj/structure/foamedmetal,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
"zX" = (
/obj/structure/cable/yellow{
icon_state = "0-4"
@@ -1679,27 +1597,19 @@
start_charge = 0
},
/turf/open/floor/pod,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"Aa" = (
-/obj/structure/cable,
-/obj/machinery/power/shuttle/engine/electric{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/ruin/beach/starwalker)
-"Aq" = (
-/obj/effect/turf_decal/weather/dirt{
- dir = 5
- },
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/flora/ausbushes/sparsegrass/hell,
+/turf/open/floor/plating/moss,
+/area/overmap_encounter/planetoid/cave/explored)
"Av" = (
/obj/effect/decal/cleanable/glass{
pixel_x = -13;
pixel_y = 7
},
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
"Aw" = (
/obj/structure/railing/corner{
dir = 8
@@ -1722,11 +1632,11 @@
icon_state = "4-8"
},
/turf/open/floor/plating,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"AG" = (
-/obj/item/clothing/under/costume/sailor,
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/obj/item/clothing/head/beret/sec/frontier,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
"AN" = (
/obj/structure/railing,
/obj/effect/decal/cleanable/dirt,
@@ -1751,7 +1661,7 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/patterned/cargo_one,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"AS" = (
/obj/machinery/power/port_gen/pacman{
anchored = 1
@@ -1770,27 +1680,21 @@
dir = 1
},
/turf/open/floor/pod,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"Ba" = (
-/obj/machinery/power/shuttle/engine/fueled/plasma{
- dir = 1
- },
-/obj/structure/spacevine/weak,
-/turf/open/floor/plating,
-/area/ruin/beach/starwalker)
+/obj/structure/flora/tree/dead/hell,
+/turf/open/floor/plating/grass/lava,
+/area/overmap_encounter/planetoid/cave/explored)
"BB" = (
-/obj/effect/turf_decal/weather/dirt{
- dir = 9
- },
/obj/effect/decal/cleanable/blood/tracks,
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
"BC" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/plasma,
/turf/open/floor/engine/hull/interior,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/area/overmap_encounter/planetoid/lava/explored)
"BK" = (
/obj/machinery/power/terminal{
dir = 1
@@ -1808,30 +1712,32 @@
dir = 6
},
/turf/open/floor/pod,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"BP" = (
/obj/effect/decal/fakelattice{
icon_state = "lattice-46"
},
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
"BR" = (
/obj/machinery/door/airlock/external/glass{
dir = 4
},
/turf/open/floor/plating,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"BY" = (
/obj/item/stack/cable_coil/cut/red{
pixel_y = -9;
pixel_x = 9
},
/turf/open/floor/plating/rust,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/area/overmap_encounter/planetoid/lava/explored)
"Ch" = (
-/obj/structure/flora/rock/beach,
-/turf/open/water/beach,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/overmap_encounter/planetoid/lava/explored)
"Cu" = (
/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium,
/obj/machinery/door/poddoor/shutters{
@@ -1839,9 +1745,8 @@
dir = 8
},
/turf/open/floor/plating,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"Cz" = (
-/obj/machinery/door/airlock/highsecurity,
/obj/machinery/door/firedoor/border_only{
dir = 4
},
@@ -1857,8 +1762,11 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 8
},
+/obj/machinery/door/airlock/grunge{
+ dir = 4
+ },
/turf/open/floor/plasteel/dark,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"Db" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/stack/ore/glass/basalt{
@@ -1876,17 +1784,15 @@
pixel_y = 15
},
/turf/open/floor/engine/hull,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"Di" = (
-/obj/effect/turf_decal/weather/sand{
- dir = 8
- },
-/turf/open/water/beach,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
"Dk" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/plating/dirt,
+/turf/open/floor/plating/moss,
/area/overmap_encounter/planetoid/cave/explored)
"Ds" = (
/obj/structure/chair/plastic{
@@ -1899,7 +1805,7 @@
dir = 1
},
/turf/open/floor/plasteel/grimy,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"DA" = (
/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium,
/obj/structure/curtain/bounty,
@@ -1909,19 +1815,10 @@
dir = 8
},
/turf/open/floor/plating,
-/area/ruin/beach/starwalker)
-"DG" = (
-/obj/effect/turf_decal/weather/sand{
- dir = 9
- },
-/obj/effect/turf_decal/weather/sand{
- dir = 5
- },
-/turf/open/water/beach,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/area/ruin/unpowered/crashed_starwalker)
"DK" = (
/obj/structure/closet/crate/secure/loot,
-/turf/open/floor/plating/dirt,
+/turf/open/floor/plating/moss,
/area/overmap_encounter/planetoid/cave/explored)
"DS" = (
/obj/structure/railing/corner,
@@ -1937,7 +1834,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"Ec" = (
/obj/machinery/power/apc/auto_name/directional/west{
start_charge = 0
@@ -1949,7 +1846,7 @@
dir = 4
},
/turf/open/floor/plasteel/stairs/wood,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"Eh" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/stack/ore/salvage/scrapgold/five{
@@ -1958,14 +1855,14 @@
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/area/overmap_encounter/planetoid/lava/explored)
"Em" = (
/obj/item/clothing/head/bandana{
pixel_x = 7;
pixel_y = -11
},
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
"En" = (
/obj/effect/decal/cleanable/cobweb/cobweb2,
/obj/structure/frame/machine,
@@ -1974,7 +1871,7 @@
pixel_x = 32
},
/turf/open/floor/plasteel,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"Ey" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/orange/hidden,
@@ -1989,13 +1886,12 @@
/obj/structure/cable/orange{
icon_state = "1-2"
},
-/obj/structure/spacevine,
/obj/item/stack/sheet/mineral/plasma/five{
pixel_x = 3;
pixel_y = 3
},
/turf/open/floor/plating,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"Ez" = (
/obj/machinery/power/terminal,
/obj/structure/cable/yellow{
@@ -2010,7 +1906,6 @@
pixel_x = -5;
pixel_y = 6
},
-/obj/structure/spacevine,
/obj/item/trash/can{
pixel_x = -8;
pixel_y = -2
@@ -2020,14 +1915,14 @@
pixel_x = 9
},
/turf/open/floor/pod,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"EV" = (
/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium,
/obj/machinery/door/poddoor/shutters{
id = "pcarrier_bridge"
},
/turf/open/floor/plating,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"EW" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/blood/old{
@@ -2040,25 +1935,26 @@
pixel_x = 1;
pixel_y = 14
},
-/obj/item/reagent_containers/food/snacks/meat/rawcrab{
- pixel_x = 5;
- pixel_y = 10
- },
-/turf/open/floor/plating/dirt,
+/turf/open/floor/plating/moss,
/area/overmap_encounter/planetoid/cave/explored)
"EZ" = (
-/obj/structure/flora/ausbushes/grassybush,
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/obj/effect/decal/cleanable/dirt,
+/obj/item/stack/ore/salvage/scraptitanium{
+ pixel_x = -12;
+ pixel_y = 11
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
"Ff" = (
/obj/item/stack/ore/salvage/scraptitanium{
pixel_x = -12;
pixel_y = 11
},
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
"Fu" = (
-/turf/open/water/beach,
+/mob/living/simple_animal/hostile/asteroid/hivelord/legion,
+/turf/open/floor/plating/grass/lava,
/area/overmap_encounter/planetoid/cave/explored)
"Fv" = (
/obj/structure/catwalk/over,
@@ -2073,29 +1969,20 @@
icon_state = "1-2"
},
/turf/open/floor/plating,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"FC" = (
-/obj/effect/turf_decal/weather/sand{
- dir = 9
- },
-/turf/open/water/beach,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/obj/structure/flora/ausbushes/fullgrass/hell,
+/turf/open/floor/plating/grass/lava/orange,
+/area/overmap_encounter/planetoid/lava/explored)
"FM" = (
/obj/effect/turf_decal/industrial/outline/yellow,
/obj/machinery/light/small/directional/west,
/obj/structure/grille,
/turf/open/floor/engine/hull,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"FZ" = (
/turf/closed/wall/mineral/plastitanium/nodiagonal,
-/area/ruin/beach/starwalker)
-"GF" = (
-/obj/item/stack/ore/salvage/scrapmetal/five{
- pixel_x = 13;
- pixel_y = 17
- },
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/area/ruin/unpowered/crashed_starwalker)
"GR" = (
/obj/structure/railing/corner{
dir = 1
@@ -2105,7 +1992,7 @@
icon_state = "5-8"
},
/turf/open/floor/plasteel/patterned/cargo_one,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"GV" = (
/obj/effect/turf_decal/industrial/warning{
dir = 8;
@@ -2115,25 +2002,27 @@
name = "armory locker";
req_one_access_txt = "1"
},
-/obj/item/storage/belt/military,
-/obj/item/clothing/suit/hooded/cloak/goliath,
/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/clothing/suit/armor/vest/bulletproof/frontier,
+/obj/item/clothing/head/helmet/bulletproof/x11/frontier{
+ pixel_y = 6
+ },
/turf/open/floor/mineral/plastitanium,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"GY" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/stack/cable_coil/cut/green,
/turf/open/floor/plating{
icon_state = "panelscorched"
},
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/area/overmap_encounter/planetoid/lava/explored)
"Hi" = (
/obj/effect/turf_decal/industrial/warning/dust{
dir = 1
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/engine/hull/interior,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/area/overmap_encounter/planetoid/lava/explored)
"Hl" = (
/obj/structure/statue/sandstone/assistant,
/obj/effect/decal/cleanable/dirt,
@@ -2141,47 +2030,44 @@
pixel_y = -32
},
/turf/open/floor/pod/light,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"Hm" = (
/obj/effect/decal/fakelattice{
icon_state = "lattice-2"
},
-/turf/open/water/beach,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
"Hn" = (
/obj/structure/window/reinforced,
/obj/effect/decal/cleanable/dirt/dust,
/obj/machinery/processor,
/turf/open/floor/plasteel,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"Ht" = (
/obj/machinery/light/small/directional/east,
/obj/effect/decal/cleanable/dirt/dust,
/obj/effect/decal/cleanable/garbage,
/obj/effect/decal/cleanable/wrapping,
/turf/open/floor/pod/light,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"HE" = (
/obj/structure/window/reinforced{
dir = 4
},
/obj/structure/rack,
-/obj/machinery/vending/wallmed{
- pixel_y = -28
- },
/obj/item/storage/pill_bottle/epinephrine{
pixel_x = 8;
pixel_y = -3
},
/turf/open/floor/plasteel/patterned/cargo_one,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"HI" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/effect/decal/cleanable/dirt,
/obj/structure/frame/machine,
/obj/machinery/light/small/broken/directional/south,
/turf/open/floor/plasteel/patterned/cargo_one,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"HK" = (
/obj/structure/window/reinforced,
/obj/machinery/door/window/northright{
@@ -2196,13 +2082,8 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 9
},
-/obj/structure/spacevine/weak,
/turf/open/floor/plating,
-/area/ruin/beach/starwalker)
-"Ia" = (
-/obj/structure/spacevine,
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/area/ruin/unpowered/crashed_starwalker)
"Ib" = (
/obj/item/kirbyplants{
icon_state = "plant-25"
@@ -2210,16 +2091,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/pod/light,
-/area/ruin/beach/starwalker)
-"Ie" = (
-/obj/effect/turf_decal/weather/sand{
- dir = 5
- },
-/obj/effect/turf_decal/weather/sand{
- dir = 6
- },
-/turf/open/water/beach,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/area/ruin/unpowered/crashed_starwalker)
"Ig" = (
/obj/effect/turf_decal/techfloor{
dir = 8
@@ -2227,42 +2099,39 @@
/turf/open/floor/plating{
icon_state = "platingdmg1"
},
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"In" = (
/obj/effect/decal/cleanable/dirt,
+/obj/item/stack/ore/salvage/scrapsilver/five{
+ pixel_x = -7;
+ pixel_y = 8
+ },
/turf/open/floor/plating{
icon_state = "panelscorched"
},
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/area/overmap_encounter/planetoid/lava/explored)
"Io" = (
/obj/machinery/atmospherics/components/unary/tank/air{
piping_layer = 2
},
/turf/open/floor/pod,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"Ip" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/glass/plasma,
/turf/open/floor/plating/rust,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"Ir" = (
-/obj/structure/destructible/tribal_torch/lit{
- pixel_x = -8;
- pixel_y = 16
- },
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/cave/explored)
+/area/overmap_encounter/planetoid/lava/explored)
"IC" = (
/obj/effect/decal/cleanable/blood/drip{
pixel_x = -10;
pixel_y = 15
},
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
"IH" = (
/obj/structure/flora/rock/pile,
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
"IJ" = (
/obj/item/clothing/shoes/jackboots,
/obj/effect/decal/cleanable/dirt,
@@ -2272,22 +2141,18 @@
},
/obj/effect/decal/cleanable/wrapping,
/turf/open/floor/plating/rust,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/area/overmap_encounter/planetoid/lava/explored)
"IU" = (
/obj/item/stack/ore/salvage/scrapsilver{
pixel_x = -9
},
-/obj/structure/spacevine,
/turf/open/floor/plating/rust,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"IY" = (
/obj/effect/decal/cleanable/dirt,
-/obj/item/kitchen/knife{
- pixel_x = 7;
- pixel_y = 10
- },
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/obj/structure/foamedmetal,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
"Ja" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/blood/drip,
@@ -2296,7 +2161,7 @@
pixel_y = 15
},
/turf/open/floor/engine/hull,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"Jk" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/machinery/atmospherics/pipe/simple/orange/hidden{
@@ -2312,29 +2177,26 @@
dir = 4
},
/turf/open/floor/plating/foam,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"Ju" = (
/obj/effect/decal/cleanable/blood/drip,
/obj/effect/decal/cleanable/blood/drip{
pixel_x = -21;
pixel_y = 11
},
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
"Jv" = (
/obj/structure/tank_dispenser/oxygen,
/obj/effect/decal/cleanable/dirt,
/obj/machinery/airalarm/directional/east,
/obj/machinery/light/small/broken/directional/south,
-/obj/structure/spacevine,
/turf/open/floor/plasteel,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"Jw" = (
-/obj/effect/turf_decal/weather/sand{
- dir = 10
- },
-/turf/open/water/beach,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/obj/structure/flora/firebush,
+/turf/open/floor/plating/grass/lava/orange,
+/area/overmap_encounter/planetoid/lava/explored)
"Jx" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
@@ -2352,17 +2214,11 @@
},
/obj/structure/catwalk/over,
/turf/open/floor/plating,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"JJ" = (
-/obj/item/stack/medical/bruise_pack/herb{
- pixel_x = -10;
- pixel_y = 12
- },
-/obj/effect/turf_decal/weather/sand{
- dir = 10
- },
-/turf/open/water/beach,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/obj/structure/foamedmetal,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/ruin/unpowered/crashed_starwalker)
"JR" = (
/obj/machinery/door/airlock/grunge{
dir = 4
@@ -2377,13 +2233,7 @@
icon_state = "4-8"
},
/turf/open/floor/plasteel/tech/grid,
-/area/ruin/beach/starwalker)
-"JU" = (
-/obj/effect/decal/fakelattice{
- icon_state = "lattice-46"
- },
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/area/ruin/unpowered/crashed_starwalker)
"Kk" = (
/obj/effect/turf_decal/techfloor{
dir = 8
@@ -2397,20 +2247,20 @@
pixel_y = 7
},
/turf/open/floor/plasteel,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"Kq" = (
-/obj/item/clothing/under/costume/sailor,
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/obj/item/clothing/under/frontiersmen/officer,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
"Ks" = (
/obj/structure/flora/stump,
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/turf/open/floor/plating/grass/lava/orange,
+/area/overmap_encounter/planetoid/lava/explored)
"Ky" = (
/obj/effect/decal/cleanable/dirt,
-/mob/living/simple_animal/crab,
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/obj/structure/flora/ausbushes/fullgrass/hell,
+/turf/open/floor/plating/moss,
+/area/overmap_encounter/planetoid/cave/explored)
"KC" = (
/obj/structure/catwalk/over,
/obj/structure/closet/firecloset/wall/directional/west,
@@ -2428,13 +2278,13 @@
dir = 1
},
/turf/open/floor/plating,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"KD" = (
/obj/machinery/power/shuttle/engine/fueled/plasma{
dir = 1
},
/turf/open/floor/plating,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"KL" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
@@ -2449,7 +2299,7 @@
pixel_x = -9
},
/turf/open/floor/pod,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"KO" = (
/obj/structure/cable/yellow{
icon_state = "1-4"
@@ -2461,7 +2311,7 @@
dir = 8
},
/turf/open/floor/pod,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"La" = (
/obj/machinery/power/terminal,
/obj/machinery/power/apc/auto_name/directional/east{
@@ -2476,13 +2326,12 @@
/obj/structure/cable/green{
icon_state = "0-8"
},
-/obj/structure/spacevine/dense,
/turf/open/floor/pod,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"Lg" = (
/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
"Lw" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/robot_debris,
@@ -2494,12 +2343,7 @@
},
/obj/item/light/tube/broken,
/turf/open/floor/plasteel/patterned,
-/area/ruin/beach/starwalker)
-"Lx" = (
-/obj/structure/flora/ausbushes/grassybush,
-/obj/structure/flora/ausbushes/fernybush,
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/area/ruin/unpowered/crashed_starwalker)
"LA" = (
/obj/machinery/light/floor,
/obj/effect/turf_decal/industrial/warning/dust{
@@ -2507,14 +2351,14 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/engine/hull/interior,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/area/overmap_encounter/planetoid/lava/explored)
"LN" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/stack/ore/gold{
pixel_x = 5;
pixel_y = 6
},
-/turf/open/floor/plating/dirt,
+/turf/open/floor/plating/moss,
/area/overmap_encounter/planetoid/cave/explored)
"LV" = (
/obj/effect/turf_decal/industrial/loading,
@@ -2522,26 +2366,25 @@
pixel_y = 5;
pixel_x = 3
},
-/obj/structure/spacevine,
/obj/effect/decal/cleanable/ash/large,
/turf/open/floor/plasteel/patterned/ridged,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"Mj" = (
/obj/structure/table/reinforced,
/obj/effect/turf_decal/borderfloorblack,
-/obj/structure/extinguisher_cabinet/directional/north,
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
dir = 1
},
/obj/machinery/airalarm/directional/south,
+/obj/item/modular_computer/tablet/preset/cheap,
/turf/open/floor/plasteel/dark,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"Mk" = (
/obj/structure/statue/sandstone/assistant,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/pod/light,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"Mm" = (
/obj/structure/railing,
/obj/structure/cable/yellow{
@@ -2559,11 +2402,11 @@
/turf/open/floor/plasteel/stairs{
dir = 8
},
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"Mz" = (
/obj/structure/grille,
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
"MN" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/structure/sink{
@@ -2576,7 +2419,7 @@
/obj/structure/spider/stickyweb,
/obj/effect/spawner/lootdrop/glowstick,
/turf/open/floor/pod/light,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"MO" = (
/obj/structure/bed/roller,
/obj/effect/decal/cleanable/blood/old{
@@ -2596,15 +2439,15 @@
pixel_x = -4
},
/turf/open/floor/plasteel/patterned/cargo_one,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"MV" = (
/obj/item/radio/intercom/directional/east,
/obj/effect/decal/cleanable/glass{
pixel_y = -12;
pixel_x = -9
},
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/ruin/beach/starwalker)
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/ruin/unpowered/crashed_starwalker)
"MX" = (
/obj/machinery/vending/snack/random,
/obj/structure/railing{
@@ -2620,19 +2463,15 @@
/turf/open/floor/plating{
icon_state = "panelscorched"
},
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"Nv" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating/rust,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"NA" = (
-/obj/effect/decal/cleanable/blood/tracks,
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/area/overmap_encounter/planetoid/lava/explored)
"NC" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"NP" = (
/obj/item/cigbutt/cigarbutt{
pixel_y = 15;
@@ -2647,24 +2486,14 @@
pixel_x = -5;
pixel_y = 16
},
-/turf/open/floor/plating/dirt,
+/turf/open/floor/plating/moss,
/area/overmap_encounter/planetoid/cave/explored)
-"Of" = (
-/mob/living/simple_animal/beachcarp/salmon{
- dir = 8
- },
-/turf/open/water/beach,
-/area/overmap_encounter/planetoid/beachplanet/explored)
"Oi" = (
/obj/effect/decal/cleanable/plasma,
-/obj/item/stack/rods{
- pixel_x = 9;
- pixel_y = -11
- },
/turf/open/floor/plating{
icon_state = "panelscorched"
},
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/area/overmap_encounter/planetoid/lava/explored)
"Or" = (
/obj/effect/decal/cleanable/glass{
dir = 8;
@@ -2676,9 +2505,8 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/item/stack/sheet/animalhide/monkey,
-/obj/structure/spacevine,
/turf/open/floor/plasteel/patterned,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"Ou" = (
/obj/structure/catwalk/over,
/obj/machinery/door/airlock/glass,
@@ -2696,45 +2524,30 @@
icon_state = "1-2"
},
/turf/open/floor/plating,
-/area/ruin/beach/starwalker)
-"OO" = (
-/obj/effect/turf_decal/weather/dirt{
- dir = 5
- },
-/obj/effect/turf_decal/weather/dirt{
- dir = 6
- },
-/turf/open/water/beach,
-/area/overmap_encounter/planetoid/cave/explored)
+/area/ruin/unpowered/crashed_starwalker)
"Pe" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plating/dirt,
+/turf/open/floor/plating/moss,
/area/overmap_encounter/planetoid/cave/explored)
"Pk" = (
-/obj/effect/turf_decal/weather/sand{
- dir = 6
- },
-/turf/open/water/beach,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/turf/open/floor/plating/grass/lava/orange,
+/area/overmap_encounter/planetoid/lava/explored)
"Pv" = (
-/obj/effect/turf_decal/weather/sand{
- dir = 4
- },
-/turf/open/water/beach,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/obj/structure/foamedmetal,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
"Pz" = (
/obj/structure/sign/poster/ripped{
pixel_x = 32
},
/obj/effect/decal/cleanable/dirt,
-/mob/living/simple_animal/crab/evil/kreb,
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/ruin/beach/starwalker)
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/ruin/unpowered/crashed_starwalker)
"PH" = (
/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/plating/dirt,
+/turf/open/floor/plating/moss,
/area/overmap_encounter/planetoid/cave/explored)
"PU" = (
/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium,
@@ -2745,7 +2558,7 @@
},
/obj/structure/curtain/bounty,
/turf/open/floor/plating,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"Qa" = (
/obj/effect/decal/cleanable/blood/old,
/obj/effect/decal/cleanable/blood/old{
@@ -2755,8 +2568,8 @@
desc = "It looks incredibly comfy, and expensive. Theres a little note on the side, explaining how its made of %100 real cow skin.";
name = "Cowskin chair"
},
-/obj/effect/mob_spawn/human/corpse/pirate/ranged,
-/turf/open/floor/plating/dirt,
+/obj/effect/mob_spawn/human/corpse/frontier,
+/turf/open/floor/plating/moss,
/area/overmap_encounter/planetoid/cave/explored)
"Qi" = (
/turf/template_noop,
@@ -2773,45 +2586,45 @@
/obj/structure/cable/orange{
icon_state = "6-8"
},
-/obj/item/clothing/suit/pirate/captain{
- armor = list("melee"=35,"bullet"=30,"laser"=30,"energy"=40,"bomb"=25,"bio"=0,"rad"=0,"fire"=50,"acid"=50)
- },
/turf/open/floor/plasteel/grimy,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"Qq" = (
/obj/structure/railing{
dir = 8
},
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/firedoor,
-/obj/structure/spacevine,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/stairs{
dir = 1
},
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"Qx" = (
-/obj/effect/turf_decal/weather/sand,
-/turf/open/water/beach,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/obj/structure/flora/rock/pile/lava,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
"QC" = (
/obj/structure/flora/rock,
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
"QQ" = (
/obj/item/reagent_containers/glass/bucket,
-/turf/open/water/beach,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
"QT" = (
-/mob/living/simple_animal/hostile/carp,
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/obj/effect/decal/fakelattice{
+ icon_state = "lattice-74"
+ },
+/obj/structure/foamedmetal,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
"QW" = (
/obj/effect/turf_decal/industrial/warning/dust{
dir = 4
},
/turf/open/floor/engine/hull/interior,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/area/overmap_encounter/planetoid/lava/explored)
"QZ" = (
/obj/effect/decal/cleanable/blood/drip,
/obj/effect/decal/cleanable/blood/old,
@@ -2820,7 +2633,7 @@
pixel_x = 12
},
/turf/open/floor/engine/hull,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"Rf" = (
/obj/structure/railing/corner{
dir = 4;
@@ -2833,12 +2646,12 @@
/obj/structure/cable/yellow{
icon_state = "5-6"
},
-/obj/structure/spacevine,
+/obj/item/clothing/under/frontiersmen/officer,
/turf/open/floor/pod,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"Rg" = (
/turf/open/floor/engine/hull/interior,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/area/overmap_encounter/planetoid/lava/explored)
"Rn" = (
/obj/structure/frame/computer{
anchored = 1;
@@ -2853,7 +2666,7 @@
},
/obj/machinery/firealarm/directional/south,
/turf/open/floor/plasteel/tech/grid,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"RN" = (
/obj/structure/table,
/obj/machinery/microwave{
@@ -2861,37 +2674,30 @@
},
/obj/machinery/airalarm/directional/east,
/turf/open/floor/plasteel,
-/area/ruin/beach/starwalker)
-"RO" = (
-/obj/item/stack/rods{
- pixel_x = -9;
- pixel_y = 1
- },
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/area/ruin/unpowered/crashed_starwalker)
"RQ" = (
/obj/structure/closet/crate/goldcrate,
-/turf/open/floor/plating/dirt,
+/turf/open/floor/plating/moss,
/area/overmap_encounter/planetoid/cave/explored)
"RS" = (
/obj/effect/turf_decal/number/one{
dir = 8
},
/turf/closed/wall/mineral/plastitanium/nodiagonal,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/area/overmap_encounter/planetoid/lava/explored)
"RU" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/fakelattice{
icon_state = "lattice-8"
},
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
"Sc" = (
/obj/effect/turf_decal/industrial/warning/dust{
dir = 9
},
/turf/open/floor/engine/hull/interior,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/area/overmap_encounter/planetoid/lava/explored)
"Sm" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
@@ -2909,7 +2715,7 @@
},
/obj/structure/frame/machine,
/turf/open/floor/plasteel,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"Sz" = (
/obj/effect/turf_decal/techfloor{
dir = 6
@@ -2928,28 +2734,27 @@
},
/obj/item/dice/d2,
/turf/open/floor/plasteel/tech/grid,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"SS" = (
/obj/structure/closet/emcloset/wall/directional/east,
/obj/item/stack/sticky_tape,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/pod,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"Tg" = (
-/mob/living/simple_animal/crab,
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/flora/rock/pile/lava,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
"Tj" = (
-/obj/effect/decal/cleanable/blood/drip,
-/obj/effect/turf_decal/weather/dirt{
- dir = 1
- },
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"Tw" = (
-/mob/living/simple_animal/crab/kreb,
-/turf/open/floor/plating/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating/moss,
/area/overmap_encounter/planetoid/cave/explored)
+"Tw" = (
+/obj/item/stack/ore/salvage/scrapmetal/five,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
"TF" = (
/obj/structure/railing/corner{
dir = 1
@@ -2961,17 +2766,11 @@
icon_state = "2-8"
},
/obj/effect/decal/cleanable/dirt,
-/obj/item/storage/box/syndie_kit/throwing_weapons{
- pixel_y = -1;
- pixel_x = -5
- },
-/obj/structure/spacevine,
/turf/open/floor/plating,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"TI" = (
-/mob/living/simple_animal/beachcarp/salmon,
-/turf/open/water/beach,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
"TK" = (
/obj/structure/cable/orange{
icon_state = "4-10"
@@ -2981,42 +2780,32 @@
},
/obj/structure/fluff/broken_flooring,
/obj/effect/decal/cleanable/dirt,
-/obj/structure/spacevine,
/turf/open/floor/plating,
-/area/ruin/beach/starwalker)
-"TZ" = (
-/obj/structure/flora/ausbushes/stalkybush{
- pixel_y = 19;
- pixel_x = -8
- },
-/turf/open/water/beach,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/area/ruin/unpowered/crashed_starwalker)
"Uc" = (
/obj/effect/decal/cleanable/oil,
/turf/open/floor/plating/rust,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/area/overmap_encounter/planetoid/lava/explored)
"Ul" = (
/obj/item/stack/rods{
pixel_x = 9;
pixel_y = -11
},
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
"Ux" = (
-/obj/machinery/jukebox,
-/obj/structure/spacevine,
/obj/structure/railing/wood{
dir = 1
},
/turf/open/floor/pod,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"Uy" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating{
icon_state = "panelscorched"
},
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/area/overmap_encounter/planetoid/lava/explored)
"UG" = (
/obj/machinery/door/airlock/hatch{
dir = 4
@@ -3033,22 +2822,15 @@
},
/obj/structure/barricade/wooden/crude,
/turf/open/floor/pod/light,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"UL" = (
-/obj/item/stack/ore/salvage/scrapgold/five{
- pixel_x = -7;
- pixel_y = -11
- },
-/obj/item/stack/ore/salvage/scrapuranium{
- pixel_x = 3;
- pixel_y = -9
- },
/obj/effect/decal/cleanable/blood/drip{
pixel_x = -21;
pixel_y = 11
},
-/turf/open/water/beach,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/obj/structure/foamedmetal,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/ruin/unpowered/crashed_starwalker)
"UQ" = (
/obj/effect/turf_decal/techfloor{
dir = 8
@@ -3065,7 +2847,7 @@
icon_state = "0-2"
},
/turf/open/floor/plasteel,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"UZ" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/structure/cable/yellow{
@@ -3086,14 +2868,14 @@
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"Vb" = (
/obj/item/stack/rods{
pixel_x = 2;
pixel_y = 9
},
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
"Vi" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/blood/tracks{
@@ -3103,21 +2885,12 @@
pixel_y = -13;
pixel_x = 6
},
-/obj/item/reagent_containers/food/snacks/meat/rawcrab{
- pixel_x = -11;
- pixel_y = -12
- },
-/turf/open/floor/plating/dirt,
+/turf/open/floor/plating/moss,
/area/overmap_encounter/planetoid/cave/explored)
"Vt" = (
/obj/structure/grille/broken,
-/obj/item/stack/ore/salvage/scraptitanium{
- pixel_x = -12;
- pixel_y = 11
- },
-/obj/structure/spacevine,
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
"VL" = (
/obj/structure/catwalk/over,
/obj/effect/decal/cleanable/dirt,
@@ -3130,21 +2903,23 @@
dir = 1
},
/turf/open/floor/plating,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"VO" = (
/turf/closed/wall/mineral/plastitanium/nodiagonal,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/area/overmap_encounter/planetoid/lava/explored)
"VQ" = (
/obj/effect/turf_decal/techfloor{
dir = 8
},
-/obj/machinery/computer/bounty{
- dir = 4
- },
/obj/machinery/light/directional/south,
/obj/structure/extinguisher_cabinet/directional/north,
+/obj/structure/frame/computer{
+ anchored = 1;
+ can_be_unanchored = 1;
+ dir = 4
+ },
/turf/open/floor/plasteel/patterned,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"VR" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/glass{
@@ -3152,14 +2927,14 @@
pixel_x = 16
},
/turf/open/floor/plating,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/area/overmap_encounter/planetoid/lava/explored)
"VS" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/stack/ore/gold{
pixel_x = -11;
pixel_y = 6
},
-/turf/open/floor/plating/dirt,
+/turf/open/floor/plating/moss,
/area/overmap_encounter/planetoid/cave/explored)
"VX" = (
/obj/structure/table/reinforced,
@@ -3167,23 +2942,17 @@
pixel_x = -32
},
/turf/open/floor/plasteel/patterned/cargo_one,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"Wa" = (
/obj/structure/flora/rock/pile,
-/turf/open/floor/plating/dirt,
+/turf/open/floor/plating/moss,
/area/overmap_encounter/planetoid/cave/explored)
"Wi" = (
/turf/open/floor/plating,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"Wm" = (
-/obj/structure/destructible/tribal_torch/lit{
- pixel_x = 10
- },
-/turf/open/floor/plating/dirt,
-/area/overmap_encounter/planetoid/cave/explored)
+/area/overmap_encounter/planetoid/lava/explored)
"Wp" = (
/turf/closed/wall/mineral/plastitanium,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/area/overmap_encounter/planetoid/lava/explored)
"WJ" = (
/obj/effect/decal/cleanable/blood/drip,
/obj/effect/decal/cleanable/blood/drip{
@@ -3194,19 +2963,13 @@
pixel_x = -10;
pixel_y = 15
},
-/obj/effect/turf_decal/weather/dirt{
- dir = 9
- },
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
"WM" = (
/obj/effect/turf_decal/techfloor{
dir = 6
},
/obj/structure/table/reinforced,
-/obj/item/door_seal{
- pixel_x = 6
- },
/obj/machinery/status_display/shuttle{
pixel_y = -32
},
@@ -3220,8 +2983,16 @@
pixel_y = -2;
pixel_x = -1
},
+/obj/item/toy/plush/sharai{
+ pixel_x = -10;
+ pixel_y = 4
+ },
+/obj/item/clothing/head/beret/sec/frontier/officer{
+ pixel_x = 8;
+ pixel_y = 9
+ },
/turf/open/floor/plasteel/tech/grid,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"WY" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
@@ -3230,10 +3001,9 @@
/obj/structure/cable/green{
icon_state = "1-6"
},
-/obj/structure/spacevine,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/patterned,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"Xa" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/effect/decal/cleanable/dirt,
@@ -3254,27 +3024,23 @@
pixel_x = -14
},
/turf/open/floor/plasteel,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"Xe" = (
/obj/structure/cable,
/obj/machinery/power/shuttle/engine/electric{
dir = 1
},
-/obj/structure/spacevine/weak,
/turf/open/floor/plating,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"Xh" = (
/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium,
/obj/machinery/door/poddoor/shutters{
id = "pcarrier_bridge"
},
/turf/closed/wall/mineral/plastitanium/nodiagonal,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"Xj" = (
-/obj/effect/turf_decal/weather/dirt{
- dir = 6
- },
-/turf/open/water/beach,
+/turf/open/floor/plating/grass/lava,
/area/overmap_encounter/planetoid/cave/explored)
"Xs" = (
/obj/effect/turf_decal/techfloor{
@@ -3288,15 +3054,15 @@
dir = 4
},
/turf/open/floor/plasteel/tech/grid,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"XJ" = (
/obj/effect/decal/cleanable/dirt,
/turf/closed/wall/mineral/plastitanium/nodiagonal,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"XK" = (
/obj/structure/grille,
/turf/template_noop,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/area/overmap_encounter/planetoid/lava/explored)
"XM" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -3325,16 +3091,15 @@
pixel_y = -8;
pixel_x = 11
},
-/obj/structure/spacevine,
/turf/open/floor/plating,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"XN" = (
/obj/structure/grille/broken,
/obj/effect/decal/cleanable/glass,
/turf/open/floor/plating{
icon_state = "panelscorched"
},
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"XP" = (
/obj/effect/turf_decal/industrial/warning{
dir = 6;
@@ -3349,22 +3114,19 @@
/obj/structure/cable/orange{
icon_state = "2-10"
},
-/obj/item/gun/ballistic/shotgun/brimstone,
-/obj/structure/spacevine,
+/obj/item/gun/ballistic/shotgun/doublebarrel,
/turf/open/floor/mineral/plastitanium,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"XR" = (
-/obj/effect/turf_decal/weather/sand{
- dir = 1
- },
-/turf/open/water/beach,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/obj/structure/flora/ausbushes/sparsegrass/hell,
+/turf/open/floor/plating/grass/lava/orange,
+/area/overmap_encounter/planetoid/lava/explored)
"XT" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/broken_missile,
/obj/effect/decal/cleanable/blood/old,
/turf/open/floor/plasteel/patterned,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"XZ" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/effect/decal/cleanable/cobweb,
@@ -3374,7 +3136,7 @@
/obj/item/reagent_containers/food/condiment/rice,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"Yb" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
@@ -3387,13 +3149,12 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 9
},
-/obj/structure/spacevine,
/obj/item/newspaper{
pixel_x = -4;
pixel_y = 2
},
/turf/open/floor/pod,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"Yg" = (
/obj/machinery/cryopod,
/obj/effect/turf_decal/siding/wood{
@@ -3403,22 +3164,22 @@
/turf/open/floor/wood{
icon_state = "wood-broken5"
},
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"YF" = (
/obj/effect/turf_decal/industrial/warning/corner{
dir = 8
},
-/turf/open/floor/plating/grass/beach/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
"YG" = (
-/obj/effect/overlay/palmtree_l,
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/obj/structure/flora/tree/dead_pine,
+/turf/open/floor/plating/grass/lava/orange,
+/area/overmap_encounter/planetoid/lava/explored)
"YN" = (
/obj/structure/grille,
/obj/effect/decal/cleanable/dirt,
/turf/template_noop,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/area/overmap_encounter/planetoid/lava/explored)
"YT" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/radio/intercom/directional/east,
@@ -3436,21 +3197,14 @@
pixel_y = 8
},
/turf/open/floor/plasteel,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"Zo" = (
/obj/effect/turf_decal/industrial/warning/dust{
dir = 4
},
/obj/effect/decal/cleanable/glass,
/turf/open/floor/engine/hull/interior,
-/area/overmap_encounter/planetoid/beachplanet/explored)
-"Zp" = (
-/obj/item/stack/ore/salvage/scraptitanium{
- pixel_x = -12;
- pixel_y = 11
- },
-/turf/open/floor/plating/asteroid/sand/lit,
-/area/overmap_encounter/planetoid/beachplanet/explored)
+/area/overmap_encounter/planetoid/lava/explored)
"ZW" = (
/obj/effect/decal/cleanable/blood/old,
/obj/effect/decal/cleanable/dirt/dust,
@@ -3464,7 +3218,7 @@
},
/obj/item/reagent_containers/syringe,
/turf/open/floor/plasteel/patterned/cargo_one,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
"ZX" = (
/obj/structure/window/reinforced{
dir = 4
@@ -3473,7 +3227,7 @@
/obj/machinery/iv_drip,
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
/turf/open/floor/plasteel/patterned/cargo_one,
-/area/ruin/beach/starwalker)
+/area/ruin/unpowered/crashed_starwalker)
(1,1,1) = {"
Qi
@@ -3488,13 +3242,13 @@ Qi
bg
bg
bg
-id
-id
-id
-id
-id
-id
-id
+TI
+TI
+TI
+TI
+TI
+TI
+Pk
Qi
Qi
Qi
@@ -3503,9 +3257,9 @@ Qi
Qi
Qi
Qi
-id
-id
-id
+Pk
+FC
+Pk
Qi
Qi
Qi
@@ -3518,12 +3272,12 @@ Qi
Qi
Qi
Qi
-id
-id
-id
-id
-id
-id
+Pk
+Pk
+Pk
+Pk
+Pk
+Pk
Qi
Qi
Qi
@@ -3548,24 +3302,24 @@ bg
bg
bg
Wp
-id
-id
-id
-id
-id
-id
-id
+TI
+TI
+TI
+TI
+Pk
+Pk
+Pk
Qi
Qi
Qi
Qi
+Pk
+Pk
+Pk
id
-id
-id
-id
-id
-id
-id
+Pk
+Pk
+Pk
Qi
Qi
Qi
@@ -3575,14 +3329,14 @@ Qi
Qi
Qi
Qi
+Pk
+Pk
+Jw
+Pk
id
-id
-id
-rl
-id
-id
-id
-id
+Pk
+Pk
+bd
Qi
Qi
Qi
@@ -3606,42 +3360,42 @@ bg
bg
bg
Sc
-id
-id
+TI
+TI
bL
bL
RS
VO
-id
-id
-id
-id
-id
-id
-id
-id
-id
-Tg
-id
-id
-id
-id
-Qi
-id
-id
-id
-id
-id
-id
-id
-id
+Pk
+Pk
+Pk
+Pk
+Pk
FC
-Di
-Di
Jw
-id
-id
-id
+Pk
+Pk
+Pk
+FC
+Pk
+Pk
+Pk
+Qi
+Pk
+Pk
+Pk
+Pk
+Pk
+Pk
+bd
+Pk
+FC
+Pk
+Pk
+Pk
+FC
+Pk
+Pk
Qi
Qi
Qi
@@ -3662,45 +3416,45 @@ bg
mi
EW
bg
-id
+hi
Hi
wI
-Ky
+wI
vO
-id
-id
+TI
+TI
xG
-id
-id
-Tg
-id
-id
-id
-id
+TI
+TI
+Pk
+Pk
+wp
+Pk
+Pk
YG
-id
-id
-id
-id
-id
-id
-id
-id
-id
-id
-id
-id
-id
+Pk
+bd
+Pk
+wp
+Pk
FC
-Di
-vw
-vw
-vw
+FC
+Pk
+Pk
+Pk
vw
+Pk
+FC
+Pk
+FC
+Pk
+Pk
+FC
+Pk
Jw
-id
-id
-id
+Pk
+Pk
+Pk
Qi
Qi
Qi
@@ -3718,47 +3472,47 @@ bg
nw
di
Vi
-ky
-hi
-id
+Aa
+TI
+TI
Hi
-id
-id
+TI
+TI
RU
wI
-id
+TI
Rg
-id
-id
+TI
+TI
IH
-id
-id
-id
-id
+TI
+bd
+Pk
+Pk
+Pk
+Pk
FC
-Di
+Pk
+Pk
+Pk
+Pk
+Pk
Jw
-id
-id
-id
-id
-id
-id
-id
-id
-id
-id
+Pk
+Pk
+Pk
FC
+Pk
+Pk
+Pk
vw
-vw
-vw
-vw
-vw
-vw
-vw
-Jw
-id
-id
+Pk
+Pk
+bd
+Pk
+Pk
+Pk
+Pk
Qi
Qi
Qi
@@ -3777,45 +3531,45 @@ bg
mU
hd
BB
-NA
-NA
-NA
-NA
+BB
+BB
+BB
+BB
xy
-id
-id
+TI
+TI
wI
wI
wI
-id
-id
-id
-id
-id
+TI
+TI
+TI
+TI
FC
-vw
-vw
-Ch
-Di
+Pk
+Pk
Jw
+Pk
+Pk
+FC
+Pk
+Pk
+Pk
+Pk
+FC
+Pk
+Pk
id
-Tg
-id
-id
-id
-id
-id
-id
-XR
-vw
-vw
-vw
-vw
-vw
-vw
-vw
-Qx
-Tg
+Pk
+Pk
+Pk
+Pk
+Pk
+FC
+Pk
+Pk
+FC
+Pk
id
Qi
Qi
@@ -3837,44 +3591,44 @@ bg
bg
bg
bg
-id
+TI
IH
-id
+TI
wI
-id
-id
-id
-id
+TI
+TI
+TI
+TI
wI
-id
-id
-id
-id
-oH
-Pv
-vw
-vw
-vw
+TI
+TI
+TI
+TI
+xu
+Pk
+Pk
+Pk
+Pk
Pk
-id
-id
-id
-id
-id
-Tg
-id
-id
-XR
-vw
-vw
-vw
-vw
-vw
-vw
vw
-Qx
-id
-id
+FC
+Pk
+bd
+Pk
+FC
+Pk
+Pk
+Pk
+Pk
+FC
+Pk
+Pk
+wp
+FC
+Pk
+Pk
+Pk
+Pk
Qi
Qi
Qi
@@ -3894,46 +3648,46 @@ bg
bg
bg
bg
-id
-id
-FC
-Jw
+TI
+TI
+TI
+TI
BC
ry
-id
-id
-id
+TI
+TI
+TI
ye
wI
bM
Eh
-id
-id
-id
-oH
-Pv
+TI
+TI
+TI
+TI
+Pk
+bd
+Pk
+FC
+FC
+Pk
Pk
id
-id
-ve
-Di
+Pk
+Pk
+Pk
Jw
+Pk
+Pk
id
-id
-id
+Pk
+Pk
FC
-vw
-vw
-vw
-vw
-vw
-vw
-vw
-vw
Pk
-id
-id
-id
+YG
+Pk
+Pk
+Pk
Qi
Qi
Qi
@@ -3952,10 +3706,10 @@ bg
bg
bg
bg
-id
-FC
-Ch
-vw
+TI
+TI
+xu
+TI
QW
QW
Mz
@@ -3967,31 +3721,31 @@ iw
ma
VR
Uc
-id
-id
-id
-id
-id
-DG
-TZ
-vw
-vw
-Di
-Di
-Di
-vw
-vw
-vw
-vw
-vw
-vw
-Pv
-Pv
+TI
+TI
+TI
+TI
+TI
+TI
+TI
+TI
+TI
+TI
+TI
+TI
+TI
+TI
+TI
+TI
+Pk
+Pk
+Pk
+Pk
+Pk
+FC
+Pk
+FC
Pk
-YG
-id
-id
-id
Qi
Qi
Qi
@@ -4010,26 +3764,26 @@ PH
di
bg
bg
-id
-XR
-vw
-vw
-vw
-vw
-Jw
+TI
+TI
+TI
+TI
+TI
+TI
+TI
Zo
LA
wI
wI
-wI
+pV
dm
Wi
XK
-GF
-id
+iN
+TI
rN
-id
-id
+TI
+Pv
iC
tG
iC
@@ -4038,19 +3792,19 @@ FZ
ws
FZ
iC
-vw
-vw
-vw
-vw
-Qx
-id
-id
-id
-id
-id
-id
-id
-id
+TI
+TI
+TI
+TI
+wI
+wI
+wI
+wI
+Pk
+Pk
+Jw
+Pk
+Pk
Qi
Qi
Qi
@@ -4063,31 +3817,31 @@ bg
bg
bg
DK
-di
-ky
+sA
+Ky
DK
bg
bg
-FC
-vw
-Of
-vw
-vw
-vw
-Pk
-id
-id
-id
-id
-id
-id
-id
-wI
+TI
+TI
+TI
+TI
+TI
+TI
+TI
+TI
+TI
+TI
+TI
+TI
+TI
+TI
wI
wI
-id
+EZ
+TI
Vb
-id
+TI
FZ
FZ
FZ
@@ -4097,18 +3851,18 @@ nH
VX
FZ
iC
-Pv
-Pv
-Pv
-Pk
-id
-id
-id
-id
-Tg
-id
-id
-id
+wI
+wI
+wI
+wI
+TI
+TI
+TI
+TI
+TI
+TI
+TI
+TI
Qi
Qi
Qi
@@ -4123,29 +3877,29 @@ RQ
uC
DK
Dk
-ky
+Aa
hi
-QT
-XR
-vw
+TI
+TI
+TI
bg
bg
-vw
-Qx
-id
-id
-id
-id
-Tg
-id
+TI
+TI
+TI
+TI
+TI
+IH
+TI
+TI
QC
-id
-id
+TI
+TI
wI
In
Uy
YN
-Ia
+Pv
FZ
gi
MN
@@ -4157,16 +3911,16 @@ HI
FZ
FZ
FZ
-FZ
-FZ
-iC
-id
-id
-id
-id
-id
-id
-id
+FZ
+FZ
+iC
+wI
+as
+as
+as
+as
+wI
+wI
Qi
Qi
Qi
@@ -4182,25 +3936,25 @@ VS
ky
Pe
ky
-hi
-id
-XR
-vw
+TI
+TI
+TI
+TI
bg
bg
bg
-Qx
-id
-id
-id
-id
-id
-id
-id
-id
-id
+TI
+TI
+IH
+TI
+TI
+TI
+TI
+TI
+Pv
+Pv
IY
-dm
+QT
Oi
zW
Vt
@@ -4217,15 +3971,15 @@ rT
BK
Ez
fj
-Aa
-id
-id
-id
-id
-id
-id
-id
-id
+Xe
+as
+as
+Qx
+wI
+wI
+wI
+wI
+TI
Qi
Qi
"}
@@ -4242,14 +3996,14 @@ ky
WJ
IC
Lg
-XR
-vw
-vw
+TI
+TI
+TI
bg
bg
-vw
-Jw
-id
+TI
+oH
+TI
zq
FZ
FZ
@@ -4258,10 +4012,10 @@ PU
FZ
XZ
NC
-wI
-xl
+IY
yn
-id
+yn
+Pv
ph
eN
pm
@@ -4275,15 +4029,15 @@ Ey
Yb
lc
ia
-Ba
-id
-id
-id
-id
-pV
-YG
-id
-id
+KD
+TI
+TI
+TI
+TI
+as
+as
+as
+TI
Qi
Qi
"}
@@ -4292,21 +4046,21 @@ Qi
bg
bg
bg
-ky
-xt
-xt
+oy
xt
+Tj
+Tj
eT
uf
Ju
kK
-XR
-vw
-vw
-vw
+TI
+TI
+TI
+TI
bg
-vw
-vw
+TI
+TI
oC
of
of
@@ -4334,15 +4088,15 @@ vf
La
HK
Xe
-id
-id
-id
-FC
-vw
-Di
-Jw
-id
-id
+as
+as
+as
+as
+as
+TI
+TI
+TI
+TI
Qi
"}
(16,1,1) = {"
@@ -4355,16 +4109,16 @@ pc
di
ky
di
-Tj
-id
+Lg
+TI
bg
-gV
TI
-vw
-vw
-vw
-vw
-vw
+TI
+oH
+TI
+IH
+TI
+Pv
iC
FZ
FZ
@@ -4383,8 +4137,8 @@ FZ
FZ
FZ
ws
-Qx
-uU
+JJ
+JJ
FZ
FZ
FZ
@@ -4392,15 +4146,15 @@ BR
FZ
FZ
iC
-id
-id
-id
-XR
-vw
-vw
-Qx
-id
-id
+wI
+wI
+as
+as
+TI
+wI
+wI
+wI
+wI
Qi
"}
(17,1,1) = {"
@@ -4416,13 +4170,13 @@ wc
bg
bg
bg
-XR
-vw
-eJ
-vw
-vw
-vw
-vw
+TI
+TI
+TI
+Hm
+qs
+mm
+Pv
hf
FM
iC
@@ -4438,27 +4192,27 @@ yp
Hl
FZ
iC
-vw
-dP
+TI
+jC
QQ
lM
-xL
+nz
Di
-Jw
-id
-id
-id
-id
-id
-id
-id
-YG
-oH
-vw
-vw
-vw
-Jw
-id
+TI
+TI
+TI
+TI
+TI
+TI
+xu
+TI
+TI
+as
+as
+as
+as
+wI
+wI
Qi
"}
(18,1,1) = {"
@@ -4473,14 +4227,14 @@ bg
bg
bg
bg
-id
+as
+TI
oH
-vw
-vw
-vw
-vw
-vw
-vw
+TI
+TI
+Tw
+Pv
+Pv
QZ
rA
tm
@@ -4489,34 +4243,34 @@ cT
XT
gr
yi
-WY
-Qq
-GR
-AN
-Ib
-dC
-vw
-vw
-vw
-vw
-nz
-vw
-vw
-vw
-Jw
-Tg
-id
-id
-EZ
-xu
-id
-id
-id
-oH
-vw
-vw
-Qx
-id
+WY
+Qq
+GR
+AN
+Ib
+dC
+TI
+TI
+Di
+TI
+nz
+TI
+TI
+TI
+TI
+TI
+TI
+TI
+TI
+TI
+TI
+TI
+TI
+TI
+TI
+TI
+Pk
+Pk
Qi
"}
(19,1,1) = {"
@@ -4531,14 +4285,14 @@ bg
bg
bg
bg
-bd
-IH
-oH
-vw
-Ch
-vw
-vw
-vw
+as
+TI
+TI
+TI
+xu
+TI
+Pv
+Pv
Db
Ja
ze
@@ -4553,28 +4307,28 @@ wJ
aL
gU
dC
-vw
-vw
-vw
-vw
-vw
-vw
-vw
-vw
-Qx
-id
-id
-xu
-xu
-xu
-xu
-xu
-id
-id
+TI
+TI
+TI
+Di
+TI
+TI
+TI
+TI
+TI
+TI
+rl
XR
-vw
Pk
-id
+XR
+TI
+TI
+TI
+TI
+XR
+rl
+Ks
+Pk
Qi
"}
(20,1,1) = {"
@@ -4589,14 +4343,14 @@ bg
bg
bg
bg
-bg
-id
-id
-XR
-vw
-vw
-vw
-vw
+as
+Qx
+TI
+TI
+TI
+TI
+iN
+Pv
UL
hN
iC
@@ -4612,27 +4366,27 @@ Mm
Mk
FZ
iC
-vw
-vw
-vw
-vw
-vw
-vw
-vw
-Pk
-id
-id
-xu
+TI
+TI
+TI
+Pv
+Pv
+Pv
+Pv
+TI
+TI
+TI
+TI
Ks
-xu
-xu
-xu
-xu
-id
-oH
-Qx
-id
-id
+Pk
+Pk
+Pk
+Pk
+Pk
+Pk
+Pk
+XR
+Pk
Qi
"}
(21,1,1) = {"
@@ -4647,14 +4401,14 @@ bg
bg
bg
bg
-bg
-bg
-id
-XR
-vw
+as
+as
+TI
+TI
+TI
Hm
qs
-hx
+qs
iC
FZ
FZ
@@ -4676,21 +4430,21 @@ ws
XN
ws
Pv
-Pk
-id
-id
-id
-xu
-xu
-EZ
-hV
-xu
-xu
+Pv
+TI
+TI
+TI
+dP
+TI
+TI
+TI
+TI
+XR
rl
-id
-Ie
-id
-id
+Pk
+Pk
+Pk
+Pk
Qi
"}
(22,1,1) = {"
@@ -4706,13 +4460,13 @@ bg
bg
bg
bg
-bg
-id
+as
+TI
oH
-vw
-vw
-vw
-vw
+TI
+oH
+TI
+TI
zy
Ig
sy
@@ -4732,24 +4486,24 @@ Fv
wx
VL
Jx
-id
-id
-id
-Tg
-id
-xu
-xu
-Lx
-xu
-xu
-xu
-xu
-id
-id
-id
-id
-as
-as
+Pv
+Pv
+TI
+TI
+TI
+TI
+TI
+TI
+TI
+TI
+TI
+TI
+TI
+TI
+Ks
+Pk
+Pk
+Pk
"}
(23,1,1) = {"
bg
@@ -4764,13 +4518,13 @@ bg
bg
bg
bg
-bg
-id
-id
-oH
-vw
-vw
-vw
+as
+TI
+TI
+TI
+TI
+IH
+TI
zy
zy
zy
@@ -4790,24 +4544,24 @@ FZ
FZ
FZ
sJ
-FZ
-Av
-id
-id
-xu
-Ks
-xu
-xu
-xu
-xu
-xu
-xu
-id
-id
-id
-id
-as
-as
+FZ
+Av
+TI
+TI
+TI
+TI
+TI
+TI
+TI
+TI
+TI
+dP
+TI
+TI
+TI
+TI
+Pk
+XR
"}
(24,1,1) = {"
bg
@@ -4822,19 +4576,19 @@ bg
bg
bg
bg
-bg
-bg
-id
-Tg
-oH
-vw
-vw
-vw
-vw
+as
+as
+ve
+TI
+TI
+TI
+TI
+TI
+TI
zy
zy
-vw
-vw
+TI
+TI
iC
FZ
FZ
@@ -4851,21 +4605,21 @@ Qo
Ds
ju
tT
-rN
-xu
-xu
-xu
-xu
-xu
-xu
-hV
+yJ
+TI
+TI
xu
-EZ
-id
-id
-as
-as
-as
+TI
+TI
+TI
+TI
+TI
+TI
+TI
+TI
+TI
+TI
+Pk
"}
(25,1,1) = {"
bg
@@ -4873,28 +4627,28 @@ bg
bg
bg
bg
+Xj
+Xj
Fu
-Fu
-Fu
-bg
bg
bg
bg
bg
bg
-bg
-id
-id
-oH
-Pv
-vw
-vw
-vw
-vw
-vw
-vw
-vw
-vw
+as
+as
+TI
+TI
+TI
+TI
+TI
+IH
+TI
+TI
+TI
+TI
+TI
+TI
FZ
tW
ef
@@ -4906,24 +4660,24 @@ sw
Ux
wl
tY
-Zp
+Ff
Em
oQ
BP
qv
iN
-EZ
-xu
-xu
-xu
-xu
-xu
-xu
-id
-as
-as
-as
-as
+TI
+TI
+TI
+TI
+TI
+wI
+wI
+wI
+TI
+TI
+TI
+TI
"}
(26,1,1) = {"
bg
@@ -4931,28 +4685,28 @@ bg
bg
bg
bg
-Fu
-Fu
-Fu
Xj
-kh
+Ba
+Xj
+Xj
+di
bg
bg
bg
bg
bg
bg
-id
-id
-id
-oH
-vw
-vw
-vw
-vw
-vw
-vw
-vw
+TI
+TI
+TI
+TI
+TI
+TI
+TI
+IH
+TI
+TI
+TI
EV
Xs
ou
@@ -4962,26 +4716,26 @@ FZ
Cu
FZ
oz
-yJ
-id
+Kq
+TI
IJ
Vb
GY
cn
ar
BY
-xu
+TI
ys
FZ
FZ
iC
-xu
-xu
-as
-as
+wI
as
as
as
+TI
+TI
+TI
"}
(27,1,1) = {"
bg
@@ -4990,55 +4744,55 @@ bg
bg
bg
bg
-Fu
-wp
+Xj
+Xj
sA
+uU
+mU
di
-di
-kh
-di
-di
-Aq
-id
-id
-id
-id
-Tg
-oH
-Pv
-Pv
-Pv
-vw
-vw
-Pk
+sA
+mU
+hi
+TI
+TI
+TI
+TI
+TI
+TI
+TI
+TI
+TI
+TI
+TI
+TI
Xh
tV
oG
WM
FZ
iC
-id
-id
-id
-id
+TI
+TI
+TI
+TI
AG
-id
-RO
-id
-In
-In
+TI
+jC
+TI
+Ch
+Ch
Ul
YF
KO
zX
sH
-Aa
-xu
-hV
-as
-as
+Xe
as
as
+wI
+wI
+wI
+TI
Qi
"}
(28,1,1) = {"
@@ -5048,54 +4802,54 @@ bg
bg
bg
bg
-OO
-Ir
-di
-mm
-di
-di
-di
+Xj
di
+kh
+mU
+sA
+mU
+sA
di
-Aq
-id
-id
-id
-id
-id
-bg
-id
-id
-oH
-Pk
-id
+sA
+TI
+TI
+TI
+TI
+TI
+TI
+TI
+TI
+TI
+TI
+TI
+TI
EV
pP
Sz
FZ
iC
-id
-id
-id
-xu
-xu
-id
-id
-id
+TI
+TI
+TI
+TI
+TI
+TI
+TI
+TI
Kq
Ff
-JU
+BP
mb
ao
KL
cH
aN
KD
-xu
-xu
-as
-as
-as
+Tg
+wI
+wI
+TI
+TI
Qi
Qi
"}
@@ -5106,54 +4860,54 @@ bg
bg
bg
bg
-di
+mU
Wa
-Tw
-di
-di
-kh
-di
-di
-di
-di
-bg
+sA
+sA
+sA
+mU
+sA
+sA
+sA
+mU
bg
bg
bg
bg
bg
bg
-id
-id
-id
-id
+as
+as
+ve
+TI
+TI
iC
FZ
FZ
iC
-id
-id
-Tg
-id
-xu
-hV
-xu
+TI
+TI
+TI
+IH
+TI
+TI
+TI
Nv
qx
-xu
-xu
+TI
+TI
jC
FZ
Io
SS
kv
fu
-Aa
-xu
-xu
-xu
+Xe
+as
as
as
+TI
+TI
Qi
Qi
"}
@@ -5167,11 +4921,11 @@ bg
bg
bg
bg
-oy
-Wm
+mU
di
+mU
Wa
-kh
+sA
di
bg
bg
@@ -5181,35 +4935,35 @@ bg
bg
bg
bg
-bg
-bg
-bg
-id
-id
-id
-id
-id
-id
-id
-id
-id
-id
-xu
-xu
-xu
-xu
-xu
-Ks
-xu
+as
+as
+as
+TI
+TI
+TI
+TI
+TI
+TI
+TI
+TI
+TI
+TI
+TI
+TI
+TI
+TI
+TI
+TI
+TI
FZ
FZ
FZ
FZ
FZ
iC
-xu
-xu
-xu
+wI
+wI
+TI
Qi
Qi
Qi
@@ -5246,27 +5000,27 @@ bg
bg
bg
bg
-id
-id
-id
-id
-id
-Tg
-xu
-xu
-xu
-EZ
-xu
-xu
+bg
+bg
+TI
+TI
+TI
+TI
+TI
+TI
+TI
+IH
+TI
+TI
FZ
iC
-xu
-xu
-xu
-xu
-xu
-xu
-xu
+TI
+TI
+TI
+TI
+TI
+TI
+wI
Qi
Qi
Qi
@@ -5292,7 +5046,6 @@ bg
bg
bg
bg
-bg
Qi
Qi
bg
@@ -5304,26 +5057,27 @@ bg
bg
bg
bg
-Qi
-id
-id
-id
-id
-id
-id
-rl
-xu
-xu
-id
-xu
+bg
+bg
+bg
+bg
+bg
+bg
+bg
+TI
+TI
+TI
+TI
+TI
+TI
iC
-xu
-xu
-xu
-hV
-xu
-xu
-xu
+TI
+TI
+TI
+TI
+TI
+TI
+TI
Qi
Qi
Qi
@@ -5362,25 +5116,25 @@ Qi
Qi
Qi
Qi
-Qi
-Qi
-id
-id
-id
-id
-id
-id
-id
-id
-id
-xu
-xu
-xu
-xu
-xu
-xu
-EZ
-xu
+bg
+bg
+bg
+bg
+bg
+bg
+bg
+bg
+bg
+bg
+bg
+TI
+TI
+TI
+TI
+TI
+TI
+TI
+TI
Qi
Qi
Qi
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_SPOOKYCRASH.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_SPOOKYCRASH.dmm
deleted file mode 100644
index 4f4464b57c7..00000000000
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_SPOOKYCRASH.dmm
+++ /dev/null
@@ -1,459 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"a" = (
-/turf/closed/mineral/random/volcanic,
-/area/overmap_encounter/planetoid/cave/explored)
-"b" = (
-/obj/effect/decal/cleanable/blood,
-/obj/machinery/light/broken/directional/south,
-/obj/item/stack/tile/mineral/titanium/blue,
-/obj/item/storage/book/bible,
-/turf/open/floor/plating,
-/area/overmap_encounter/planetoid/cave/explored)
-"c" = (
-/obj/item/ectoplasm,
-/obj/effect/decal/cleanable/blood/drip{
- pixel_x = 11;
- pixel_y = -3
- },
-/turf/open/floor/mineral/titanium,
-/area/overmap_encounter/planetoid/cave/explored)
-"d" = (
-/turf/closed/wall/mineral/titanium,
-/area/overmap_encounter/planetoid/cave/explored)
-"e" = (
-/obj/effect/decal/cleanable/blood/gibs,
-/turf/open/floor/mineral/plastitanium/red,
-/area/overmap_encounter/planetoid/cave/explored)
-"h" = (
-/obj/item/stack/tile/mineral/plastitanium/red,
-/obj/effect/decal/cleanable/blood/drip{
- pixel_y = -3
- },
-/turf/open/floor/plating,
-/area/overmap_encounter/planetoid/cave/explored)
-"j" = (
-/obj/machinery/power/shuttle/engine/electric{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/overmap_encounter/planetoid/cave/explored)
-"k" = (
-/obj/item/stack/tile/mineral/titanium,
-/turf/open/floor/plating,
-/area/overmap_encounter/planetoid/cave/explored)
-"l" = (
-/obj/structure/grille/broken,
-/obj/effect/decal/cleanable/glass,
-/obj/item/shard,
-/turf/open/floor/plating,
-/area/overmap_encounter/planetoid/cave/explored)
-"m" = (
-/obj/structure/table,
-/obj/item/soulstone/anybody,
-/obj/item/toy/plush/lizardplushie,
-/obj/machinery/light/broken/directional/north,
-/obj/structure/window/reinforced/spawner,
-/obj/machinery/door/window/brigdoor/westright,
-/obj/item/clothing/head/wizard/black,
-/obj/item/clothing/suit/wizrobe/black,
-/turf/open/floor/mineral/plastitanium/red,
-/area/overmap_encounter/planetoid/cave/explored)
-"n" = (
-/obj/effect/decal/cleanable/blood,
-/obj/effect/decal/cleanable/glass,
-/obj/item/stack/rods,
-/obj/item/stack/tile/mineral/titanium/blue,
-/turf/open/floor/plating,
-/area/overmap_encounter/planetoid/cave/explored)
-"o" = (
-/obj/item/shard,
-/obj/effect/decal/cleanable/glass,
-/obj/effect/decal/cleanable/blood/drip{
- pixel_x = 8;
- pixel_y = 1
- },
-/turf/open/floor/mineral/titanium,
-/area/overmap_encounter/planetoid/cave/explored)
-"q" = (
-/obj/effect/decal/cleanable/blood/drip{
- pixel_x = 13;
- pixel_y = 8
- },
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/cave/explored)
-"t" = (
-/obj/item/stack/tile/mineral/plastitanium/red,
-/turf/open/floor/plating,
-/area/overmap_encounter/planetoid/cave/explored)
-"u" = (
-/obj/structure/window/reinforced/tinted,
-/obj/structure/closet/crate{
- name = "emergency supplies"
- },
-/obj/item/pickaxe/emergency,
-/obj/item/storage/firstaid/medical,
-/obj/item/storage/toolbox/emergency,
-/obj/item/flashlight/flare,
-/turf/open/floor/mineral/titanium,
-/area/overmap_encounter/planetoid/cave/explored)
-"v" = (
-/obj/structure/closet/crate/coffin{
- icon_state = "coffinopen";
- opened = 1
- },
-/turf/open/floor/mineral/plastitanium/red,
-/area/overmap_encounter/planetoid/cave/explored)
-"w" = (
-/obj/structure/chair/comfy/shuttle{
- dir = 4
- },
-/obj/effect/decal/cleanable/blood,
-/obj/item/stack/tile/mineral/plastitanium/red,
-/turf/open/floor/plating,
-/area/overmap_encounter/planetoid/cave/explored)
-"A" = (
-/obj/effect/decal/cleanable/blood,
-/mob/living/simple_animal/hostile/asteroid/hivelord/legion,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/cave/explored)
-"C" = (
-/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/mineral/titanium,
-/area/overmap_encounter/planetoid/cave/explored)
-"D" = (
-/obj/structure/frame/computer,
-/obj/item/circuitboard/computer/shuttle/helm,
-/obj/item/shard,
-/turf/open/floor/mineral/titanium/blue,
-/area/overmap_encounter/planetoid/cave/explored)
-"E" = (
-/obj/effect/decal/cleanable/blood/drip{
- pixel_y = 10
- },
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/cave/explored)
-"F" = (
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/cave/explored)
-"G" = (
-/obj/machinery/light/broken/directional/north,
-/obj/effect/decal/cleanable/blood/splatter,
-/obj/structure/chair/comfy/shuttle{
- dir = 4
- },
-/turf/open/floor/mineral/plastitanium/red,
-/area/overmap_encounter/planetoid/cave/explored)
-"I" = (
-/obj/effect/mob_spawn/human/corpse/damaged,
-/obj/effect/decal/cleanable/blood,
-/obj/item/clothing/suit/armor/riot/knight/red,
-/obj/item/clothing/head/helmet/knight/red,
-/obj/item/claymore/weak{
- desc = "Comically rusted to the point of near uselessness.";
- force = 6;
- name = "rusted claymore"
- },
-/turf/open/floor/mineral/plastitanium/red,
-/area/overmap_encounter/planetoid/cave/explored)
-"J" = (
-/obj/structure/girder/displaced,
-/obj/item/stack/sheet/mineral/titanium,
-/turf/open/floor/plating,
-/area/overmap_encounter/planetoid/cave/explored)
-"K" = (
-/obj/effect/decal/cleanable/glass,
-/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/cave/explored)
-"L" = (
-/obj/item/grenade/chem_grenade/ghostbuster,
-/turf/open/floor/mineral/titanium,
-/area/overmap_encounter/planetoid/cave/explored)
-"M" = (
-/obj/structure/table,
-/obj/item/paper/crumpled{
- default_raw_text = "Objective is to locate and secure the reliquary holding the supernatural items, then swing them back to HQ for containment. Simple job for Mystery Inc.";
- name = "Mission Statement";
- pixel_x = -5
- },
-/obj/item/toy/figure/chaplain{
- pixel_x = 6
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/overmap_encounter/planetoid/cave/explored)
-"N" = (
-/obj/effect/spawner/structure/window/shuttle,
-/obj/structure/grille,
-/turf/open/floor/plating,
-/area/overmap_encounter/planetoid/cave/explored)
-"O" = (
-/obj/effect/mob_spawn/human/corpse/damaged,
-/obj/item/clothing/shoes/jackboots,
-/obj/item/clothing/under/color/khaki/buster,
-/obj/item/clothing/glasses/welding/ghostbuster,
-/obj/effect/decal/cleanable/blood,
-/turf/open/floor/mineral/plastitanium/red,
-/area/overmap_encounter/planetoid/cave/explored)
-"Q" = (
-/obj/structure/girder,
-/obj/item/stack/sheet/mineral/titanium,
-/turf/open/floor/plating,
-/area/overmap_encounter/planetoid/cave/explored)
-"R" = (
-/obj/machinery/power/smes/shuttle,
-/obj/structure/window/reinforced/tinted,
-/turf/open/floor/mineral/titanium,
-/area/overmap_encounter/planetoid/cave/explored)
-"T" = (
-/obj/structure/window/reinforced/tinted,
-/obj/effect/decal/cleanable/blood,
-/obj/structure/bed/dogbed,
-/mob/living/simple_animal/pet/dog/pug{
- health = 5;
- name = "Gooby-Moo"
- },
-/turf/open/floor/mineral/titanium,
-/area/overmap_encounter/planetoid/cave/explored)
-"U" = (
-/obj/effect/decal/cleanable/blood,
-/turf/open/floor/mineral/plastitanium/red,
-/area/overmap_encounter/planetoid/cave/explored)
-"V" = (
-/obj/structure/closet/crate{
- name = "DANGER: PARANORMAL ARTEFACTS"
- },
-/obj/item/reagent_containers/food/snacks/muffin/booberry,
-/obj/item/instrument/trombone,
-/obj/item/reagent_containers/food/snacks/grown/ghost_chili,
-/obj/item/clothing/head/hardhat/pumpkinhead,
-/obj/item/nullrod/scythe/talking,
-/obj/item/clothing/head/helmet/skull,
-/turf/open/floor/mineral/plastitanium/red,
-/area/overmap_encounter/planetoid/cave/explored)
-"W" = (
-/obj/machinery/door/airlock/shuttle,
-/obj/effect/mapping_helpers/airlock/locked,
-/turf/open/floor/mineral/titanium/blue,
-/area/overmap_encounter/planetoid/cave/explored)
-"X" = (
-/obj/structure/chair/comfy/shuttle{
- dir = 1
- },
-/obj/effect/mob_spawn/human/corpse/damaged,
-/obj/item/clothing/under/rank/civilian/chaplain,
-/obj/item/clothing/head/helmet/chaplain/witchunter_hat,
-/obj/effect/decal/cleanable/blood,
-/obj/effect/decal/cleanable/glass,
-/turf/open/floor/mineral/titanium/blue,
-/area/overmap_encounter/planetoid/cave/explored)
-"Y" = (
-/obj/structure/chair/comfy/shuttle{
- dir = 4
- },
-/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/mineral/plastitanium/red,
-/area/overmap_encounter/planetoid/cave/explored)
-"Z" = (
-/obj/machinery/door/airlock/shuttle,
-/obj/structure/fans/tiny,
-/turf/open/floor/mineral/plastitanium/red,
-/area/overmap_encounter/planetoid/cave/explored)
-
-(1,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-F
-F
-F
-F
-F
-F
-a
-a
-"}
-(2,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-F
-F
-F
-F
-a
-a
-"}
-(3,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-Q
-d
-d
-d
-F
-F
-F
-F
-A
-"}
-(4,1,1) = {"
-a
-a
-d
-a
-d
-d
-G
-w
-Y
-V
-R
-j
-F
-F
-E
-a
-"}
-(5,1,1) = {"
-a
-a
-N
-M
-b
-d
-O
-U
-U
-e
-u
-F
-F
-F
-F
-a
-"}
-(6,1,1) = {"
-a
-a
-l
-D
-X
-W
-L
-c
-C
-k
-T
-F
-F
-q
-F
-a
-"}
-(7,1,1) = {"
-a
-a
-a
-a
-n
-J
-t
-U
-h
-I
-o
-K
-F
-F
-F
-a
-"}
-(8,1,1) = {"
-a
-a
-a
-d
-d
-d
-m
-e
-v
-v
-R
-j
-F
-F
-F
-F
-"}
-(9,1,1) = {"
-a
-a
-a
-a
-a
-d
-d
-Z
-d
-d
-d
-F
-F
-F
-F
-F
-"}
-(10,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-F
-F
-F
-F
-F
-a
-"}
-(11,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-F
-F
-F
-F
-F
-F
-F
-F
-"}
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_ashwalker_shrine.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_ashwalker_shrine.dmm
deleted file mode 100644
index 5001fd7a183..00000000000
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_ashwalker_shrine.dmm
+++ /dev/null
@@ -1,3692 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"ad" = (
-/obj/structure/fence{
- dir = 4
- },
-/turf/open/floor/plating/ashplanet/ash,
-/area/overmap_encounter/planetoid/lava/explored)
-"aw" = (
-/obj/structure/stone_tile/block{
- dir = 8
- },
-/obj/item/melee/transforming/energy/sword/saber/red,
-/obj/effect/mob_spawn/human/corpse/nanotrasenassaultsoldier,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"aA" = (
-/turf/template_noop,
-/area/template_noop)
-"aG" = (
-/obj/item/circuitboard/computer/operating,
-/obj/item/storage/backpack/duffelbag/syndie/surgery,
-/obj/structure/closet/supplypod,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"bm" = (
-/obj/structure/stone_tile/slab,
-/obj/structure/table/wood,
-/obj/item/storage/toolbox/syndicate,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"cm" = (
-/obj/structure/stone_tile/block,
-/obj/structure/stone_tile/slab{
- pixel_y = -16
- },
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"cv" = (
-/obj/structure/bonfire,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"cx" = (
-/obj/structure/stone_tile/slab,
-/obj/item/ammo_casing/shotgun/buckshot,
-/obj/effect/mob_spawn/human/corpse{
- mob_species = /datum/species/lizard/ashwalker
- },
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"cA" = (
-/obj/structure/stone_tile/block{
- dir = 4
- },
-/obj/structure/stone_tile/block{
- dir = 8
- },
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"cR" = (
-/obj/structure/stone_tile/slab,
-/obj/item/ammo_casing/shotgun/buckshot,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"dg" = (
-/obj/structure/stone_tile/block{
- pixel_x = -16
- },
-/obj/structure/stone_tile{
- dir = 8
- },
-/obj/structure/stone_tile{
- dir = 4
- },
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"dn" = (
-/obj/structure/stone_tile/block{
- dir = 8
- },
-/obj/structure/stone_tile/block{
- dir = 4
- },
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"dv" = (
-/obj/item/ammo_casing/shotgun/buckshot,
-/turf/open/floor/wood,
-/area/overmap_encounter/planetoid/lava/explored)
-"dD" = (
-/turf/closed/indestructible/riveted/boss,
-/area/overmap_encounter/planetoid/lava/explored)
-"dM" = (
-/obj/structure/stone_tile/slab,
-/turf/open/lava/smooth/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"dY" = (
-/obj/structure/fence/door{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/overmap_encounter/planetoid/lava/explored)
-"ee" = (
-/obj/structure/stone_tile/slab/burnt,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"ej" = (
-/obj/structure/stone_tile/surrounding_tile/cracked{
- dir = 4
- },
-/obj/structure/stone_tile/center/cracked,
-/obj/structure/stone_tile/surrounding_tile,
-/obj/structure/stone_tile/surrounding_tile{
- dir = 1
- },
-/turf/open/lava/smooth/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"ek" = (
-/obj/structure/stone_tile/block{
- dir = 8
- },
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"eq" = (
-/obj/item/storage/bag/plants/portaseeder,
-/turf/open/floor/wood,
-/area/overmap_encounter/planetoid/lava/explored)
-"ew" = (
-/obj/structure/stone_tile/block,
-/obj/structure/mineral_door/sandstone,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"eH" = (
-/obj/structure/stone_tile/center,
-/obj/structure/stone_tile/surrounding_tile,
-/obj/structure/stone_tile/surrounding_tile{
- dir = 8
- },
-/obj/structure/stone_tile/surrounding_tile{
- dir = 4
- },
-/obj/structure/stone_tile/surrounding_tile{
- dir = 1
- },
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"eZ" = (
-/obj/structure/stone_tile/surrounding_tile/cracked,
-/obj/structure/stone_tile/center,
-/obj/structure/stone_tile/surrounding_tile{
- dir = 1
- },
-/obj/structure/stone_tile/surrounding_tile{
- dir = 8
- },
-/turf/open/lava/smooth/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"fd" = (
-/obj/structure/stone_tile/slab/cracked{
- dir = 10
- },
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"fe" = (
-/obj/structure/closet/crate/radiation,
-/obj/item/flashlight/lantern,
-/obj/item/flashlight/lantern,
-/obj/item/flashlight/lantern,
-/obj/item/flashlight/flare,
-/turf/open/floor/wood,
-/area/overmap_encounter/planetoid/lava/explored)
-"fU" = (
-/obj/structure/stone_tile/block{
- dir = 4;
- pixel_y = -16
- },
-/obj/structure/stone_tile,
-/obj/structure/stone_tile{
- dir = 8
- },
-/turf/open/lava/smooth/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"fV" = (
-/turf/open/floor/wood{
- icon_state = "wood-broken4"
- },
-/area/overmap_encounter/planetoid/lava/explored)
-"gl" = (
-/obj/structure/stone_tile/block,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"gp" = (
-/obj/structure/stone_tile{
- dir = 1
- },
-/obj/structure/stone_tile/block{
- dir = 8;
- pixel_y = 16
- },
-/obj/structure/stone_tile{
- dir = 4
- },
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"gM" = (
-/obj/item/stack/cable_coil/red,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"ha" = (
-/obj/structure/stone_tile/slab/cracked{
- dir = 6
- },
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"hd" = (
-/obj/structure/stone_tile,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"hk" = (
-/obj/structure/rack,
-/obj/item/stack/sheet/mineral/wood{
- amount = 18
- },
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"ie" = (
-/obj/structure/table/wood,
-/obj/item/seeds/cannabis,
-/turf/open/floor/wood,
-/area/overmap_encounter/planetoid/lava/explored)
-"ik" = (
-/obj/structure/stone_tile{
- dir = 8
- },
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"il" = (
-/obj/structure/table/wood,
-/obj/item/spear/bonespear,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"im" = (
-/obj/structure/fence{
- dir = 8
- },
-/turf/open/floor/plating/ashplanet/ash,
-/area/overmap_encounter/planetoid/lava/explored)
-"iw" = (
-/turf/open/floor/wood,
-/area/overmap_encounter/planetoid/lava/explored)
-"je" = (
-/obj/structure/stone_tile/block{
- dir = 1;
- pixel_x = 16
- },
-/obj/structure/stone_tile,
-/obj/structure/stone_tile{
- dir = 1
- },
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"jl" = (
-/turf/open/lava/smooth/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"ke" = (
-/obj/machinery/hydroponics/soil,
-/turf/open/floor/plating/ashplanet/ash,
-/area/overmap_encounter/planetoid/lava/explored)
-"kz" = (
-/obj/structure/stone_tile/block{
- dir = 8;
- pixel_y = 16
- },
-/obj/structure/stone_tile{
- dir = 1
- },
-/obj/structure/stone_tile{
- dir = 4
- },
-/turf/open/lava/smooth/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"kD" = (
-/obj/structure/stone_tile/block{
- dir = 1
- },
-/obj/item/ammo_casing/shotgun/buckshot,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"kT" = (
-/obj/structure/stone_tile/block{
- dir = 4
- },
-/obj/structure/mineral_door/sandstone,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"kV" = (
-/turf/open/floor/wood{
- icon_state = "wood-broken2"
- },
-/area/overmap_encounter/planetoid/lava/explored)
-"kZ" = (
-/obj/structure/stone_tile/surrounding_tile{
- dir = 4
- },
-/turf/open/lava/smooth/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"lc" = (
-/obj/structure/stone_tile/slab,
-/obj/structure/table/wood,
-/obj/item/instrument/trombone,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"lh" = (
-/obj/structure/table/wood,
-/obj/item/storage/firstaid/fire,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"ln" = (
-/obj/machinery/the_singularitygen,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"lt" = (
-/mob/living/simple_animal/hostile/asteroid/gutlunch,
-/turf/open/floor/wood,
-/area/overmap_encounter/planetoid/lava/explored)
-"lx" = (
-/obj/structure/fence,
-/turf/open/floor/plating/ashplanet/ash,
-/area/overmap_encounter/planetoid/lava/explored)
-"lO" = (
-/obj/structure/stone_tile/slab{
- pixel_y = -16
- },
-/obj/structure/stone_tile/block,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"mg" = (
-/obj/structure/stone_tile/slab,
-/obj/structure/mineral_door/sandstone,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"nh" = (
-/obj/effect/mob_spawn/human/corpse{
- mob_species = /datum/species/lizard/ashwalker
- },
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"nr" = (
-/obj/structure/stone_tile/block{
- dir = 1
- },
-/obj/structure/mineral_door/sandstone,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"ny" = (
-/obj/structure/stone_tile/block{
- dir = 1
- },
-/obj/structure/stone_tile/block,
-/obj/structure/chair/wood/wings{
- dir = 4
- },
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"ox" = (
-/obj/structure/stone_tile/slab,
-/obj/effect/gibspawner/human,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"oF" = (
-/obj/structure/stone_tile/block,
-/obj/structure/stone_tile/block{
- dir = 1
- },
-/obj/structure/chair/wood/wings,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"oO" = (
-/obj/structure/fence/door,
-/turf/open/floor/plating/ashplanet/ash,
-/area/overmap_encounter/planetoid/lava/explored)
-"oY" = (
-/obj/structure/stone_tile/surrounding_tile/cracked,
-/obj/structure/stone_tile/surrounding_tile/cracked{
- dir = 4
- },
-/obj/structure/stone_tile/center,
-/obj/structure/stone_tile/surrounding_tile{
- dir = 8
- },
-/turf/open/lava/smooth/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"px" = (
-/obj/item/seeds/potato,
-/turf/open/floor/plating/ashplanet/ash,
-/area/overmap_encounter/planetoid/lava/explored)
-"pJ" = (
-/mob/living/simple_animal/hostile/nanotrasen/ranged/smg,
-/turf/open/floor/wood,
-/area/overmap_encounter/planetoid/lava/explored)
-"pT" = (
-/obj/structure/table/wood,
-/obj/item/seeds/ambrosia,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"pZ" = (
-/obj/structure/fence/corner{
- dir = 6
- },
-/turf/open/floor/plating/ashplanet/ash,
-/area/overmap_encounter/planetoid/lava/explored)
-"qq" = (
-/obj/structure/stone_tile/slab/cracked{
- dir = 5
- },
-/obj/structure/bonfire,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"qw" = (
-/obj/effect/gibspawner/human,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"qy" = (
-/obj/structure/stone_tile/slab/burnt,
-/obj/item/ammo_casing/shotgun/buckshot,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"qG" = (
-/obj/structure/stone_tile/surrounding,
-/obj/structure/stone_tile/center,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"rc" = (
-/mob/living/simple_animal/hostile/asteroid/gutlunch/gubbuck,
-/turf/open/floor/wood,
-/area/overmap_encounter/planetoid/lava/explored)
-"rk" = (
-/obj/structure/stone_tile/block{
- dir = 1
- },
-/obj/structure/stone_tile/block,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"rm" = (
-/obj/structure/stone_tile/slab,
-/obj/structure/chair/wood/wings{
- dir = 4
- },
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"rp" = (
-/obj/structure/rack,
-/turf/open/floor/wood,
-/area/overmap_encounter/planetoid/lava/explored)
-"ru" = (
-/turf/open/floor/wood{
- icon_state = "wood-broken5"
- },
-/area/overmap_encounter/planetoid/lava/explored)
-"rx" = (
-/obj/structure/stone_tile/block,
-/obj/effect/mob_spawn/human/corpse{
- mob_species = /datum/species/lizard/ashwalker
- },
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"rD" = (
-/obj/structure/stone_tile/slab,
-/obj/effect/mob_spawn/human/corpse{
- mob_species = /datum/species/lizard/ashwalker
- },
-/obj/item/spear/bonespear,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"rH" = (
-/obj/structure/stone_tile/surrounding_tile{
- dir = 8
- },
-/turf/open/lava/smooth/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"rJ" = (
-/obj/structure/stone_tile/slab,
-/obj/item/paper{
- desc = "A hastily written note, written in the Lizard language.";
- default_raw_text = "To all brethren who may read this, we are sorry. We failed to defend the Necropolis, and those from the sky destroyed our home. I write this in my last dying breath, to warn you to not make our mistakes. Don't let them fool you with their actions, all of those who come from the sky are not your friends. They wish to loot and pillage your villages. Please do not make our same mistakes."
- },
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"sc" = (
-/obj/structure/stone_tile/block{
- dir = 8
- },
-/obj/effect/mob_spawn/human/corpse{
- mob_species = /datum/species/lizard/ashwalker
- },
-/obj/item/spear/bonespear,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"ss" = (
-/obj/structure/stone_tile/slab,
-/mob/living/simple_animal/hostile/asteroid/gutlunch/gubbuck,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"sM" = (
-/obj/item/seeds/tower,
-/turf/open/floor/plating/ashplanet/ash,
-/area/overmap_encounter/planetoid/lava/explored)
-"tR" = (
-/obj/structure/table/wood,
-/obj/item/seeds/cotton/durathread,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"uc" = (
-/obj/structure/stone_tile{
- dir = 1
- },
-/obj/structure/stone_tile/block{
- dir = 8;
- pixel_y = 16
- },
-/obj/structure/stone_tile{
- dir = 4
- },
-/turf/open/lava/smooth/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"uH" = (
-/obj/structure/stone_tile/block,
-/obj/effect/gibspawner/human,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"uJ" = (
-/obj/structure/bed,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"uK" = (
-/turf/closed/wall/mineral/wood/nonmetal,
-/area/overmap_encounter/planetoid/lava/explored)
-"vd" = (
-/obj/structure/stone_tile/block,
-/obj/structure/stone_tile/block{
- dir = 1
- },
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"vm" = (
-/obj/structure/stone_tile/block{
- dir = 4
- },
-/obj/structure/stone_tile{
- dir = 8
- },
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"vu" = (
-/obj/structure/stone_tile/surrounding,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"vH" = (
-/obj/structure/stone_tile/block,
-/obj/effect/mob_spawn/human/corpse{
- mob_species = /datum/species/lizard/ashwalker
- },
-/obj/item/spear/bonespear,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"vN" = (
-/obj/structure/stone_tile/block{
- dir = 8;
- pixel_y = 16
- },
-/obj/structure/stone_tile{
- dir = 1
- },
-/obj/structure/stone_tile{
- dir = 4
- },
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"vU" = (
-/obj/effect/mob_spawn/human/corpse{
- mob_species = /datum/species/lizard/ashwalker
- },
-/obj/item/spear/bonespear,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"vW" = (
-/obj/structure/stone_tile/center,
-/obj/structure/stone_tile/surrounding/burnt,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"wi" = (
-/mob/living/simple_animal/hostile/asteroid/gutlunch,
-/turf/open/floor/plating/ashplanet/ash,
-/area/overmap_encounter/planetoid/lava/explored)
-"wt" = (
-/obj/structure/bed,
-/turf/open/floor/wood,
-/area/overmap_encounter/planetoid/lava/explored)
-"wz" = (
-/obj/structure/stone_tile{
- dir = 4
- },
-/obj/structure/stone_tile/block,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"wO" = (
-/mob/living/simple_animal/hostile/asteroid/gutlunch/guthen,
-/turf/open/floor/wood,
-/area/overmap_encounter/planetoid/lava/explored)
-"wV" = (
-/obj/structure/table/wood,
-/turf/open/floor/wood,
-/area/overmap_encounter/planetoid/lava/explored)
-"xa" = (
-/obj/structure/stone_tile/block{
- dir = 4
- },
-/obj/effect/gibspawner/human,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"xt" = (
-/obj/structure/stone_tile/slab,
-/obj/structure/table/wood,
-/obj/item/weldingtool/experimental,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"xT" = (
-/obj/structure/stone_tile/slab,
-/obj/structure/stone_tile/slab,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"xZ" = (
-/obj/structure/stone_tile/slab,
-/mob/living/simple_animal/hostile/asteroid/gutlunch/guthen,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"yp" = (
-/obj/structure/stone_tile/block,
-/mob/living/simple_animal/hostile/asteroid/gutlunch,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"yD" = (
-/obj/structure/stone_tile/slab,
-/mob/living/simple_animal/hostile/asteroid/gutlunch/grublunch,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"yJ" = (
-/obj/structure/stone_tile/slab,
-/mob/living/simple_animal/hostile/nanotrasen/ranged/assault,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"zG" = (
-/obj/structure/table/wood,
-/obj/structure/stone_tile/slab,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"zJ" = (
-/obj/structure/sink/puddle,
-/turf/open/floor/plating/ashplanet/ash,
-/area/overmap_encounter/planetoid/lava/explored)
-"zW" = (
-/obj/item/ammo_casing/shotgun/buckshot,
-/turf/open/floor/wood{
- icon_state = "wood-broken6"
- },
-/area/overmap_encounter/planetoid/lava/explored)
-"zY" = (
-/obj/structure/stone_tile/block{
- dir = 1;
- pixel_x = 16
- },
-/obj/structure/stone_tile,
-/obj/structure/stone_tile{
- dir = 1
- },
-/obj/effect/mob_spawn/human/corpse{
- mob_species = /datum/species/lizard/ashwalker
- },
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"An" = (
-/obj/structure/fence/corner{
- dir = 8
- },
-/turf/open/floor/plating/ashplanet/ash,
-/area/overmap_encounter/planetoid/lava/explored)
-"At" = (
-/obj/structure/table/wood,
-/obj/item/seeds/garlic,
-/turf/open/floor/wood,
-/area/overmap_encounter/planetoid/lava/explored)
-"AG" = (
-/obj/item/seeds/peas,
-/turf/open/floor/plating/ashplanet/ash,
-/area/overmap_encounter/planetoid/lava/explored)
-"AI" = (
-/obj/structure/stone_tile/block/cracked{
- dir = 4
- },
-/turf/open/lava/smooth/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"AY" = (
-/obj/structure/stone_tile/block{
- dir = 4
- },
-/obj/effect/mob_spawn/human/corpse{
- mob_species = /datum/species/lizard/ashwalker
- },
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"Bv" = (
-/obj/item/seeds/glowshroom/glowcap,
-/turf/open/floor/plating/ashplanet/ash,
-/area/overmap_encounter/planetoid/lava/explored)
-"BF" = (
-/obj/machinery/hydroponics/soil,
-/obj/item/seeds/tower,
-/turf/open/floor/plating/ashplanet/ash,
-/area/overmap_encounter/planetoid/lava/explored)
-"Cr" = (
-/obj/structure/fence/door{
- dir = 4
- },
-/turf/open/floor/plating/ashplanet/ash,
-/area/overmap_encounter/planetoid/lava/explored)
-"CE" = (
-/obj/structure/stone_tile{
- dir = 8
- },
-/obj/structure/stone_tile/slab{
- pixel_y = -16
- },
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"CM" = (
-/turf/open/floor/plating/ashplanet/ash,
-/area/overmap_encounter/planetoid/lava/explored)
-"CP" = (
-/obj/machinery/smartfridge/drying_rack,
-/turf/open/floor/wood,
-/area/overmap_encounter/planetoid/lava/explored)
-"CT" = (
-/obj/structure/stone_tile/slab,
-/obj/structure/table/wood,
-/obj/item/reagent_containers/food/snacks/soup/blood,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"CU" = (
-/obj/structure/stone_tile/slab,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"Dk" = (
-/obj/structure/stone_tile{
- dir = 4
- },
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"DF" = (
-/obj/item/clothing/head/welding,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"Eh" = (
-/obj/structure/stone_tile/slab,
-/obj/structure/table/wood,
-/obj/item/reagent_containers/glass/bowl/mushroom_bowl,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"Eq" = (
-/obj/structure/stone_tile/block{
- dir = 8
- },
-/obj/effect/mob_spawn/human/corpse{
- mob_species = /datum/species/lizard/ashwalker
- },
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"Ez" = (
-/obj/structure/stone_tile/slab,
-/obj/structure/table/wood,
-/obj/item/reagent_containers/glass/bowl/mushroom_bowl,
-/obj/item/reagent_containers/food/snacks/soup/wish,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"Fk" = (
-/obj/structure/stone_tile/block{
- dir = 4
- },
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"Fo" = (
-/obj/structure/stone_tile/slab,
-/obj/structure/table/wood,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"FS" = (
-/obj/structure/table/wood,
-/obj/item/seeds/ambrosia,
-/turf/open/floor/wood,
-/area/overmap_encounter/planetoid/lava/explored)
-"Gr" = (
-/obj/item/ammo_casing/shotgun/buckshot,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"GD" = (
-/obj/structure/stone_tile/surrounding_tile/cracked{
- dir = 8
- },
-/obj/structure/stone_tile/center,
-/obj/structure/stone_tile/surrounding_tile{
- dir = 1
- },
-/obj/structure/stone_tile/surrounding_tile{
- dir = 4
- },
-/turf/open/lava/smooth/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"HL" = (
-/obj/effect/mob_spawn/human/corpse{
- mob_species = /datum/species/lizard/ashwalker
- },
-/turf/open/floor/wood,
-/area/overmap_encounter/planetoid/lava/explored)
-"HP" = (
-/obj/structure/mineral_door/sandstone,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"Ii" = (
-/obj/structure/stone_tile/surrounding_tile,
-/obj/structure/stone_tile/surrounding_tile{
- pixel_x = 17;
- pixel_y = -17
- },
-/obj/structure/stone_tile/surrounding_tile{
- dir = 1;
- pixel_x = 17;
- pixel_y = -17
- },
-/obj/structure/stone_tile/surrounding_tile{
- dir = 4;
- pixel_x = 17;
- pixel_y = -17
- },
-/obj/structure/stone_tile/surrounding_tile{
- dir = 8;
- pixel_x = 17;
- pixel_y = -17
- },
-/obj/structure/stone_tile/center{
- pixel_x = 17;
- pixel_y = -17
- },
-/turf/open/lava/smooth/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"IF" = (
-/obj/structure/stone_tile/block{
- dir = 1
- },
-/obj/item/kinetic_crusher,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"IO" = (
-/obj/structure/stone_tile/block/cracked,
-/turf/open/lava/smooth/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"Jd" = (
-/mob/living/simple_animal/hostile/asteroid/gutlunch/gubbuck,
-/turf/open/floor/plating/ashplanet/ash,
-/area/overmap_encounter/planetoid/lava/explored)
-"Jk" = (
-/obj/structure/stone_tile/block{
- dir = 4;
- pixel_y = -16
- },
-/obj/structure/stone_tile,
-/obj/structure/stone_tile{
- dir = 8
- },
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"Jv" = (
-/obj/structure/stone_tile/block{
- dir = 1
- },
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"JA" = (
-/turf/open/floor/wood{
- icon_state = "wood-broken3"
- },
-/area/overmap_encounter/planetoid/lava/explored)
-"JL" = (
-/obj/structure/table/wood,
-/obj/item/seeds/cotton,
-/turf/open/floor/wood,
-/area/overmap_encounter/planetoid/lava/explored)
-"JM" = (
-/obj/structure/table/wood,
-/obj/item/seeds/cabbage,
-/turf/open/floor/wood,
-/area/overmap_encounter/planetoid/lava/explored)
-"JR" = (
-/obj/structure/stone_tile{
- dir = 4
- },
-/obj/effect/mob_spawn/human/corpse{
- mob_species = /datum/species/lizard/ashwalker
- },
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"JV" = (
-/obj/structure/table/wood,
-/obj/item/seeds/cherry,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"JZ" = (
-/obj/structure/stone_tile/slab,
-/obj/structure/fluff/drake_statue,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"Kd" = (
-/obj/structure/stone_tile/slab/cracked{
- dir = 1
- },
-/obj/structure/table/wood,
-/obj/item/stack/sheet/mineral/wood/fifty,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"Ku" = (
-/obj/structure/table/wood,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"KR" = (
-/obj/item/storage/firstaid/regular,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"KS" = (
-/obj/structure/stone_tile/block{
- dir = 4
- },
-/obj/item/ammo_casing/shotgun/buckshot,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"Lj" = (
-/obj/structure/stone_tile/block{
- dir = 4
- },
-/obj/effect/mob_spawn/human/corpse{
- mob_species = /datum/species/lizard/ashwalker
- },
-/obj/item/spear/bonespear,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"LG" = (
-/mob/living/simple_animal/hostile/asteroid/gutlunch/guthen,
-/turf/open/floor/plating/ashplanet/ash,
-/area/overmap_encounter/planetoid/lava/explored)
-"LL" = (
-/obj/structure/stone_tile/slab,
-/obj/effect/mob_spawn/human/corpse{
- mob_species = /datum/species/lizard/ashwalker
- },
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"LS" = (
-/obj/item/seeds/plump,
-/turf/open/floor/plating/ashplanet/ash,
-/area/overmap_encounter/planetoid/lava/explored)
-"MX" = (
-/obj/structure/stone_tile/slab/cracked{
- dir = 10
- },
-/obj/item/ammo_casing/shotgun/buckshot,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"Nf" = (
-/obj/structure/stone_tile/block{
- dir = 1
- },
-/obj/structure/stone_tile/block,
-/obj/structure/chair/wood/wings{
- dir = 1
- },
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"Np" = (
-/obj/item/seeds/wheat,
-/turf/open/floor/plating/ashplanet/ash,
-/area/overmap_encounter/planetoid/lava/explored)
-"Nt" = (
-/obj/structure/bonfire,
-/turf/open/floor/wood,
-/area/overmap_encounter/planetoid/lava/explored)
-"NA" = (
-/obj/structure/table/wood,
-/obj/item/clothing/head/welding,
-/turf/open/floor/wood,
-/area/overmap_encounter/planetoid/lava/explored)
-"ND" = (
-/obj/structure/stone_tile/block,
-/obj/structure/stone_tile/slab{
- pixel_y = -16
- },
-/obj/structure/mineral_door/sandstone,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"NE" = (
-/obj/structure/stone_tile/block{
- dir = 1
- },
-/turf/open/lava/smooth/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"OB" = (
-/obj/structure/table/optable,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"Pi" = (
-/obj/structure/stone_tile/block/cracked{
- dir = 1
- },
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"Qv" = (
-/obj/structure/sink/puddle,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"QT" = (
-/obj/structure/fence/corner{
- dir = 5
- },
-/turf/open/floor/plating/ashplanet/ash,
-/area/overmap_encounter/planetoid/lava/explored)
-"QW" = (
-/obj/structure/closet/crate/medical,
-/obj/item/storage/firstaid/regular,
-/obj/item/reagent_containers/blood/random,
-/obj/item/reagent_containers/blood/lizard,
-/obj/item/reagent_containers/blood/lizard,
-/obj/item/stack/sheet/cotton/cloth/ten,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"Sa" = (
-/obj/structure/stone_tile/slab/cracked{
- dir = 4
- },
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"SJ" = (
-/obj/effect/mob_spawn/human/corpse{
- mob_species = /datum/species/lizard/ashwalker
- },
-/obj/structure/stone_tile/block{
- dir = 8
- },
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"SO" = (
-/obj/structure/closet/crate,
-/obj/item/flashlight/lantern,
-/obj/item/flashlight/lantern,
-/obj/item/flashlight/lantern,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"Td" = (
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"Ty" = (
-/obj/structure/stone_tile/slab/cracked,
-/mob/living/simple_animal/hostile/nanotrasen/ranged,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"TX" = (
-/obj/structure/stone_tile{
- dir = 8
- },
-/obj/structure/stone_tile/block{
- dir = 1
- },
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"Ua" = (
-/obj/structure/stone_tile/surrounding_tile{
- dir = 1
- },
-/turf/open/lava/smooth/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"Us" = (
-/obj/structure/stone_tile/slab,
-/obj/structure/table/wood,
-/obj/item/spear/bonespear,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"Ux" = (
-/turf/open/floor/wood{
- icon_state = "wood-broken6"
- },
-/area/overmap_encounter/planetoid/lava/explored)
-"Uy" = (
-/obj/structure/stone_tile/block{
- dir = 8
- },
-/obj/structure/mineral_door/sandstone,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"UB" = (
-/obj/structure/stone_tile{
- dir = 1
- },
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"UF" = (
-/obj/structure/table/wood,
-/obj/item/spear/bonespear,
-/turf/open/floor/wood,
-/area/overmap_encounter/planetoid/lava/explored)
-"Vb" = (
-/obj/structure/stone_tile/block{
- dir = 4
- },
-/obj/item/clothing/head/welding,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"VT" = (
-/obj/structure/stone_tile/block{
- dir = 4
- },
-/obj/structure/stone_tile{
- dir = 4
- },
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"WJ" = (
-/obj/structure/table/wood,
-/obj/item/melee/transforming/energy/sword/saber/red,
-/turf/open/floor/wood,
-/area/overmap_encounter/planetoid/lava/explored)
-"WM" = (
-/obj/item/storage/firstaid/tactical,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"Xe" = (
-/obj/machinery/hydroponics/soil,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"Xw" = (
-/obj/structure/mineral_door/sandstone,
-/turf/open/floor/wood,
-/area/overmap_encounter/planetoid/lava/explored)
-"Yg" = (
-/obj/structure/stone_tile/slab/cracked{
- dir = 5
- },
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"Yh" = (
-/obj/structure/stone_tile/slab/cracked,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"YC" = (
-/obj/structure/table/wood,
-/obj/item/storage/firstaid/ancient,
-/turf/open/floor/wood,
-/area/overmap_encounter/planetoid/lava/explored)
-"YI" = (
-/obj/structure/table/wood,
-/obj/item/stack/sheet/mineral/wood/fifty,
-/turf/open/floor/wood,
-/area/overmap_encounter/planetoid/lava/explored)
-"YT" = (
-/obj/structure/stone_tile/block/cracked,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"Zc" = (
-/obj/structure/stone_tile/block{
- dir = 1
- },
-/obj/structure/stone_tile/block,
-/obj/structure/chair/wood/wings,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"Zj" = (
-/obj/machinery/iv_drip,
-/obj/item/reagent_containers/food/drinks/waterbottle/large,
-/turf/open/floor/wood,
-/area/overmap_encounter/planetoid/lava/explored)
-"ZL" = (
-/obj/structure/stone_tile/block{
- dir = 8
- },
-/obj/effect/gibspawner/human,
-/turf/open/lava/smooth/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"ZX" = (
-/obj/structure/table/wood,
-/obj/item/storage/box/rxglasses,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-
-(1,1,1) = {"
-Td
-Td
-Td
-Td
-Td
-Td
-Td
-Td
-Td
-Td
-Td
-Td
-Td
-Td
-Td
-dD
-uK
-dD
-uK
-Td
-dD
-uK
-dD
-Td
-Td
-Td
-Td
-gl
-Td
-Td
-Td
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-"}
-(2,1,1) = {"
-Td
-An
-lx
-lx
-lx
-lx
-lx
-lx
-dD
-uK
-Td
-dD
-Td
-Td
-uK
-dD
-pT
-wV
-CP
-Td
-wV
-ie
-dD
-uK
-Td
-Td
-Td
-Td
-CU
-Td
-Td
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-Td
-Td
-Td
-Td
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-"}
-(3,1,1) = {"
-Td
-ad
-px
-Np
-CM
-LS
-CM
-sM
-Td
-iw
-iw
-uK
-uK
-Td
-dD
-Td
-Td
-iw
-iw
-iw
-iw
-iw
-iw
-dD
-Td
-Td
-Td
-gl
-Td
-Jv
-Td
-Td
-Td
-Td
-Td
-Td
-Td
-Td
-Gr
-gl
-ee
-Td
-Td
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-"}
-(4,1,1) = {"
-Td
-ad
-CM
-BF
-ke
-ke
-ke
-CM
-oO
-iw
-iw
-iw
-dD
-Td
-Td
-Td
-iw
-Td
-Td
-iw
-JL
-JV
-wV
-dD
-Td
-Td
-Td
-gl
-CU
-Jv
-Td
-Td
-Td
-uK
-dD
-uK
-Td
-uK
-dD
-YT
-CU
-Jv
-Td
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-"}
-(5,1,1) = {"
-Td
-ad
-CM
-ke
-ke
-BF
-ke
-Bv
-dD
-iw
-iw
-iw
-Td
-Td
-dD
-Td
-wV
-tR
-Td
-Td
-JM
-wV
-wV
-Td
-Td
-Td
-Td
-gl
-CU
-Td
-Td
-Td
-dD
-dD
-iw
-iw
-Td
-pJ
-dD
-gl
-Yh
-Jv
-Td
-Gr
-Td
-aA
-aA
-aA
-aA
-aA
-"}
-(6,1,1) = {"
-Td
-ad
-Np
-AG
-sM
-CM
-sM
-zJ
-dD
-eq
-iw
-wt
-uK
-Td
-uK
-iw
-iw
-At
-iw
-Td
-iw
-iw
-iw
-dD
-Td
-Td
-Td
-gl
-CU
-Jv
-Td
-Td
-Td
-Td
-iw
-HL
-iw
-Td
-uK
-YT
-CU
-Pi
-Td
-Td
-Td
-Td
-Td
-dD
-dD
-Td
-"}
-(7,1,1) = {"
-Td
-QT
-lx
-lx
-Cr
-lx
-lx
-lx
-uK
-dD
-iw
-uK
-dD
-Td
-dD
-hk
-rp
-Ku
-iw
-Td
-wV
-Ku
-FS
-uK
-Td
-Td
-Td
-gl
-CU
-Jv
-Td
-Td
-dD
-iw
-Td
-Td
-Td
-Td
-dD
-gl
-cR
-Jv
-Td
-dD
-dD
-dD
-uK
-dD
-uK
-dD
-"}
-(8,1,1) = {"
-Td
-Td
-Td
-Td
-Td
-Td
-Td
-Td
-Td
-Jv
-CU
-gl
-Td
-Td
-dD
-Td
-uK
-dD
-HP
-HP
-dD
-uK
-Td
-dD
-Td
-Td
-Td
-gl
-CU
-Jv
-Td
-Td
-uK
-UF
-iw
-iw
-cv
-iw
-Xw
-Td
-ee
-Jv
-gM
-uK
-Td
-uK
-Td
-uK
-Td
-dD
-"}
-(9,1,1) = {"
-Td
-Td
-Td
-cA
-cA
-cA
-cA
-Fk
-Fk
-Fk
-CU
-Fk
-Fk
-Fk
-Fk
-Fk
-Fk
-VT
-CU
-CU
-vm
-Fk
-Fk
-Fk
-Fk
-Fk
-Fk
-hd
-CU
-Jv
-Td
-Td
-dD
-il
-iw
-Td
-iw
-HL
-uK
-gl
-CU
-UB
-Fk
-Fk
-AY
-eZ
-AI
-ej
-Td
-uK
-"}
-(10,1,1) = {"
-Td
-Td
-CU
-CU
-CU
-CU
-CU
-CU
-CU
-CU
-CU
-CU
-CU
-CU
-lO
-Jv
-CU
-lO
-Jv
-CU
-lO
-Jv
-lO
-Jv
-lO
-Jv
-lO
-Jv
-CU
-Jv
-Td
-Td
-dD
-dD
-iw
-iw
-iw
-iw
-dD
-gl
-ee
-CU
-CU
-Ty
-rJ
-IO
-jl
-NE
-WM
-Td
-"}
-(11,1,1) = {"
-Td
-CU
-CU
-CU
-CU
-CU
-CU
-CU
-CU
-CU
-CU
-CU
-CU
-CU
-lO
-Jv
-CU
-lO
-Jv
-CU
-lO
-Jv
-lO
-Jv
-lO
-Jv
-lO
-Jv
-CU
-Jv
-Td
-Td
-Td
-dD
-iw
-iw
-SO
-dD
-uK
-gl
-Yh
-Dk
-SJ
-ek
-aw
-oY
-ZL
-GD
-Td
-uK
-"}
-(12,1,1) = {"
-Td
-Td
-ek
-ek
-dn
-dn
-dn
-ek
-ek
-ek
-ek
-ek
-ek
-ek
-ek
-ek
-ek
-ek
-TX
-CU
-wz
-ek
-ek
-ek
-ek
-ek
-ek
-ik
-CU
-Jv
-Td
-Td
-Td
-dD
-Td
-uK
-uK
-dD
-Xe
-YT
-qy
-Jv
-Td
-cv
-uK
-Td
-Td
-nh
-dD
-dD
-"}
-(13,1,1) = {"
-aA
-Td
-Td
-Td
-Td
-Td
-Td
-Td
-Td
-Td
-Td
-Td
-Td
-Td
-Td
-Td
-Td
-dD
-vd
-CU
-rk
-dD
-Td
-wV
-wV
-Xw
-dD
-gl
-CU
-Jv
-Td
-Td
-Td
-Td
-Td
-Td
-Td
-Td
-Xe
-gl
-CU
-Jv
-Td
-Td
-Td
-dD
-uK
-uK
-Td
-uK
-"}
-(14,1,1) = {"
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-Td
-uK
-oF
-CT
-Nf
-dD
-iw
-iw
-iw
-Td
-uK
-uH
-CU
-Jv
-Td
-Td
-Td
-Td
-Td
-Td
-Td
-Td
-Xe
-gl
-CU
-kD
-DF
-Xe
-Qv
-Td
-uK
-dD
-cv
-Td
-"}
-(15,1,1) = {"
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-Td
-uK
-oF
-Eh
-Nf
-wV
-Td
-iw
-iw
-iw
-dD
-gl
-CU
-Jv
-Td
-Td
-Td
-Td
-dD
-dD
-uK
-Qv
-Td
-gl
-CU
-Pi
-qw
-Xe
-uK
-dD
-Ux
-dD
-uK
-Td
-"}
-(16,1,1) = {"
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-Td
-Td
-vd
-CU
-Zc
-wV
-iw
-iw
-iw
-iw
-uK
-gl
-CU
-Jv
-Td
-uK
-dD
-wV
-Td
-YI
-uK
-dD
-Td
-YT
-ee
-IF
-Td
-dD
-uK
-iw
-iw
-iw
-uK
-uK
-"}
-(17,1,1) = {"
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-Td
-dD
-oF
-Ez
-Nf
-wV
-iw
-iw
-iw
-iw
-dD
-gl
-CU
-Jv
-Td
-Xw
-JA
-iw
-Td
-Td
-iw
-HP
-Gr
-rx
-CU
-Pi
-Td
-aG
-Yh
-iw
-MX
-iw
-iw
-uK
-"}
-(18,1,1) = {"
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-Td
-uK
-vd
-rm
-ny
-Xw
-iw
-iw
-iw
-Td
-Td
-gl
-CU
-Jv
-Td
-dD
-SO
-nh
-Nt
-Td
-lh
-dD
-Td
-gl
-Yh
-kD
-Td
-dD
-Yg
-Ux
-iw
-JA
-iw
-Ux
-"}
-(19,1,1) = {"
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-Td
-dD
-dD
-zG
-zG
-dD
-iw
-Td
-wt
-dD
-Td
-gl
-xT
-Jv
-Td
-iw
-SO
-iw
-fV
-iw
-iw
-uK
-Td
-gl
-CU
-Pi
-Td
-uK
-ha
-iw
-Td
-HL
-ha
-uK
-"}
-(20,1,1) = {"
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-Td
-Td
-uK
-Td
-dD
-uK
-Td
-dD
-dD
-uK
-Td
-gl
-CU
-Jv
-Td
-dD
-uK
-dD
-uJ
-iw
-dD
-uK
-qw
-gl
-ee
-Jv
-uK
-uK
-iw
-kV
-iw
-iw
-Yh
-uK
-"}
-(21,1,1) = {"
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-Td
-Td
-Td
-Td
-Td
-Td
-Td
-Td
-nh
-Td
-Td
-Td
-Td
-gl
-CU
-Jv
-Td
-Td
-Td
-Td
-dD
-Td
-dD
-Td
-Td
-gl
-cR
-UB
-Xw
-dv
-iw
-iw
-qq
-iw
-iw
-dD
-"}
-(22,1,1) = {"
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-Td
-CU
-Fk
-Fk
-Fk
-Fk
-Fk
-Fk
-Fk
-Fk
-Lj
-Fk
-Fk
-hd
-CU
-UB
-Fk
-Fk
-Fk
-Fk
-Fk
-Fk
-KS
-Fk
-Vb
-hd
-CU
-JR
-Td
-iw
-Td
-Ux
-iw
-ru
-iw
-dD
-"}
-(23,1,1) = {"
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-Td
-gl
-CU
-CU
-CU
-CU
-CU
-ox
-CU
-CU
-CU
-CU
-CU
-CU
-vu
-CU
-CU
-CU
-CU
-CU
-cx
-Yh
-CU
-ee
-CU
-yJ
-vW
-Jv
-uK
-dD
-iw
-zW
-ha
-Td
-WJ
-uK
-"}
-(24,1,1) = {"
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-Td
-gl
-CU
-Td
-ek
-ek
-ek
-ik
-rD
-Dk
-ek
-Eq
-ek
-ik
-CU
-Dk
-ek
-ek
-ek
-ik
-CU
-Dk
-ek
-ek
-ek
-ik
-ee
-Jv
-Td
-uK
-iw
-Sa
-iw
-iw
-NA
-dD
-"}
-(25,1,1) = {"
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-Td
-gl
-CU
-Jv
-dD
-dD
-dD
-ew
-mg
-nr
-dD
-dD
-dD
-gl
-CU
-Jv
-eH
-Jk
-vN
-eH
-CU
-qG
-Jk
-vN
-eH
-gl
-CU
-Pi
-Td
-uK
-iw
-Kd
-wV
-Td
-YC
-dD
-"}
-(26,1,1) = {"
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-Td
-rx
-CU
-Jv
-dD
-Fo
-Fo
-gl
-CU
-Jv
-lc
-Fo
-dD
-gl
-CU
-Jv
-je
-Ii
-Ua
-je
-CU
-je
-Ii
-Ua
-je
-YT
-Yh
-kD
-Td
-uK
-dD
-dD
-dD
-Ux
-uK
-dD
-"}
-(27,1,1) = {"
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-Td
-gl
-CU
-Jv
-dD
-Fo
-CU
-yp
-CU
-Jv
-ss
-Fo
-dD
-gl
-CU
-Jv
-dg
-rH
-kZ
-dg
-CU
-dg
-rH
-kZ
-dg
-gl
-CU
-Jv
-Td
-Td
-Td
-Td
-Td
-Td
-Td
-Td
-"}
-(28,1,1) = {"
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-Td
-gl
-CU
-vU
-kT
-xa
-Fk
-eZ
-AI
-ej
-Fk
-Fk
-kT
-hd
-LL
-UB
-eH
-Jk
-gp
-eH
-CU
-eH
-fU
-uc
-eH
-hd
-CU
-Jv
-Td
-Td
-Td
-Td
-Td
-Td
-Td
-Td
-"}
-(29,1,1) = {"
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-vU
-gl
-CU
-CU
-mg
-CU
-xZ
-IO
-jl
-NE
-CU
-CU
-mg
-CU
-vu
-CU
-CU
-LL
-CU
-CU
-JZ
-CU
-dM
-dM
-CU
-CU
-CU
-Jv
-Td
-dD
-dD
-uK
-dD
-dD
-Td
-dD
-"}
-(30,1,1) = {"
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-Td
-gl
-LL
-Td
-Uy
-ek
-ek
-oY
-ZL
-GD
-ek
-ek
-Uy
-ik
-CU
-Dk
-eH
-Jk
-vN
-eH
-CU
-eH
-fU
-kz
-eH
-ik
-CU
-Jv
-Td
-uK
-ln
-fe
-iw
-iw
-Td
-uK
-"}
-(31,1,1) = {"
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-Td
-gl
-CU
-Jv
-dD
-Us
-CU
-gl
-yD
-Jv
-CU
-xt
-dD
-gl
-CU
-Jv
-zY
-Ii
-Ua
-je
-CU
-je
-Ii
-Ua
-je
-uH
-CU
-UB
-Fk
-dD
-iw
-Td
-Td
-iw
-iw
-uK
-"}
-(32,1,1) = {"
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-qw
-gl
-CU
-Jv
-dD
-Us
-Us
-gl
-CU
-Jv
-bm
-Fo
-dD
-vH
-CU
-Jv
-dg
-rH
-kZ
-dg
-CU
-dg
-rH
-kZ
-dg
-gl
-CU
-CU
-CU
-Xw
-Td
-Td
-Td
-iw
-iw
-dD
-"}
-(33,1,1) = {"
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-Td
-gl
-CU
-Jv
-dD
-dD
-dD
-ew
-mg
-nr
-dD
-dD
-dD
-gl
-CU
-Jv
-eH
-Jk
-gp
-eH
-CU
-eH
-Jk
-gp
-eH
-gl
-CU
-Dk
-ek
-uK
-iw
-iw
-iw
-iw
-Td
-uK
-"}
-(34,1,1) = {"
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-Td
-gl
-CU
-Td
-AY
-Fk
-Fk
-hd
-CU
-UB
-Fk
-Fk
-Fk
-hd
-CU
-UB
-Fk
-Fk
-Fk
-hd
-CU
-UB
-Fk
-Fk
-Fk
-hd
-CU
-Jv
-Td
-dD
-dD
-iw
-Td
-dD
-wt
-dD
-"}
-(35,1,1) = {"
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-Td
-gl
-CU
-CU
-CU
-CU
-CU
-CU
-LL
-CU
-LL
-CU
-CU
-CU
-CU
-CU
-CU
-CU
-CU
-CU
-CU
-CU
-CU
-CU
-CU
-CU
-CU
-Jv
-Td
-uK
-uK
-dY
-dD
-dD
-dD
-uK
-"}
-(36,1,1) = {"
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-Td
-CU
-ek
-ek
-ek
-ek
-sc
-ek
-ek
-ek
-ek
-ek
-CE
-Dk
-ek
-ek
-ek
-ek
-ek
-CE
-Dk
-ek
-ek
-ek
-ek
-ik
-CU
-Jv
-Td
-im
-Jd
-CM
-uK
-iw
-wO
-dD
-"}
-(37,1,1) = {"
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-Td
-Td
-Td
-Td
-Td
-Td
-Td
-Td
-Td
-qw
-Td
-Td
-cm
-Jv
-Td
-Td
-qw
-dD
-Td
-cm
-Jv
-Td
-Td
-Td
-Td
-gl
-CU
-Jv
-Td
-im
-CM
-CM
-dD
-iw
-CM
-uK
-"}
-(38,1,1) = {"
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-Td
-Td
-uK
-dD
-uK
-cm
-Jv
-dD
-uK
-dD
-uK
-uK
-ND
-Jv
-dD
-dD
-uK
-Td
-gl
-CU
-Jv
-Td
-oO
-CM
-CM
-lt
-iw
-iw
-uK
-"}
-(39,1,1) = {"
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-Td
-uK
-uK
-uK
-Td
-iw
-Td
-iw
-iw
-uK
-KR
-iw
-Td
-Ku
-ZX
-Ku
-dD
-Td
-gl
-CU
-Jv
-Td
-im
-LG
-CM
-uK
-uK
-rc
-uK
-"}
-(40,1,1) = {"
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-Td
-uK
-dD
-Td
-Td
-Td
-iw
-iw
-iw
-uK
-Td
-Td
-Td
-Td
-Td
-iw
-uK
-Td
-gl
-CU
-Jv
-Td
-im
-CM
-CM
-CM
-dD
-uK
-dD
-"}
-(41,1,1) = {"
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-Td
-Td
-uK
-Td
-iw
-Td
-Td
-Td
-iw
-dD
-iw
-Td
-Td
-Td
-iw
-iw
-dD
-Td
-gl
-CU
-Jv
-Td
-im
-CM
-Jd
-CM
-CM
-CM
-im
-"}
-(42,1,1) = {"
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-Td
-uK
-dD
-wt
-uJ
-uJ
-uJ
-wt
-uK
-OB
-Zj
-Td
-iw
-QW
-uK
-dD
-Td
-gl
-CU
-Jv
-Td
-im
-wi
-CM
-LG
-CM
-LG
-im
-"}
-(43,1,1) = {"
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-Td
-Td
-uK
-uK
-dD
-dD
-uK
-uK
-dD
-uK
-dD
-uK
-dD
-uK
-dD
-Td
-Td
-gl
-Yg
-Jv
-Td
-QT
-lx
-lx
-lx
-lx
-lx
-pZ
-"}
-(44,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
-Td
-Td
-Td
-dD
-uK
-Td
-Td
-uK
-uK
-Td
-uK
-uK
-Td
-uK
-Td
-Td
-gl
-fd
-Jv
-Td
-Td
-Td
-Td
-Td
-Td
-aA
-aA
-"}
-(45,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
-Td
-Td
-Td
-Td
-Td
-Td
-Td
-Td
-Td
-Td
-Td
-uK
-Td
-Td
-Td
-YT
-Td
-YT
-Td
-Td
-Td
-Td
-aA
-aA
-aA
-aA
-"}
-(46,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
-Td
-vd
-Td
-Jv
-Td
-Td
-aA
-aA
-aA
-aA
-aA
-aA
-"}
-(47,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
-Td
-vd
-CU
-rk
-Td
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-"}
-(48,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
-Td
-vd
-CU
-rk
-Td
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-"}
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_biodome_winter.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_biodome_winter.dmm
index 0f7efcf3f2a..15c3d93cb82 100644
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_biodome_winter.dmm
+++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_biodome_winter.dmm
@@ -3,1298 +3,4590 @@
/turf/template_noop,
/area/template_noop)
"ac" = (
-/obj/item/stack/medical/ointment,
-/obj/structure/table,
-/obj/item/stack/medical/bruise_pack,
-/turf/open/floor/plating,
-/area/ruin/powered/snow_biodome)
+/obj/structure/flora/tree/dead,
+/obj/machinery/light/directional/west,
+/turf/open/floor/grass/snow,
+/area/ruin/unpowered/winter_biodome)
"ad" = (
-/obj/structure/table,
-/obj/item/stack/medical/gauze,
-/obj/item/stack/medical/gauze,
-/obj/machinery/light/small/directional/north,
-/turf/open/floor/plating,
-/area/ruin/powered/snow_biodome)
+/obj/structure/rack,
+/obj/item/clothing/shoes/winterboots,
+/obj/item/clothing/suit/hooded/wintercoat/solgov,
+/obj/item/paper/pamphlet/biodomelore,
+/turf/open/floor/pod/dark,
+/area/ruin/unpowered/winter_biodome/entrance)
"ae" = (
-/obj/machinery/power/smes,
-/turf/open/floor/plating,
-/area/ruin/powered/snow_biodome)
+/obj/structure/flora/rock/icy,
+/turf/open/floor/grass/snow,
+/area/ruin/unpowered/winter_biodome)
"af" = (
-/turf/open/floor/plating,
-/area/ruin/powered/snow_biodome)
+/obj/structure/flora/grass/green,
+/turf/open/floor/grass/snow,
+/area/ruin/unpowered/winter_biodome)
"ag" = (
-/obj/structure/reagent_dispensers/beerkeg,
-/obj/machinery/light/small/directional/north,
-/turf/open/floor/plating,
-/area/ruin/powered/snow_biodome)
+/obj/machinery/door/airlock/solgov/glass{
+ dir = 4
+ },
+/obj/structure/cable{
+ 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/wood,
+/area/ruin/unpowered/winter_biodome/living_quarters)
"ah" = (
-/obj/item/reagent_containers/food/drinks/mug,
-/turf/open/floor/plating,
-/area/ruin/powered/snow_biodome)
-"ai" = (
-/obj/machinery/shower{
- pixel_y = 12
+/obj/structure/railing/corner/wood{
+ dir = 8
},
-/turf/open/floor/plasteel/white,
-/area/ruin/powered/snow_biodome)
+/obj/effect/turf_decal/siding/wood,
+/turf/open/floor/grass/snow,
+/area/ruin/unpowered/winter_biodome)
+"ai" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/carpet/blue,
+/area/ruin/unpowered/winter_biodome/cabin)
"aj" = (
-/obj/structure/sink{
- pixel_y = 26
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/powered/snow_biodome)
+/obj/structure/bookcase/random,
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/cabin)
"ak" = (
-/turf/open/floor/plating/asteroid/snow,
-/area/ruin/powered/snow_biodome)
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/grass/snow,
+/area/ruin/unpowered/winter_biodome)
"al" = (
-/obj/effect/decal/cleanable/oil,
-/turf/open/floor/plating,
-/area/ruin/powered/snow_biodome)
+/obj/structure/railing/wood,
+/turf/open/floor/plating/ice,
+/area/ruin/unpowered/winter_biodome)
"am" = (
-/obj/machinery/door/airlock/hatch,
-/turf/open/floor/plating,
-/area/ruin/powered/snow_biodome)
-"an" = (
-/obj/structure/toilet{
- dir = 8
- },
+/obj/effect/turf_decal/corner/opaque/solgovgold/half,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/filingcabinet/chestdrawer,
/turf/open/floor/plasteel/white,
-/area/ruin/powered/snow_biodome)
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"an" = (
+/obj/structure/chair/comfy/orange/directional/east,
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/cabin)
"ao" = (
-/turf/open/floor/plating/ice,
-/area/ruin/powered/snow_biodome)
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 5
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/pod/dark,
+/area/ruin/unpowered/winter_biodome/engineering)
"ap" = (
-/obj/structure/flora/rock/icy,
-/turf/open/floor/plating/asteroid/snow,
-/area/ruin/powered/snow_biodome)
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/cabin)
"aq" = (
-/turf/closed/wall/mineral/wood,
-/area/ruin/powered/snow_biodome)
+/obj/structure/railing/corner/wood,
+/turf/open/floor/plasteel/stairs/wood{
+ dir = 4
+ },
+/area/ruin/unpowered/winter_biodome)
"ar" = (
-/obj/machinery/door/airlock/wood,
-/turf/open/floor/plating,
-/area/ruin/powered/snow_biodome)
+/obj/effect/turf_decal/corner/opaque/solgovgold/diagonal,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/chair/office{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/entrance)
"as" = (
-/obj/structure/fans,
-/turf/closed/wall/mineral/wood,
-/area/ruin/powered/snow_biodome)
+/obj/structure/railing/wood,
+/turf/open/floor/plasteel/stairs/wood{
+ dir = 8
+ },
+/area/ruin/unpowered/winter_biodome)
"at" = (
-/turf/open/floor/wood,
-/area/ruin/powered/snow_biodome)
+/obj/structure/flora/rock/pile/icy,
+/turf/open/floor/grass/snow,
+/area/ruin/unpowered/winter_biodome)
"au" = (
-/obj/structure/bed,
-/obj/item/bedsheet/blue,
-/turf/open/floor/wood,
-/area/ruin/powered/snow_biodome)
+/obj/effect/turf_decal/corner/opaque/solgovgold/three_quarters,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/fluff/paper/stack{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/living_quarters)
"av" = (
-/obj/structure/bookcase/random,
-/turf/open/floor/wood,
-/area/ruin/powered/snow_biodome)
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/wood{
+ initial_gas_mix = "o2=22;n2=82;TEMP=180";
+ name = "bridge"
+ },
+/area/ruin/unpowered/winter_biodome)
"aw" = (
-/obj/structure/table/wood,
-/turf/open/floor/wood,
-/area/ruin/powered/snow_biodome)
+/turf/open/floor/plating/ice,
+/area/ruin/unpowered/winter_biodome)
"ax" = (
-/obj/structure/table/wood,
-/obj/item/reagent_containers/food/snacks/canned/beans,
-/turf/open/floor/wood,
-/area/ruin/powered/snow_biodome)
+/turf/open/floor/grass/snow,
+/area/ruin/unpowered/winter_biodome)
"ay" = (
-/obj/structure/closet/crate/trashcart,
-/obj/item/trash/semki,
-/obj/item/trash/candy,
-/turf/open/floor/plating/asteroid/snow,
-/area/ruin/powered/snow_biodome)
+/obj/machinery/space_heater,
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/cabin)
"az" = (
-/obj/structure/flora/tree/pine,
-/turf/open/floor/plating/asteroid/snow,
-/area/ruin/powered/snow_biodome)
+/obj/effect/turf_decal/corner/opaque/solgovblue/diagonal,
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/entrance)
"aA" = (
-/obj/structure/chair/comfy/orange/directional/east,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/effect/turf_decal/siding/wood,
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/wood,
-/area/ruin/powered/snow_biodome)
+/area/ruin/unpowered/winter_biodome/engineering)
"aB" = (
-/obj/structure/flora/rock/pile/icy,
-/turf/open/floor/plating/asteroid/snow,
-/area/ruin/powered/snow_biodome)
+/obj/structure/table/wood,
+/obj/effect/turf_decal/corner/opaque/solgovgold/diagonal,
+/obj/item/paper_bin/bundlenatural{
+ pixel_y = 7
+ },
+/obj/machinery/light/small/broken/directional/north,
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/entrance)
"aC" = (
-/obj/structure/flora/tree/dead,
-/turf/open/floor/plating/asteroid/snow,
-/area/ruin/powered/snow_biodome)
+/turf/closed/wall/r_wall,
+/area/ruin/unpowered/winter_biodome/engineering)
"aD" = (
-/obj/machinery/door/airlock/wood,
-/turf/open/floor/wood,
-/area/ruin/powered/snow_biodome)
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/sign/solgov_seal{
+ pixel_y = 0;
+ pixel_x = 28
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/pod/light,
+/area/ruin/unpowered/winter_biodome/entrance)
"aE" = (
-/obj/structure/extinguisher_cabinet/directional/north,
-/turf/closed/wall/mineral/wood,
-/area/ruin/powered/snow_biodome)
+/obj/effect/turf_decal/corner/opaque/solgovgold/half,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/blood/tracks{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/living_quarters)
"aF" = (
-/obj/structure/table/wood,
-/obj/item/reagent_containers/food/drinks/mug/coco,
-/turf/open/floor/wood,
-/area/ruin/powered/snow_biodome)
+/obj/effect/turf_decal/corner/opaque/solgovblue/three_quarters{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/blood/gibs/up,
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/living_quarters)
"aG" = (
-/obj/structure/chair/comfy/orange/directional/west,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
/turf/open/floor/wood,
-/area/ruin/powered/snow_biodome)
+/area/ruin/unpowered/winter_biodome/cabin)
"aH" = (
-/mob/living/simple_animal/hostile/skeleton/eskimo,
-/turf/open/floor/wood,
-/area/ruin/powered/snow_biodome)
+/obj/structure/table/wood,
+/obj/effect/turf_decal/corner/opaque/solgovgold/diagonal,
+/obj/item/clipboard,
+/obj/item/pen/solgov,
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/entrance)
"aI" = (
-/obj/structure/flora/bush,
-/turf/open/floor/plating/asteroid/snow,
-/area/ruin/powered/snow_biodome)
+/obj/effect/turf_decal/corner/opaque/solgovgold/diagonal,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/entrance)
"aJ" = (
-/obj/vehicle/ridden/atv,
-/turf/open/floor/plating/asteroid/snow,
-/area/ruin/powered/snow_biodome)
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/open/floor/grass/snow,
+/area/ruin/unpowered/winter_biodome)
"aL" = (
-/obj/structure/displaycase/captain,
-/turf/open/floor/wood,
-/area/ruin/powered/snow_biodome)
+/obj/effect/turf_decal/corner/opaque/solgovgold/half{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/airalarm/directional/east,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/living_quarters)
"aM" = (
-/turf/open/floor/carpet,
-/area/ruin/powered/snow_biodome)
-"aN" = (
-/obj/structure/bed/dogbed,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/wood,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
/turf/open/floor/wood,
-/area/ruin/powered/snow_biodome)
-"aO" = (
-/obj/machinery/door/airlock/glass_large,
-/obj/structure/fans/tiny,
+/area/ruin/unpowered/winter_biodome/sauna)
+"aN" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
/turf/open/floor/pod/dark,
-/area/ruin/powered/snow_biodome)
+/area/ruin/unpowered/winter_biodome/entrance)
+"aO" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/grass/snow,
+/area/ruin/unpowered/winter_biodome)
"aP" = (
-/obj/structure/fans/tiny,
-/turf/open/floor/pod/dark,
-/area/ruin/powered/snow_biodome)
+/obj/structure/flora/grass/green,
+/obj/machinery/light/directional/east,
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 8
+ },
+/turf/open/floor/grass/snow,
+/area/ruin/unpowered/winter_biodome)
"aQ" = (
-/obj/structure/flora/grass/both,
-/turf/open/floor/plating/asteroid/snow,
-/area/ruin/powered/snow_biodome)
+/obj/effect/turf_decal/siding/wood{
+ dir = 10
+ },
+/obj/effect/decal/cleanable/blood/gibs,
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/entrance)
"aR" = (
-/obj/structure/flora/tree/pine/xmas,
-/turf/open/floor/plating/asteroid/snow,
-/area/ruin/powered/snow_biodome)
+/obj/structure/flora/ash/cacti,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
+"bb" = (
+/obj/structure/chair/sofa/blue/directional/west,
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/living_quarters)
"bl" = (
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/ruin/unpowered/winter_biodome)
+"bn" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/grass/snow,
+/area/ruin/unpowered/winter_biodome)
+"bs" = (
+/obj/effect/turf_decal/corner/opaque/solgovblue/three_quarters{
+ dir = 4
+ },
+/obj/structure/filingcabinet/double,
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"bv" = (
+/obj/structure/railing/wood,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/blood/tracks{
+ dir = 4
+ },
/turf/open/floor/wood{
initial_gas_mix = "o2=22;n2=82;TEMP=180";
name = "bridge"
},
-/area/ruin/powered/snow_biodome)
-"bv" = (
-/obj/machinery/light/directional/north,
-/turf/open/floor/plating/ice,
-/area/ruin/powered/snow_biodome)
+/area/ruin/unpowered/winter_biodome)
"bw" = (
-/obj/machinery/light/small/directional/west{
- brightness = 3
- },
-/turf/open/floor/wood,
-/area/ruin/powered/snow_biodome)
+/obj/structure/flora/bush,
+/turf/open/floor/grass/snow,
+/area/ruin/unpowered/winter_biodome)
"bx" = (
-/obj/machinery/light/directional/east,
-/turf/open/floor/wood,
-/area/ruin/powered/snow_biodome)
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/open/floor/grass/snow,
+/area/ruin/unpowered/winter_biodome)
"by" = (
-/obj/machinery/light/directional/west,
-/turf/open/floor/plating/asteroid/snow,
-/area/ruin/powered/snow_biodome)
+/turf/open/floor/plating/grass/lava/purple,
+/area/overmap_encounter/planetoid/lava/explored)
"bz" = (
-/obj/machinery/light/directional/south,
-/turf/open/floor/wood,
-/area/ruin/powered/snow_biodome)
+/obj/machinery/atmospherics/components/unary/tank/air,
+/turf/open/floor/plating,
+/area/ruin/unpowered/winter_biodome/engineering)
+"bA" = (
+/obj/item/pen,
+/obj/item/paper_bin,
+/obj/structure/table/wood,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 1
+ },
+/obj/item/pen/solgov,
+/obj/effect/turf_decal/corner/opaque/solgovgold/diagonal,
+/obj/machinery/airalarm/directional/east,
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/engineering)
"bB" = (
-/obj/machinery/light/directional/east,
-/turf/open/floor/plating/asteroid/snow,
-/area/ruin/powered/snow_biodome)
+/obj/effect/turf_decal/siding/wood,
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp/green{
+ pixel_y = 10;
+ pixel_x = 8
+ },
+/obj/item/desk_flag/solgov{
+ pixel_x = -6
+ },
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/living_quarters)
"bD" = (
-/obj/machinery/light/directional/north,
-/turf/open/floor/plating/asteroid/snow,
-/area/ruin/powered/snow_biodome)
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile/shuttle,
+/turf/open/floor/plating,
+/area/ruin/unpowered/winter_biodome/engineering)
"bM" = (
-/obj/machinery/light/directional/south,
-/turf/open/floor/plating/asteroid/snow,
-/area/ruin/powered/snow_biodome)
-"bN" = (
-/obj/machinery/light/directional/south,
-/turf/open/floor/plating/ice,
-/area/ruin/powered/snow_biodome)
-"dS" = (
-/obj/machinery/light/small/directional/south,
-/turf/open/floor/pod/dark,
-/area/ruin/powered/snow_biodome)
-"eb" = (
-/obj/machinery/light/small/directional/east,
-/turf/open/floor/pod/dark,
-/area/ruin/powered/snow_biodome)
-"eg" = (
-/obj/machinery/vending/coffee,
-/turf/open/floor/pod/dark,
-/area/ruin/powered/snow_biodome)
-"gh" = (
-/obj/machinery/light/small/directional/west{
- brightness = 3
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/fluff/paper/stack{
+ dir = 1
},
/turf/open/floor/pod/dark,
-/area/ruin/powered/snow_biodome)
-"gz" = (
-/obj/structure/chair/stool,
-/turf/open/floor/pod/dark,
-/area/ruin/powered/snow_biodome)
-"hA" = (
-/obj/machinery/light/built/directional/north,
-/turf/open/floor/pod/dark{
- initial_gas_mix = "LAVALAND_ATMOS"
+/area/ruin/unpowered/winter_biodome/entrance)
+"bN" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 6
},
-/area/ruin/powered/snow_biodome)
-"qt" = (
-/obj/machinery/door/airlock/silver{
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
dir = 8
},
-/obj/structure/fans/tiny,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
dir = 8
},
-/turf/open/floor/pod/dark,
-/area/ruin/powered/snow_biodome)
-"tl" = (
-/turf/open/floor/pod/light,
-/area/ruin/powered/snow_biodome)
-"xU" = (
-/obj/item/storage/toolbox/mechanical,
-/turf/open/floor/pod/dark,
-/area/ruin/powered/snow_biodome)
-"zT" = (
-/obj/machinery/door/airlock/silver{
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/entrance)
+"bY" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/effect/turf_decal/siding/wood{
dir = 4
},
-/obj/structure/fans/tiny,
-/turf/open/floor/plating,
-/area/ruin/powered/snow_biodome)
-"AM" = (
-/obj/structure/table,
-/obj/item/pen,
-/obj/item/paper,
-/turf/open/floor/pod/dark,
-/area/ruin/powered/snow_biodome)
-"Dd" = (
-/obj/structure/rack,
-/obj/item/clothing/suit/hooded/wintercoat/science,
-/obj/item/clothing/shoes/winterboots,
-/obj/item/clothing/gloves/fingerless,
-/turf/open/floor/pod/dark,
-/area/ruin/powered/snow_biodome)
-"Ef" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/pod/dark,
-/area/ruin/powered/snow_biodome)
-"Ez" = (
-/obj/structure/fans/tiny,
-/obj/machinery/door/airlock/glass_large,
-/turf/open/floor/pod/dark,
-/area/ruin/powered/snow_biodome)
-"HP" = (
-/turf/open/floor/pod/dark,
-/area/ruin/powered/snow_biodome)
-"HR" = (
-/obj/structure/closet/secure_closet/freezer/fridge/open,
-/turf/open/floor/pod/dark,
-/area/ruin/powered/snow_biodome)
-"JZ" = (
-/obj/structure/table,
-/obj/machinery/microwave,
-/turf/open/floor/pod/dark,
-/area/ruin/powered/snow_biodome)
-"KS" = (
-/obj/item/chainsaw,
-/obj/structure/closet,
-/obj/machinery/light/small/directional/east,
-/turf/open/floor/pod/dark,
-/area/ruin/powered/snow_biodome)
-"Mp" = (
-/obj/item/clothing/mask/balaclava,
-/turf/open/floor/pod/dark,
-/area/ruin/powered/snow_biodome)
-"Oj" = (
-/obj/structure/table,
-/turf/open/floor/pod/dark,
-/area/ruin/powered/snow_biodome)
-"PD" = (
-/obj/machinery/door/airlock/hatch{
+/obj/effect/decal/cleanable/blood/splatter,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
dir = 4
},
-/obj/structure/fans/tiny,
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/entrance)
+"cb" = (
+/obj/effect/turf_decal/siding/wood,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/airalarm/directional/west,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/fluff/paper/stack,
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"cj" = (
+/obj/structure/chair/pew/left{
+ dir = 8
+ },
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/sauna)
+"cG" = (
+/obj/effect/turf_decal/solgov/wood/top,
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"cM" = (
+/obj/machinery/door/airlock/wood,
+/turf/open/floor/pod/dark,
+/area/ruin/unpowered/winter_biodome/cabin)
+"cN" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/fluff/paper/stack{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"cT" = (
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/open/floor/grass/snow,
+/area/ruin/unpowered/winter_biodome)
+"cU" = (
+/obj/effect/turf_decal/corner/opaque/solgovblue/half{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/light/small/broken/directional/west,
+/obj/effect/decal/cleanable/blood/tracks{
+ dir = 9
+ },
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"cV" = (
+/obj/structure/flora/ash/puce,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
+"dd" = (
+/obj/machinery/light/directional/south,
+/obj/structure/fluff/hedge/opaque,
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/cabin)
+"dl" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/turf_decal/corner/opaque/solgovblue/diagonal,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/blood/gibs/core,
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/engineering)
+"dn" = (
+/obj/machinery/light/small/directional/west,
+/obj/structure/closet/emcloset,
+/turf/open/floor/pod/light,
+/area/ruin/unpowered/winter_biodome/entrance)
+"dq" = (
+/obj/machinery/door/airlock/solgov/glass,
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/entrance)
+"dC" = (
+/obj/structure/closet/secure_closet/engineering_welding,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/ruin/unpowered/winter_biodome/engineering)
+"dE" = (
+/obj/effect/turf_decal/corner/opaque/solgovblue/three_quarters{
+ dir = 4
+ },
+/obj/structure/fluff/hedge/opaque,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"dJ" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/open/floor/grass/snow,
+/area/ruin/unpowered/winter_biodome)
+"dM" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/light/small/broken/directional/south,
+/turf/open/floor/plating,
+/area/ruin/unpowered/winter_biodome/engineering)
+"dO" = (
+/obj/structure/railing/wood,
+/turf/open/floor/wood{
+ initial_gas_mix = "o2=22;n2=82;TEMP=180";
+ name = "bridge"
+ },
+/area/ruin/unpowered/winter_biodome)
+"dS" = (
+/obj/structure/fluff/hedge/opaque,
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/cabin)
+"dU" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/blood,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/stairs/wood{
+ dir = 4
+ },
+/area/ruin/unpowered/winter_biodome)
+"eb" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"eg" = (
+/obj/machinery/light/directional/west,
+/turf/open/floor/grass/snow,
+/area/ruin/unpowered/winter_biodome)
+"ek" = (
+/obj/effect/turf_decal/corner/opaque/solgovblue/diagonal,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/gun/ballistic/automatic/pistol/solgov,
+/obj/effect/decal/cleanable/blood/gibs/down,
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"er" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/closet/emcloset,
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"ex" = (
+/obj/machinery/light/small/directional/north,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/sauna)
+"eX" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/turf/open/floor/grass/snow,
+/area/ruin/unpowered/winter_biodome)
+"ff" = (
+/obj/effect/turf_decal/corner/opaque/solgovgold/three_quarters,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 9
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/mob/living/simple_animal/hostile/asteroid/hivelord/legion/tendril,
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"fs" = (
+/obj/structure/sign/solgov_seal{
+ pixel_y = 32
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
+"fE" = (
+/obj/structure/flora/firebush,
+/turf/open/floor/plating/grass/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"fV" = (
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/effect/turf_decal/corner/opaque/solgovblue/diagonal,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/engineering)
+"gh" = (
+/turf/open/floor/plating/moss,
+/area/overmap_encounter/planetoid/lava/explored)
+"gt" = (
+/obj/structure/fluff/hedge/opaque,
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"gx" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/turf/open/floor/grass/snow,
+/area/ruin/unpowered/winter_biodome)
+"gz" = (
+/obj/effect/turf_decal/corner/opaque/solgovblue/half{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 4
+ },
+/obj/structure/fluff/paper/stack,
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"gE" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile/shuttle,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"gP" = (
+/obj/machinery/door/airlock/external{
+ dir = 4;
+ req_one_access = list(1,48)
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/turf/open/floor/pod/light,
+/area/ruin/unpowered/winter_biodome/engineering)
+"gT" = (
+/obj/effect/turf_decal/corner/opaque/solgovblue/half{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/blood/tracks{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"gV" = (
+/obj/machinery/door/airlock/wood,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/sauna)
+"gZ" = (
+/obj/machinery/power/apc/auto_name/directional/west,
+/obj/effect/turf_decal/solgov/wood,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/decal/cleanable/blood/tracks,
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"hw" = (
+/obj/effect/turf_decal/corner/opaque/solgovgold,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/blood/tracks{
+ dir = 6
+ },
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"hA" = (
+/obj/structure/flora/ausbushes/sparsegrass/hell,
+/turf/open/floor/plating/grass/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"hD" = (
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/mob_spawn/human/corpse/solgov{
+ outfit = /datum/outfit/job/solgov/assistant
+ },
+/obj/effect/decal/cleanable/blood/gibs/down,
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/cabin)
+"hE" = (
+/obj/machinery/door/airlock/solgov{
dir = 4
},
/turf/open/floor/pod/dark,
-/area/ruin/powered/snow_biodome)
-"PK" = (
-/obj/structure/table,
-/obj/item/pen,
-/obj/item/paper_bin,
+/area/ruin/unpowered/winter_biodome/entrance)
+"hI" = (
+/obj/effect/turf_decal/corner/opaque/solgovblue{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/blood/tracks,
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"hJ" = (
+/obj/machinery/door/airlock/wood,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
/turf/open/floor/pod/dark,
-/area/ruin/powered/snow_biodome)
-"QI" = (
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/winter_biodome/cabin)
+"iv" = (
+/obj/effect/turf_decal/corner/opaque/solgovgold,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/blood/tracks{
+ dir = 6
+ },
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"iA" = (
+/obj/structure/flora/ash/leaf_shroom,
+/turf/open/floor/plating/moss,
/area/overmap_encounter/planetoid/lava/explored)
-"QK" = (
-/obj/structure/table,
-/obj/item/storage/fancy/cigarettes/cigpack_carp,
-/turf/open/floor/pod/dark,
-/area/ruin/powered/snow_biodome)
-"QN" = (
-/obj/effect/spawner/structure/window,
+"iB" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"iP" = (
+/obj/machinery/door/airlock/solgov/glass,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/entrance)
+"jB" = (
+/obj/machinery/power/terminal{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/plating,
-/area/ruin/powered/snow_biodome)
-"Sj" = (
-/obj/effect/decal/cleanable/oil,
+/area/ruin/unpowered/winter_biodome/engineering)
+"jG" = (
+/obj/structure/sign/solgov_seal{
+ pixel_y = 32
+ },
+/obj/structure/flora/ash,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
+"jH" = (
+/obj/structure/flora/rock,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
+"jQ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/open/floor/grass/snow,
+/area/ruin/unpowered/winter_biodome)
+"kb" = (
+/obj/structure/table/wood,
+/obj/item/reagent_containers/food/snacks/breadslice/plain,
+/obj/item/reagent_containers/food/snacks/grown/cabbage,
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/cabin)
+"kj" = (
+/obj/machinery/door/airlock/external{
+ dir = 4;
+ req_one_access = list(1,48)
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
/turf/open/floor/pod/dark,
-/area/ruin/powered/snow_biodome)
-"Ub" = (
-/obj/structure/filingcabinet,
+/area/ruin/unpowered/winter_biodome/engineering)
+"ks" = (
+/obj/effect/turf_decal/corner/opaque/solgovgold/half{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/structure/fluff/paper/stack{
+ dir = 6
+ },
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"kB" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
+ },
+/obj/structure/sign/solgov_seal{
+ pixel_y = 0;
+ pixel_x = 28
+ },
+/obj/machinery/suit_storage_unit/open,
/turf/open/floor/pod/dark,
-/area/ruin/powered/snow_biodome)
-"UH" = (
+/area/ruin/unpowered/winter_biodome/engineering)
+"kQ" = (
+/obj/effect/turf_decal/corner/opaque/solgovgold/three_quarters{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/closet/crate/secure/plasma,
+/obj/item/stack/sheet/mineral/plasma/five,
/turf/open/floor/plasteel/white,
-/area/ruin/powered/snow_biodome)
-"UM" = (
-/obj/machinery/computer/monitor/secret{
+/area/ruin/unpowered/winter_biodome/engineering)
+"kT" = (
+/obj/structure/chair/comfy/orange/directional/west,
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/cabin)
+"kX" = (
+/obj/effect/turf_decal/corner/opaque/solgovblue{
dir = 1
},
-/turf/open/floor/pod/dark,
-/area/ruin/powered/snow_biodome)
-"Wg" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/mob/living/simple_animal/hostile/asteroid/hivelord/legion/tendril,
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"lq" = (
+/obj/effect/turf_decal/corner/opaque/solgovgold/half{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/light/broken/directional/east,
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"lF" = (
/turf/closed/wall/r_wall,
-/area/ruin/powered/snow_biodome)
-"Zq" = (
-/obj/machinery/light/small/directional/south,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"lT" = (
+/obj/structure/flora/ash/leaf_shroom,
+/turf/open/floor/plating/grass/lava/orange,
+/area/overmap_encounter/planetoid/lava/explored)
+"lX" = (
+/obj/effect/turf_decal/corner/opaque/solgovgold/three_quarters{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/plasteel/white,
-/area/ruin/powered/snow_biodome)
-
-(1,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-Wg
-Wg
-Wg
-Wg
-PD
-Wg
-Wg
-Wg
-Wg
-Wg
-Wg
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(2,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-Wg
-Wg
-Wg
-Wg
-Wg
-Dd
-gh
-HP
-tl
-gh
-HP
-Ub
-Wg
-Wg
-Wg
-Wg
-Wg
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(3,1,1) = {"
-aa
-aa
+/area/ruin/unpowered/winter_biodome/engineering)
+"lZ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
+ },
+/obj/effect/decal/cleanable/blood/tracks,
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"ma" = (
+/obj/structure/table/wood,
+/obj/item/paper/crumpled/bloody/winterbiodome,
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/cabin)
+"mb" = (
+/obj/machinery/door/airlock/solgov,
+/turf/open/floor/pod/dark,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"mq" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
+ },
+/turf/open/floor/pod/light,
+/area/ruin/unpowered/winter_biodome/engineering)
+"mD" = (
+/obj/effect/turf_decal/solgov/wood/center,
+/obj/effect/decal/cleanable/dirt/dust,
+/mob/living/simple_animal/hostile/asteroid/hivelord/legion/tendril,
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"mX" = (
+/obj/structure/flora/tree/dead_pine,
+/turf/open/floor/plating/grass/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"nf" = (
+/obj/effect/turf_decal/corner/opaque/solgovblue/half{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"nj" = (
+/obj/structure/displaycase{
+ start_showpiece_type = /obj/item/gun/ballistic/automatic/powered/gauss/claris;
+ req_access = list(103)
+ },
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/cabin)
+"nv" = (
+/obj/effect/turf_decal/solgov/wood/bottom_center,
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"nZ" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/turf/open/floor/grass/snow,
+/area/ruin/unpowered/winter_biodome)
+"on" = (
+/obj/structure/flora/tree/dead_pine,
+/turf/open/floor/plating/grass/lava/orange,
+/area/overmap_encounter/planetoid/lava/explored)
+"ou" = (
+/obj/machinery/light/directional/east,
+/obj/structure/flora/grass/green,
+/turf/open/floor/grass/snow,
+/area/ruin/unpowered/winter_biodome)
+"oK" = (
+/obj/machinery/light/small/directional/north,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/closet/emcloset,
+/turf/open/floor/pod/dark,
+/area/ruin/unpowered/winter_biodome/engineering)
+"oR" = (
+/obj/effect/turf_decal/corner/opaque/solgovblue/diagonal,
+/obj/structure/closet/secure_closet/freezer,
+/obj/item/reagent_containers/food/snacks/store/bread/plain,
+/obj/item/reagent_containers/food/snacks/store/bread/plain,
+/obj/item/reagent_containers/food/snacks/grown/cabbage,
+/obj/item/reagent_containers/food/snacks/grown/cabbage,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"ph" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/statue/snow/snowlegion,
+/turf/open/floor/grass/snow,
+/area/ruin/unpowered/winter_biodome)
+"pr" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/grass/snow,
+/area/ruin/unpowered/winter_biodome)
+"pu" = (
+/obj/structure/table/wood,
+/obj/item/clipboard,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"pD" = (
+/obj/structure/flora/rock/icy,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/grass/snow,
+/area/ruin/unpowered/winter_biodome)
+"pM" = (
+/obj/structure/chair/comfy/orange/old/alt/directional/north,
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"pQ" = (
+/obj/effect/turf_decal/corner/opaque/solgovgold,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/blood/tracks{
+ dir = 6
+ },
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"pW" = (
+/obj/effect/turf_decal/corner/opaque/solgovgold,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/blood/tracks{
+ dir = 6
+ },
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"qj" = (
+/obj/effect/turf_decal/corner/opaque/solgovblue/diagonal,
+/obj/structure/table/wood,
+/obj/item/kitchen/knife,
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"qr" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/corner/opaque/solgovgold/diagonal,
+/obj/effect/decal/cleanable/dirt/dust,
+/mob/living/simple_animal/hostile/asteroid/hivelord/legion/tendril,
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/engineering)
+"qt" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/pod/light,
+/area/ruin/unpowered/winter_biodome/engineering)
+"qw" = (
+/obj/structure/flora/ausbushes/fullgrass/hell,
+/turf/open/floor/plating/grass/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"qK" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 4
+ },
+/obj/machinery/airalarm/directional/south,
+/turf/open/floor/pod/dark,
+/area/ruin/unpowered/winter_biodome/engineering)
+"qZ" = (
+/obj/effect/turf_decal/corner/opaque/solgovblue/three_quarters{
+ dir = 1
+ },
+/obj/structure/table/wood,
+/obj/machinery/microwave,
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"ri" = (
+/obj/structure/flora/grass/both,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/grass/snow,
+/area/ruin/unpowered/winter_biodome)
+"rk" = (
+/obj/effect/decal/cleanable/blood/splatter,
+/turf/open/floor/pod/dark,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"rm" = (
+/obj/effect/turf_decal/corner/opaque/solgovblue/three_quarters{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/closet/firecloset/wall/directional/north,
+/obj/structure/fluff/paper/stack,
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"rt" = (
+/obj/structure/flora/ausbushes/sparsegrass/hell,
+/turf/open/floor/plating/grass/lava/purple,
+/area/overmap_encounter/planetoid/lava/explored)
+"rw" = (
+/obj/structure/railing/wood,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood{
+ initial_gas_mix = "o2=22;n2=82;TEMP=180";
+ name = "bridge"
+ },
+/area/ruin/unpowered/winter_biodome)
+"rC" = (
+/obj/effect/turf_decal/solgov/wood/bottom_left,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/effect/decal/cleanable/blood/drip,
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"rD" = (
+/obj/effect/turf_decal/corner/opaque/solgovgold/three_quarters,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/engineering)
+"rJ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 9
+ },
+/obj/effect/decal/cleanable/blood/gibs/down,
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel/stairs/wood{
+ dir = 8
+ },
+/area/ruin/unpowered/winter_biodome)
+"rY" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/ruin/unpowered/winter_biodome/engineering)
+"rZ" = (
+/obj/structure/bed,
+/obj/item/bedsheet/blue,
+/turf/open/floor/carpet/blue,
+/area/ruin/unpowered/winter_biodome/cabin)
+"sE" = (
+/obj/effect/turf_decal/corner/opaque/solgovblue{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/blood/tracks{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"sV" = (
+/obj/effect/turf_decal/corner/opaque/solgovblue/diagonal,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/blood/splatter,
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"sX" = (
+/obj/structure/flora/ash/leaf_shroom,
+/turf/open/floor/plating/grass/lava/purple,
+/area/overmap_encounter/planetoid/lava/explored)
+"tg" = (
+/obj/machinery/light/directional/north,
+/obj/structure/flora/grass/brown,
+/turf/open/floor/grass/snow,
+/area/ruin/unpowered/winter_biodome)
+"tl" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/sauna)
+"ts" = (
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/sauna)
+"tC" = (
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 8
+ },
+/turf/open/floor/grass/snow,
+/area/ruin/unpowered/winter_biodome)
+"tO" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/open/floor/grass/snow,
+/area/ruin/unpowered/winter_biodome)
+"up" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/turf/open/floor/grass/snow,
+/area/ruin/unpowered/winter_biodome)
+"uH" = (
+/obj/machinery/door/airlock/solgov,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/turf/open/floor/pod/dark,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"uI" = (
+/obj/machinery/power/smes/engineering,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/ruin/unpowered/winter_biodome/engineering)
+"uR" = (
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/effect/turf_decal/corner/opaque/solgovgold/diagonal,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/table/wood,
+/obj/item/paper/pamphlet/biodomelore,
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/entrance)
+"uX" = (
+/obj/structure/flora/tree/pine,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/grass/snow,
+/area/ruin/unpowered/winter_biodome)
+"uY" = (
+/obj/effect/turf_decal/corner/opaque/solgovgold/three_quarters,
+/obj/structure/closet/crate/bin,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 9
+ },
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"vk" = (
+/obj/structure/table/wood,
+/obj/item/spacecash/bundle/smallrand,
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/cabin)
+"vo" = (
+/obj/machinery/door/airlock/external{
+ dir = 4;
+ req_one_access = list(1,48)
+ },
+/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/wood/end{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/engineering)
+"vr" = (
+/obj/machinery/light/small/directional/west{
+ brightness = 3
+ },
+/turf/open/floor/carpet/blue,
+/area/ruin/unpowered/winter_biodome/cabin)
+"vQ" = (
+/obj/machinery/light/small/directional/north,
+/obj/effect/turf_decal/corner/opaque/solgovblue/diagonal,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/entrance)
+"wt" = (
+/obj/structure/chair/wood{
+ dir = 8
+ },
+/obj/machinery/airalarm/directional/east,
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/cabin)
+"wv" = (
+/obj/structure/flora/ausbushes/genericbush/hell,
+/turf/open/floor/plating/grass/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"wC" = (
+/obj/structure/sauna_oven,
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/sauna)
+"wO" = (
+/turf/open/floor/plating/grass/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"xp" = (
+/obj/effect/turf_decal/corner/opaque/solgovblue/half{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/blood/drip,
+/obj/structure/fluff/paper/stack{
+ dir = 5
+ },
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"xv" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/obj/effect/turf_decal/siding/wood,
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/cabin)
+"xK" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/wood{
+ initial_gas_mix = "o2=22;n2=82;TEMP=180";
+ name = "bridge"
+ },
+/area/ruin/unpowered/winter_biodome)
+"xT" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/turf/open/floor/grass/snow,
+/area/ruin/unpowered/winter_biodome)
+"xU" = (
+/turf/closed/wall/mineral/wood,
+/area/ruin/unpowered/winter_biodome/cabin)
+"yb" = (
+/obj/machinery/light/small/directional/east,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 1
+ },
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"yf" = (
+/obj/structure/table/wood,
+/obj/effect/turf_decal/corner/opaque/solgovgold/diagonal,
+/obj/item/papercutter{
+ pixel_x = 3;
+ pixel_y = 5
+ },
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/entrance)
+"yg" = (
+/turf/closed/wall/mineral/wood,
+/area/ruin/unpowered/winter_biodome/sauna)
+"yn" = (
+/obj/structure/flora/grass/both,
+/turf/open/floor/grass/snow,
+/area/ruin/unpowered/winter_biodome)
+"yY" = (
+/obj/structure/rack,
+/obj/item/clothing/shoes/winterboots,
+/obj/item/clothing/suit/hooded/wintercoat/solgov,
+/turf/open/floor/pod/dark,
+/area/ruin/unpowered/winter_biodome/entrance)
+"zf" = (
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"zg" = (
+/obj/machinery/light/directional/north,
+/turf/open/floor/grass/snow,
+/area/ruin/unpowered/winter_biodome)
+"zm" = (
+/obj/effect/turf_decal/corner/opaque/solgovblue/three_quarters{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"zG" = (
+/obj/structure/table/wood,
+/obj/item/clipboard,
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/cabin)
+"zJ" = (
+/obj/structure/flora/firebush,
+/turf/open/floor/plating/grass/lava/orange,
+/area/overmap_encounter/planetoid/lava/explored)
+"zT" = (
+/obj/structure/flora/grass/brown,
+/turf/open/floor/grass/snow,
+/area/ruin/unpowered/winter_biodome)
+"Ac" = (
+/obj/structure/flora/grass/both,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/grass/snow,
+/area/ruin/unpowered/winter_biodome)
+"Aq" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/blood/gibs/up,
+/mob/living/simple_animal/hostile/asteroid/hivelord/legion/tendril,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/entrance)
+"Ar" = (
+/obj/structure/flora/bush,
+/obj/structure/railing/corner/wood,
+/turf/open/floor/grass/snow,
+/area/ruin/unpowered/winter_biodome)
+"AB" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/entrance)
+"AM" = (
+/obj/structure/flora/ausbushes/fernybush/hell,
+/turf/open/floor/plating/grass/lava/orange,
+/area/overmap_encounter/planetoid/lava/explored)
+"AU" = (
+/obj/structure/table/wood,
+/obj/item/desk_flag/solgov,
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"Bk" = (
+/obj/structure/chair/office,
+/obj/effect/turf_decal/corner/opaque/solgovgold/diagonal,
+/obj/effect/decal/cleanable/blood/splatter,
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/engineering)
+"Bq" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 5
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/open/floor/grass/snow,
+/area/ruin/unpowered/winter_biodome)
+"Bw" = (
+/obj/effect/turf_decal/siding/wood,
+/obj/effect/decal/cleanable/blood/drip,
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"BA" = (
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/ruin/unpowered/winter_biodome/entrance)
+"BK" = (
+/obj/structure/table/wood,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 8
+ },
+/obj/item/paper/pamphlet/biodomelore,
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"BS" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/ruin/unpowered/winter_biodome/engineering)
+"BU" = (
+/obj/structure/railing/corner/wood{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/blood/gibs,
+/turf/open/floor/plasteel/stairs/wood{
+ dir = 8
+ },
+/area/ruin/unpowered/winter_biodome)
+"BV" = (
+/obj/effect/turf_decal/corner/opaque/solgovblue{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
+ },
+/obj/effect/decal/cleanable/blood/tracks{
+ dir = 9
+ },
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"Cj" = (
+/obj/structure/flora/ash/fern,
+/turf/open/floor/plating/grass/lava/purple,
+/area/overmap_encounter/planetoid/lava/explored)
+"CF" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/turf/open/floor/grass/snow,
+/area/ruin/unpowered/winter_biodome)
+"CI" = (
+/obj/structure/railing/corner/wood{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/turf/open/floor/grass/snow,
+/area/ruin/unpowered/winter_biodome)
+"CJ" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/blood/tracks,
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"CP" = (
+/obj/structure/flora/ash/space,
+/turf/open/floor/plating/moss,
+/area/overmap_encounter/planetoid/lava/explored)
+"Dd" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/ruin/unpowered/winter_biodome/engineering)
+"De" = (
+/obj/structure/flora/bush,
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/turf/open/floor/grass/snow,
+/area/ruin/unpowered/winter_biodome)
+"Dt" = (
+/turf/closed/wall/r_wall,
+/area/ruin/unpowered/winter_biodome/entrance)
+"Dw" = (
+/obj/machinery/door/airlock/external,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/turf/open/floor/plating,
+/area/ruin/unpowered/winter_biodome/entrance)
+"DO" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/ruin/unpowered/winter_biodome/engineering)
+"DX" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/blood/gibs/torso,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/entrance)
+"Ef" = (
+/obj/structure/rack,
+/obj/item/towel,
+/obj/item/towel,
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/sauna)
+"Eh" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin/bundlenatural{
+ pixel_y = 7
+ },
+/obj/item/pen/solgov,
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"Ez" = (
+/obj/structure/flora/ausbushes/grassybush/hell,
+/turf/open/floor/plating/grass/lava/orange,
+/area/overmap_encounter/planetoid/lava/explored)
+"EF" = (
+/obj/structure/railing/wood,
+/obj/effect/decal/cleanable/blood/tracks{
+ dir = 4
+ },
+/turf/open/floor/wood{
+ initial_gas_mix = "o2=22;n2=82;TEMP=180";
+ name = "bridge"
+ },
+/area/ruin/unpowered/winter_biodome)
+"EG" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/grass/snow,
+/area/ruin/unpowered/winter_biodome)
+"EN" = (
+/obj/machinery/light/small/broken/directional/east,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 1
+ },
+/turf/open/floor/pod/light,
+/area/ruin/unpowered/winter_biodome/entrance)
+"Fw" = (
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/open/floor/grass/snow,
+/area/ruin/unpowered/winter_biodome)
+"FD" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 5
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/cabin)
+"FL" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
+ },
+/obj/structure/sign/solgov_seal{
+ pixel_y = 0;
+ pixel_x = 28
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/suit_storage_unit/open,
+/turf/open/floor/pod/dark,
+/area/ruin/unpowered/winter_biodome/engineering)
+"FY" = (
+/obj/structure/railing/corner/wood{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/siding/wood,
+/turf/open/floor/grass/snow,
+/area/ruin/unpowered/winter_biodome)
+"Gf" = (
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/closet/firecloset,
+/turf/open/floor/plating,
+/area/ruin/unpowered/winter_biodome/engineering)
+"Gn" = (
+/obj/item/toy/plush/moth/snow{
+ pixel_y = 3
+ },
+/obj/structure/table/wood,
+/obj/item/candle{
+ pixel_x = -10;
+ pixel_y = 10
+ },
+/obj/item/candle{
+ pixel_x = 11;
+ pixel_y = 10
+ },
+/turf/open/floor/grass/snow,
+/area/ruin/unpowered/winter_biodome)
+"Go" = (
+/obj/structure/flora/tree/pine,
+/obj/effect/turf_decal/siding/wood/corner,
+/turf/open/floor/grass/snow,
+/area/ruin/unpowered/winter_biodome)
+"Gq" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 5
+ },
+/obj/structure/sign/solgov_flag{
+ pixel_y = 29
+ },
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/cabin)
+"Gx" = (
+/obj/structure/chair/pew/right{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/sauna)
+"GF" = (
+/turf/open/floor/pod/dark,
+/area/ruin/unpowered/winter_biodome/engineering)
+"GK" = (
+/obj/machinery/light/directional/south,
+/turf/open/floor/plating/ice,
+/area/ruin/unpowered/winter_biodome)
+"GS" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/pod/dark,
+/area/ruin/unpowered/winter_biodome/engineering)
+"Hd" = (
+/obj/effect/turf_decal/corner/opaque/solgovgold/three_quarters,
+/obj/structure/fluff/paper/stack{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"Hh" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/pod/dark,
+/area/ruin/unpowered/winter_biodome/engineering)
+"Hi" = (
+/turf/closed/wall/mineral/wood,
+/area/ruin/unpowered/winter_biodome)
+"Hj" = (
+/obj/machinery/atmospherics/pipe/layer_manifold,
+/turf/open/floor/plating,
+/area/ruin/unpowered/winter_biodome/engineering)
+"Hq" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/effect/decal/cleanable/blood/drip,
+/turf/open/floor/pod/dark,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"HG" = (
+/obj/effect/turf_decal/corner/opaque/solgovblue/three_quarters{
+ dir = 4
+ },
+/obj/structure/fluff/hedge/opaque,
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"HP" = (
+/obj/structure/flora/tree/pine,
+/turf/open/floor/grass/snow,
+/area/ruin/unpowered/winter_biodome)
+"HR" = (
+/obj/machinery/power/port_gen/pacman,
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/ruin/unpowered/winter_biodome/engineering)
+"ID" = (
+/obj/structure/flora/tree/pine/xmas,
+/turf/open/floor/grass/snow,
+/area/ruin/unpowered/winter_biodome)
+"IY" = (
+/obj/structure/rack,
+/obj/item/clothing/shoes/winterboots,
+/obj/item/clothing/suit/hooded/wintercoat/solgov,
+/obj/effect/turf_decal/corner/opaque/solgovblue/diagonal,
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/engineering)
+"Jl" = (
+/obj/machinery/light/small/directional/west{
+ brightness = 3
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/corner/opaque/solgovgold/diagonal,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/blood/gibs/down,
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/engineering)
+"Jm" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/light/directional/west,
+/turf/open/floor/grass/snow,
+/area/ruin/unpowered/winter_biodome)
+"JH" = (
+/obj/effect/turf_decal/corner/opaque/solgovblue/diagonal,
+/obj/structure/table/wood,
+/obj/item/cutting_board,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"JK" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/blood/drip,
+/turf/open/floor/pod/dark,
+/area/ruin/unpowered/winter_biodome/engineering)
+"JZ" = (
+/obj/structure/flora/tree/dead/tall/grey,
+/turf/open/floor/plating/grass/lava/purple,
+/area/overmap_encounter/planetoid/lava/explored)
+"Ke" = (
+/obj/structure/flora/tree/dead,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/grass/snow,
+/area/ruin/unpowered/winter_biodome)
+"Kj" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 5
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/ruin/unpowered/winter_biodome/engineering)
+"Kn" = (
+/obj/effect/turf_decal/corner/opaque/solgovgold,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/blood/gibs/core,
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"Kq" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
+ },
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"KC" = (
+/obj/item/coin/gold,
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/sauna)
+"KI" = (
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 1
+ },
+/turf/open/floor/grass/snow,
+/area/ruin/unpowered/winter_biodome)
+"KS" = (
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/sauna)
+"Lf" = (
+/mob/living/simple_animal/hostile/asteroid/hivelord/legion/tendril,
+/turf/open/floor/grass/snow,
+/area/ruin/unpowered/winter_biodome)
+"Lt" = (
+/obj/effect/turf_decal/solgov/wood/bottom_right,
+/obj/structure/chair/office,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"LM" = (
+/obj/machinery/door/airlock/solgov/glass{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/siding/wood/end{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/engineering)
+"Mf" = (
+/obj/structure/railing/corner/wood,
+/obj/effect/turf_decal/siding/wood,
+/turf/open/floor/grass/snow,
+/area/ruin/unpowered/winter_biodome)
+"Ml" = (
+/obj/effect/turf_decal/solgov/wood/top_right,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"Mn" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile/shuttle,
+/turf/open/floor/plating,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"Mp" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/door/airlock/solgov/glass{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/engineering)
+"MB" = (
+/obj/effect/turf_decal/corner/opaque/solgovgold/diagonal,
+/obj/structure/closet/emcloset/wall/directional/south,
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/entrance)
+"MJ" = (
+/obj/effect/turf_decal/corner/opaque/solgovblue/half{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/blood/gibs/up,
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"ML" = (
+/obj/machinery/airalarm/directional/west,
+/turf/open/floor/pod/light,
+/area/ruin/unpowered/winter_biodome/entrance)
+"MU" = (
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/grass/snow,
+/area/ruin/unpowered/winter_biodome)
+"Nc" = (
+/obj/effect/turf_decal/solgov/wood/center_right,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/light/broken/directional/east,
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"Nk" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/open/floor/grass/snow,
+/area/ruin/unpowered/winter_biodome)
+"Nl" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/structure/chair/sofa/blue/right/directional/west,
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"Np" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/carpet/blue,
+/area/ruin/unpowered/winter_biodome/cabin)
+"Nr" = (
+/obj/structure/flora/ausbushes/fullgrass/hell,
+/turf/open/floor/plating/grass/lava/purple,
+/area/overmap_encounter/planetoid/lava/explored)
+"NF" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/turf_decal/corner/opaque/solgovblue/diagonal,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/light/small/broken/directional/west,
+/obj/effect/decal/cleanable/blood/drip,
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/engineering)
+"Oj" = (
+/obj/structure/flora/ash/cap_shroom,
+/turf/open/floor/plating/moss,
+/area/overmap_encounter/planetoid/lava/explored)
+"Op" = (
+/obj/structure/chair/comfy/orange/old/alt/directional/south,
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"Os" = (
+/obj/effect/turf_decal/corner/opaque/solgovblue/diagonal,
+/obj/machinery/airalarm/directional/north,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/blood/splatter,
+/obj/machinery/space_heater,
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/entrance)
+"Oz" = (
+/obj/structure/sign/solgov_flag{
+ pixel_y = 29
+ },
+/obj/structure/filingcabinet/chestdrawer,
+/turf/open/floor/pod/dark,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"OB" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/cabin)
+"OL" = (
+/obj/effect/turf_decal/corner/opaque/solgovgold/three_quarters{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/light/small/directional/north,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/engineering)
+"OR" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/structure/table/wood,
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"OS" = (
+/obj/machinery/light/small/directional/south,
+/obj/effect/turf_decal/corner/opaque/solgovgold/diagonal,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/entrance)
+"OU" = (
+/obj/structure/chair/sofa/blue/left/directional/west,
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"Pa" = (
+/obj/effect/turf_decal/corner/opaque/solgovblue/three_quarters{
+ dir = 1
+ },
+/obj/structure/sink/kitchen{
+ pixel_y = 15
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"Po" = (
+/obj/machinery/computer/monitor/solgov{
+ dir = 1
+ },
+/obj/effect/turf_decal/corner/opaque/solgovgold/diagonal,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/engineering)
+"Pr" = (
+/obj/machinery/light/small/broken/directional/south,
+/obj/structure/closet/firecloset,
+/turf/open/floor/pod/dark,
+/area/ruin/unpowered/winter_biodome/engineering)
+"Py" = (
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/cabin)
+"PD" = (
+/obj/structure/flora/ash,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
+"PH" = (
+/obj/structure/flora/tree/dead,
+/turf/open/floor/grass/snow,
+/area/ruin/unpowered/winter_biodome)
+"PK" = (
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/ruin/unpowered/winter_biodome/engineering)
+"PU" = (
+/obj/effect/turf_decal/corner/opaque/solgovblue/half{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"Qa" = (
+/obj/effect/turf_decal/corner/opaque/solgovgold/three_quarters,
+/obj/machinery/vending/coffee,
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"Qc" = (
+/obj/structure/flora/grass/brown,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/grass/snow,
+/area/ruin/unpowered/winter_biodome)
+"Qh" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/effect/turf_decal/siding/wood,
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/engineering)
+"Qk" = (
+/obj/machinery/light/directional/west,
+/obj/structure/flora/grass/green,
+/turf/open/floor/grass/snow,
+/area/ruin/unpowered/winter_biodome)
+"QI" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/pod/dark,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"QJ" = (
+/obj/effect/turf_decal/corner/opaque/solgovblue/half{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/light/small/broken/directional/north,
+/obj/structure/fluff/paper/stack{
+ dir = 6
+ },
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"QK" = (
+/turf/closed/mineral/random/volcanic,
+/area/overmap_encounter/planetoid/lava/explored)
+"QN" = (
+/obj/structure/toilet{
+ dir = 8
+ },
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/sauna)
+"QO" = (
+/obj/structure/curtain/cloth,
+/turf/open/floor/carpet/blue,
+/area/ruin/unpowered/winter_biodome/cabin)
+"QQ" = (
+/obj/structure/sink/kitchen{
+ dir = 4
+ },
+/obj/item/reagent_containers/glass/bucket/wooden{
+ pixel_x = 3;
+ pixel_y = 9
+ },
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/sauna)
+"Ra" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/mob/living/simple_animal/hostile/big_legion,
+/obj/effect/decal/cleanable/blood/gibs/up,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/wood{
+ initial_gas_mix = "o2=22;n2=82;TEMP=180";
+ name = "bridge"
+ },
+/area/ruin/unpowered/winter_biodome)
+"Rh" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/grass/snow,
+/area/ruin/unpowered/winter_biodome)
+"Rs" = (
+/obj/effect/turf_decal/corner/opaque/solgovgold/half,
+/obj/structure/fluff/hedge/opaque,
+/obj/machinery/light/broken/directional/south,
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"Rt" = (
+/obj/effect/turf_decal/corner/opaque/solgovgold/three_quarters,
+/obj/structure/fluff/hedge/opaque,
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"RE" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/wood,
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/cabin)
+"RK" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/wood/corner,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/cabin)
+"RN" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/engineering)
+"RR" = (
+/obj/effect/turf_decal/corner/opaque/solgovblue/diagonal,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/entrance)
+"Sj" = (
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
+"Ss" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/open/floor/grass/snow,
+/area/ruin/unpowered/winter_biodome)
+"ST" = (
+/obj/effect/turf_decal/corner/opaque/solgovblue{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/blood/tracks{
+ dir = 9
+ },
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"SY" = (
+/obj/effect/turf_decal/corner/opaque/solgovgold/three_quarters,
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"Tf" = (
+/turf/open/floor/plating/grass/lava/orange,
+/area/overmap_encounter/planetoid/lava/explored)
+"Tj" = (
+/obj/effect/turf_decal/corner/opaque/solgovgold/diagonal,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/entrance)
+"Tq" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/blood/tracks,
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"TH" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/blood/tracks{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"TQ" = (
+/obj/machinery/door/airlock/wood{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/sauna)
+"Ub" = (
+/turf/open/floor/plating/asteroid/basalt/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"Uo" = (
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 4
+ },
+/turf/open/floor/grass/snow,
+/area/ruin/unpowered/winter_biodome)
+"Up" = (
+/obj/machinery/airalarm/directional/east,
+/obj/structure/closet/firecloset,
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"Uv" = (
+/obj/effect/turf_decal/solgov/wood/center_left,
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"Uz" = (
+/obj/machinery/light/directional/south,
+/turf/open/floor/grass/snow,
+/area/ruin/unpowered/winter_biodome)
+"UH" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/cabin)
+"UJ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/turf/closed/wall/r_wall,
+/area/ruin/unpowered/winter_biodome/engineering)
+"UM" = (
+/obj/machinery/door/airlock/solgov{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/turf/open/floor/pod/dark,
+/area/ruin/unpowered/winter_biodome/entrance)
+"UT" = (
+/obj/effect/turf_decal/corner/opaque/solgovgold,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/blood/tracks{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"UW" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/ruin/unpowered/winter_biodome/engineering)
+"Vg" = (
+/obj/machinery/light/small/directional/east,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"Vk" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/turf/open/floor/pod/dark,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"Vm" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"VG" = (
+/obj/machinery/light/directional/east,
+/turf/open/floor/grass/snow,
+/area/ruin/unpowered/winter_biodome)
+"VK" = (
+/obj/structure/railing/corner/wood,
+/obj/effect/decal/cleanable/blood/splatter,
+/turf/open/floor/plasteel/stairs/wood{
+ dir = 4
+ },
+/area/ruin/unpowered/winter_biodome)
+"VP" = (
+/obj/effect/turf_decal/corner/opaque/solgovblue/diagonal,
+/obj/machinery/light/directional/west,
+/obj/item/ammo_box/magazine/pistol556mm{
+ pixel_x = 7
+ },
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"VY" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/pod/dark,
+/area/ruin/unpowered/winter_biodome/engineering)
+"Wc" = (
+/obj/machinery/door/airlock/external,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/turf/open/floor/pod/light,
+/area/ruin/unpowered/winter_biodome/entrance)
+"Wg" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/grass/snow,
+/area/ruin/unpowered/winter_biodome)
+"Wh" = (
+/obj/machinery/door/airlock/external{
+ dir = 4;
+ req_one_access = list(1,48)
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/pod/dark,
+/area/ruin/unpowered/winter_biodome/engineering)
+"WQ" = (
+/obj/structure/chair/wood{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/cabin)
+"Xq" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/blood/tracks{
+ dir = 9
+ },
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"Xu" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/blood/tracks{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"XO" = (
+/obj/machinery/light/directional/south,
+/obj/structure/table/wood,
+/obj/item/reagent_containers/food/drinks/mug/tea{
+ pixel_y = 3;
+ pixel_x = -4
+ },
+/obj/item/reagent_containers/food/drinks/mug/tea{
+ pixel_x = 10
+ },
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/cabin)
+"XZ" = (
+/obj/machinery/door/window/northleft,
+/obj/structure/curtain,
+/obj/machinery/shower{
+ dir = 1;
+ layer = 3
+ },
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/sauna)
+"Yi" = (
+/obj/effect/turf_decal/corner/opaque/solgovgold/half{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/blood/drip,
+/obj/structure/fluff/paper/stack{
+ dir = 10
+ },
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"Yv" = (
+/turf/open/floor/carpet/blue,
+/area/ruin/unpowered/winter_biodome/cabin)
+"YH" = (
+/obj/structure/flora/ausbushes/fullgrass/hell,
+/turf/open/floor/plating/grass/lava/orange,
+/area/overmap_encounter/planetoid/lava/explored)
+"Zc" = (
+/obj/structure/flora/ash/stem_shroom,
+/turf/open/floor/plating/moss,
+/area/overmap_encounter/planetoid/lava/explored)
+"Zo" = (
+/obj/structure/flora/ash/cap_shroom,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
+"Zq" = (
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/ruin/unpowered/winter_biodome/cabin)
+"Zw" = (
+/obj/effect/turf_decal/corner/opaque/solgovgold/half,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/blood/tracks{
+ dir = 6
+ },
+/obj/structure/fluff/paper/stack{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/winter_biodome/living_quarters)
+"ZA" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/on/layer4,
+/turf/open/floor/plating,
+/area/ruin/unpowered/winter_biodome/engineering)
+
+(1,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(2,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+wO
+wO
+wO
+wO
+hA
+by
+by
+by
+Nr
+by
+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
+aa
+aa
+aa
+aa
+aa
+wO
+wO
+wO
+wv
+wO
+by
+by
+by
+by
+by
+by
+JZ
+by
+by
+Cj
+by
+by
+by
+by
+by
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(4,1,1) = {"
+aa
+aa
+aa
+aa
+wO
+wO
+wO
+hA
+wO
+wO
+wO
+wO
+hA
+wO
+by
+Nr
+by
+by
+by
+by
+by
+by
+by
+by
+by
+rt
+by
+by
+by
+by
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(5,1,1) = {"
+aa
+aa
+wO
+wO
+wO
+qw
+wO
+wO
+fE
+wO
+qw
+wO
+wO
+aC
+aC
+aC
+aC
+aC
+aC
+gP
+aC
+aC
+aC
+aC
+aC
+aC
+by
+sX
+by
+by
+by
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(6,1,1) = {"
+aa
+wO
+wO
+wO
+wO
+qw
+wO
+wO
+wO
+wO
+wO
+wO
+Ub
+aC
+bz
+Hj
+Kj
+aC
+oK
+qt
+Pr
+aC
+kQ
+lX
+Gf
+aC
+by
+by
+rt
+by
+by
+Tf
+AM
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(7,1,1) = {"
+aa
+wO
+wO
+hA
+wO
+wO
+wO
+qw
+wO
+wO
+QK
+Ub
+Ub
+aC
+dC
+UW
+dM
+aC
+VY
+qt
+qK
+aC
+OL
+rD
+uI
+aC
+by
+Nr
+Cj
+by
+by
+by
+Tf
+Tf
+Tf
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(8,1,1) = {"
+aa
+qw
+wO
+wO
+mX
+hA
+wO
+QK
+QK
+QK
+QK
+Ub
+Ub
+aC
+BS
+rY
+ao
+aC
+kB
+mq
+FL
+aC
+GS
+GF
+jB
+aC
+by
+by
+by
+by
+by
+by
+Tf
+Tf
+Tf
+Tf
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(9,1,1) = {"
+aa
+wO
+wO
+wO
+wO
+wO
+wO
+QK
+QK
+QK
+QK
+QK
+ZA
+UJ
+DO
+PK
+kj
+PK
+PK
+vo
+PK
+PK
+Wh
+PK
+HR
+aC
+by
+by
+by
+JZ
+by
+Nr
+Tf
+Ez
+Tf
+Tf
+YH
aa
aa
-Wg
-Wg
-Wg
-ak
+aa
+aa
+aa
+"}
+(10,1,1) = {"
+aa
+wO
+wO
+wO
+wv
+wO
+QK
+QK
+QK
+QK
+QK
+bl
+bl
+PK
+PK
+PK
+JK
+NF
+dl
+Qh
+qr
+Jl
+Hh
+PK
+PK
+PK
+bl
+bl
by
-ak
-Wg
+by
+by
+Tf
+Tf
+Tf
+Tf
+Tf
+Tf
+aa
+aa
+aa
+aa
+aa
+"}
+(11,1,1) = {"
+aa
+wO
+qw
+wO
+QK
+QK
+QK
+QK
+QK
+bl
+bl
+bl
+zT
+ax
+ax
+PK
+IY
+IY
+fV
+aA
+bA
+Bk
+Po
+PK
+ax
+ax
+ax
+bl
+bl
+bl
+by
+Tf
+Tf
+zJ
+Tf
+Tf
+Tf
+Tf
+aa
+aa
+aa
+aa
+"}
+(12,1,1) = {"
+aa
+aa
+wO
+QK
+QK
+QK
+QK
+QK
+bl
+bl
+ax
+ac
+ax
+ax
+HP
+PK
+bD
+bD
+PK
+LM
+PK
+bD
+bD
+PK
+ax
+at
+ax
+Qk
+ax
+bl
+bl
+Tf
+YH
+Tf
+YH
+Tf
+Tf
+Tf
+aa
+aa
+aa
+aa
+"}
+(13,1,1) = {"
+aa
+aa
+aa
+QK
+QK
+QK
+QK
+bl
+bl
+aw
+aw
+ax
+Ar
+nZ
+Uo
+eg
+af
+ax
+PK
+RN
Dd
+ax
+bw
+eg
+ax
+ax
+af
+ax
+ax
+ax
+bl
+bl
+Tf
+Tf
+Tf
+Tf
+Tf
+Tf
+Tf
+aa
+aa
+aa
+"}
+(14,1,1) = {"
+aa
+aa
+aa
+QK
+QK
+QK
+QK
+bl
+aw
+aw
+aw
+aw
+al
+aq
+De
+af
+ax
+ax
+PK
+Mp
+PK
+ax
+ax
+ax
+yn
+ax
+ax
+ax
+HP
+ax
+ax
+bl
+AM
+Tf
+Tf
+on
+Tf
+Ez
+Tf
+aa
+aa
+aa
+"}
+(15,1,1) = {"
+aa
+aa
+QK
+QK
+QK
+QK
+bl
+bl
+tg
+ax
+aw
+aw
+al
+dO
+aw
+ax
+ax
+HP
+ax
+jQ
+Jm
+Ke
+Qc
+cT
+ax
+ax
+ax
+ax
+ax
+ax
+Uz
+bl
+bl
+Tf
+Tf
+Tf
+Tf
+Tf
+Tf
+aa
+aa
+aa
+"}
+(16,1,1) = {"
+aa
+aa
+QK
+QK
+QK
+QK
+bl
+ax
+ax
+ax
+ax
+ae
+al
+rw
+aw
+aw
+aw
+ax
+ax
+up
+ax
+ax
+ax
+pD
+bw
+ax
+yn
+af
+ax
+ax
HP
+ax
+bl
+Tf
+lT
+Tf
+YH
+Tf
+Tf
+aa
+aa
+aa
+"}
+(17,1,1) = {"
+aa
+aa
+QK
+QK
+QK
+QK
+bl
+ax
+ax
+ax
HP
-tl
-PK
-gz
-UM
-Wg
+ax
+ah
+as
+aw
+aw
+aw
+aw
+aw
+xT
+EG
+EG
+EG
+Nk
ak
ak
ak
-Wg
-Wg
-Wg
-QI
-QI
+ak
+Bq
+ax
+ax
+ax
+bl
+fs
+Sj
+Sj
+Tf
+Tf
+zJ
aa
aa
aa
"}
-(4,1,1) = {"
+(18,1,1) = {"
aa
aa
+QK
+QK
+QK
+bl
+bl
+at
+ax
+ax
+ax
+ax
+aP
+CI
+ax
+ax
+aw
+aw
+aw
+aw
+ax
+bw
+Go
+CF
+nZ
+Uo
+PH
+ax
+aO
+ax
+zT
+ax
+bl
+Sj
+Zo
+Sj
+Sj
+Tf
+Tf
+Tf
aa
-Wg
-Wg
-ak
-aC
-ak
-ak
-ak
-Wg
-QN
-QN
-QN
-qt
-QN
-QN
-QN
-Wg
-ak
-ak
-ak
-ak
-ak
-Wg
-Wg
-QI
-QI
+aa
+"}
+(19,1,1) = {"
+aa
+aa
+QK
+QK
+QK
+bl
+ax
+ax
+ax
+xU
+xU
+xU
+xU
+xU
+xU
+zT
+ax
+aw
+aw
+aw
+aw
+ax
+Mf
+dU
+VK
+eX
+ax
+ax
+aO
+ax
+BA
+BA
+BA
+BA
+Sj
+Zo
+Sj
+Tf
+Tf
+Tf
aa
aa
"}
-(5,1,1) = {"
+(20,1,1) = {"
+aa
+QK
+QK
+QK
+QK
+bl
+ax
+HP
+ax
+cM
+vr
+ai
+UH
+dS
+xU
+xU
+zg
+at
+aw
+aw
+aw
+aw
+al
+xK
+bv
+ax
+ax
+ax
+uX
+Uz
+BA
+yY
+ad
+BA
+PD
+jH
+Sj
+Sj
+AM
+Tf
aa
aa
-Wg
-Wg
-ao
-ao
-ak
-aI
-ak
-ak
-by
+"}
+(21,1,1) = {"
+aa
+QK
+QK
+QK
+QK
+bl
+tg
+ax
+ax
+xU
+aj
+aj
+Zq
+OB
+dd
+xU
+ax
+ax
+aw
+aw
+aw
+aw
+al
+av
+bv
+aw
+ax
+ax
+aO
+ax
+BA
+vQ
az
-ak
-aB
-ak
-ak
-ak
-aI
-by
-ak
-ak
-ak
-ak
-ak
-ak
-Wg
-Wg
-QI
-QI
+BA
+Sj
+Sj
+PD
+Sj
+Sj
+Sj
+aa
+aa
+"}
+(22,1,1) = {"
+aa
+QK
+QK
+QK
+QK
+bl
+ax
+ax
+af
+xU
+zG
+an
+an
+RK
+ay
+xU
+ax
+PH
+Lf
+aw
+aw
+aw
+al
+Ra
+EF
+aw
+aw
+bw
+aO
+af
+BA
+Os
+RR
+BA
+Dt
+Dt
+Dt
+Dt
+Zo
+Sj
+aa
+aa
+"}
+(23,1,1) = {"
+aa
+QK
+QK
+QK
+QK
+bl
+ax
+ax
+ax
+xU
+kb
+vk
+ma
+RE
+Yv
+cM
+ax
+ax
+ax
+ax
+Hi
+HP
+al
+av
+bv
+aw
+aw
+ax
+aO
+ax
+dq
+DX
+Aq
+aQ
+Dt
+ML
+dn
+Dt
+Sj
+Sj
aa
-"}
-(6,1,1) = {"
aa
+"}
+(24,1,1) = {"
aa
-Wg
-bv
-ao
-ao
-ao
-ao
-ak
-aI
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-aQ
-ak
-ak
+QK
+QK
+QK
+QK
+bl
+ax
+ax
+PH
+xU
+aj
+nj
+kT
+xv
+Np
+hJ
+aJ
+Ac
ak
-az
ak
ak
-Wg
-QI
-QI
+bn
+FY
+rJ
+BU
+eX
+aw
+aw
+Ss
+Rh
+iP
+AB
+bY
+bN
+Dw
+aD
+EN
+Wc
+Sj
+Sj
+aa
aa
"}
-(7,1,1) = {"
+(25,1,1) = {"
aa
+QK
+QK
+QK
+QK
+bl
+at
+ax
+ax
+xU
+xU
+Gq
+hD
+aG
+WQ
+xU
+Fw
+ax
+ax
+tO
Wg
-Wg
-ap
-ak
-ao
-ao
-ao
-ao
-ak
-ak
-ak
-ak
-ak
-az
-ak
-aC
-ak
-ak
-aI
+bx
+tC
+gx
+gx
+KI
+aw
+aw
+aw
+ae
+BA
+uR
aI
-ak
-ak
-ak
-ak
-bM
-Wg
-Wg
-QI
+OS
+Dt
+Dt
+Dt
+Dt
+Sj
+Sj
+aa
aa
"}
-(8,1,1) = {"
+(26,1,1) = {"
aa
-Wg
-ak
-ak
-ak
-ak
-ak
-ao
-ao
-ao
-ao
-ak
-ak
-ak
-ak
-ak
-ak
-ak
+QK
+QK
+QK
+QK
+bl
+zg
+ax
+ax
+xU
+rZ
+QO
+FD
ap
-aI
-ak
-aQ
-ak
-ak
-ak
-az
-ak
-Wg
-QI
-QI
-"}
-(9,1,1) = {"
+XO
+xU
+ax
+ax
+ax
+pr
+PH
+ax
+ax
+af
+ax
+ax
+ax
+aw
+aw
+aw
+BA
+aB
+ar
+Tj
+MB
+Dt
+cV
+Sj
+aR
+Sj
+aa
aa
-Wg
-Wg
-Wg
-ak
-az
-ak
-ak
-ao
-ao
-ao
-ao
-ao
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-aC
-ak
-ak
-ak
-ak
-ak
-Wg
-hA
-QI
"}
-(10,1,1) = {"
-Wg
-Wg
+(27,1,1) = {"
+aa
+QK
+QK
+QK
+QK
+bl
+ax
af
-Wg
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ao
-ao
-ao
-ao
-ak
-aI
-az
-ak
-ak
-ak
-ak
-ak
-aI
-ak
-ak
-ak
-Wg
-QI
-QI
+ax
+xU
+xU
+rZ
+xU
+Py
+wt
+xU
+ax
+ax
+HP
+pr
+ax
+ax
+ax
+Uz
+yg
+TQ
+yg
+yg
+aw
+GK
+BA
+aH
+yf
+aN
+bM
+Dt
+PD
+Sj
+Sj
+Sj
+aa
+aa
+"}
+(28,1,1) = {"
+aa
+aa
+QK
+QK
+QK
+bl
+ax
+ax
+ax
+MU
+xU
+xU
+xU
+xU
+xU
+xU
+zg
+ax
+ax
+pr
+bw
+ax
+ax
+ax
+yg
+QN
+XZ
+yg
+aw
+aw
+BA
+BA
+BA
+UM
+hE
+Dt
+Dt
+Sj
+Sj
+Sj
+aa
+aa
"}
-(11,1,1) = {"
-Wg
-ac
-af
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-bD
-ao
-ao
-ao
-ao
-ao
-ak
-ak
+(29,1,1) = {"
+aa
+aa
+QK
+QK
+QK
bl
bl
-ak
-aI
-ak
-ak
-ak
-Wg
-Wg
-Wg
-Wg
+zT
+ax
+ax
+ax
+ax
+eg
+ax
+ax
+ax
+ax
+zT
+ax
+pr
+ax
+ax
+HP
+zT
+yg
+yg
+yg
+yg
+yg
+aw
+aw
+aw
+zf
+Vk
+rk
QI
+lF
+jG
+jH
+Sj
+aa
+aa
"}
-(12,1,1) = {"
-Wg
-ad
-af
-ar
-bw
-at
-aD
-at
-aL
-aq
-ak
-az
-ak
-ao
-ao
-ao
-ao
-ao
+(30,1,1) = {"
+aa
+aa
+QK
+QK
+QK
+QK
bl
+ax
+ax
+ax
+ax
+bw
+ax
+ae
+ax
+ID
+ax
+ax
+ax
+pr
+ax
+ax
+yg
+yg
+yg
+QQ
+KS
+Ef
+yg
+ax
+aw
+aw
+zf
+PU
+Xu
+am
+lF
+Sj
+Sj
+Sj
+aa
+aa
+"}
+(31,1,1) = {"
+aa
+aa
+QK
+QK
+QK
+QK
bl
-ak
-ak
-ak
-az
-bM
-Wg
-Dd
-Dd
+ax
+ax
+HP
+af
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+HP
+dJ
+ri
Wg
-QI
+aM
+tl
+gV
+ts
+KS
+wC
+yg
+ax
+HP
+aw
+zf
+nf
+TH
+Rs
+lF
+Zo
+Zo
+Sj
+aa
+aa
"}
-(13,1,1) = {"
-Wg
-ae
-af
-aq
-au
-au
-aq
-at
-bz
-aq
-ak
-ak
-ak
-ao
-ao
-ao
-ao
-ao
+(32,1,1) = {"
+aa
+aa
+QK
+QK
+QK
+QK
bl
bl
-ao
-ak
-ak
-ak
-aI
-Wg
-Mp
-dS
-Wg
-QI
-"}
-(14,1,1) = {"
-Wg
-af
-al
-aq
-aq
-aq
-aE
-at
+zg
+ax
at
-aq
-ak
-ak
-aC
-ak
-ao
-ak
-ao
-ao
+ax
+ax
+PH
+ax
+ax
+af
+ax
+ax
+ph
+ae
+ax
+yg
+yg
+yg
+ex
+KC
+yg
+yg
+ax
+Uz
+zf
+zf
+xp
+UT
+Rt
+lF
+Sj
+Sj
+Sj
+aa
+aa
+"}
+(33,1,1) = {"
+aa
+aa
+aa
+QK
+QK
+QK
+QK
+bl
+ae
+ax
+ax
+ax
+ax
+ax
+yn
+ax
+ax
+ax
+bw
+pr
+ax
+ax
+ax
+yn
+yg
+cj
+Gx
+yg
+ax
+ax
+ax
+zf
+dE
+kX
+aE
+lF
+lF
+Sj
+Sj
+Zo
+QK
+aa
+"}
+(34,1,1) = {"
+aa
+aa
+aa
+QK
+QK
+QK
+QK
bl
bl
-ao
-ao
-aI
-ak
-ak
-Wg
-tl
-tl
-Wg
-QI
+ax
+ax
+HP
+zT
+ax
+ax
+VG
+ax
+ax
+ax
+pr
+ax
+ax
+ax
+VG
+yg
+yg
+yg
+yg
+ax
+PH
+zf
+zf
+QJ
+Xq
+Zw
+lF
+PD
+aR
+Sj
+Sj
+QK
+aa
"}
-(15,1,1) = {"
-Wg
-ae
-af
-aq
-av
-at
-at
-aH
-aM
-aO
-ap
-ak
-ak
-ak
-ak
-ak
-ak
-ao
+(35,1,1) = {"
+aa
+aa
+aa
+QK
+QK
+QK
+QK
+QK
bl
bl
-ao
-ao
-ak
-ak
-ak
-aO
-tl
-tl
-Ez
-QI
+ax
+VG
+ax
+ax
+HP
+zf
+Mn
+Mn
+Mn
+gE
+Mn
+Mn
+Mn
+zf
+ax
+ax
+ax
+ou
+ax
+zf
+zf
+rm
+ST
+hw
+SY
+lF
+Sj
+Sj
+Sj
+QK
+QK
+aa
"}
-(16,1,1) = {"
-Wg
-ag
-ah
-as
-aw
-aA
-aA
-at
-aM
-aP
-ak
-ak
-aQ
-ak
-ak
-az
-ak
-ak
+(36,1,1) = {"
+aa
+aa
+aa
+QK
+QK
+QK
+QK
+QK
+QK
bl
bl
-ak
-ao
-ao
-ak
-ak
-aP
-tl
-tl
-aP
-QI
-"}
-(17,1,1) = {"
-Wg
-ah
+bl
+ax
+ax
+ax
+zf
+gt
+gt
+Op
+pu
+pM
+gt
+gt
+zf
+Gn
af
-aq
ax
-aw
-aF
-at
-at
-aq
-ak
-aI
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ao
-ao
-ao
-ak
-Wg
-tl
-tl
-Wg
-QI
-"}
-(18,1,1) = {"
-Wg
-Wg
-am
-aq
-av
-at
-aG
-at
-bz
-aq
-aR
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-aC
-ak
-ak
-ak
-ao
-ao
-ao
-Wg
-HP
-dS
-Wg
-QI
+zf
+zf
+zf
+bs
+BV
+pQ
+uY
+lF
+lF
+Sj
+Sj
+cV
+QK
+QK
+aa
"}
-(19,1,1) = {"
-Wg
-ai
-UH
-aq
-av
-bx
-aH
-at
-aN
-aq
-ak
-ak
-ak
-az
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ao
-bN
-Wg
+(37,1,1) = {"
+aa
+aa
+aa
+aa
QK
-AM
-Wg
-QI
+QK
+QK
+QK
+QK
+QK
+QK
+zf
+zf
+zf
+zf
+zf
+Up
+eb
+Vg
+Kq
+yb
+eb
+er
+zf
+zf
+zf
+zf
+zf
+HG
+cU
+hI
+iv
+au
+lF
+lF
+Sj
+jH
+Sj
+Sj
+QK
+QK
+aa
"}
-(20,1,1) = {"
-Wg
-aj
-Zq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-bD
-ak
-ak
-ak
-ak
-aI
-ak
-az
-ak
-ak
-ak
-ak
-az
-ak
-ao
-Wg
-Wg
-Wg
-Wg
-QI
+(38,1,1) = {"
+aa
+aa
+aa
+aa
+QK
+QK
+QK
+QK
+QK
+QK
+QK
+lF
+oR
+VP
+qZ
+zf
+zf
+zf
+zf
+ag
+zf
+zf
+zf
+zf
+Oz
+gz
+MJ
+gT
+sE
+pW
+Yi
+Qa
+lF
+lF
+Sj
+Sj
+Zo
+Sj
+QK
+QK
+QK
+aa
"}
-(21,1,1) = {"
-Wg
-Wg
-an
-Wg
-ay
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-aC
-ak
-ak
-ak
-ak
-ap
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-Wg
-QI
-QI
+(39,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+QK
+QK
+QK
+QK
+QK
+lF
+JH
+ek
+aF
+CJ
+Tq
+lZ
+gZ
+Uv
+rC
+Vm
+cb
+uH
+Hq
+cN
+Kn
+ks
+aL
+ff
+lF
+lF
+lF
+Sj
+Zo
+Sj
+Sj
+Sj
+QK
+QK
+aa
+aa
"}
-(22,1,1) = {"
+(40,1,1) = {"
aa
-Wg
-Wg
-Wg
-ak
-ak
-aI
-ak
-ap
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-aI
-ak
-ak
-aQ
-ak
-ak
-ak
-Wg
-hA
+aa
+aa
+aa
+aa
+aa
+aa
+QK
+QK
+QK
+QK
+lF
+qj
+sV
+zm
+OR
+AU
+BK
+cG
+mD
+nv
+iB
+Bw
+mb
QI
+lq
+Hd
+lF
+lF
+lF
+lF
+Sj
+Sj
+aR
+Sj
+Sj
+Sj
+QK
+QK
+QK
+aa
+aa
"}
-(23,1,1) = {"
+(41,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+QK
+QK
+QK
+lF
+lF
+lF
+Pa
+Nl
+bb
+OU
+Ml
+Nc
+Lt
+Eh
+bB
+lF
+lF
+lF
+lF
+lF
+gh
+gh
+iA
+Sj
+jH
+Sj
+Sj
+PD
+QK
+QK
+QK
+QK
+aa
aa
-Wg
-ak
-ak
-az
-ak
-aJ
-ak
-ak
-ak
-ak
-ak
-ak
-az
-ak
-aQ
-ak
-aC
-ak
-aI
-ak
-az
-aI
-aI
-ak
-ak
-ak
-Wg
-QI
-QI
"}
-(24,1,1) = {"
+(42,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+QK
+QK
+QK
+QK
+lF
+lF
+lF
+lF
+lF
+lF
+lF
+lF
+lF
+lF
+lF
+gh
+Oj
+gh
+gh
+gh
+gh
+gh
+Sj
+Sj
+cV
+QK
+QK
+QK
+QK
+QK
+aa
aa
-Wg
-Wg
-ak
-ak
-aB
-ak
-ak
-aC
-ak
-ak
-ak
-ak
-aI
-ak
-ap
-ak
-ak
-ak
-ak
-ak
-ak
-aI
-aI
-ak
-bM
-Wg
-Wg
-QI
aa
"}
-(25,1,1) = {"
+(43,1,1) = {"
aa
aa
-Wg
-ap
-ak
-ak
-ak
-ak
-ak
-aQ
-ak
-ak
-ak
-aI
-ak
-ak
-ak
-ak
-aQ
-ak
-ak
-aB
-ak
-ak
-aC
-ak
-Wg
-QI
-QI
aa
-"}
-(26,1,1) = {"
aa
aa
-Wg
-Wg
-ak
-ak
-az
-ak
-ak
-ak
-bB
-ak
-ak
-ak
-ak
-ak
-az
-ak
-bB
-ak
-ak
-az
-ak
-ak
-ak
-Wg
-Wg
-QI
aa
aa
-"}
-(27,1,1) = {"
aa
aa
aa
-Wg
-Wg
-ak
-ak
-ak
-ak
-ak
-Wg
-QN
-QN
-QN
-zT
-QN
-QN
-QN
-Wg
-ak
-ak
-ak
-ak
-ak
-Wg
-Wg
-QI
-QI
+QK
+QK
+QK
+QK
+QK
+QK
+QK
+CP
+gh
+Oj
+gh
+gh
+gh
+gh
+gh
+gh
+Zc
+gh
+gh
+Oj
+gh
+Sj
+QK
+QK
+QK
+QK
+QK
+QK
+aa
+aa
aa
aa
"}
-(28,1,1) = {"
+(44,1,1) = {"
aa
aa
aa
aa
-Wg
-Wg
-Wg
-ak
-bB
-ak
-Wg
-eg
-HP
-tl
-tl
-tl
-Sj
-xU
-Wg
-ak
-bB
-ak
-Wg
-Wg
-Wg
-QI
-QI
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+QK
+QK
+QK
+QK
+QK
+QK
+QK
+QK
+gh
+Zc
+gh
+gh
+Oj
+gh
+gh
+gh
+gh
+QK
+QK
+QK
+QK
+QK
+QK
+QK
+QK
+aa
+aa
aa
aa
aa
"}
-(29,1,1) = {"
+(45,1,1) = {"
aa
aa
aa
aa
aa
aa
-Wg
-Wg
-Wg
-Wg
-Wg
-HR
-eb
-gz
-Oj
-JZ
-KS
-Ef
-Wg
-Wg
-Wg
-Wg
-Wg
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+QK
+QK
+QK
+QK
+QK
+QK
+QK
+QK
+QK
+QK
+QK
+QK
+QK
+QK
+QK
+QK
+QK
+QK
+QK
+QK
+QK
+QK
aa
aa
aa
@@ -1303,7 +4595,7 @@ aa
aa
aa
"}
-(30,1,1) = {"
+(46,1,1) = {"
aa
aa
aa
@@ -1314,15 +4606,27 @@ aa
aa
aa
aa
-Wg
-Wg
-Wg
-Wg
-Wg
-Wg
-Wg
-Wg
-Wg
+aa
+aa
+aa
+aa
+aa
+aa
+QK
+QK
+QK
+QK
+QK
+QK
+QK
+QK
+QK
+QK
+QK
+QK
+QK
+QK
+QK
aa
aa
aa
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_buried_shrine.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_buried_shrine.dmm
new file mode 100644
index 00000000000..e5756e7dbdf
--- /dev/null
+++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_buried_shrine.dmm
@@ -0,0 +1,5795 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"at" = (
+/obj/structure/stone_tile/surrounding_tile{
+ dir = 4
+ },
+/obj/structure/stone_tile/center/cracked,
+/obj/structure/stone_tile/surrounding_tile/cracked,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"aD" = (
+/obj/structure/flora/rock/hell,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
+"aP" = (
+/obj/structure/flora/ausbushes/sparsegrass/hell,
+/turf/open/floor/plating/moss,
+/area/overmap_encounter/planetoid/cave/explored)
+"be" = (
+/obj/item/reagent_containers/food/snacks/grown/apple{
+ pixel_x = 12
+ },
+/turf/open/floor/plating/grass/lava,
+/area/ruin/unpowered/buried_shrine)
+"bp" = (
+/obj/structure/stone_tile/surrounding_tile/cracked{
+ dir = 10
+ },
+/obj/structure/stone_tile/center/burnt{
+ fall_on_cross = 1;
+ pixel_y = 6
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"bW" = (
+/obj/structure/flora/ausbushes/sparsegrass/hell,
+/turf/open/floor/plating/grass/lava/orange,
+/area/overmap_encounter/planetoid/lava/explored)
+"bY" = (
+/obj/structure/stone_tile/surrounding/cracked{
+ dir = 8
+ },
+/obj/structure/stone_tile/center/burnt,
+/turf/open/lava/smooth/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"ch" = (
+/obj/structure/destructible/tribal_torch{
+ pixel_y = 13
+ },
+/obj/structure/stone_tile/surrounding,
+/obj/structure/stone_tile/center,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"cn" = (
+/obj/structure/stone_tile/block/cracked{
+ dir = 6
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/ruin/unpowered/buried_shrine)
+"co" = (
+/obj/structure/stone_tile/surrounding/cracked,
+/obj/item/stack/ore/gold,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"cv" = (
+/obj/structure/table/wood,
+/obj/item/reagent_containers/glass/bottle/potion,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"cA" = (
+/obj/structure/stone_tile/surrounding,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"cD" = (
+/obj/structure/stone_tile/slab/cracked{
+ dir = 6
+ },
+/obj/structure/destructible/tribal_torch,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"cN" = (
+/obj/item/stack/sheet/bone,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"df" = (
+/obj/structure/stone_tile/block/cracked,
+/obj/item/stack/sheet/mineral/wood,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"dg" = (
+/obj/structure/stone_tile/slab/cracked{
+ dir = 1
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
+"di" = (
+/obj/structure/stone_tile/surrounding/cracked{
+ dir = 4
+ },
+/obj/structure/stone_tile/center/cracked,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"dn" = (
+/obj/structure/stone_tile/block/cracked{
+ dir = 5
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
+"dA" = (
+/obj/structure/stone_tile/center/burnt{
+ fall_on_cross = 1;
+ pixel_x = 5
+ },
+/turf/open/lava/smooth/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"dB" = (
+/obj/structure/stone_tile/block/cracked,
+/obj/structure/stone_tile/center{
+ pixel_y = -6
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"dD" = (
+/turf/closed/indestructible/riveted/boss,
+/area/overmap_encounter/planetoid/lava/explored)
+"dF" = (
+/turf/open/floor/plating/moss,
+/area/overmap_encounter/planetoid/cave/explored)
+"dG" = (
+/obj/structure/table/wood,
+/obj/structure/stone_tile{
+ dir = 4
+ },
+/obj/item/stack/ore/gold{
+ amount = 10
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"dQ" = (
+/obj/structure/stone_tile/center,
+/obj/structure/stone_tile/surrounding/cracked{
+ dir = 4
+ },
+/obj/structure/destructible/tribal_torch{
+ pixel_y = 13
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"dS" = (
+/obj/structure/stone_tile/center/burnt{
+ fall_on_cross = 1;
+ pixel_y = 10;
+ pixel_x = 6
+ },
+/turf/open/lava/smooth/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"dX" = (
+/obj/structure/stone_tile/center/burnt{
+ fall_on_cross = 1;
+ pixel_y = -8
+ },
+/turf/open/lava/smooth/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"ee" = (
+/turf/open/lava/smooth/lava_land_surface,
+/area/overmap_encounter/planetoid/lava/explored)
+"ef" = (
+/obj/structure/stone_tile/surrounding/cracked,
+/obj/structure/stone_tile/center/cracked,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"em" = (
+/obj/structure/stone_tile/center/burnt{
+ fall_on_cross = 1;
+ pixel_y = 7;
+ pixel_x = -2
+ },
+/turf/open/lava/smooth/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"eI" = (
+/turf/open/floor/plating/grass/lava,
+/area/ruin/unpowered/buried_shrine)
+"eJ" = (
+/obj/structure/stone_tile/cracked,
+/obj/structure/stone_tile{
+ dir = 8
+ },
+/obj/structure/stone_tile{
+ dir = 1
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
+"eZ" = (
+/obj/structure/table/wood,
+/obj/item/clothing/head/hooded/cloakhood/bone,
+/obj/structure/stone_tile/slab,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"ff" = (
+/obj/structure/stone_tile/block{
+ dir = 4
+ },
+/obj/item/stack/ore/gold,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"fh" = (
+/obj/item/clothing/suit/armor/curator,
+/obj/item/clothing/head/fedora/curator{
+ pixel_y = 16
+ },
+/obj/effect/decal/remains/human{
+ pixel_y = 8
+ },
+/obj/effect/decal/cleanable/blood/old,
+/obj/effect/decal/cleanable/ash/large{
+ pixel_y = -8
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"fq" = (
+/obj/structure/destructible/tribal_torch{
+ pixel_y = 13
+ },
+/obj/structure/stone_tile/center,
+/obj/structure/stone_tile/surrounding,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"fx" = (
+/obj/structure/destructible/tribal_torch,
+/obj/structure/stone_tile/slab/cracked,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"fB" = (
+/obj/structure/flora/rock/pile/lava,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
+"fL" = (
+/obj/structure/stone_tile/center/burnt{
+ fall_on_cross = 1;
+ pixel_x = 7;
+ pixel_y = -5
+ },
+/turf/open/lava/smooth/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"fY" = (
+/obj/structure/stone_tile/block{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/ash{
+ pixel_x = 6;
+ pixel_y = 11
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"gt" = (
+/obj/structure/flora/ash/stem_shroom,
+/turf/open/floor/plating/moss,
+/area/overmap_encounter/planetoid/cave/explored)
+"gz" = (
+/obj/structure/stone_tile/block{
+ dir = 8
+ },
+/obj/structure/stone_tile/cracked,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"gE" = (
+/obj/structure/stone_tile/block{
+ dir = 1
+ },
+/obj/structure/stone_tile{
+ dir = 8
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"gH" = (
+/obj/structure/stone_tile/cracked,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"gW" = (
+/obj/structure/stone_tile/center/burnt{
+ fall_on_cross = 1;
+ pixel_x = 10
+ },
+/turf/open/lava/smooth/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"ha" = (
+/obj/structure/stone_tile/slab/cracked{
+ dir = 6
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
+"hn" = (
+/obj/structure/stone_tile/slab/cracked{
+ dir = 1
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"hp" = (
+/obj/structure/flora/ausbushes/ywflowers/hell,
+/turf/open/floor/plating/grass/lava,
+/area/ruin/unpowered/buried_shrine)
+"hz" = (
+/obj/structure/stone_tile/surrounding_tile{
+ dir = 8
+ },
+/obj/structure/stone_tile/center,
+/obj/structure/stone_tile/surrounding_tile{
+ dir = 1
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"hW" = (
+/obj/structure/stone_tile/surrounding_tile/burnt{
+ dir = 8
+ },
+/obj/structure/stone_tile/center/burnt{
+ fall_on_cross = 1
+ },
+/obj/structure/stone_tile/surrounding_tile/cracked{
+ dir = 5
+ },
+/obj/structure/stone_tile/surrounding_tile/cracked,
+/turf/open/lava/smooth/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"ic" = (
+/obj/structure/stone_tile/block{
+ dir = 4
+ },
+/obj/structure/stone_tile/block/cracked{
+ dir = 8
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"ii" = (
+/obj/structure/chair/pew{
+ dir = 1
+ },
+/obj/structure/stone_tile/slab,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"iw" = (
+/obj/structure/stone_tile/block{
+ dir = 4
+ },
+/obj/structure/stone_tile/cracked{
+ dir = 4
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"iB" = (
+/obj/structure/stone_tile/block/burnt{
+ dir = 8
+ },
+/obj/structure/stone_tile/surrounding_tile/cracked{
+ dir = 6
+ },
+/turf/open/lava/smooth/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"iK" = (
+/obj/structure/stone_tile/surrounding_tile{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/blood/old,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"iL" = (
+/obj/structure/stone_tile/surrounding_tile/cracked,
+/obj/structure/stone_tile/center/burnt{
+ fall_on_cross = 1;
+ pixel_y = -8
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"iX" = (
+/obj/structure/flora/rock/pile,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/cave/explored)
+"jo" = (
+/obj/item/reagent_containers/food/snacks/grown/apple{
+ pixel_y = 12;
+ pixel_x = 11
+ },
+/turf/open/floor/plating/grass/lava,
+/area/ruin/unpowered/buried_shrine)
+"jt" = (
+/obj/structure/flora/rock/pile,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
+"jy" = (
+/obj/structure/stone_tile/block/cracked,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"jI" = (
+/obj/structure/flora/ash/tall_shroom,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
+"jJ" = (
+/obj/structure/flora/ash/tall_shroom,
+/turf/open/floor/plating/moss,
+/area/overmap_encounter/planetoid/cave/explored)
+"jM" = (
+/obj/structure/stone_tile{
+ dir = 1
+ },
+/obj/structure/stone_tile/cracked,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"jY" = (
+/obj/structure/stone_tile/center/burnt{
+ fall_on_cross = 1;
+ pixel_y = -3
+ },
+/turf/open/lava/smooth/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"kp" = (
+/obj/structure/table_frame/wood,
+/obj/structure/stone_tile/slab,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"kt" = (
+/obj/structure/stone_tile/block{
+ dir = 4
+ },
+/obj/structure/stone_tile/block/cracked{
+ dir = 8
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
+"kC" = (
+/obj/structure/stone_tile/center/burnt{
+ fall_on_cross = 1;
+ pixel_y = -2;
+ pixel_x = 2
+ },
+/turf/open/lava/smooth/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"kJ" = (
+/obj/structure/stone_tile/surrounding/cracked,
+/obj/structure/stone_tile/center/cracked,
+/obj/structure/destructible/tribal_torch{
+ pixel_y = 13
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"kW" = (
+/obj/structure/stone_tile/block{
+ dir = 8
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"kZ" = (
+/obj/structure/stone_tile/cracked{
+ dir = 4
+ },
+/obj/structure/stone_tile/cracked,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"ld" = (
+/obj/structure/table/wood,
+/obj/item/stack/ore/diamond,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"lo" = (
+/obj/structure/flora/ausbushes/fullgrass/hell,
+/turf/open/floor/plating/moss,
+/area/overmap_encounter/planetoid/cave/explored)
+"lJ" = (
+/obj/structure/stone_tile/block{
+ dir = 1
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"lO" = (
+/obj/structure/flora/ausbushes/sparsegrass/hell,
+/turf/open/floor/plating/moss,
+/area/overmap_encounter/planetoid/lava/explored)
+"me" = (
+/obj/structure/stone_tile/surrounding_tile,
+/obj/structure/stone_tile/surrounding_tile{
+ pixel_x = 17;
+ pixel_y = -17
+ },
+/obj/structure/stone_tile/surrounding_tile{
+ dir = 1;
+ pixel_x = 17;
+ pixel_y = -17
+ },
+/obj/structure/stone_tile/surrounding_tile{
+ dir = 4;
+ pixel_x = 17;
+ pixel_y = -17
+ },
+/obj/structure/stone_tile/surrounding_tile{
+ dir = 8;
+ pixel_x = 17;
+ pixel_y = -17
+ },
+/obj/structure/stone_tile/center{
+ pixel_x = 17;
+ pixel_y = -17
+ },
+/turf/open/lava/smooth/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"mn" = (
+/obj/structure/stone_tile/block,
+/obj/structure/stone_tile/cracked{
+ dir = 1
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"mr" = (
+/obj/structure/stone_tile{
+ dir = 1
+ },
+/obj/structure/stone_tile{
+ dir = 8
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"mv" = (
+/obj/structure/stone_tile/block/burnt{
+ dir = 1
+ },
+/obj/structure/stone_tile/surrounding_tile/burnt{
+ dir = 8
+ },
+/obj/structure/stone_tile/surrounding_tile/burnt,
+/turf/open/lava/smooth/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"mM" = (
+/obj/structure/stone_tile/surrounding,
+/obj/structure/fluff/drake_statue,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"nh" = (
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
+"nk" = (
+/obj/structure/stone_tile{
+ dir = 4
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"nq" = (
+/obj/structure/stone_tile/surrounding,
+/mob/living/simple_animal/hostile/asteroid/hivelord/legion/tendril,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"nz" = (
+/obj/structure/stone_tile/surrounding/cracked{
+ dir = 5
+ },
+/obj/item/stack/ore/gold,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"nP" = (
+/obj/structure/stone_tile/surrounding_tile{
+ dir = 4
+ },
+/obj/structure/stone_tile/center/burnt{
+ fall_on_cross = 1;
+ pixel_y = 6
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"nX" = (
+/obj/structure/stone_tile/surrounding_tile{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/blood/old,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"oi" = (
+/obj/structure/stone_tile{
+ dir = 1
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"ol" = (
+/obj/structure/stone_tile/center/burnt{
+ fall_on_cross = 1;
+ pixel_y = 8;
+ pixel_x = -8
+ },
+/turf/open/lava/smooth/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"om" = (
+/obj/structure/table_frame/wood,
+/obj/item/reagent_containers/food/snacks/grown/ash_flora/fireblossom,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"on" = (
+/obj/structure/stone_tile/surrounding/cracked{
+ dir = 1
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"oH" = (
+/obj/structure/stone_tile/surrounding,
+/obj/structure/stone_tile/center/cracked,
+/obj/structure/destructible/tribal_torch{
+ pixel_y = 14
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"oL" = (
+/obj/structure/stone_tile/center/burnt{
+ fall_on_cross = 1;
+ pixel_x = 9;
+ pixel_y = 8
+ },
+/turf/open/lava/smooth/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"pu" = (
+/mob/living/simple_animal/hostile/asteroid/goliath/beast/ancient,
+/turf/open/floor/plating/moss,
+/area/ruin/unpowered/buried_shrine)
+"pK" = (
+/obj/structure/stone_tile/slab,
+/mob/living/simple_animal/hostile/asteroid/brimdemon,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"qh" = (
+/obj/structure/stone_tile{
+ dir = 4
+ },
+/obj/structure/stone_tile/surrounding/cracked{
+ dir = 1
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"qi" = (
+/obj/structure/stone_tile/surrounding,
+/obj/structure/stone_tile/center/cracked,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"qp" = (
+/obj/structure/stone_tile/surrounding/cracked{
+ dir = 1
+ },
+/obj/structure/stone_tile/surrounding_tile/cracked{
+ dir = 9
+ },
+/obj/structure/stone_tile/surrounding_tile/cracked{
+ dir = 6
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"qt" = (
+/obj/structure/stone_tile/center/cracked,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"qw" = (
+/obj/structure/stone_tile/block/burnt{
+ dir = 1
+ },
+/obj/structure/stone_tile/surrounding_tile/burnt,
+/obj/structure/stone_tile/surrounding_tile/burnt{
+ dir = 8
+ },
+/turf/open/lava/smooth/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"qO" = (
+/obj/structure/stone_tile/block/cracked{
+ dir = 5
+ },
+/obj/structure/chair/wood,
+/mob/living/simple_animal/hostile/asteroid/hivelord/legion/tendril,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"qT" = (
+/obj/structure/stone_tile/center/burnt{
+ fall_on_cross = 1;
+ pixel_x = -7;
+ pixel_y = 3
+ },
+/turf/open/lava/smooth/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"qV" = (
+/obj/structure/destructible/tribal_torch,
+/obj/structure/stone_tile/slab,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"rh" = (
+/obj/structure/stone_tile,
+/obj/structure/stone_tile{
+ dir = 4
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
+"rk" = (
+/obj/structure/stone_tile/slab/cracked,
+/obj/item/pickaxe/rusted{
+ pixel_x = 3
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"rp" = (
+/obj/structure/stone_tile/surrounding,
+/obj/structure/stone_tile/center,
+/obj/item/clothing/suit/hooded/cloak/bone{
+ pixel_y = -4
+ },
+/obj/effect/decal/cleanable/blood/old,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"rt" = (
+/obj/structure/stone_tile/cracked,
+/obj/structure/stone_tile/cracked{
+ dir = 4
+ },
+/obj/structure/stone_tile{
+ dir = 8
+ },
+/obj/structure/stone_tile{
+ dir = 1
+ },
+/obj/item/stack/sheet/bone,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/ruin/unpowered/buried_shrine)
+"rA" = (
+/obj/structure/flora/ash/cacti,
+/turf/open/floor/plating/moss,
+/area/ruin/unpowered/buried_shrine)
+"rD" = (
+/obj/structure/stone_tile/center/burnt{
+ fall_on_cross = 1;
+ pixel_x = 9
+ },
+/turf/open/lava/smooth/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"rH" = (
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/cave/explored)
+"rM" = (
+/obj/structure/stone_tile/center/burnt{
+ fall_on_cross = 1;
+ pixel_y = -6
+ },
+/turf/open/lava/smooth/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"rP" = (
+/obj/structure/flora/ash/leaf_shroom,
+/turf/open/floor/plating/moss,
+/area/overmap_encounter/planetoid/lava/explored)
+"su" = (
+/obj/item/stack/ore/gold,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"sv" = (
+/obj/structure/flora/ash/tall_shroom,
+/turf/open/floor/plating/moss,
+/area/ruin/unpowered/buried_shrine)
+"sy" = (
+/obj/structure/stone_tile/center/burnt{
+ fall_on_cross = 1;
+ pixel_x = 6;
+ pixel_y = -8
+ },
+/turf/open/lava/smooth/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"sB" = (
+/obj/structure/stone_tile/surrounding/cracked{
+ dir = 5
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"sD" = (
+/obj/structure/stone_tile/cracked{
+ dir = 8
+ },
+/obj/structure/stone_tile/block/cracked{
+ dir = 1
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"sJ" = (
+/obj/structure/stone_tile/block/cracked{
+ dir = 6
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"sL" = (
+/obj/structure/stone_tile/center/burnt{
+ fall_on_cross = 1;
+ pixel_y = -1
+ },
+/turf/open/lava/smooth/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"sS" = (
+/obj/structure/stone_tile/slab/cracked{
+ dir = 4
+ },
+/obj/item/stack/sheet/mineral/wood,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"ta" = (
+/obj/structure/stone_tile/block,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"td" = (
+/obj/structure/stone_tile/block/cracked{
+ dir = 5
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"tA" = (
+/obj/structure/stone_tile/surrounding_tile{
+ dir = 8
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
+"tE" = (
+/obj/structure/table/wood,
+/obj/item/reagent_containers/glass/mortar/mushroom{
+ pixel_x = -5
+ },
+/obj/item/pestle{
+ pixel_y = 5
+ },
+/obj/item/reagent_containers/food/snacks/grown/ash_flora/mushroom_stem{
+ pixel_x = -11;
+ pixel_y = 10
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"tL" = (
+/obj/structure/stone_tile/slab,
+/obj/structure/destructible/tribal_torch,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"uf" = (
+/obj/structure/stone_tile/block/cracked{
+ dir = 10
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"uK" = (
+/obj/structure/stone_tile/surrounding/cracked{
+ dir = 8
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"uN" = (
+/obj/structure/stone_tile{
+ dir = 4
+ },
+/obj/item/stack/ore/gold,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"uP" = (
+/obj/structure/stone_tile/surrounding/cracked{
+ dir = 8
+ },
+/obj/structure/stone_tile/center,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"uS" = (
+/obj/structure/table_frame/wood,
+/obj/structure/stone_tile/cracked{
+ dir = 1
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"vg" = (
+/turf/open/lava/smooth/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"vi" = (
+/obj/structure/table/wood,
+/obj/item/reagent_containers/glass/bottle/potion,
+/obj/item/reagent_containers/glass/bottle/potion{
+ pixel_x = -10;
+ pixel_y = 9
+ },
+/obj/item/reagent_containers/glass/bottle/potion{
+ pixel_x = 10;
+ pixel_y = 9
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"vo" = (
+/obj/structure/table/wood,
+/obj/item/gun/ballistic/bow/ashen,
+/obj/structure/stone_tile/slab,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"vJ" = (
+/obj/structure/flora/ash/stem_shroom,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"vO" = (
+/obj/structure/stone_tile/surrounding/cracked{
+ dir = 4
+ },
+/obj/structure/stone_tile/center/burnt,
+/turf/open/lava/smooth/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"vR" = (
+/obj/item/stack/sheet/bone,
+/obj/structure/stone_tile/slab/cracked{
+ dir = 5
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"wj" = (
+/obj/structure/stone_tile/surrounding_tile{
+ dir = 4
+ },
+/turf/open/lava/smooth/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"wl" = (
+/obj/structure/stone_tile/block{
+ dir = 4
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"wt" = (
+/obj/structure/stone_tile/surrounding/cracked{
+ dir = 4
+ },
+/mob/living/simple_animal/hostile/asteroid/brimdemon,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"wy" = (
+/obj/structure/stone_tile{
+ dir = 4
+ },
+/obj/structure/stone_tile/block/cracked{
+ dir = 6
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"wM" = (
+/obj/structure/stone_tile/slab,
+/mob/living/simple_animal/hostile/asteroid/hivelord/legion/tendril,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"wS" = (
+/obj/structure/stone_tile/surrounding/cracked{
+ dir = 4
+ },
+/turf/closed/mineral/random/volcanic,
+/area/ruin/unpowered/buried_shrine)
+"xe" = (
+/obj/structure/stone_tile{
+ dir = 1
+ },
+/obj/structure/stone_tile/cracked{
+ dir = 8
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
+"xs" = (
+/obj/structure/stone_tile/block/burnt{
+ dir = 4
+ },
+/obj/structure/stone_tile/block/cracked{
+ dir = 8
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"xJ" = (
+/obj/structure/stone_tile/block{
+ dir = 4
+ },
+/obj/structure/stone_tile/block/cracked{
+ dir = 10
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"xT" = (
+/obj/structure/stone_tile/block/cracked{
+ dir = 1
+ },
+/obj/structure/chair/wood,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"yb" = (
+/obj/structure/stone_tile/center/burnt{
+ fall_on_cross = 1;
+ pixel_y = 6;
+ pixel_x = -4
+ },
+/turf/open/lava/smooth/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"yt" = (
+/obj/structure/stone_tile/surrounding/cracked{
+ dir = 5
+ },
+/obj/structure/stone_tile/center,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"yv" = (
+/obj/structure/stone_tile/surrounding,
+/obj/item/stack/ore/gold,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"yy" = (
+/obj/structure/stone_tile/block,
+/obj/structure/stone_tile{
+ dir = 1
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"yz" = (
+/obj/structure/stone_tile/slab/cracked{
+ dir = 4
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"yF" = (
+/obj/structure/flora/ausbushes/fullgrass/hell,
+/turf/open/floor/plating/grass/lava,
+/area/ruin/unpowered/buried_shrine)
+"yJ" = (
+/turf/open/floor/plating/grass/lava/orange,
+/area/overmap_encounter/planetoid/lava/explored)
+"yM" = (
+/obj/structure/stone_tile/surrounding/cracked{
+ dir = 4
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"zg" = (
+/obj/structure/stone_tile,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"zB" = (
+/obj/structure/stone_tile/center,
+/obj/structure/stone_tile/surrounding_tile{
+ dir = 8
+ },
+/obj/structure/stone_tile/surrounding_tile/cracked{
+ dir = 6
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"zL" = (
+/obj/structure/flora/rock/lava,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
+"zM" = (
+/obj/structure/stone_tile/cracked{
+ dir = 4
+ },
+/obj/item/stack/ore/gold,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"zN" = (
+/obj/structure/stone_tile/block{
+ dir = 8
+ },
+/obj/structure/stone_tile/block{
+ dir = 4
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"zQ" = (
+/obj/structure/stone_tile/surrounding_tile/burnt{
+ dir = 1
+ },
+/obj/structure/stone_tile/surrounding_tile/burnt,
+/obj/structure/stone_tile/surrounding_tile/burnt{
+ dir = 4
+ },
+/obj/structure/stone_tile/center/burnt,
+/turf/open/lava/smooth/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"Ab" = (
+/obj/structure/stone_tile/surrounding_tile{
+ dir = 1
+ },
+/turf/open/lava/smooth/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"Ad" = (
+/obj/structure/stone_tile/slab,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"Aw" = (
+/obj/structure/stone_tile/cracked{
+ dir = 1
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"Ay" = (
+/obj/structure/flora/ausbushes/fernybush/hell,
+/turf/open/floor/plating/grass/lava/orange,
+/area/overmap_encounter/planetoid/lava/explored)
+"AY" = (
+/obj/structure/stone_tile/block{
+ dir = 1
+ },
+/obj/item/stack/ore/gold,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"Ba" = (
+/obj/structure/stone_tile/block/burnt{
+ dir = 4
+ },
+/obj/structure/stone_tile/surrounding_tile/cracked{
+ dir = 5
+ },
+/turf/open/lava/smooth/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"Bc" = (
+/obj/structure/stone_tile/block/cracked{
+ dir = 1
+ },
+/obj/structure/stone_tile/block/cracked{
+ dir = 10
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"Bm" = (
+/obj/structure/stone_tile/center/burnt{
+ fall_on_cross = 1;
+ pixel_y = 4
+ },
+/turf/open/lava/smooth/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"Bz" = (
+/obj/structure/table_frame/wood,
+/obj/item/stack/sheet/bone,
+/obj/structure/stone_tile/slab,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"BA" = (
+/obj/structure/destructible/tribal_torch{
+ pixel_y = 13
+ },
+/obj/structure/stone_tile/center,
+/obj/structure/stone_tile/surrounding/cracked{
+ dir = 4
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"BF" = (
+/obj/structure/stone_tile/slab/cracked{
+ dir = 6
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"BZ" = (
+/obj/structure/stone_tile/block{
+ dir = 8
+ },
+/obj/structure/stone_tile/cracked{
+ dir = 1
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"Cm" = (
+/obj/structure/stone_tile/surrounding/cracked{
+ dir = 5
+ },
+/obj/structure/stone_tile/center/burnt,
+/turf/open/lava/smooth/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"Cv" = (
+/obj/structure/stone_tile/slab/cracked{
+ dir = 4
+ },
+/obj/item/chair/wood/wings{
+ dir = 8
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"CD" = (
+/obj/structure/stone_tile{
+ dir = 1
+ },
+/obj/structure/stone_tile{
+ dir = 4
+ },
+/obj/structure/stone_tile,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"CE" = (
+/obj/structure/stone_tile/cracked{
+ dir = 8
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"CF" = (
+/obj/structure/chair/pew/left{
+ dir = 1
+ },
+/obj/structure/stone_tile/slab,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"CM" = (
+/obj/structure/stone_tile/center,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"CT" = (
+/obj/structure/table/wood,
+/obj/item/candle,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"CU" = (
+/mob/living/simple_animal/hostile/asteroid/goliath/pup{
+ pixel_x = 0
+ },
+/turf/open/floor/plating/moss,
+/area/ruin/unpowered/buried_shrine)
+"Do" = (
+/obj/structure/flora/ausbushes/hell,
+/turf/open/floor/plating/grass/lava/orange,
+/area/overmap_encounter/planetoid/lava/explored)
+"Dp" = (
+/obj/structure/flora/ash/fireblossom,
+/turf/open/floor/plating/grass/lava/orange,
+/area/overmap_encounter/planetoid/lava/explored)
+"DB" = (
+/obj/structure/flora/ausbushes/fullgrass/hell,
+/turf/open/floor/plating/grass/lava/orange,
+/area/overmap_encounter/planetoid/lava/explored)
+"Ee" = (
+/obj/structure/chair/pew/left,
+/obj/structure/stone_tile/slab,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"Ef" = (
+/obj/structure/flora/ash/fern,
+/turf/open/floor/plating/moss,
+/area/overmap_encounter/planetoid/cave/explored)
+"Eh" = (
+/turf/closed/mineral/random/volcanic,
+/area/overmap_encounter/planetoid/lava/explored)
+"Eu" = (
+/obj/structure/stone_tile/slab/cracked{
+ dir = 5
+ },
+/obj/structure/stone_tile/surrounding_tile/cracked{
+ dir = 6
+ },
+/turf/open/lava/smooth/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"Ez" = (
+/obj/structure/stone_tile/block{
+ dir = 4
+ },
+/obj/structure/stone_tile{
+ dir = 8
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"EE" = (
+/obj/structure/stone_tile/center/burnt,
+/obj/structure/stone_tile/surrounding/burnt,
+/turf/open/lava/smooth/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"Fo" = (
+/obj/structure/stone_tile/cracked{
+ dir = 4
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"Fq" = (
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"Fw" = (
+/obj/structure/stone_tile/slab/cracked{
+ dir = 1
+ },
+/obj/structure/chair/wood/wings,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"FC" = (
+/obj/item/reagent_containers/food/snacks/grown/apple{
+ pixel_y = 16
+ },
+/turf/open/floor/plating/grass/lava,
+/area/ruin/unpowered/buried_shrine)
+"FD" = (
+/obj/structure/stone_tile/center/burnt{
+ fall_on_cross = 1;
+ pixel_x = 1
+ },
+/turf/open/lava/smooth/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"Gm" = (
+/obj/structure/stone_tile{
+ dir = 8
+ },
+/obj/structure/stone_tile{
+ dir = 1
+ },
+/obj/structure/stone_tile/block/cracked{
+ dir = 9
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"Go" = (
+/obj/structure/stone_tile/surrounding_tile/cracked,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"GB" = (
+/obj/structure/stone_tile/block{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/ash{
+ pixel_x = -8
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"GL" = (
+/obj/structure/stone_tile/block{
+ dir = 1
+ },
+/obj/structure/stone_tile/block/cracked,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"GT" = (
+/obj/structure/stone_tile/block/cracked{
+ dir = 8
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"Hg" = (
+/obj/structure/stone_tile/surrounding/cracked{
+ dir = 4
+ },
+/obj/item/stack/ore/gold,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"Hh" = (
+/obj/structure/stone_tile/surrounding_tile,
+/obj/effect/decal/cleanable/blood/old,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"Ht" = (
+/obj/structure/stone_tile/surrounding/cracked,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"Hv" = (
+/obj/structure/flora/tree/dead/hell,
+/turf/open/floor/plating/grass/lava,
+/area/ruin/unpowered/buried_shrine)
+"Hw" = (
+/obj/structure/stone_tile/center/burnt{
+ fall_on_cross = 1;
+ pixel_y = 6
+ },
+/turf/open/lava/smooth/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"HN" = (
+/obj/structure/stone_tile/center/burnt{
+ fall_on_cross = 1;
+ pixel_x = -3
+ },
+/turf/open/lava/smooth/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"Ii" = (
+/obj/structure/stone_tile/cracked{
+ dir = 1
+ },
+/obj/structure/stone_tile{
+ dir = 4
+ },
+/obj/structure/stone_tile,
+/obj/structure/stone_tile/cracked{
+ dir = 8
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/ruin/unpowered/buried_shrine)
+"Iz" = (
+/obj/structure/destructible/tribal_torch{
+ pixel_y = 14
+ },
+/obj/structure/stone_tile/surrounding/cracked,
+/obj/structure/stone_tile/center,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"IL" = (
+/obj/structure/stone_tile/slab/cracked,
+/obj/item/stack/sheet/mineral/wood,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"Ja" = (
+/obj/structure/stone_tile/center/burnt{
+ fall_on_cross = 1;
+ pixel_y = 2;
+ pixel_x = 7
+ },
+/turf/open/lava/smooth/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"Jc" = (
+/obj/structure/stone_tile/block/burnt{
+ dir = 8
+ },
+/obj/structure/stone_tile/block/cracked{
+ dir = 4
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"Jh" = (
+/obj/structure/stone_tile/surrounding/cracked{
+ dir = 9
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"Jk" = (
+/obj/structure/stone_tile/cracked{
+ dir = 8
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
+"Jr" = (
+/obj/structure/stone_tile/cracked{
+ dir = 1
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
+"Jv" = (
+/mob/living/simple_animal/hostile/asteroid/goliath/pup{
+ pixel_x = 0
+ },
+/obj/structure/flora/ausbushes/sparsegrass/hell,
+/turf/open/floor/plating/moss,
+/area/ruin/unpowered/buried_shrine)
+"Jw" = (
+/obj/structure/stone_tile/block,
+/obj/structure/stone_tile/block{
+ dir = 1
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"JE" = (
+/obj/structure/stone_tile/slab/cracked{
+ dir = 1
+ },
+/obj/item/stack/ore/gold,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"JJ" = (
+/obj/structure/stone_tile{
+ dir = 8
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"JL" = (
+/obj/structure/flora/ausbushes/ywflowers/hell,
+/turf/open/floor/plating/grass/lava/orange,
+/area/overmap_encounter/planetoid/lava/explored)
+"Ka" = (
+/obj/structure/stone_tile/surrounding_tile/burnt{
+ dir = 8
+ },
+/obj/structure/stone_tile/surrounding_tile/burnt,
+/obj/structure/stone_tile/surrounding_tile/burnt{
+ dir = 1
+ },
+/obj/structure/stone_tile/surrounding_tile/burnt{
+ dir = 4
+ },
+/obj/structure/stone_tile/center/burnt,
+/turf/open/lava/smooth/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"Kt" = (
+/obj/structure/stone_tile/surrounding_tile/cracked{
+ dir = 8
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"Kz" = (
+/obj/structure/flora/ash/cap_shroom,
+/turf/open/floor/plating/moss,
+/area/overmap_encounter/planetoid/cave/explored)
+"KD" = (
+/obj/structure/stone_tile/cracked,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
+"Lu" = (
+/obj/structure/flora/ash/leaf_shroom,
+/turf/open/floor/plating/moss,
+/area/overmap_encounter/planetoid/cave/explored)
+"Lx" = (
+/obj/structure/stone_tile/center/burnt{
+ fall_on_cross = 1;
+ pixel_y = 1;
+ pixel_x = 4
+ },
+/turf/open/lava/smooth/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"LC" = (
+/obj/structure/stone_tile/block/cracked{
+ dir = 4
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"LJ" = (
+/obj/structure/table/wood,
+/obj/item/reagent_containers/food/snacks/grown/ambrosia/gaia{
+ pixel_y = 6
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"LK" = (
+/turf/open/floor/plating/moss,
+/area/overmap_encounter/planetoid/lava/explored)
+"LL" = (
+/obj/structure/stone_tile/cracked{
+ dir = 4
+ },
+/obj/structure/stone_tile{
+ dir = 1
+ },
+/obj/structure/stone_tile/cracked{
+ dir = 8
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
+"LP" = (
+/obj/structure/table/wood,
+/obj/item/ammo_casing/caseless/arrow/bone,
+/obj/item/ammo_casing/caseless/arrow/bone{
+ pixel_y = -4
+ },
+/obj/item/ammo_casing/caseless/arrow/bone{
+ pixel_y = 4
+ },
+/obj/item/ammo_casing/caseless/arrow/bone{
+ pixel_y = 8
+ },
+/obj/item/ammo_casing/caseless/arrow/bone{
+ pixel_y = 12
+ },
+/obj/structure/stone_tile/slab,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"LW" = (
+/obj/structure/destructible/tribal_torch{
+ pixel_y = 13
+ },
+/obj/structure/stone_tile/surrounding,
+/obj/structure/stone_tile/center/cracked,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"LZ" = (
+/obj/structure/stone_tile/center/burnt{
+ fall_on_cross = 1;
+ pixel_y = 5;
+ pixel_x = 6
+ },
+/turf/open/lava/smooth/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"Mc" = (
+/obj/structure/stone_tile/block,
+/obj/structure/stone_tile/slab,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"Md" = (
+/obj/structure/stone_tile/surrounding_tile/cracked,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
+"Mt" = (
+/obj/structure/flora/ausbushes/genericbush/hell,
+/turf/open/floor/plating/grass/lava,
+/area/ruin/unpowered/buried_shrine)
+"Mw" = (
+/obj/structure/stone_tile/center/burnt{
+ fall_on_cross = 1;
+ pixel_x = -7;
+ pixel_y = -8
+ },
+/turf/open/lava/smooth/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"Mx" = (
+/obj/structure/stone_tile/block/cracked{
+ dir = 1
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"MJ" = (
+/obj/structure/stone_tile/surrounding/cracked{
+ dir = 8
+ },
+/obj/item/stack/ore/gold,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"MQ" = (
+/turf/template_noop,
+/area/template_noop)
+"Ni" = (
+/obj/structure/table/wood,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"Nk" = (
+/obj/structure/table_frame/wood,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"NK" = (
+/obj/structure/flora/ash/cacti,
+/turf/open/floor/plating/grass/lava,
+/area/ruin/unpowered/buried_shrine)
+"NN" = (
+/obj/structure/stone_tile/center,
+/obj/structure/stone_tile/surrounding/cracked{
+ dir = 5
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"NY" = (
+/obj/structure/stone_tile/block/cracked{
+ dir = 9
+ },
+/obj/structure/stone_tile/block/cracked,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"Ok" = (
+/obj/structure/stone_tile{
+ dir = 8
+ },
+/obj/item/stack/ore/gold,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"Ot" = (
+/obj/structure/stone_tile/center/burnt{
+ fall_on_cross = 1;
+ pixel_y = 8;
+ pixel_x = -1
+ },
+/turf/open/lava/smooth/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"OO" = (
+/obj/structure/stone_tile/slab/cracked{
+ dir = 1
+ },
+/obj/structure/stone_tile/surrounding/cracked{
+ dir = 4
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"OT" = (
+/obj/structure/flora/ausbushes/fullgrass/hell,
+/turf/open/floor/plating/moss,
+/area/overmap_encounter/planetoid/lava/explored)
+"Ps" = (
+/obj/structure/flora/rock/hell,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/cave/explored)
+"Qb" = (
+/obj/structure/flora/ausbushes/sparsegrass/hell,
+/turf/open/floor/plating/grass/lava,
+/area/ruin/unpowered/buried_shrine)
+"Qf" = (
+/obj/structure/stone_tile/cracked{
+ dir = 1
+ },
+/mob/living/simple_animal/hostile/asteroid/hivelord/legion/tendril,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"QR" = (
+/obj/structure/flora/tree/dead/tall/grey,
+/turf/open/floor/plating/grass/lava/orange,
+/area/overmap_encounter/planetoid/lava/explored)
+"Rd" = (
+/obj/structure/stone_tile/block/cracked{
+ dir = 8
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/ruin/unpowered/buried_shrine)
+"Rl" = (
+/obj/structure/stone_tile/cracked{
+ dir = 8
+ },
+/obj/structure/stone_tile{
+ dir = 1
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"RK" = (
+/obj/structure/stone_tile/center/cracked,
+/mob/living/simple_animal/hostile/asteroid/brimdemon,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"RN" = (
+/obj/structure/stone_tile/surrounding_tile{
+ dir = 8
+ },
+/turf/open/lava/smooth/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"Sa" = (
+/obj/structure/stone_tile/slab/cracked{
+ dir = 4
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
+"Sj" = (
+/obj/structure/flora/ausbushes/sparsegrass/hell,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
+"Sn" = (
+/obj/structure/table/wood,
+/obj/item/reagent_containers/food/snacks/grown/ash_flora/fireblossom,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"So" = (
+/obj/structure/stone_tile/block/cracked,
+/obj/structure/stone_tile/block/cracked{
+ dir = 5
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"Sw" = (
+/obj/structure/stone_tile/center/burnt{
+ fall_on_cross = 1;
+ pixel_x = -9
+ },
+/turf/open/lava/smooth/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"SA" = (
+/obj/structure/table/wood,
+/obj/item/reagent_containers/glass/bowl/mushroom_bowl,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"SJ" = (
+/obj/structure/stone_tile/center/burnt{
+ fall_on_cross = 1;
+ pixel_y = 2;
+ pixel_x = 4
+ },
+/turf/open/lava/smooth/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"SV" = (
+/obj/structure/chair/pew/right{
+ dir = 1
+ },
+/obj/structure/stone_tile/slab,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"Td" = (
+/obj/structure/stone_tile/slab/cracked,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"Tp" = (
+/obj/structure/stone_tile/cracked{
+ dir = 8
+ },
+/obj/structure/stone_tile,
+/obj/structure/stone_tile{
+ dir = 4
+ },
+/obj/structure/stone_tile{
+ dir = 1
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/ruin/unpowered/buried_shrine)
+"Tu" = (
+/obj/structure/stone_tile/block{
+ dir = 1
+ },
+/obj/item/chair/wood{
+ dir = 8
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"Ty" = (
+/obj/item/stack/sheet/bluespace_crystal/five{
+ pixel_x = -7
+ },
+/obj/item/stack/sheet/mineral/gold/five{
+ pixel_y = 3
+ },
+/obj/item/stack/sheet/mineral/diamond/five{
+ pixel_x = 8
+ },
+/obj/structure/closet/crate/necropolis,
+/obj/structure/stone_tile/slab/cracked{
+ dir = 5
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"TO" = (
+/turf/closed/mineral/random/volcanic,
+/area/ruin/unpowered/buried_shrine)
+"Ua" = (
+/obj/structure/stone_tile/block{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/ash{
+ pixel_x = 6;
+ pixel_y = 11
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"Uf" = (
+/obj/structure/chair/pew,
+/obj/structure/stone_tile/slab,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"Uw" = (
+/obj/structure/flora/ausbushes/sparsegrass/hell,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/cave/explored)
+"UB" = (
+/obj/structure/flora/ausbushes/genericbush/hell,
+/obj/item/reagent_containers/food/snacks/grown/apple{
+ pixel_x = -10;
+ pixel_y = -6
+ },
+/turf/open/floor/plating/grass/lava,
+/area/ruin/unpowered/buried_shrine)
+"UF" = (
+/obj/structure/stone_tile/block,
+/obj/item/claymore/bone{
+ pixel_x = 8;
+ pixel_y = 21
+ },
+/obj/item/shield/riot/goliath{
+ pixel_x = -12;
+ pixel_y = 16
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"Vt" = (
+/obj/structure/flora/ash/leaf_shroom,
+/turf/open/floor/plating/moss,
+/area/ruin/unpowered/buried_shrine)
+"VG" = (
+/obj/structure/table/wood,
+/obj/item/kitchen/knife/combat/bone,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"Wd" = (
+/obj/structure/stone_tile/slab/cracked{
+ dir = 5
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"Ws" = (
+/turf/open/floor/plating/moss,
+/area/ruin/unpowered/buried_shrine)
+"WD" = (
+/obj/structure/flora/tree/dead/barren,
+/turf/open/floor/plating/grass/lava/orange,
+/area/overmap_encounter/planetoid/lava/explored)
+"WG" = (
+/obj/structure/stone_tile/slab/burnt,
+/obj/item/gem/amber,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"WP" = (
+/obj/structure/stone_tile/block/cracked{
+ dir = 1
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/overmap_encounter/planetoid/lava/explored)
+"WZ" = (
+/turf/closed/indestructible/riveted/boss,
+/area/ruin/unpowered/buried_shrine)
+"Xh" = (
+/obj/structure/flora/ash/cap_shroom,
+/turf/open/floor/plating/moss,
+/area/ruin/unpowered/buried_shrine)
+"Xn" = (
+/obj/structure/stone_tile/cracked,
+/obj/structure/stone_tile/cracked{
+ dir = 4
+ },
+/obj/structure/stone_tile{
+ dir = 8
+ },
+/obj/structure/stone_tile{
+ dir = 1
+ },
+/mob/living/simple_animal/hostile/asteroid/hivelord/legion/tendril,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/ruin/unpowered/buried_shrine)
+"Xr" = (
+/obj/structure/stone_tile/cracked,
+/obj/structure/stone_tile/cracked{
+ dir = 4
+ },
+/obj/structure/stone_tile{
+ dir = 8
+ },
+/obj/structure/stone_tile{
+ dir = 1
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/ruin/unpowered/buried_shrine)
+"Xv" = (
+/obj/structure/stone_tile/surrounding/cracked{
+ dir = 4
+ },
+/obj/structure/stone_tile/center,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"XA" = (
+/turf/closed/indestructible/riveted/boss,
+/area/overmap_encounter/planetoid/cave/explored)
+"Ye" = (
+/obj/structure/chair/pew/right,
+/obj/structure/stone_tile/slab,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"Yf" = (
+/obj/structure/stone_tile/block/cracked{
+ dir = 9
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"Yh" = (
+/obj/structure/stone_tile/block,
+/obj/structure/stone_tile{
+ dir = 4
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"Yp" = (
+/obj/structure/stone_tile/center/burnt{
+ fall_on_cross = 1;
+ pixel_y = -7;
+ pixel_x = -4
+ },
+/turf/open/lava/smooth/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"YK" = (
+/obj/structure/flora/ausbushes/sparsegrass/hell,
+/turf/open/floor/plating/moss,
+/area/ruin/unpowered/buried_shrine)
+"Zk" = (
+/obj/structure/stone_tile{
+ dir = 8
+ },
+/obj/structure/stone_tile{
+ dir = 1
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"Zl" = (
+/obj/structure/stone_tile/surrounding_tile{
+ dir = 8
+ },
+/obj/structure/stone_tile/center/burnt{
+ fall_on_cross = 1;
+ pixel_y = -8
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"Zo" = (
+/obj/structure/stone_tile/surrounding/cracked{
+ dir = 10
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"ZE" = (
+/obj/structure/stone_tile/surrounding/cracked{
+ dir = 1
+ },
+/obj/structure/stone_tile/center/burnt,
+/turf/open/lava/smooth/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"ZK" = (
+/obj/structure/stone_tile/block{
+ dir = 1
+ },
+/obj/structure/stone_tile,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+"ZV" = (
+/obj/structure/stone_tile/slab/cracked{
+ dir = 4
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface/lit,
+/area/ruin/unpowered/buried_shrine)
+"ZX" = (
+/obj/structure/stone_tile/center/burnt{
+ fall_on_cross = 1;
+ pixel_y = 7;
+ pixel_x = 9
+ },
+/turf/open/lava/smooth/lava_land_surface,
+/area/ruin/unpowered/buried_shrine)
+
+(1,1,1) = {"
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+nh
+nh
+nh
+nh
+nh
+nh
+nh
+nh
+nh
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+"}
+(2,1,1) = {"
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+nh
+nh
+nh
+MQ
+MQ
+MQ
+nh
+jt
+Eh
+Eh
+lO
+LK
+aD
+nh
+LK
+Sj
+nh
+nh
+jt
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+"}
+(3,1,1) = {"
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+jt
+nh
+nh
+nh
+nh
+nh
+nh
+nh
+Eh
+Eh
+gt
+dF
+jJ
+nh
+nh
+nh
+nh
+LK
+nh
+nh
+nh
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+"}
+(4,1,1) = {"
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+nh
+nh
+nh
+aD
+nh
+nh
+nh
+nh
+aD
+nh
+nh
+Eh
+dF
+lo
+dF
+dF
+aP
+dF
+LK
+nh
+aD
+nh
+Sj
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+"}
+(5,1,1) = {"
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+nh
+nh
+lO
+nh
+nh
+lO
+Eh
+Eh
+nh
+nh
+Eh
+Eh
+Eh
+Eh
+dF
+aP
+dF
+dF
+jJ
+dF
+lO
+LK
+lO
+nh
+nh
+MQ
+MQ
+nh
+nh
+nh
+nh
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+"}
+(6,1,1) = {"
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+nh
+nh
+nh
+aD
+nh
+nh
+LK
+nh
+nh
+Eh
+nh
+Sj
+nh
+Eh
+Eh
+Eh
+Eh
+Eh
+Eh
+Kz
+dF
+dF
+Eh
+Eh
+Eh
+Eh
+nh
+nh
+nh
+nh
+nh
+nh
+aD
+nh
+nh
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+"}
+(7,1,1) = {"
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+nh
+Eh
+Eh
+nh
+Sj
+nh
+nh
+LK
+rP
+LK
+Eh
+Eh
+nh
+Eh
+Eh
+Eh
+Eh
+Eh
+Eh
+Eh
+Eh
+lo
+dF
+jJ
+Eh
+Eh
+Eh
+Eh
+aD
+nh
+Sj
+nh
+Eh
+nh
+Sj
+nh
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+"}
+(8,1,1) = {"
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+jt
+nh
+Eh
+nh
+nh
+nh
+nh
+Eh
+dF
+aP
+aP
+dF
+Eh
+Eh
+Eh
+Eh
+Eh
+Eh
+Eh
+Eh
+Eh
+Eh
+dF
+dF
+dF
+Eh
+Eh
+Eh
+Eh
+Eh
+nh
+Eh
+Eh
+Eh
+nh
+nh
+jt
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+"}
+(9,1,1) = {"
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+nh
+nh
+Eh
+Eh
+jt
+nh
+Eh
+Eh
+lo
+dF
+Kz
+dF
+Eh
+Eh
+Eh
+WZ
+WZ
+WZ
+WZ
+WZ
+Eh
+Eh
+gt
+aP
+dF
+Ef
+Eh
+Eh
+Eh
+Eh
+nh
+Eh
+Eh
+nh
+nh
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+"}
+(10,1,1) = {"
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+nh
+Sj
+nh
+Eh
+Eh
+Eh
+Eh
+dF
+dF
+dF
+aP
+Eh
+Eh
+WZ
+WZ
+WZ
+vg
+vg
+vg
+WZ
+WZ
+WZ
+Eh
+Eh
+lo
+aP
+Kz
+Eh
+Eh
+Eh
+Eh
+Eh
+nh
+aD
+nh
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+"}
+(11,1,1) = {"
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+nh
+nh
+nh
+Eh
+Eh
+Eh
+jJ
+aP
+aP
+dF
+Eh
+Eh
+WZ
+WZ
+vg
+vg
+vg
+yF
+hp
+Qb
+TO
+WZ
+WZ
+Eh
+jJ
+dF
+lo
+Eh
+Eh
+Eh
+Eh
+Eh
+nh
+nh
+nh
+nh
+nh
+nh
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+"}
+(12,1,1) = {"
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+nh
+aD
+Eh
+Eh
+XA
+Ef
+dF
+lo
+dF
+Eh
+Eh
+WZ
+WZ
+TO
+hp
+eI
+be
+jo
+Mt
+TO
+TO
+TO
+WZ
+WZ
+Eh
+dF
+dF
+dF
+Eh
+Eh
+Eh
+Eh
+Eh
+Eh
+Eh
+jt
+nh
+nh
+nh
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+"}
+(13,1,1) = {"
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+nh
+nh
+nh
+Eh
+XA
+XA
+dF
+dF
+aP
+gt
+Eh
+Eh
+WZ
+TO
+Qb
+Mt
+eI
+Hv
+FC
+Qb
+hp
+NK
+TO
+vg
+WZ
+Eh
+Eh
+aP
+lo
+Eh
+Eh
+Eh
+Eh
+Eh
+Eh
+Eh
+Eh
+Sj
+nh
+nh
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+"}
+(14,1,1) = {"
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+Sj
+nh
+nh
+Eh
+XA
+lo
+aP
+dF
+dF
+Eh
+Eh
+Eh
+WZ
+TO
+NK
+WZ
+WZ
+UB
+Qb
+yF
+WZ
+WZ
+Td
+vg
+WZ
+Eh
+Eh
+dF
+gt
+dF
+Eh
+Eh
+Eh
+Eh
+Eh
+Eh
+Eh
+nh
+aD
+nh
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+"}
+(15,1,1) = {"
+MQ
+MQ
+MQ
+MQ
+MQ
+nh
+nh
+nh
+nh
+nh
+nh
+nh
+Sj
+dF
+dF
+dF
+Kz
+dF
+Eh
+Eh
+WZ
+WZ
+TO
+TO
+WZ
+WZ
+TO
+TO
+hp
+WZ
+WZ
+cN
+vg
+WZ
+WZ
+Eh
+Eh
+dF
+aP
+Eh
+Eh
+Eh
+Eh
+XA
+XA
+Eh
+Eh
+nh
+nh
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+"}
+(16,1,1) = {"
+MQ
+MQ
+MQ
+MQ
+nh
+nh
+Eh
+Eh
+jt
+nh
+Eh
+Eh
+Eh
+jJ
+lo
+dF
+XA
+XA
+Eh
+Eh
+WZ
+vg
+TO
+TO
+TO
+TO
+TO
+TO
+Qb
+TO
+TO
+hn
+vg
+vg
+WZ
+Eh
+Eh
+XA
+XA
+Eh
+Eh
+Eh
+Eh
+Eh
+XA
+XA
+Eh
+nh
+nh
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+"}
+(17,1,1) = {"
+MQ
+MQ
+MQ
+MQ
+MQ
+nh
+nh
+Eh
+Eh
+Eh
+Eh
+Eh
+XA
+dF
+dF
+aP
+XA
+XA
+Eh
+Eh
+WZ
+vg
+on
+Fq
+Ht
+TO
+TO
+TO
+TO
+TO
+Wd
+Fq
+cN
+vg
+WZ
+Eh
+Eh
+XA
+XA
+Eh
+Eh
+Eh
+Eh
+Eh
+gt
+XA
+nh
+nh
+nh
+jt
+MQ
+MQ
+MQ
+MQ
+MQ
+"}
+(18,1,1) = {"
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+nh
+nh
+Eh
+Eh
+XA
+XA
+XA
+dF
+Lu
+dF
+Eh
+Eh
+Eh
+Eh
+WZ
+vg
+hn
+cN
+Fq
+yz
+TO
+TO
+TO
+TO
+TO
+TO
+TO
+vg
+WZ
+Eh
+Eh
+Eh
+Eh
+Eh
+Eh
+Eh
+Eh
+Eh
+aP
+XA
+XA
+nh
+Sj
+nh
+MQ
+MQ
+MQ
+MQ
+MQ
+"}
+(19,1,1) = {"
+MQ
+MQ
+MQ
+nh
+nh
+nh
+nh
+jt
+Eh
+XA
+XA
+aP
+dF
+dF
+dF
+Eh
+Eh
+Eh
+Eh
+Eh
+WZ
+WZ
+WZ
+WZ
+Td
+TO
+TO
+TO
+TO
+TO
+TO
+WZ
+WZ
+WZ
+WZ
+Eh
+Eh
+Eh
+Eh
+Eh
+Eh
+Eh
+Eh
+Eh
+lo
+jJ
+XA
+aD
+nh
+nh
+MQ
+MQ
+MQ
+MQ
+MQ
+"}
+(20,1,1) = {"
+MQ
+MQ
+MQ
+aD
+nh
+Eh
+nh
+Eh
+Eh
+XA
+lo
+dF
+aP
+dF
+Eh
+Eh
+Eh
+Eh
+WZ
+WZ
+WZ
+me
+Ab
+WZ
+WZ
+WZ
+TO
+TO
+TO
+WZ
+WZ
+WZ
+me
+Ab
+WZ
+WZ
+WZ
+Eh
+Eh
+Eh
+Eh
+Eh
+Eh
+Eh
+dF
+aP
+XA
+XA
+nh
+nh
+nh
+MQ
+MQ
+MQ
+MQ
+"}
+(21,1,1) = {"
+MQ
+MQ
+MQ
+nh
+Sj
+Eh
+Eh
+Eh
+XA
+XA
+Kz
+dF
+dF
+Eh
+Eh
+Eh
+Eh
+Eh
+TO
+on
+lJ
+RN
+wj
+WZ
+TO
+TO
+TO
+Fq
+Tp
+Mx
+CF
+WZ
+RN
+wj
+ta
+oi
+WZ
+WZ
+Eh
+Eh
+Eh
+Eh
+Eh
+Eh
+lo
+dF
+aP
+XA
+nh
+nh
+nh
+MQ
+MQ
+MQ
+MQ
+"}
+(22,1,1) = {"
+MQ
+MQ
+jt
+nh
+nh
+nh
+Eh
+Eh
+XA
+dF
+dF
+aP
+jJ
+Eh
+Eh
+Eh
+Eh
+TO
+TO
+BF
+oi
+wl
+wl
+WZ
+IL
+ta
+Wd
+Xr
+Tp
+lJ
+ii
+WZ
+wl
+wl
+yz
+Ad
+OO
+WZ
+WZ
+Eh
+Eh
+Eh
+Eh
+Eh
+Eh
+Ef
+aP
+XA
+nh
+nh
+nh
+MQ
+MQ
+MQ
+MQ
+"}
+(23,1,1) = {"
+MQ
+MQ
+nh
+nh
+nh
+Eh
+Eh
+Eh
+XA
+dF
+dF
+dF
+Eh
+Eh
+Eh
+Eh
+Eh
+TO
+qh
+JJ
+Rl
+yz
+WZ
+WZ
+sS
+df
+Ii
+sB
+Td
+lJ
+SV
+WZ
+WZ
+lJ
+Ad
+nq
+Ad
+TO
+WZ
+WZ
+Eh
+Eh
+Eh
+Eh
+Eh
+gt
+lo
+XA
+Sj
+nh
+jt
+nh
+MQ
+MQ
+MQ
+"}
+(24,1,1) = {"
+MQ
+MQ
+nh
+nh
+Eh
+Eh
+Eh
+jJ
+lo
+aP
+dF
+Eh
+Eh
+Eh
+Eh
+Eh
+Eh
+TO
+Qf
+Ad
+JJ
+TO
+WZ
+BA
+Wd
+Tp
+yz
+Ad
+JE
+Ii
+on
+kJ
+WZ
+oi
+on
+Ad
+yz
+TO
+TO
+WZ
+Eh
+Eh
+Eh
+Eh
+Eh
+Eh
+dF
+lo
+nh
+lO
+nh
+Sj
+MQ
+MQ
+MQ
+"}
+(25,1,1) = {"
+MQ
+MQ
+nh
+LK
+Eh
+Eh
+aP
+dF
+dF
+gt
+Eh
+Eh
+Eh
+Eh
+WZ
+WZ
+WZ
+TO
+Ht
+Aw
+Ad
+TO
+WZ
+TO
+BF
+vJ
+Ad
+cA
+Ad
+yz
+Fq
+Fq
+WZ
+Aw
+Fq
+ff
+Fo
+WZ
+WZ
+WZ
+WZ
+Eh
+Eh
+Eh
+Eh
+Eh
+dF
+dF
+nh
+nh
+nh
+nh
+MQ
+MQ
+MQ
+"}
+(26,1,1) = {"
+MQ
+nh
+nh
+lO
+Lu
+dF
+dF
+aP
+Eh
+Eh
+Eh
+Eh
+Eh
+Eh
+WZ
+ld
+WZ
+WZ
+WZ
+yz
+Fq
+TO
+TO
+TO
+Xr
+Ht
+Td
+pK
+on
+Ii
+Tp
+Xr
+Fq
+kW
+BZ
+kW
+CE
+WZ
+uS
+Sn
+WZ
+Eh
+Eh
+Eh
+Eh
+Eh
+aP
+dF
+LK
+nh
+aD
+nh
+MQ
+MQ
+MQ
+"}
+(27,1,1) = {"
+MQ
+aD
+nh
+nh
+dF
+lo
+dF
+Eh
+Eh
+dD
+dD
+Eh
+Eh
+Eh
+WZ
+Fq
+ta
+kW
+td
+kZ
+Td
+TO
+TO
+TO
+TO
+Tp
+hn
+Ii
+Ht
+Tp
+Hg
+BF
+Ii
+Ad
+Ad
+Ad
+TO
+WZ
+zg
+CE
+WZ
+Eh
+Eh
+Eh
+XA
+XA
+Kz
+aP
+nh
+lO
+nh
+nh
+MQ
+MQ
+MQ
+"}
+(28,1,1) = {"
+MQ
+nh
+nh
+nh
+aP
+Kz
+Eh
+Eh
+Eh
+dD
+dD
+Eh
+Eh
+WZ
+WZ
+Td
+lJ
+nz
+jy
+hn
+CE
+WZ
+WZ
+TO
+TO
+TO
+Wd
+GL
+Ad
+Fq
+Xr
+Ii
+WZ
+WZ
+TO
+TO
+TO
+TO
+Aw
+nk
+WZ
+WZ
+Eh
+Eh
+XA
+XA
+lo
+Eh
+Eh
+aD
+nh
+nh
+nh
+MQ
+MQ
+"}
+(29,1,1) = {"
+MQ
+nh
+Sj
+nh
+aP
+Eh
+Eh
+Eh
+Eh
+Eh
+Eh
+Eh
+Eh
+WZ
+CT
+Fq
+jy
+wl
+lJ
+fq
+WZ
+WZ
+WZ
+WZ
+WZ
+TO
+BF
+qi
+TO
+wS
+WZ
+WZ
+WZ
+WZ
+WZ
+TO
+TO
+Ad
+ta
+zg
+Fo
+WZ
+Eh
+Eh
+Eh
+Eh
+Eh
+Eh
+nh
+nh
+nh
+jI
+jt
+MQ
+MQ
+"}
+(30,1,1) = {"
+MQ
+nh
+nh
+LK
+dF
+Eh
+Eh
+Eh
+Eh
+Eh
+Eh
+Eh
+Eh
+WZ
+Nk
+Fq
+TO
+TO
+TO
+WZ
+WZ
+tE
+vi
+qp
+WZ
+WZ
+Ad
+Fq
+TO
+WZ
+WZ
+iK
+GB
+nX
+WZ
+WZ
+Fq
+Wd
+ta
+oi
+Fq
+WZ
+Eh
+Eh
+Eh
+Eh
+nh
+aD
+nh
+nh
+nh
+nh
+nh
+nh
+MQ
+"}
+(31,1,1) = {"
+nh
+nh
+LK
+OT
+Eh
+Eh
+Eh
+Eh
+Eh
+WZ
+WZ
+WZ
+WZ
+WZ
+WZ
+WZ
+TO
+TO
+WZ
+WZ
+WZ
+Td
+ic
+xJ
+TO
+WZ
+Ad
+Bc
+yz
+WZ
+TO
+Ua
+rp
+UF
+WZ
+WZ
+WZ
+Ad
+BF
+WZ
+WZ
+WZ
+WZ
+WZ
+WZ
+WZ
+Sj
+nh
+jI
+Sj
+nh
+nh
+Sj
+nh
+MQ
+"}
+(32,1,1) = {"
+nh
+nh
+lO
+Eh
+Eh
+Eh
+Eh
+Eh
+WZ
+WZ
+Ad
+Ad
+cD
+WZ
+yy
+TO
+TO
+Fq
+wl
+CD
+WZ
+So
+ZE
+vg
+TO
+WZ
+Ba
+vO
+Jc
+WZ
+TO
+zQ
+fY
+Hh
+WZ
+Go
+ch
+Mc
+sD
+Fq
+TO
+WZ
+TO
+TO
+zB
+WZ
+WZ
+jt
+nh
+Jk
+nh
+aD
+nh
+nh
+MQ
+"}
+(33,1,1) = {"
+jt
+Sj
+Sj
+Eh
+Eh
+Eh
+Eh
+WZ
+WZ
+yy
+Cv
+Ni
+lJ
+WZ
+ta
+su
+Mx
+uP
+ta
+AY
+WZ
+WZ
+Mw
+FD
+oL
+WZ
+vg
+jY
+vg
+WZ
+vg
+Hw
+TO
+WZ
+WZ
+Ht
+kW
+nP
+iL
+Fq
+TO
+WZ
+TO
+yz
+Yf
+fx
+WZ
+WZ
+rh
+xe
+dD
+nh
+nh
+nh
+Sj
+"}
+(34,1,1) = {"
+nh
+nh
+aD
+nh
+Eh
+Eh
+Eh
+WZ
+Ad
+xT
+SA
+Nk
+sJ
+Ad
+wy
+kW
+yz
+Ad
+hn
+kW
+ZK
+WZ
+TO
+vg
+dA
+vg
+vg
+dX
+gW
+Ja
+SJ
+HN
+ZX
+WZ
+qw
+wl
+qt
+mn
+lJ
+Fq
+rk
+fh
+Ad
+GT
+Ad
+on
+Rd
+ta
+tA
+WP
+Sa
+Jr
+nh
+nh
+nh
+"}
+(35,1,1) = {"
+nh
+nh
+nh
+Eh
+Eh
+ee
+Eh
+WZ
+dQ
+qO
+cv
+LJ
+ta
+NN
+ta
+Xv
+Ad
+mM
+Ad
+yt
+lJ
+WZ
+TO
+vg
+dX
+Sw
+rD
+EE
+vg
+vg
+vg
+vg
+LZ
+WZ
+Ka
+dB
+RK
+uP
+di
+zN
+Ad
+Td
+Ad
+BF
+yz
+td
+Ht
+ZV
+kt
+ha
+ha
+Sj
+nh
+nh
+nh
+"}
+(36,1,1) = {"
+Sj
+nh
+Eh
+Eh
+ee
+ee
+ee
+WZ
+Wd
+Tu
+Nk
+VG
+uf
+Td
+Zk
+wl
+Td
+Ad
+yz
+wl
+gE
+WZ
+vg
+vg
+qT
+TO
+vg
+Bm
+vg
+vg
+sy
+kC
+em
+WZ
+mv
+kW
+CM
+jy
+lJ
+TO
+Ad
+TO
+Wd
+wl
+Ad
+uK
+wl
+cn
+Md
+dn
+dg
+KD
+nh
+nh
+nh
+"}
+(37,1,1) = {"
+nh
+nh
+Eh
+ee
+ee
+ee
+ee
+WZ
+WZ
+Yh
+Fw
+SA
+lJ
+WZ
+ta
+Fq
+lJ
+Xv
+jy
+lJ
+WZ
+WZ
+TO
+fL
+ol
+WZ
+vg
+rM
+vg
+WZ
+sL
+vg
+vg
+WZ
+WZ
+on
+wl
+bp
+Zl
+TO
+TO
+WZ
+td
+Td
+td
+qV
+WZ
+WZ
+eJ
+LL
+dD
+nh
+Sj
+nh
+nh
+"}
+(38,1,1) = {"
+nh
+nh
+Eh
+Eh
+nh
+ee
+ee
+ee
+WZ
+WZ
+yz
+wM
+tL
+WZ
+Yh
+kW
+Fq
+vJ
+kW
+Gm
+WZ
+CE
+Cm
+yb
+vg
+WZ
+xs
+bY
+iB
+WZ
+Yp
+Lx
+Ot
+dS
+WZ
+Kt
+Iz
+ta
+lJ
+Fq
+TO
+WZ
+hz
+Fq
+at
+WZ
+WZ
+Eh
+Eh
+Eh
+Eh
+nh
+nh
+nh
+MQ
+"}
+(39,1,1) = {"
+MQ
+nh
+nh
+nh
+nh
+zL
+ee
+ee
+ee
+WZ
+WZ
+WZ
+WZ
+WZ
+WZ
+WZ
+MJ
+Ht
+WZ
+WZ
+WZ
+on
+JJ
+vg
+vg
+WZ
+Ad
+NY
+yz
+WZ
+vg
+vg
+vg
+Hw
+WZ
+WZ
+WZ
+hn
+Ad
+WZ
+WZ
+WZ
+WZ
+WZ
+WZ
+WZ
+Eh
+Eh
+Eh
+Eh
+jt
+nh
+nh
+nh
+MQ
+"}
+(40,1,1) = {"
+MQ
+nh
+jt
+nh
+nh
+nh
+ee
+ee
+ee
+Eh
+Eh
+Eh
+Eh
+WZ
+Nk
+wy
+wl
+wl
+mr
+WZ
+WZ
+Ty
+yM
+uf
+WZ
+WZ
+hn
+td
+Ad
+WZ
+WZ
+Eu
+WG
+hW
+WZ
+WZ
+vJ
+Ad
+ta
+Ok
+JJ
+WZ
+Eh
+Eh
+Eh
+Eh
+Eh
+Eh
+nh
+nh
+nh
+nh
+nh
+MQ
+MQ
+"}
+(41,1,1) = {"
+MQ
+nh
+nh
+nh
+Sj
+nh
+ee
+ee
+Eh
+Eh
+Eh
+Eh
+Eh
+WZ
+CT
+Fq
+uf
+kW
+Mx
+BA
+WZ
+WZ
+WZ
+WZ
+WZ
+TO
+Wd
+ef
+BF
+TO
+WZ
+WZ
+WZ
+WZ
+WZ
+oH
+uN
+Wd
+Yh
+oi
+nk
+WZ
+Eh
+Eh
+Eh
+Eh
+Eh
+nh
+nh
+nh
+aD
+nh
+nh
+MQ
+MQ
+"}
+(42,1,1) = {"
+MQ
+MQ
+nh
+nh
+nh
+nh
+ee
+ee
+Eh
+dD
+dD
+Eh
+Eh
+WZ
+WZ
+Td
+lJ
+wt
+ta
+TO
+TO
+WZ
+WZ
+TO
+TO
+TO
+Ad
+Jw
+Ad
+TO
+TO
+TO
+WZ
+WZ
+Fq
+nk
+Td
+yy
+nk
+oi
+WZ
+WZ
+ee
+Eh
+dD
+dD
+jt
+nh
+Sj
+nh
+nh
+nh
+MQ
+MQ
+MQ
+"}
+(43,1,1) = {"
+MQ
+MQ
+MQ
+nh
+nh
+nh
+ee
+ee
+ee
+dD
+dD
+Eh
+Eh
+Eh
+WZ
+Yf
+jy
+LC
+TO
+TO
+TO
+TO
+TO
+TO
+gH
+Xr
+zg
+Tp
+on
+zM
+Tp
+TO
+TO
+Ad
+Ad
+Ad
+Ez
+WZ
+JJ
+mr
+WZ
+ee
+ee
+Eh
+dD
+dD
+nh
+nh
+nh
+jI
+nh
+nh
+MQ
+MQ
+MQ
+"}
+(44,1,1) = {"
+MQ
+MQ
+MQ
+nh
+jt
+nh
+zL
+ee
+ee
+ee
+Eh
+Eh
+Eh
+Eh
+WZ
+om
+WZ
+WZ
+WZ
+TO
+TO
+BF
+TO
+Xr
+uK
+Fo
+Ht
+Ad
+Td
+Tp
+Wd
+TO
+TO
+TO
+iw
+wl
+CE
+WZ
+dG
+CT
+WZ
+ee
+ee
+ee
+ee
+fB
+nh
+nh
+nh
+nh
+nh
+MQ
+MQ
+MQ
+MQ
+"}
+(45,1,1) = {"
+MQ
+MQ
+MQ
+Sj
+nh
+nh
+nh
+Eh
+ee
+ee
+ee
+Eh
+Eh
+Eh
+WZ
+WZ
+WZ
+TO
+TO
+TO
+Wd
+gH
+WZ
+su
+Tp
+yz
+Ad
+yv
+Ad
+Fo
+Xr
+TO
+WZ
+TO
+CE
+kW
+Aw
+WZ
+WZ
+WZ
+WZ
+ee
+ee
+ee
+Sj
+nh
+jI
+nh
+nh
+nh
+nh
+MQ
+MQ
+MQ
+MQ
+"}
+(46,1,1) = {"
+MQ
+MQ
+MQ
+MQ
+nh
+nh
+nh
+Eh
+Eh
+ee
+Eh
+Eh
+Eh
+Eh
+Eh
+WZ
+TO
+TO
+Zo
+Ad
+zg
+on
+WZ
+fq
+uK
+JJ
+yz
+Ad
+hn
+Tp
+Fq
+LW
+WZ
+Aw
+Ht
+Ad
+hn
+TO
+TO
+WZ
+ee
+ee
+ee
+ee
+zL
+nh
+nh
+nh
+nh
+Sj
+nh
+MQ
+MQ
+MQ
+MQ
+"}
+(47,1,1) = {"
+MQ
+MQ
+MQ
+MQ
+MQ
+nh
+nh
+nh
+Eh
+Eh
+Eh
+nh
+Eh
+Eh
+Eh
+WZ
+WZ
+Td
+yz
+hn
+co
+Wd
+WZ
+WZ
+Ee
+ta
+yM
+Fq
+yz
+lJ
+CF
+WZ
+WZ
+lJ
+Ad
+nq
+TO
+TO
+WZ
+WZ
+ee
+Eh
+Eh
+Eh
+Eh
+nh
+nh
+jt
+nh
+nh
+nh
+MQ
+MQ
+MQ
+MQ
+"}
+(48,1,1) = {"
+MQ
+MQ
+MQ
+MQ
+MQ
+nh
+nh
+Sj
+nh
+nh
+nh
+nh
+nh
+Eh
+Eh
+Eh
+WZ
+WZ
+Ad
+Jh
+nk
+kW
+kW
+WZ
+Uf
+ta
+BF
+Tp
+jM
+lJ
+ii
+WZ
+kW
+gz
+Td
+Ad
+TO
+TO
+Eh
+Eh
+Eh
+Eh
+Eh
+Eh
+Eh
+Eh
+Eh
+Eh
+nh
+nh
+nh
+MQ
+MQ
+MQ
+MQ
+"}
+(49,1,1) = {"
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+aD
+nh
+nh
+MQ
+MQ
+MQ
+nh
+nh
+Eh
+Eh
+Eh
+WZ
+WZ
+Td
+lJ
+me
+Ab
+WZ
+Ye
+ta
+hn
+Xn
+Ht
+lJ
+SV
+WZ
+me
+Ab
+ta
+TO
+TO
+Eh
+Eh
+Eh
+Eh
+Eh
+Eh
+Eh
+Eh
+Eh
+nh
+Eh
+nh
+nh
+MQ
+MQ
+MQ
+MQ
+MQ
+"}
+(50,1,1) = {"
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+nh
+MQ
+MQ
+MQ
+nh
+nh
+jt
+Eh
+Eh
+Eh
+Eh
+WZ
+WZ
+WZ
+RN
+wj
+WZ
+WZ
+WZ
+vJ
+Fq
+Tp
+WZ
+WZ
+WZ
+RN
+wj
+WZ
+WZ
+WZ
+Eh
+Eh
+Eh
+Eh
+Eh
+Eh
+nh
+nh
+nh
+nh
+nh
+nh
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+"}
+(51,1,1) = {"
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+nh
+Sj
+Eh
+Eh
+Eh
+Eh
+Eh
+Eh
+Eh
+WZ
+WZ
+WZ
+WZ
+TO
+Wd
+Fq
+BF
+gH
+hn
+TO
+WZ
+WZ
+WZ
+WZ
+Eh
+Eh
+Eh
+Eh
+Eh
+Eh
+Eh
+nh
+Sj
+nh
+aD
+nh
+nh
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+"}
+(52,1,1) = {"
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+nh
+nh
+Eh
+Eh
+nh
+Eh
+Eh
+Eh
+Eh
+Eh
+WZ
+Bz
+TO
+TO
+TO
+TO
+Xr
+hn
+Xr
+TO
+TO
+TO
+Wd
+kp
+WZ
+Eh
+Eh
+Eh
+Eh
+DB
+yJ
+Eh
+Eh
+nh
+nh
+nh
+nh
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+"}
+(53,1,1) = {"
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+nh
+nh
+nh
+nh
+nh
+nh
+Eh
+XA
+XA
+Eh
+Eh
+WZ
+eZ
+vR
+TO
+TO
+TO
+TO
+TO
+TO
+TO
+TO
+TO
+TO
+LP
+WZ
+Eh
+Eh
+dD
+dD
+bW
+bW
+Eh
+Eh
+aD
+nh
+nh
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+"}
+(54,1,1) = {"
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+nh
+aD
+MQ
+MQ
+MQ
+nh
+Eh
+XA
+XA
+Eh
+Eh
+WZ
+Bz
+Xr
+TO
+TO
+TO
+TO
+TO
+TO
+TO
+TO
+TO
+TO
+vo
+WZ
+Eh
+Eh
+dD
+dD
+yJ
+JL
+Do
+Eh
+Eh
+Eh
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+"}
+(55,1,1) = {"
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+nh
+Eh
+Eh
+rH
+rH
+Eh
+WZ
+WZ
+BF
+TO
+WZ
+WZ
+TO
+TO
+TO
+WZ
+WZ
+TO
+TO
+WZ
+WZ
+Eh
+yJ
+yJ
+yJ
+DB
+Dp
+yJ
+yJ
+Eh
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+"}
+(56,1,1) = {"
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+nh
+Eh
+Eh
+Ps
+rH
+Eh
+Eh
+WZ
+rt
+TO
+WZ
+WZ
+Xh
+YK
+YK
+WZ
+WZ
+TO
+Fq
+WZ
+DB
+yJ
+bW
+yJ
+bW
+bW
+yJ
+yJ
+bW
+yJ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+"}
+(57,1,1) = {"
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+Sj
+nh
+nh
+Eh
+Eh
+rH
+rH
+Eh
+WZ
+WZ
+TO
+TO
+TO
+Ws
+YK
+Jv
+Ws
+Xh
+TO
+TO
+WZ
+yJ
+yJ
+yJ
+yJ
+WD
+yJ
+bW
+yJ
+bW
+DB
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+"}
+(58,1,1) = {"
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+nh
+nh
+nh
+Eh
+Eh
+rH
+iX
+Eh
+Eh
+WZ
+TO
+CU
+sv
+Ws
+pu
+sv
+YK
+YK
+Vt
+WZ
+WZ
+Dp
+Do
+bW
+bW
+yJ
+Ay
+JL
+yJ
+yJ
+JL
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+"}
+(59,1,1) = {"
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+nh
+nh
+nh
+nh
+Eh
+rH
+Uw
+Eh
+Eh
+Eh
+WZ
+WZ
+rA
+Ws
+Jv
+YK
+Ws
+YK
+CU
+WZ
+WZ
+yJ
+yJ
+JL
+yJ
+DB
+yJ
+yJ
+yJ
+yJ
+QR
+yJ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+"}
+(60,1,1) = {"
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+nh
+jt
+Sj
+nh
+nh
+rH
+rH
+Eh
+Eh
+Eh
+Eh
+WZ
+WZ
+WZ
+Vt
+YK
+rA
+WZ
+WZ
+WZ
+yJ
+bW
+yJ
+yJ
+yJ
+yJ
+yJ
+yJ
+yJ
+DB
+bW
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+"}
+(61,1,1) = {"
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+nh
+nh
+nh
+nh
+nh
+Eh
+Eh
+Eh
+Eh
+Eh
+Eh
+Eh
+WZ
+WZ
+WZ
+WZ
+WZ
+yJ
+yJ
+bW
+bW
+Ay
+yJ
+bW
+bW
+yJ
+Do
+bW
+bW
+yJ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+"}
+(62,1,1) = {"
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+nh
+nh
+nh
+nh
+nh
+Eh
+Eh
+Eh
+Eh
+Eh
+Eh
+Eh
+Eh
+DB
+yJ
+yJ
+Do
+yJ
+DB
+yJ
+yJ
+yJ
+bW
+yJ
+yJ
+Dp
+yJ
+yJ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+"}
+(63,1,1) = {"
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+nh
+nh
+nh
+nh
+nh
+Eh
+Eh
+Eh
+Eh
+Eh
+Eh
+yJ
+Ay
+bW
+yJ
+yJ
+yJ
+Dp
+bW
+bW
+yJ
+JL
+yJ
+bW
+yJ
+yJ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+"}
+(64,1,1) = {"
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+nh
+Sj
+nh
+Eh
+Eh
+bW
+Eh
+Eh
+Eh
+Eh
+yJ
+bW
+yJ
+yJ
+yJ
+WD
+yJ
+yJ
+yJ
+yJ
+yJ
+QR
+bW
+bW
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+"}
+(65,1,1) = {"
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+nh
+aD
+nh
+nh
+Eh
+bW
+bW
+yJ
+Dp
+DB
+Do
+bW
+bW
+Ay
+bW
+JL
+yJ
+Do
+yJ
+yJ
+DB
+yJ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+"}
+(66,1,1) = {"
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+nh
+nh
+nh
+Eh
+Eh
+JL
+Ay
+yJ
+WD
+JL
+yJ
+yJ
+DB
+bW
+bW
+bW
+yJ
+yJ
+yJ
+bW
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+"}
+(67,1,1) = {"
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+nh
+nh
+MQ
+MQ
+MQ
+MQ
+bW
+bW
+bW
+yJ
+QR
+yJ
+bW
+DB
+yJ
+bW
+DB
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+MQ
+"}
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_codelab.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_codelab.dmm
deleted file mode 100644
index 1f2e7736421..00000000000
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_codelab.dmm
+++ /dev/null
@@ -1,6285 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"ai" = (
-/obj/effect/decal/cleanable/molten_object,
-/obj/structure/table/chem,
-/obj/item/slime_extract/darkblue{
- pixel_x = -7
- },
-/obj/item/reagent_containers/glass/beaker/cryoxadone{
- pixel_x = 3;
- pixel_y = 8
- },
-/obj/item/reagent_containers/syringe,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/laboratory)
-"am" = (
-/obj/structure/window/plasma/reinforced,
-/obj/structure/window/plasma/reinforced{
- dir = 8
- },
-/obj/effect/turf_decal/atmos/oxygen,
-/turf/open/floor/engine/o2,
-/area/ruin/unpowered/codelab/maintenance)
-"ap" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/storage)
-"ar" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
-/obj/structure/sign/poster/official/random{
- pixel_y = 32
- },
-/turf/open/floor/carpet/nanoweave/purple,
-/area/ruin/unpowered/codelab/laboratory)
-"aw" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/reception)
-"az" = (
-/turf/open/floor/carpet/nanoweave/purple,
-/area/ruin/unpowered/codelab/laboratory)
-"aA" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/storage)
-"aO" = (
-/obj/structure/window/plasma/reinforced{
- dir = 4
- },
-/obj/structure/window/plasma/reinforced{
- dir = 1
- },
-/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/air_input{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/ruin/unpowered/codelab/maintenance)
-"aP" = (
-/obj/structure/table,
-/obj/structure/window/reinforced/spawner/west,
-/obj/item/modular_computer/laptop/preset,
-/obj/effect/turf_decal/siding/wood{
- dir = 8
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered/codelab/reception)
-"aR" = (
-/obj/item/trash/can,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/carpet/nanoweave/purple,
-/area/ruin/unpowered/codelab/reception)
-"aY" = (
-/obj/structure/table,
-/obj/structure/window/reinforced/spawner,
-/obj/structure/window/reinforced/spawner/east,
-/obj/item/modular_computer/laptop/preset,
-/obj/effect/turf_decal/siding/wood{
- dir = 6
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered/codelab/reception)
-"bd" = (
-/obj/structure/closet/crate/large{
- anchored = 1
- },
-/obj/item/toy/plush/flushed,
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/codelab/storage)
-"bl" = (
-/obj/structure/chair/office/light,
-/turf/open/floor/wood,
-/area/ruin/unpowered/codelab/reception)
-"bn" = (
-/obj/structure/table,
-/obj/item/trash/plate,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/laboratory)
-"bo" = (
-/obj/effect/turf_decal/corner/opaque/white/mono,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"bq" = (
-/obj/structure/table,
-/obj/item/trash/semki,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/laboratory)
-"bv" = (
-/obj/machinery/atmospherics/pipe/simple/general/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"bw" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/codelab/storage)
-"by" = (
-/obj/effect/decal/cleanable/molten_object,
-/obj/effect/turf_decal/industrial/loading{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/codelab/storage)
-"bz" = (
-/obj/structure/cable{
- icon_state = "5-8"
- },
-/obj/effect/decal/cleanable/generic,
-/turf/open/floor/carpet/nanoweave/red,
-/area/ruin/unpowered/codelab/laboratory)
-"bE" = (
-/obj/effect/turf_decal/corner/opaque/white/mono,
-/obj/structure/cable{
- 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/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"bG" = (
-/obj/effect/decal/cleanable/molten_object/large,
-/mob/living/simple_animal/slime,
-/obj/effect/decal/cleanable/food/plant_smudge,
-/turf/open/floor/carpet/nanoweave/red,
-/area/ruin/unpowered/codelab/laboratory)
-"bT" = (
-/obj/effect/decal/cleanable/food/pie_smudge{
- desc = "Some kind of strange white goo.";
- name = "strange goo"
- },
-/mob/living/simple_animal/slime,
-/obj/effect/turf_decal/corner/opaque/lime/border{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"cc" = (
-/obj/effect/turf_decal/industrial/stand_clear{
- dir = 4
- },
-/turf/open/floor/concrete/pavement/lava,
-/area/ruin/unpowered/codelab/exterior)
-"cd" = (
-/obj/machinery/light/dim/directional/north,
-/obj/effect/decal/cleanable/generic,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/storage)
-"ck" = (
-/obj/machinery/door/airlock/external,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/reception)
-"cl" = (
-/obj/effect/turf_decal/box/white/corners{
- dir = 4
- },
-/turf/open/floor/concrete/pavement/lava,
-/area/ruin/unpowered/codelab/exterior)
-"cv" = (
-/obj/structure/fence,
-/turf/open/floor/plating/grass/lava,
-/area/ruin/unpowered/codelab/exterior)
-"cA" = (
-/obj/structure/closet/cardboard,
-/obj/machinery/light/dim/directional/south,
-/obj/effect/turf_decal/corner/opaque/lime/border{
- dir = 8
- },
-/obj/item/disk/tech_disk/major,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"cH" = (
-/obj/structure/chair/office/light{
- dir = 1
- },
-/turf/open/floor/carpet/nanoweave/red,
-/area/ruin/unpowered/codelab/laboratory)
-"cI" = (
-/obj/structure/fluff/paper/stack{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"cO" = (
-/obj/effect/turf_decal/corner_techfloor_grid{
- dir = 9
- },
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/codelab/storage)
-"cR" = (
-/obj/effect/turf_decal/corner/opaque/white/mono,
-/obj/structure/cable{
- 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/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"cX" = (
-/obj/machinery/atmospherics/pipe/simple/supply/visible/layer2{
- dir = 4
- },
-/turf/open/floor/plating/rust,
-/area/ruin/unpowered/codelab/maintenance)
-"cZ" = (
-/obj/effect/decal/cleanable/generic,
-/obj/effect/turf_decal/corner_techfloor_grid/full{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/unpowered/codelab/reception)
-"dg" = (
-/obj/structure/table,
-/obj/machinery/door/window/brigdoor,
-/obj/item/flashlight/lamp,
-/obj/effect/turf_decal/siding/wood,
-/turf/open/floor/wood,
-/area/ruin/unpowered/codelab/reception)
-"ds" = (
-/obj/effect/decal/remains/human,
-/turf/open/floor/carpet/nanoweave/red,
-/area/ruin/unpowered/codelab/laboratory)
-"dx" = (
-/obj/effect/decal/cleanable/molten_object,
-/obj/effect/turf_decal/corner/opaque/lime/border{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"dy" = (
-/obj/machinery/door/airlock/silver{
- name = "Bathroom"
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/laboratory)
-"dD" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"dF" = (
-/obj/structure/closet/crate/secure{
- anchored = 1
- },
-/obj/effect/turf_decal/industrial/outline/yellow,
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/codelab/storage)
-"dL" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/supply/visible/layer2{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered/codelab/maintenance)
-"dQ" = (
-/obj/effect/turf_decal/corner_techfloor_grid{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/plasteel/dark,
-/area/ruin/unpowered/codelab/reception)
-"ec" = (
-/obj/structure/closet/crate/medical{
- anchored = 1
- },
-/obj/item/reagent_containers/syringe,
-/obj/item/circular_saw,
-/obj/effect/turf_decal/industrial/outline,
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/codelab/storage)
-"ef" = (
-/obj/machinery/atmospherics/pipe/simple/supply/visible/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer4{
- dir = 5
- },
-/turf/open/floor/plating/rust,
-/area/ruin/unpowered/codelab/maintenance)
-"eg" = (
-/obj/structure/closet/crate/large{
- anchored = 1
- },
-/obj/item/toy/plush/snakeplushie,
-/obj/item/toy/plush/snakeplushie,
-/obj/item/toy/plush/snakeplushie,
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/codelab/storage)
-"en" = (
-/obj/machinery/atmospherics/pipe/simple/general/hidden{
- dir = 9
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"eq" = (
-/obj/machinery/atmospherics/components/binary/pump/on{
- name = "Nitrogen to Air"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer4{
- dir = 4
- },
-/obj/effect/turf_decal/trimline/opaque/blue/filled/line{
- dir = 1
- },
-/turf/open/floor/plating/rust,
-/area/ruin/unpowered/codelab/maintenance)
-"et" = (
-/turf/closed/wall/mineral/titanium,
-/area/ruin/unpowered/codelab/laboratory)
-"ez" = (
-/obj/structure/cable{
- 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/light/dim/directional/south,
-/turf/open/floor/carpet/nanoweave/purple,
-/area/ruin/unpowered/codelab/laboratory)
-"eE" = (
-/obj/effect/turf_decal/trimline/opaque/red/filled/line{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/laboratory)
-"eH" = (
-/obj/structure/window/plasma/reinforced,
-/obj/structure/window/plasma/reinforced{
- dir = 8
- },
-/obj/structure/window/plasma/reinforced{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/oxygen_output,
-/turf/open/floor/engine/n2,
-/area/ruin/unpowered/codelab/maintenance)
-"eI" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"eY" = (
-/obj/effect/decal/cleanable/generic,
-/obj/machinery/airalarm/directional/north,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/reception)
-"fq" = (
-/obj/effect/turf_decal/corner/opaque/white/mono,
-/obj/machinery/power/apc/auto_name/directional/north,
-/obj/effect/decal/cleanable/molten_object/large,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"fr" = (
-/obj/structure/closet/cardboard,
-/obj/item/shard/plasma,
-/obj/item/trash/energybar,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/codelab/storage)
-"fu" = (
-/obj/structure/cable{
- 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/plasteel/white,
-/area/ruin/unpowered/codelab/storage)
-"fv" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/structure/chair{
- dir = 8
- },
-/turf/open/floor/carpet/nanoweave/red,
-/area/ruin/unpowered/codelab/laboratory)
-"fG" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/molten_object,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/laboratory)
-"fU" = (
-/obj/machinery/camera{
- dir = 10
- },
-/obj/structure/closet/cardboard,
-/obj/item/mop,
-/obj/item/trash/plate,
-/obj/item/shard,
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/codelab/storage)
-"fW" = (
-/obj/effect/turf_decal/corner_techfloor_grid/full,
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/codelab/storage)
-"fZ" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/machinery/light/dim/directional/west,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/reception)
-"gc" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/turf/open/floor/carpet/nanoweave/purple,
-/area/ruin/unpowered/codelab/laboratory)
-"ge" = (
-/obj/structure/closet/crate/science,
-/obj/machinery/light/dim/directional/north,
-/obj/item/storage/pill_bottle/mutadone,
-/obj/item/clothing/glasses/science,
-/obj/item/clothing/head/beret/sci,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/storage)
-"gq" = (
-/obj/machinery/turretid{
- pixel_x = 28;
- req_access = null;
- req_access_txt = "16";
- name = "interior turret control panel"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/storage)
-"gr" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/storage)
-"gz" = (
-/obj/structure/bookcase/manuals/chemistry,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/reception)
-"gC" = (
-/obj/structure/cable{
- icon_state = "5-8"
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/storage)
-"gD" = (
-/obj/structure/bed,
-/obj/item/bedsheet/rd,
-/obj/structure/curtain/cloth/fancy,
-/turf/open/floor/wood,
-/area/ruin/unpowered/codelab/laboratory)
-"gE" = (
-/obj/structure/flora/ausbushes/sparsegrass/hell,
-/turf/open/floor/plating/grass/lava,
-/area/ruin/unpowered/codelab/exterior)
-"gM" = (
-/obj/effect/turf_decal/corner_techfloor_grid/full,
-/turf/open/floor/plasteel/dark,
-/area/ruin/unpowered/codelab/reception)
-"gY" = (
-/obj/structure/fence{
- dir = 4
- },
-/turf/open/floor/plating/grass/lava,
-/area/ruin/unpowered/codelab/exterior)
-"hb" = (
-/obj/effect/decal/cleanable/wrapping,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/storage)
-"hc" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/storage)
-"hu" = (
-/obj/machinery/airalarm/directional/north,
-/obj/structure/fluff/paper/stack{
- dir = 8
- },
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"hx" = (
-/obj/structure/fluff/paper/stack{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/ntblue/border{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"hz" = (
-/obj/structure/window/plasma/reinforced,
-/obj/structure/window/plasma/reinforced{
- dir = 8
- },
-/obj/effect/turf_decal/atmos/nitrogen,
-/turf/open/floor/engine/n2,
-/area/ruin/unpowered/codelab/maintenance)
-"hA" = (
-/obj/effect/turf_decal/industrial/stand_clear,
-/turf/open/floor/plating,
-/area/ruin/unpowered/codelab/maintenance)
-"hB" = (
-/obj/effect/turf_decal/corner/opaque/white/mono,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"hE" = (
-/turf/closed/wall/mineral/titanium,
-/area/ruin/unpowered/codelab/reception)
-"hO" = (
-/turf/open/floor/wood{
- icon_state = "wood-broken7"
- },
-/area/ruin/unpowered/codelab/reception)
-"ie" = (
-/obj/effect/decal/cleanable/molten_object/large,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"ih" = (
-/obj/structure/closet/cardboard,
-/obj/item/trash/cheesie,
-/obj/item/trash/plate,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/codelab/storage)
-"ij" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/closet/cardboard,
-/obj/item/trash/can/food/peaches,
-/obj/item/trash/can/food/peaches/maint,
-/obj/item/shard,
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/codelab/storage)
-"il" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/machinery/light/broken/directional/west,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/reception)
-"im" = (
-/obj/machinery/light/broken/directional/south,
-/obj/effect/decal/cleanable/generic,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/laboratory)
-"iq" = (
-/obj/structure/closet/crate/wooden{
- anchored = 1
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/item/pickaxe/drill,
-/obj/effect/turf_decal/industrial/outline/yellow,
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/codelab/storage)
-"ir" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"iw" = (
-/obj/structure/table,
-/obj/item/clipboard{
- pixel_x = -8;
- pixel_y = 8
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"iz" = (
-/obj/structure/closet/crate/secure{
- anchored = 1
- },
-/obj/item/grenade/firecracker,
-/obj/effect/turf_decal/industrial/outline/yellow,
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/codelab/storage)
-"iB" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/carpet/nanoweave/red,
-/area/ruin/unpowered/codelab/laboratory)
-"iE" = (
-/obj/effect/decal/cleanable/wrapping,
-/obj/effect/turf_decal/industrial/outline,
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/codelab/storage)
-"iI" = (
-/obj/structure/closet/crate{
- anchored = 1
- },
-/obj/effect/turf_decal/industrial/outline/yellow,
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/codelab/storage)
-"iN" = (
-/obj/structure/chair/sofa/brown/directional/north,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/reception)
-"je" = (
-/obj/machinery/door/airlock/public{
- name = "Subject Cryogenic Storage"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"jk" = (
-/obj/structure/cable{
- icon_state = "1-6"
- },
-/obj/structure/cable{
- icon_state = "1-10"
- },
-/obj/effect/turf_decal/corner_techfloor_grid{
- dir = 10
- },
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/codelab/storage)
-"jm" = (
-/obj/structure/cable{
- icon_state = "6-9"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
-/turf/open/floor/carpet/nanoweave/red,
-/area/ruin/unpowered/codelab/laboratory)
-"jn" = (
-/obj/effect/decal/cleanable/molten_object,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/storage)
-"jx" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/reception)
-"jz" = (
-/obj/structure/chair/sofa/brown/right/directional/north,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/reception)
-"jB" = (
-/turf/open/floor/concrete/pavement/lava,
-/area/ruin/unpowered/codelab/exterior)
-"jC" = (
-/obj/machinery/airalarm/directional/east,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/storage)
-"jG" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/storage)
-"jH" = (
-/obj/structure/chair{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/reception)
-"jJ" = (
-/obj/effect/decal/cleanable/molten_object,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/storage)
-"jK" = (
-/obj/structure/table/wood,
-/obj/item/flashlight/lamp/green,
-/turf/open/floor/wood,
-/area/ruin/unpowered/codelab/laboratory)
-"jV" = (
-/obj/structure/chair/office/light{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/laboratory)
-"kc" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 8
- },
-/obj/structure/chair/comfy{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered/codelab/laboratory)
-"kh" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"kj" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 1
- },
-/turf/open/floor/wood{
- icon_state = "wood-broken3"
- },
-/area/ruin/unpowered/codelab/reception)
-"kl" = (
-/turf/open/floor/carpet/nanoweave/purple,
-/area/ruin/unpowered/codelab/reception)
-"kt" = (
-/obj/structure/flora/tree/dead_pine,
-/turf/open/floor/plating/grass/lava/purple,
-/area/ruin/unpowered/codelab/exterior)
-"kA" = (
-/obj/effect/turf_decal/corner/opaque/white/mono,
-/obj/structure/fluff/paper/stack,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"kF" = (
-/obj/structure/fence,
-/turf/open/floor/plating/grass/lava/orange,
-/area/ruin/unpowered/codelab/exterior)
-"kP" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/industrial/loading{
- dir = 4
- },
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/codelab/storage)
-"kY" = (
-/obj/structure/cable{
- icon_state = "0-9"
- },
-/obj/machinery/door/poddoor{
- id = "NTGen Door"
- },
-/obj/machinery/power/shieldwallgen/atmos/roundstart{
- dir = 8;
- id = "NTGen Doorfield"
- },
-/turf/open/floor/plasteel/tech/grid,
-/area/ruin/unpowered/codelab/storage)
-"lc" = (
-/obj/structure/flora/ausbushes/fullgrass/hell,
-/turf/open/floor/plating/grass/lava/orange,
-/area/ruin/unpowered/codelab/exterior)
-"ln" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"lo" = (
-/obj/machinery/power/apc/auto_name/directional/east,
-/obj/structure/cable{
- icon_state = "0-9"
- },
-/obj/structure/cable{
- icon_state = "8-9"
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/storage)
-"ls" = (
-/obj/structure/rack,
-/obj/item/paper/pamphlet,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/reception)
-"lt" = (
-/obj/structure/holosign/barrier/infinite,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/storage)
-"lH" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/corner_techfloor_grid{
- dir = 5
- },
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/codelab/storage)
-"lJ" = (
-/obj/structure/closet/emcloset/anchored,
-/obj/machinery/light/small/directional/north,
-/obj/effect/turf_decal/industrial/hatch/blue,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/reception)
-"lM" = (
-/obj/effect/turf_decal/corner_techfloor_grid/full{
- dir = 4
- },
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/codelab/storage)
-"lU" = (
-/obj/structure/closet/cardboard,
-/obj/item/clothing/under/pants/black,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"lW" = (
-/obj/structure/filingcabinet/double/grey,
-/obj/effect/turf_decal/siding/wood{
- dir = 1
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered/codelab/reception)
-"lY" = (
-/obj/effect/decal/cleanable/molten_object,
-/turf/open/floor/carpet/nanoweave/purple,
-/area/ruin/unpowered/codelab/reception)
-"lZ" = (
-/obj/effect/decal/cleanable/food/plant_smudge,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/reception)
-"ma" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/laboratory)
-"md" = (
-/obj/structure/flora/ausbushes/ywflowers/hell,
-/turf/open/floor/plating/grass/lava/orange,
-/area/ruin/unpowered/codelab/exterior)
-"mw" = (
-/obj/structure/cable{
- 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/plating,
-/area/ruin/unpowered/codelab/maintenance)
-"mA" = (
-/turf/open/floor/plating/grass/lava,
-/area/ruin/unpowered/codelab/exterior)
-"mF" = (
-/obj/structure/toilet{
- pixel_y = 11
- },
-/obj/machinery/door/window/eastright{
- dir = 2;
- req_access = list(11)
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/laboratory)
-"mO" = (
-/obj/effect/turf_decal/corner/opaque/white/mono,
-/obj/structure/fluff/paper/stack{
- dir = 1
- },
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"mX" = (
-/obj/machinery/atmospherics/components/unary/portables_connector,
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"mZ" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible,
-/obj/effect/turf_decal/trimline/opaque/bottlegreen/filled/corner{
- dir = 4
- },
-/obj/effect/turf_decal/trimline/opaque/lightgrey/filled/line{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered/codelab/maintenance)
-"nl" = (
-/obj/effect/decal/cleanable/generic,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/carpet/nanoweave/purple,
-/area/ruin/unpowered/codelab/reception)
-"nm" = (
-/turf/open/floor/plating/grass/lava/purple,
-/area/ruin/unpowered/codelab/exterior)
-"ns" = (
-/obj/machinery/light/small/directional/north,
-/turf/open/floor/plating,
-/area/ruin/unpowered/codelab/maintenance)
-"nu" = (
-/obj/structure/closet/crate/internals{
- anchored = 1
- },
-/obj/item/tank/internals/generic,
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/codelab/storage)
-"nw" = (
-/obj/machinery/atmospherics/pipe/layer_manifold{
- dir = 4
- },
-/turf/open/floor/plating/rust,
-/area/ruin/unpowered/codelab/maintenance)
-"ny" = (
-/obj/structure/sign/nanotrasen,
-/turf/closed/wall/mineral/titanium,
-/area/ruin/unpowered/codelab/exterior)
-"nG" = (
-/obj/structure/fluff/paper/stack{
- dir = 6
- },
-/obj/effect/decal/cleanable/molten_object,
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/obj/effect/turf_decal/corner/opaque/lime/border{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"nH" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"nL" = (
-/obj/structure/sink/kitchen{
- dir = 4;
- pixel_x = -12
- },
-/obj/structure/mirror{
- pixel_x = -24
- },
-/obj/machinery/light/small/directional/north,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/laboratory)
-"nM" = (
-/obj/structure/closet/cardboard,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"nQ" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 10
- },
-/obj/effect/turf_decal/trimline/opaque/blue/filled/line{
- dir = 8
- },
-/turf/open/floor/plating/rust,
-/area/ruin/unpowered/codelab/maintenance)
-"nZ" = (
-/obj/machinery/door/airlock/public{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/reception)
-"ob" = (
-/obj/structure/cable{
- 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/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"of" = (
-/obj/machinery/atmospherics/pipe/simple/supply/visible/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 4
- },
-/turf/open/floor/plating/rust,
-/area/ruin/unpowered/codelab/maintenance)
-"oj" = (
-/obj/structure/cable{
- icon_state = "0-10"
- },
-/obj/machinery/power/rtg,
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/obj/effect/turf_decal/industrial/outline/yellow,
-/turf/open/floor/plating/rust,
-/area/ruin/unpowered/codelab/maintenance)
-"ol" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/visible/layer2{
- dir = 10
- },
-/obj/effect/turf_decal/trimline/opaque/lightgrey/filled/corner{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered/codelab/maintenance)
-"oo" = (
-/obj/machinery/computer/security/telescreen/research{
- pixel_y = 27
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"op" = (
-/obj/machinery/door/airlock/public{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "5-10"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/storage)
-"ow" = (
-/obj/structure/cable{
- icon_state = "4-9"
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/laboratory)
-"ox" = (
-/obj/structure/cable{
- icon_state = "6-9"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/storage)
-"oK" = (
-/obj/machinery/door/window/brigdoor/eastleft{
- dir = 8
- },
-/obj/effect/turf_decal/siding/wood{
- dir = 9
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered/codelab/reception)
-"oY" = (
-/obj/structure/table,
-/obj/machinery/door/window/brigdoor,
-/obj/item/paper/codelab/reception,
-/obj/effect/turf_decal/siding/wood,
-/turf/open/floor/wood,
-/area/ruin/unpowered/codelab/reception)
-"pb" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/storage)
-"pf" = (
-/obj/effect/decal/cleanable/wrapping,
-/obj/machinery/light/small/directional/east,
-/obj/effect/turf_decal/corner_techfloor_grid/full{
- dir = 1
- },
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/codelab/storage)
-"pk" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/carpet/nanoweave/red,
-/area/ruin/unpowered/codelab/laboratory)
-"pp" = (
-/obj/structure/fluff/paper/stack{
- dir = 6
- },
-/obj/effect/turf_decal/corner/opaque/lime/border{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"pr" = (
-/obj/structure/cable{
- 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/carpet/nanoweave/purple,
-/area/ruin/unpowered/codelab/laboratory)
-"pB" = (
-/obj/structure/flora/ausbushes/ywflowers/hell,
-/turf/open/floor/plating/grass/lava,
-/area/ruin/unpowered/codelab/exterior)
-"pE" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/wood,
-/area/ruin/unpowered/codelab/laboratory)
-"pF" = (
-/obj/item/reagent_containers/food/drinks/mug/tea{
- pixel_y = 9;
- pixel_x = 8
- },
-/obj/structure/table,
-/obj/item/slime_extract/green{
- pixel_x = -4;
- pixel_y = 11
- },
-/obj/item/slime_extract/green{
- pixel_x = -11;
- pixel_y = 11
- },
-/obj/item/slime_extract/green{
- pixel_x = -7;
- pixel_y = 5
- },
-/obj/item/paper/codelab/researchernote,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/laboratory)
-"pG" = (
-/obj/machinery/atmospherics/pipe/simple/general/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"pO" = (
-/obj/effect/decal/cleanable/shreds,
-/obj/effect/turf_decal/industrial/outline/yellow,
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/codelab/storage)
-"pQ" = (
-/obj/structure/table,
-/obj/item/reagent_containers/food/snacks/grown/citrus/orange{
- pixel_y = 8
- },
-/obj/machinery/light/broken/directional/south,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/reception)
-"pS" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/visible/layer2,
-/turf/open/floor/plating,
-/area/ruin/unpowered/codelab/maintenance)
-"pY" = (
-/obj/structure/chair/comfy/orange/directional/east,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/reception)
-"qb" = (
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/machinery/power/rtg,
-/obj/machinery/light/small/directional/north,
-/obj/effect/turf_decal/industrial/outline/yellow,
-/turf/open/floor/plating/rust,
-/area/ruin/unpowered/codelab/maintenance)
-"qr" = (
-/obj/machinery/sleeper{
- pixel_y = 2;
- state_open = 0
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 6
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"qs" = (
-/obj/structure/closet/cardboard,
-/obj/item/reagent_containers/food/drinks/soda_cans/plasma,
-/obj/item/trash/popcorn,
-/obj/item/trash/energybar,
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/codelab/storage)
-"qt" = (
-/obj/structure/cable{
- 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/plating/rust,
-/area/ruin/unpowered/codelab/maintenance)
-"qz" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/carpet/nanoweave/purple,
-/area/ruin/unpowered/codelab/laboratory)
-"qL" = (
-/obj/machinery/atmospherics/pipe/layer_manifold,
-/obj/effect/turf_decal/trimline/opaque/blue/filled/corner{
- dir = 4
- },
-/obj/effect/turf_decal/trimline/opaque/bottlegreen/filled/line{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered/codelab/maintenance)
-"qQ" = (
-/obj/effect/decal/cleanable/generic,
-/obj/effect/turf_decal/industrial/loading{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/codelab/storage)
-"qU" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/public{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/reception)
-"qY" = (
-/obj/structure/closet/crate/large{
- anchored = 1
- },
-/obj/item/toy/plush/slimeplushie,
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/codelab/storage)
-"rf" = (
-/obj/structure/fence{
- dir = 4
- },
-/turf/open/floor/plating/grass/lava/orange,
-/area/ruin/unpowered/codelab/exterior)
-"ri" = (
-/obj/machinery/door/airlock/public{
- name = "Testing Room A"
- },
-/obj/effect/mapping_helpers/airlock/locked,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"rq" = (
-/obj/item/clipboard,
-/obj/effect/turf_decal/corner/opaque/purple/border{
- dir = 8
- },
-/obj/machinery/light/broken/directional/west,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"rw" = (
-/obj/structure/closet/crate/bin,
-/obj/effect/spawner/lootdrop/maintenance/two,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/laboratory)
-"rz" = (
-/obj/structure/flora/ausbushes/fullgrass/hell,
-/turf/open/floor/plating/grass/lava/purple,
-/area/ruin/unpowered/codelab/exterior)
-"rA" = (
-/obj/structure/closet/crate/trashcart,
-/obj/item/pushbroom,
-/obj/item/trash/can/food/peaches,
-/obj/item/trash/candy,
-/obj/item/trash/plate,
-/obj/item/trash/tray,
-/obj/effect/turf_decal/industrial/outline,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/codelab/storage)
-"rG" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/food/plant_smudge,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/storage)
-"rH" = (
-/obj/structure/chair/office/light{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/laboratory)
-"rI" = (
-/obj/structure/fluff/paper/stack,
-/obj/machinery/light/dim/directional/south,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"rL" = (
-/obj/structure/reagent_dispensers/water_cooler,
-/obj/machinery/light/dim/directional/north,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/laboratory)
-"rS" = (
-/obj/structure/closet/crate/secure{
- anchored = 1
- },
-/obj/item/pickaxe,
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/codelab/storage)
-"rT" = (
-/obj/effect/decal/cleanable/confetti,
-/turf/open/floor/wood,
-/area/ruin/unpowered/codelab/laboratory)
-"rV" = (
-/obj/effect/decal/cleanable/cobweb,
-/obj/effect/turf_decal/corner_techfloor_grid/full{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/unpowered/codelab/reception)
-"rY" = (
-/obj/effect/turf_decal/corner/opaque/white/mono,
-/obj/machinery/light/broken/directional/north,
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"sc" = (
-/obj/effect/turf_decal/corner/opaque/white/mono,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"sk" = (
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/reception)
-"so" = (
-/obj/structure/closet/crate/trashcart,
-/obj/item/mop,
-/obj/item/trash/boritos,
-/obj/item/trash/can/food/peaches,
-/obj/item/trash/can,
-/obj/item/trash/waffles,
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/codelab/storage)
-"sp" = (
-/obj/machinery/light/dim/directional/south,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/storage)
-"sr" = (
-/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"sz" = (
-/obj/structure/closet/crate/large{
- anchored = 1
- },
-/obj/item/toy/plush/among,
-/obj/effect/turf_decal/industrial/outline/yellow,
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/codelab/storage)
-"sA" = (
-/obj/structure/chair/comfy/orange/directional/north,
-/turf/open/floor/wood,
-/area/ruin/unpowered/codelab/laboratory)
-"sB" = (
-/obj/effect/decal/cleanable/food/pie_smudge{
- desc = "Some kind of strange white goo.";
- name = "strange goo"
- },
-/obj/effect/decal/cleanable/molten_object/large,
-/obj/effect/turf_decal/corner/opaque/ntblue/border{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"sE" = (
-/obj/structure/fluff/paper/stack,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"sK" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/visible/layer2{
- dir = 8
- },
-/obj/effect/turf_decal/trimline/opaque/lightgrey/filled/line{
- dir = 1
- },
-/turf/open/floor/plating/rust,
-/area/ruin/unpowered/codelab/maintenance)
-"sW" = (
-/obj/machinery/airalarm/directional/east,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"tp" = (
-/obj/structure/cable{
- icon_state = "1-6"
- },
-/obj/structure/cable{
- icon_state = "1-10"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/laboratory)
-"tx" = (
-/obj/effect/turf_decal/corner/opaque/white/mono,
-/obj/structure/fluff/paper/stack{
- dir = 1
- },
-/obj/machinery/light/dim/directional/north,
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"tA" = (
-/obj/machinery/door/airlock{
- dir = 4;
- name = "Dormitory"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered/codelab/laboratory)
-"tD" = (
-/obj/effect/decal/cleanable/generic,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/reception)
-"tH" = (
-/obj/structure/flora/ausbushes/sparsegrass/hell,
-/turf/open/floor/plating/grass/lava/purple,
-/area/ruin/unpowered/codelab/exterior)
-"tI" = (
-/obj/structure/chair{
- dir = 1
- },
-/turf/open/floor/carpet/nanoweave/red,
-/area/ruin/unpowered/codelab/laboratory)
-"uc" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/carpet/nanoweave/purple,
-/area/ruin/unpowered/codelab/laboratory)
-"uf" = (
-/obj/structure/fence/corner{
- dir = 4
- },
-/turf/open/floor/plating/grass/lava/orange,
-/area/ruin/unpowered/codelab/exterior)
-"uj" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/generic,
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/storage)
-"uk" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
-/turf/open/floor/carpet/nanoweave/purple,
-/area/ruin/unpowered/codelab/reception)
-"uy" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"uA" = (
-/obj/machinery/light/dim/directional/north,
-/obj/structure/table/chem,
-/obj/item/slimecrossbeaker/autoinjector/slimestimulant{
- pixel_y = 11
- },
-/obj/item/slimecrossbeaker/omnizine,
-/obj/item/reagent_containers/glass/beaker{
- pixel_y = 10;
- pixel_x = -9
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/laboratory)
-"uH" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/unpowered/codelab/maintenance)
-"uL" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/turf/open/floor/carpet/nanoweave/purple,
-/area/ruin/unpowered/codelab/reception)
-"uM" = (
-/obj/structure/table/wood,
-/obj/item/trash/plate,
-/obj/effect/decal/cleanable/food/flour,
-/turf/open/floor/wood,
-/area/ruin/unpowered/codelab/laboratory)
-"uQ" = (
-/obj/machinery/airalarm/directional/north,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/laboratory)
-"uV" = (
-/obj/machinery/atmospherics/pipe/simple/supply/visible/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible/layer4,
-/turf/open/floor/plating/rust,
-/area/ruin/unpowered/codelab/maintenance)
-"uW" = (
-/obj/structure/ore_box,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/storage)
-"vb" = (
-/obj/structure/table,
-/obj/item/reagent_containers/glass/beaker/cryoxadone{
- pixel_y = 14
- },
-/obj/item/reagent_containers/glass/beaker/cryoxadone{
- pixel_y = 14;
- pixel_x = -9
- },
-/obj/item/reagent_containers/glass/beaker/cryoxadone{
- pixel_y = 14;
- pixel_x = 9
- },
-/obj/item/reagent_containers/glass/maunamug{
- pixel_x = -19
- },
-/obj/effect/turf_decal/corner/opaque/white/mono,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"vg" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 1
- },
-/obj/effect/decal/cleanable/wrapping,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/storage)
-"vk" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/storage)
-"vu" = (
-/obj/structure/flora/tree/dead/tall/grey,
-/turf/open/floor/plating/grass/lava/orange,
-/area/ruin/unpowered/codelab/exterior)
-"vz" = (
-/obj/structure/cable{
- 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/carpet/nanoweave/purple,
-/area/ruin/unpowered/codelab/laboratory)
-"vD" = (
-/obj/structure/cable{
- 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/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"vG" = (
-/obj/machinery/button/shieldwallgen{
- dir = 8;
- id = "NTGen Doorfield";
- pixel_x = 24;
- pixel_y = -5
- },
-/obj/machinery/button/door{
- dir = 8;
- pixel_y = 7;
- pixel_x = 25;
- id = "NTGen Door"
- },
-/obj/effect/turf_decal/corner_techfloor_grid{
- dir = 6
- },
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/codelab/storage)
-"vL" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer4{
- dir = 5
- },
-/turf/open/floor/concrete/pavement/lava,
-/area/ruin/unpowered/codelab/maintenance)
-"vQ" = (
-/obj/structure/flora/ausbushes/sparsegrass/hell,
-/turf/open/floor/plating/grass/lava/orange,
-/area/ruin/unpowered/codelab/exterior)
-"vU" = (
-/obj/machinery/light/dim/directional/south,
-/obj/effect/decal/cleanable/wrapping,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/storage)
-"wc" = (
-/obj/machinery/atmospherics/components/unary/cryo_cell{
- icon_state = "pod-open"
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"wd" = (
-/obj/effect/turf_decal/corner/opaque/white/mono,
-/obj/machinery/camera{
- dir = 10
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"wu" = (
-/obj/machinery/light/dim/directional/west,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"wB" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/carpet/nanoweave/red,
-/area/ruin/unpowered/codelab/laboratory)
-"wJ" = (
-/obj/structure/closet/cardboard,
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"wM" = (
-/obj/effect/decal/cleanable/molten_object/large,
-/turf/open/floor/wood{
- icon_state = "wood-broken4"
- },
-/area/ruin/unpowered/codelab/reception)
-"wN" = (
-/obj/structure/closet/crate/medical{
- anchored = 1
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/item/reagent_containers/syringe,
-/obj/item/surgicaldrill,
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/codelab/storage)
-"wP" = (
-/obj/structure/table,
-/obj/item/reagent_containers/glass/beaker/large/epinephrine,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"wZ" = (
-/obj/effect/decal/cleanable/food/pie_smudge{
- desc = "Some kind of strange white goo.";
- name = "strange goo"
- },
-/mob/living/simple_animal/slime,
-/obj/effect/turf_decal/corner/opaque/lime/border{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"xi" = (
-/obj/machinery/camera{
- dir = 1
- },
-/obj/structure/table,
-/obj/item/reagent_containers/syringe,
-/obj/item/scalpel,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/laboratory)
-"xx" = (
-/obj/machinery/camera{
- dir = 10
- },
-/obj/effect/decal/cleanable/molten_object,
-/obj/effect/turf_decal/corner/opaque/lime/border{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"xz" = (
-/obj/effect/turf_decal/dept/science,
-/turf/open/floor/concrete/pavement/lava,
-/area/ruin/unpowered/codelab/exterior)
-"xB" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/door/password{
- dir = 8;
- password = "71421";
- name = "Password Locked Door"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"xK" = (
-/obj/structure/fluff/paper/stack{
- dir = 8
- },
-/obj/effect/decal/cleanable/molten_object,
-/obj/effect/turf_decal/corner/opaque/ntblue/border{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"xM" = (
-/obj/effect/decal/cleanable/molten_object/large,
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"xN" = (
-/obj/machinery/atmospherics/pipe/manifold/general/hidden,
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"xQ" = (
-/obj/machinery/door/airlock/public{
- name = "Testing Room B"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"xV" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer4{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/supply/visible/layer2{
- dir = 6
- },
-/obj/effect/turf_decal/trimline/opaque/lightgrey/filled/corner{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered/codelab/maintenance)
-"xZ" = (
-/obj/structure/flora/rock/hell{
- pixel_y = -1
- },
-/turf/open/floor/plating/grass/lava/purple,
-/area/ruin/unpowered/codelab/exterior)
-"ya" = (
-/obj/structure/table,
-/obj/structure/window/reinforced/spawner,
-/obj/item/clipboard,
-/obj/item/pen/fountain,
-/obj/effect/turf_decal/siding/wood,
-/turf/open/floor/wood,
-/area/ruin/unpowered/codelab/reception)
-"yc" = (
-/obj/structure/fluff/paper/stack,
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/obj/effect/turf_decal/industrial/warning/corner,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"yd" = (
-/obj/structure/cable{
- icon_state = "0-5"
- },
-/obj/machinery/door/poddoor{
- id = "NTGen Door"
- },
-/obj/machinery/power/shieldwallgen/atmos/roundstart{
- dir = 4;
- id = "NTGen Doorfield"
- },
-/turf/open/floor/plasteel/tech/grid,
-/area/ruin/unpowered/codelab/storage)
-"ye" = (
-/obj/structure/fluff/paper/stack{
- dir = 6
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"yo" = (
-/obj/machinery/vending/cigarette,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/reception)
-"yG" = (
-/obj/effect/turf_decal/box/white/corners,
-/turf/open/floor/concrete/pavement/lava,
-/area/ruin/unpowered/codelab/exterior)
-"yJ" = (
-/obj/structure/closet/crate/internals{
- anchored = 1
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/item/tank/internals/oxygen/yellow,
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/codelab/storage)
-"yL" = (
-/obj/effect/decal/cleanable/molten_object/large,
-/obj/effect/decal/cleanable/food/plant_smudge,
-/mob/living/simple_animal/slime,
-/obj/effect/turf_decal/trimline/opaque/grey/filled/line{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/laboratory)
-"yS" = (
-/obj/machinery/atmospherics/components/trinary/filter/atmos/n2{
- dir = 8;
- piping_layer = 4
- },
-/obj/effect/turf_decal/trimline/opaque/bottlegreen/filled/corner{
- dir = 1
- },
-/turf/open/floor/plating/rust,
-/area/ruin/unpowered/codelab/maintenance)
-"yT" = (
-/obj/machinery/camera,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/reception)
-"yY" = (
-/obj/structure/table,
-/obj/item/modular_computer/laptop,
-/obj/machinery/light/dim/directional/west,
-/obj/item/pen/fountain,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/laboratory)
-"zb" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/generic,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/storage)
-"zj" = (
-/obj/structure/table,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/reception)
-"zu" = (
-/obj/structure/cable{
- icon_state = "6-8"
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/storage)
-"zG" = (
-/obj/structure/closet/crate/medical{
- anchored = 1
- },
-/obj/item/reagent_containers/syringe/antiviral,
-/obj/item/retractor,
-/obj/effect/turf_decal/industrial/outline/yellow,
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/codelab/storage)
-"zH" = (
-/obj/structure/fluff/paper/stack{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"zI" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
-/obj/machinery/light/small/directional/west,
-/turf/open/floor/wood,
-/area/ruin/unpowered/codelab/laboratory)
-"zJ" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/reception)
-"zK" = (
-/obj/structure/fluff/empty_sleeper/nanotrasen{
- pixel_y = 3
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 6
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"zM" = (
-/obj/machinery/camera{
- dir = 10
- },
-/obj/structure/fluff/paper/stack{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/purple/border{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"zN" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/door/airlock/research/glass{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/laboratory)
-"zP" = (
-/obj/machinery/door/airlock{
- name = "Dormitory"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/wood,
-/area/ruin/unpowered/codelab/laboratory)
-"zY" = (
-/obj/structure/table,
-/obj/item/reagent_containers/glass/beaker/slime,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"zZ" = (
-/obj/machinery/light/small/directional/west,
-/obj/effect/turf_decal/corner_techfloor_grid/full{
- dir = 8
- },
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/codelab/storage)
-"Ab" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/structure/chair{
- dir = 4
- },
-/turf/open/floor/carpet/nanoweave/red,
-/area/ruin/unpowered/codelab/laboratory)
-"Ai" = (
-/obj/machinery/light/dim/directional/east,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"Am" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/turf/open/floor/carpet/nanoweave/purple,
-/area/ruin/unpowered/codelab/reception)
-"Aq" = (
-/obj/effect/decal/cleanable/shreds,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/storage)
-"Ay" = (
-/obj/effect/turf_decal/corner/opaque/white/mono,
-/obj/machinery/light/dim/directional/north,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"AA" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/wrapping,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/storage)
-"AB" = (
-/obj/machinery/door/airlock/external{
- dir = 8
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/visible/layer2{
- dir = 4
- },
-/turf/open/floor/plating/rust,
-/area/ruin/unpowered/codelab/maintenance)
-"AE" = (
-/obj/structure/table,
-/obj/item/newspaper,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/laboratory)
-"AG" = (
-/obj/effect/turf_decal/corner/opaque/white/mono,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/fluff/paper/stack{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"AI" = (
-/obj/machinery/atmospherics/pipe/layer_manifold,
-/obj/effect/turf_decal/trimline/opaque/blue/filled/line{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered/codelab/maintenance)
-"AJ" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
-/obj/structure/sign/poster/contraband/ntos{
- pixel_x = -30
- },
-/obj/effect/decal/cleanable/chem_pile,
-/turf/open/floor/wood,
-/area/ruin/unpowered/codelab/laboratory)
-"AK" = (
-/obj/structure/flora/ausbushes/fullgrass/hell,
-/turf/open/floor/plating/grass/lava,
-/area/ruin/unpowered/codelab/exterior)
-"AL" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/turf/open/floor/carpet/lone,
-/area/ruin/unpowered/codelab/subjectrooms)
-"AN" = (
-/obj/machinery/door/airlock/public{
- dir = 8
- },
-/obj/structure/cable{
- 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/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"AO" = (
-/obj/structure/window/plasma/reinforced,
-/obj/structure/window/plasma/reinforced{
- dir = 8
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/atmos/air_output,
-/turf/open/floor/engine,
-/area/ruin/unpowered/codelab/maintenance)
-"AV" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/turf/open/floor/carpet/nanoweave/purple,
-/area/ruin/unpowered/codelab/laboratory)
-"Bc" = (
-/obj/structure/window/plasma/reinforced,
-/obj/structure/window/plasma/reinforced{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/ruin/unpowered/codelab/maintenance)
-"Bf" = (
-/obj/machinery/airalarm/directional/north,
-/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/storage)
-"Bj" = (
-/obj/machinery/computer/atmos_control/tank/oxygen_tank,
-/obj/effect/turf_decal/trimline/opaque/blue/filled/line{
- dir = 5
- },
-/turf/open/floor/plating/rust,
-/area/ruin/unpowered/codelab/maintenance)
-"Bk" = (
-/obj/structure/bed,
-/obj/item/bedsheet/purple,
-/obj/structure/curtain/cloth/grey,
-/turf/open/floor/wood,
-/area/ruin/unpowered/codelab/laboratory)
-"Bm" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered/codelab/maintenance)
-"Bp" = (
-/obj/structure/closet/crate/internals{
- anchored = 1
- },
-/obj/item/tank/jetpack/oxygen,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/codelab/storage)
-"Br" = (
-/obj/structure/closet/cardboard,
-/obj/machinery/light/dim/directional/east,
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"Bs" = (
-/obj/structure/flora/rock/hell,
-/turf/open/floor/plating/grass/lava/orange,
-/area/ruin/unpowered/codelab/exterior)
-"Bu" = (
-/obj/effect/turf_decal/industrial/loading{
- dir = 1
- },
-/turf/open/floor/concrete/pavement/lava,
-/area/ruin/unpowered/codelab/exterior)
-"BF" = (
-/obj/machinery/power/smes/engineering,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/unpowered/codelab/maintenance)
-"BI" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/reception)
-"BJ" = (
-/obj/item/newspaper,
-/obj/structure/fluff/paper/stack,
-/obj/effect/turf_decal/corner/opaque/purple/border{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"BK" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/storage)
-"BN" = (
-/obj/effect/decal/cleanable/oil/streak{
- pixel_x = -12;
- pixel_y = 9
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"BO" = (
-/obj/structure/table/wood,
-/obj/item/research_notes/loot/tiny{
- name = "Notes on Xenobiology"
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered/codelab/laboratory)
-"BP" = (
-/obj/effect/turf_decal/industrial/stand_clear{
- dir = 8
- },
-/turf/open/floor/concrete/pavement/lava,
-/area/ruin/unpowered/codelab/exterior)
-"Cd" = (
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/reception)
-"Cj" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/corner_techfloor_grid/full{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/unpowered/codelab/reception)
-"Cw" = (
-/obj/structure/chair/sofa/brown/left/directional/north,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/reception)
-"CA" = (
-/obj/effect/turf_decal/corner/opaque/purple/border{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"CC" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/research/glass{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/laboratory)
-"CJ" = (
-/obj/structure/table,
-/obj/structure/window/reinforced/spawner/east,
-/obj/item/clipboard,
-/obj/item/pen/blue,
-/obj/effect/turf_decal/siding/wood{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered/codelab/reception)
-"CK" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/visible/layer2{
- dir = 4
- },
-/turf/open/floor/plating/rust,
-/area/ruin/unpowered/codelab/maintenance)
-"CV" = (
-/obj/effect/turf_decal/box/white/corners{
- dir = 8
- },
-/turf/open/floor/concrete/pavement/lava,
-/area/ruin/unpowered/codelab/exterior)
-"CX" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
- },
-/turf/open/floor/carpet/nanoweave/purple,
-/area/ruin/unpowered/codelab/reception)
-"CZ" = (
-/obj/machinery/atmospherics/pipe/manifold/general/hidden,
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"Db" = (
-/obj/structure/closet/crate/secure/plasma{
- anchored = 1
- },
-/obj/item/stack/sheet/mineral/plasma,
-/obj/item/tank/internals/plasma,
-/obj/effect/turf_decal/industrial/outline/yellow,
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/codelab/storage)
-"Dc" = (
-/obj/structure/window/reinforced/survival_pod{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/laboratory)
-"Di" = (
-/obj/effect/decal/cleanable/molten_object,
-/obj/effect/decal/cleanable/food/plant_smudge,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/storage)
-"Dj" = (
-/obj/machinery/door/password{
- dir = 8;
- password = "71421";
- name = "Password Locked Door"
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"Do" = (
-/obj/effect/decal/cleanable/molten_object,
-/obj/effect/turf_decal/siding/wood{
- dir = 1
- },
-/obj/machinery/light/broken/directional/north,
-/turf/open/floor/wood,
-/area/ruin/unpowered/codelab/reception)
-"Du" = (
-/obj/effect/decal/cleanable/generic,
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"DB" = (
-/obj/machinery/camera{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/corner_techfloor_grid/full{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/unpowered/codelab/reception)
-"DD" = (
-/obj/machinery/porta_turret/ai,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/storage)
-"DF" = (
-/obj/effect/decal/cleanable/molten_object,
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/codelab/storage)
-"DH" = (
-/obj/structure/closet/secure_closet/personal/cabinet,
-/obj/item/clothing/neck/tie/rainbow,
-/obj/item/spacecash/bundle/c20,
-/turf/open/floor/wood,
-/area/ruin/unpowered/codelab/laboratory)
-"DJ" = (
-/obj/structure/chair/comfy/orange/directional/west,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/reception)
-"DL" = (
-/obj/structure/closet/crate/medical{
- anchored = 1
- },
-/obj/item/reagent_containers/syringe/thializid,
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/codelab/storage)
-"DU" = (
-/obj/structure/fence{
- dir = 4
- },
-/turf/open/floor/plating/grass/lava/purple,
-/area/ruin/unpowered/codelab/exterior)
-"DZ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/carpet/nanoweave/purple,
-/area/ruin/unpowered/codelab/reception)
-"Ef" = (
-/obj/structure/table,
-/obj/item/paper/crumpled/codelab/subjectnote{
- pixel_y = 11;
- pixel_x = 8
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"Eh" = (
-/obj/structure/closet/wardrobe/science_white,
-/obj/effect/turf_decal/trimline/opaque/grey/filled/line{
- dir = 5
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/laboratory)
-"Ej" = (
-/obj/machinery/computer/atmos_control/tank/air_tank,
-/obj/effect/turf_decal/trimline/opaque/lightgrey/filled/line{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered/codelab/maintenance)
-"Ep" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/laboratory)
-"Et" = (
-/obj/machinery/door/airlock/maintenance_hatch{
- dir = 4
- },
-/obj/structure/cable{
- 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/plating,
-/area/ruin/unpowered/codelab/maintenance)
-"Ev" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/visible/layer2,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/turf/open/floor/plating/rust,
-/area/ruin/unpowered/codelab/maintenance)
-"Ex" = (
-/obj/machinery/camera,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/storage)
-"EF" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/effect/turf_decal/trimline/opaque/grey/filled/line{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/laboratory)
-"EM" = (
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"EX" = (
-/obj/machinery/airalarm/directional/east,
-/mob/living/simple_animal/slime,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"EY" = (
-/obj/structure/closet/crate/secure/engineering{
- anchored = 1
- },
-/obj/item/storage/toolbox/mechanical,
-/obj/item/storage/toolbox/electrical,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/codelab/storage)
-"Fd" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/turf/open/floor/carpet/nanoweave/purple,
-/area/ruin/unpowered/codelab/laboratory)
-"Ff" = (
-/obj/structure/closet/crate/secure{
- anchored = 1
- },
-/obj/item/storage/fancy/cigarettes/cigpack_cannabis,
-/obj/item/storage/fancy/cigarettes/cigpack_cannabis,
-/obj/item/storage/fancy/cigarettes/cigpack_syndicate,
-/obj/item/storage/fancy/cigarettes/cigpack_uplift,
-/obj/item/storage/belt/fannypack/blue,
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/codelab/storage)
-"Fg" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/effect/decal/cleanable/generic,
-/turf/open/floor/wood,
-/area/ruin/unpowered/codelab/laboratory)
-"Fw" = (
-/obj/item/trash/semki,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/turf/open/floor/carpet/nanoweave/purple,
-/area/ruin/unpowered/codelab/reception)
-"Fx" = (
-/turf/open/floor/plating/rust,
-/area/ruin/unpowered/codelab/maintenance)
-"Fy" = (
-/obj/machinery/modular_computer/console/preset/research,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/laboratory)
-"Fz" = (
-/obj/structure/closet/secure_closet/personal/cabinet,
-/obj/item/clothing/neck/tie/trans,
-/obj/item/spacecash/bundle/c100,
-/turf/open/floor/wood,
-/area/ruin/unpowered/codelab/laboratory)
-"FF" = (
-/obj/structure/cable{
- icon_state = "2-9"
- },
-/obj/structure/cable{
- icon_state = "2-5"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered/codelab/maintenance)
-"FG" = (
-/obj/structure/chair/office/light{
- dir = 1
- },
-/obj/effect/decal/cleanable/molten_object,
-/turf/open/floor/carpet/nanoweave/red,
-/area/ruin/unpowered/codelab/laboratory)
-"FH" = (
-/obj/structure/cable{
- 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/plasteel/white,
-/area/ruin/unpowered/codelab/reception)
-"FJ" = (
-/obj/structure/cable{
- icon_state = "0-6"
- },
-/obj/machinery/power/rtg,
-/obj/effect/turf_decal/industrial/outline/yellow,
-/turf/open/floor/plating/rust,
-/area/ruin/unpowered/codelab/maintenance)
-"FT" = (
-/obj/machinery/power/rtg,
-/obj/structure/cable{
- icon_state = "0-10"
- },
-/obj/effect/turf_decal/industrial/outline/yellow,
-/turf/open/floor/plating/rust,
-/area/ruin/unpowered/codelab/maintenance)
-"Gb" = (
-/obj/machinery/camera{
- dir = 10
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"Gc" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
- },
-/turf/open/floor/carpet/lone,
-/area/ruin/unpowered/codelab/subjectrooms)
-"Gd" = (
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/laboratory)
-"Gq" = (
-/obj/effect/decal/cleanable/molten_object/large,
-/obj/effect/decal/cleanable/food/plant_smudge,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"Gu" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/laboratory)
-"Gv" = (
-/obj/effect/turf_decal/corner_techfloor_grid{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/plasteel/dark,
-/area/ruin/unpowered/codelab/reception)
-"GG" = (
-/obj/effect/decal/cleanable/generic,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/reception)
-"GH" = (
-/obj/structure/closet/crate/trashcart,
-/obj/item/pushbroom,
-/obj/item/trash/popcorn,
-/obj/item/trash/boritos,
-/obj/item/trash/can,
-/obj/item/trash/syndi_cakes,
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/codelab/storage)
-"GK" = (
-/obj/structure/closet/crate{
- anchored = 1
- },
-/obj/item/storage/toolbox/mechanical/old,
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/codelab/storage)
-"GN" = (
-/obj/effect/turf_decal/corner/opaque/white/mono,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"GY" = (
-/obj/machinery/door/airlock/public{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"Hc" = (
-/obj/effect/turf_decal/industrial/outline,
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/codelab/storage)
-"Hd" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer4{
- dir = 4
- },
-/obj/effect/turf_decal/trimline/opaque/blue/filled/corner{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered/codelab/maintenance)
-"He" = (
-/turf/closed/wall/mineral/titanium,
-/area/ruin/unpowered/codelab/subjectrooms)
-"Hi" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/storage)
-"Hk" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/reception)
-"Ho" = (
-/obj/machinery/camera{
- dir = 10
- },
-/obj/structure/fluff/paper/stack{
- dir = 1
- },
-/obj/effect/decal/cleanable/molten_object,
-/obj/effect/turf_decal/corner/opaque/ntblue/border{
- dir = 8
- },
-/obj/machinery/light/broken/directional/south,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"Hp" = (
-/obj/effect/decal/cleanable/molten_object/large,
-/mob/living/simple_animal/slime,
-/obj/effect/decal/cleanable/food/plant_smudge,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/laboratory)
-"Hu" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/fluff/paper/stack{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"HA" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/visible/layer2{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered/codelab/maintenance)
-"HQ" = (
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/storage)
-"HW" = (
-/obj/structure/flora/ausbushes/hell,
-/turf/open/floor/plating/grass/lava/orange,
-/area/ruin/unpowered/codelab/exterior)
-"Ig" = (
-/obj/structure/chair/office/light{
- dir = 8
- },
-/obj/effect/turf_decal/trimline/opaque/grey/filled/line{
- dir = 10
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/laboratory)
-"In" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/turf/open/floor/wood,
-/area/ruin/unpowered/codelab/laboratory)
-"It" = (
-/obj/machinery/power/apc/auto_name/directional/north,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered/codelab/maintenance)
-"Iu" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/cable{
- icon_state = "1-6"
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered/codelab/maintenance)
-"Iv" = (
-/turf/template_noop,
-/area/template_noop)
-"IC" = (
-/obj/structure/cable{
- 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/plasteel/white,
-/area/ruin/unpowered/codelab/storage)
-"IG" = (
-/obj/machinery/power/apc/auto_name/directional/north,
-/obj/structure/cable{
- icon_state = "0-6"
- },
-/obj/effect/turf_decal/trimline/opaque/grey/filled/line{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/laboratory)
-"IL" = (
-/obj/effect/turf_decal/corner/opaque/white/mono,
-/obj/machinery/light/dim/directional/south,
-/obj/structure/fluff/paper/stack,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"IO" = (
-/obj/structure/fence/door{
- open = 1
- },
-/turf/open/floor/concrete/pavement/lava,
-/area/ruin/unpowered/codelab/exterior)
-"Jb" = (
-/obj/structure/flora/ausbushes/fernybush/hell,
-/turf/open/floor/plating/grass/lava,
-/area/ruin/unpowered/codelab/exterior)
-"Jd" = (
-/obj/effect/decal/cleanable/ash,
-/turf/open/floor/carpet/nanoweave/purple,
-/area/ruin/unpowered/codelab/reception)
-"Jk" = (
-/obj/effect/turf_decal/corner/opaque/white/mono,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"Jm" = (
-/obj/structure/window/plasma/reinforced,
-/obj/structure/window/plasma/reinforced{
- dir = 8
- },
-/obj/structure/window/plasma/reinforced{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrogen_output,
-/turf/open/floor/engine/n2,
-/area/ruin/unpowered/codelab/maintenance)
-"Jn" = (
-/obj/structure/table,
-/obj/machinery/microwave,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/laboratory)
-"Js" = (
-/obj/effect/decal/cleanable/wrapping,
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/storage)
-"Jv" = (
-/obj/structure/cable{
- icon_state = "6-9"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/carpet/nanoweave/red,
-/area/ruin/unpowered/codelab/laboratory)
-"JE" = (
-/turf/open/floor/wood{
- icon_state = "wood-broken5"
- },
-/area/ruin/unpowered/codelab/reception)
-"JI" = (
-/obj/machinery/atmospherics/pipe/simple/supply/visible/layer2{
- dir = 4
- },
-/obj/machinery/light/dim/directional/south,
-/obj/machinery/atmospherics/components/trinary/mixer/airmix{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered/codelab/maintenance)
-"JM" = (
-/obj/machinery/door/window/brigdoor/eastright,
-/obj/effect/turf_decal/siding/wood{
- dir = 5
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered/codelab/reception)
-"JR" = (
-/obj/item/trash/chips,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/carpet/nanoweave/purple,
-/area/ruin/unpowered/codelab/reception)
-"JX" = (
-/obj/machinery/computer/atmos_control/tank/nitrogen_tank,
-/obj/effect/turf_decal/trimline/opaque/bottlegreen/filled/line{
- dir = 5
- },
-/turf/open/floor/plating/rust,
-/area/ruin/unpowered/codelab/maintenance)
-"JZ" = (
-/obj/effect/turf_decal/dept/cargo,
-/turf/open/floor/concrete/pavement/lava,
-/area/ruin/unpowered/codelab/exterior)
-"Ka" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer4{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/supply/visible/layer2{
- dir = 9
- },
-/turf/open/floor/plating/rust,
-/area/ruin/unpowered/codelab/maintenance)
-"Kj" = (
-/obj/machinery/computer/security/telescreen{
- pixel_y = 27
- },
-/obj/structure/closet/cardboard,
-/obj/item/clothing/under/color/white,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"Kl" = (
-/obj/machinery/light/small/directional/north,
-/turf/open/floor/concrete/pavement/lava,
-/area/ruin/unpowered/codelab/exterior)
-"Kp" = (
-/turf/closed/wall/mineral/titanium/nodiagonal,
-/area/ruin/unpowered/codelab/laboratory)
-"Kv" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/reception)
-"Kw" = (
-/obj/structure/table,
-/obj/item/trash/plate,
-/obj/item/trash/plate{
- pixel_y = 10
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"Kx" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer4{
- dir = 4
- },
-/obj/effect/turf_decal/trimline/opaque/bottlegreen/filled/corner{
- dir = 4
- },
-/turf/open/floor/plating/rust,
-/area/ruin/unpowered/codelab/maintenance)
-"KO" = (
-/obj/structure/sign/poster/contraband/cybersun_med{
- pixel_y = 31
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered/codelab/laboratory)
-"KQ" = (
-/obj/structure/fluff/empty_sleeper/nanotrasen{
- pixel_y = 3
- },
-/obj/effect/turf_decal/corner/opaque/white/mono,
-/obj/effect/turf_decal/industrial/warning{
- dir = 6
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"KT" = (
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"Lg" = (
-/obj/structure/flora/rock/hell,
-/turf/open/floor/plating/grass/lava/purple,
-/area/ruin/unpowered/codelab/exterior)
-"Lr" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/storage)
-"Lx" = (
-/obj/structure/flora/ausbushes/fernybush/hell,
-/turf/open/floor/plating/grass/lava/orange,
-/area/ruin/unpowered/codelab/exterior)
-"Lz" = (
-/obj/effect/turf_decal/corner_techfloor_grid/full{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/unpowered/codelab/reception)
-"LD" = (
-/obj/machinery/camera{
- dir = 10
- },
-/obj/structure/table,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/laboratory)
-"LG" = (
-/obj/effect/decal/cleanable/generic,
-/turf/open/floor/carpet/nanoweave/purple,
-/area/ruin/unpowered/codelab/reception)
-"LH" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 4
- },
-/turf/open/floor/carpet/nanoweave/purple,
-/area/ruin/unpowered/codelab/reception)
-"LP" = (
-/obj/machinery/light/dim/directional/west,
-/mob/living/simple_animal/slime,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"LU" = (
-/obj/machinery/door/airlock/public{
- name = "Testing Room C"
- },
-/obj/effect/mapping_helpers/airlock/locked,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"LV" = (
-/obj/structure/window/plasma/reinforced{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrogen_input{
- dir = 4
- },
-/turf/open/floor/engine/n2,
-/area/ruin/unpowered/codelab/maintenance)
-"Ma" = (
-/obj/structure/closet/l3closet/scientist,
-/obj/effect/turf_decal/trimline/opaque/grey/filled/line{
- dir = 9
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/laboratory)
-"Mp" = (
-/obj/machinery/light/small/directional/north,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/storage)
-"Mv" = (
-/obj/structure/closet/secure_closet/personal/cabinet,
-/obj/item/clothing/neck/tie/purple,
-/obj/item/spacecash/bundle/c1000,
-/turf/open/floor/wood,
-/area/ruin/unpowered/codelab/laboratory)
-"MB" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered/codelab/maintenance)
-"ME" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 8
- },
-/turf/open/floor/carpet/nanoweave/purple,
-/area/ruin/unpowered/codelab/reception)
-"MK" = (
-/obj/structure/table,
-/obj/item/modular_computer/laptop,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/laboratory)
-"MN" = (
-/obj/structure/holosign/barrier/infinite,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/storage)
-"Ni" = (
-/obj/structure/closet/crate/secure/plasma{
- anchored = 1
- },
-/obj/item/stack/sheet/mineral/plasma,
-/obj/item/stack/sheet/mineral/plasma,
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/codelab/storage)
-"Nn" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/storage)
-"Nq" = (
-/obj/machinery/power/apc/auto_name/directional/north,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/reception)
-"NA" = (
-/obj/machinery/atmospherics/components/trinary/filter/atmos/o2{
- dir = 8;
- piping_layer = 4
- },
-/obj/effect/turf_decal/trimline/opaque/blue/filled/corner{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered/codelab/maintenance)
-"NL" = (
-/turf/open/floor/wood,
-/area/ruin/unpowered/codelab/laboratory)
-"NW" = (
-/obj/item/cigbutt/cigarbutt,
-/turf/open/floor/carpet/nanoweave/purple,
-/area/ruin/unpowered/codelab/reception)
-"NX" = (
-/obj/structure/window/plasma/reinforced{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/oxygen_input{
- dir = 4
- },
-/turf/open/floor/engine/o2,
-/area/ruin/unpowered/codelab/maintenance)
-"Ob" = (
-/obj/structure/chair/sofa/brown/directional/north,
-/obj/machinery/light/dim/directional/south,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/reception)
-"Od" = (
-/obj/structure/cable{
- 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/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"Oj" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
-/turf/open/floor/carpet/nanoweave/purple,
-/area/ruin/unpowered/codelab/reception)
-"Op" = (
-/obj/machinery/door/airlock/public{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/storage)
-"Oq" = (
-/obj/effect/decal/cleanable/molten_object,
-/obj/effect/turf_decal/trimline/opaque/grey/filled/line,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/laboratory)
-"OE" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/molten_object,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/storage)
-"OM" = (
-/obj/machinery/door/poddoor{
- id = "NTGen Door"
- },
-/turf/open/floor/plasteel/tech/grid,
-/area/ruin/unpowered/codelab/storage)
-"OW" = (
-/obj/effect/decal/cleanable/ash,
-/obj/effect/turf_decal/siding/wood{
- dir = 1
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered/codelab/reception)
-"Pc" = (
-/turf/closed/wall/mineral/titanium,
-/area/ruin/unpowered/codelab/storage)
-"Pu" = (
-/obj/machinery/airalarm/directional/north,
-/turf/open/floor/plating/rust,
-/area/ruin/unpowered/codelab/maintenance)
-"PK" = (
-/obj/structure/table,
-/obj/structure/window/reinforced/spawner,
-/obj/machinery/computer/med_data/laptop{
- dir = 1;
- pixel_y = 7
- },
-/obj/effect/turf_decal/siding/wood,
-/turf/open/floor/wood,
-/area/ruin/unpowered/codelab/reception)
-"PL" = (
-/obj/effect/decal/cleanable/ash,
-/obj/machinery/light/broken/directional/west,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/reception)
-"PP" = (
-/obj/structure/table/optable,
-/obj/effect/turf_decal/corner/opaque/ntblue/border{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"PU" = (
-/obj/structure/cable{
- icon_state = "4-9"
- },
-/obj/effect/turf_decal/trimline/opaque/grey/filled/line{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/laboratory)
-"Qb" = (
-/obj/machinery/camera,
-/obj/effect/turf_decal/techfloor/hole/right{
- dir = 4
- },
-/mob/living/simple_animal/slime,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"Qc" = (
-/obj/structure/closet/crate/large{
- anchored = 1
- },
-/obj/item/toy/plush/carpplushie,
-/obj/effect/turf_decal/industrial/outline/yellow,
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/codelab/storage)
-"Qi" = (
-/obj/machinery/atmospherics/components/unary/cryo_cell{
- icon_state = "pod-open";
- state_open = 1
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"Qm" = (
-/mob/living/simple_animal/slime,
-/obj/effect/turf_decal/corner/opaque/ntblue/border{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"Qn" = (
-/obj/structure/table,
-/obj/effect/turf_decal/corner_techfloor_grid/full{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/unpowered/codelab/reception)
-"Qv" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer4{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered/codelab/maintenance)
-"QC" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/laboratory)
-"QD" = (
-/obj/machinery/light/dim/directional/north,
-/obj/structure/holosign/barrier/infinite,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/storage)
-"QJ" = (
-/obj/machinery/atmospherics/pipe/simple/general/hidden{
- dir = 5
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"QO" = (
-/obj/structure/fence/corner{
- dir = 9
- },
-/turf/open/floor/plating/grass/lava/orange,
-/area/ruin/unpowered/codelab/exterior)
-"QQ" = (
-/obj/structure/closet/crate/large{
- anchored = 1
- },
-/obj/item/toy/plush/nukeplushie,
-/obj/effect/turf_decal/industrial/outline,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/codelab/storage)
-"QU" = (
-/obj/item/newspaper,
-/obj/effect/decal/cleanable/molten_object,
-/obj/machinery/light/broken/directional/north,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"QV" = (
-/obj/structure/cable{
- icon_state = "0-10"
- },
-/obj/machinery/power/rtg,
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/obj/effect/turf_decal/industrial/outline/yellow,
-/turf/open/floor/plating,
-/area/ruin/unpowered/codelab/maintenance)
-"Rf" = (
-/obj/structure/table,
-/obj/structure/window/reinforced/spawner,
-/obj/item/paper_bin{
- pixel_y = 4
- },
-/obj/effect/turf_decal/siding/wood,
-/turf/open/floor/wood,
-/area/ruin/unpowered/codelab/reception)
-"Rg" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"Ri" = (
-/obj/structure/closet/crate/large{
- anchored = 1
- },
-/obj/item/toy/plush/lizardplushie,
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/codelab/storage)
-"Ro" = (
-/obj/effect/decal/cleanable/generic,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/storage)
-"Rp" = (
-/obj/effect/decal/cleanable/food/plant_smudge,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/reception)
-"Ru" = (
-/obj/effect/turf_decal/corner/opaque/white/mono,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/fluff/paper/stack,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"RI" = (
-/obj/structure/closet/crate/large{
- anchored = 1
- },
-/obj/item/toy/plush/knight,
-/obj/effect/turf_decal/industrial/outline,
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/codelab/storage)
-"RS" = (
-/obj/machinery/atmospherics/components/binary/pump/on{
- name = "Nitrogen to Air"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer4{
- dir = 4
- },
-/obj/effect/turf_decal/trimline/opaque/bottlegreen/filled/line{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered/codelab/maintenance)
-"RX" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 10
- },
-/obj/machinery/light/small/directional/north,
-/obj/effect/turf_decal/trimline/opaque/bottlegreen/filled/line{
- dir = 4
- },
-/obj/effect/turf_decal/trimline/opaque/lightgrey/filled/line{
- dir = 8
- },
-/turf/open/floor/plating/rust,
-/area/ruin/unpowered/codelab/maintenance)
-"RY" = (
-/obj/structure/marker_beacon,
-/obj/machinery/button{
- pixel_x = -5;
- pixel_y = 26;
- name = "broken door button";
- desc = "A remote control switch, rendered unusable due to harsh conditions and age."
- },
-/obj/machinery/button/shieldwallgen{
- id = "NTGen Doorfield";
- pixel_x = 6;
- pixel_y = 25
- },
-/turf/open/floor/plating/grass/lava/orange,
-/area/ruin/unpowered/codelab/exterior)
-"RZ" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
-/turf/open/floor/plating/rust,
-/area/ruin/unpowered/codelab/maintenance)
-"Sf" = (
-/obj/effect/turf_decal/box/white/corners{
- dir = 1
- },
-/turf/open/floor/concrete/pavement/lava,
-/area/ruin/unpowered/codelab/exterior)
-"Sn" = (
-/obj/structure/fence,
-/turf/open/floor/plating/grass/lava/purple,
-/area/ruin/unpowered/codelab/exterior)
-"Sq" = (
-/obj/structure/cable{
- icon_state = "5-8"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/unpowered/codelab/maintenance)
-"St" = (
-/obj/structure/cable{
- icon_state = "4-10"
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/storage)
-"SG" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/molten_object/large,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"SQ" = (
-/obj/machinery/power/terminal{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "0-5"
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered/codelab/maintenance)
-"SY" = (
-/turf/open/floor/plating/grass/lava/orange,
-/area/ruin/unpowered/codelab/exterior)
-"Tg" = (
-/obj/structure/filingcabinet/double,
-/obj/effect/turf_decal/siding/wood{
- dir = 1
- },
-/turf/open/floor/wood{
- icon_state = "wood-broken6"
- },
-/area/ruin/unpowered/codelab/reception)
-"Tw" = (
-/obj/machinery/camera,
-/obj/effect/turf_decal/techfloor/hole/right{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"Ty" = (
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/codelab/storage)
-"Tz" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/obj/structure/table,
-/obj/item/trash/plate,
-/obj/item/reagent_containers/food/drinks/drinkingglass{
- pixel_y = 14;
- pixel_x = -8
- },
-/turf/open/floor/carpet/nanoweave/red,
-/area/ruin/unpowered/codelab/laboratory)
-"TG" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"TJ" = (
-/obj/effect/turf_decal/corner/opaque/white/mono,
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"TQ" = (
-/obj/machinery/shower{
- dir = 8;
- pixel_y = 8
- },
-/obj/structure/curtain,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/laboratory)
-"TR" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"TS" = (
-/obj/machinery/porta_turret/ship/weak/codelab,
-/turf/closed/wall/mineral/titanium,
-/area/ruin/unpowered/codelab/exterior)
-"Ue" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/reception)
-"Uf" = (
-/obj/structure/table,
-/obj/structure/window/reinforced/spawner,
-/obj/structure/window/reinforced/spawner/west,
-/obj/item/clothing/mask/cigarette,
-/obj/effect/turf_decal/siding/wood{
- dir = 10
- },
-/turf/open/floor/wood{
- icon_state = "wood-broken3"
- },
-/area/ruin/unpowered/codelab/reception)
-"Ui" = (
-/obj/structure/closet/crate/wooden{
- anchored = 1
- },
-/obj/effect/turf_decal/industrial/outline,
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/codelab/storage)
-"Uj" = (
-/obj/structure/fluff/paper/stack{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"Un" = (
-/obj/structure/table,
-/obj/item/flashlight/lamp,
-/obj/effect/turf_decal/corner_techfloor_grid/full,
-/turf/open/floor/plasteel/dark,
-/area/ruin/unpowered/codelab/reception)
-"Ux" = (
-/obj/machinery/door/airlock/external{
- dir = 8
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 4
- },
-/obj/effect/mapping_helpers/airlock/locked,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer4{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered/codelab/maintenance)
-"Uy" = (
-/turf/open/floor/plating,
-/area/ruin/unpowered/codelab/maintenance)
-"UA" = (
-/obj/structure/table,
-/obj/effect/spawner/lootdrop/donkpockets,
-/obj/item/storage/box/cups,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/laboratory)
-"UM" = (
-/turf/closed/wall/mineral/titanium,
-/area/ruin/unpowered/codelab/maintenance)
-"UU" = (
-/obj/structure/fence/corner{
- dir = 5
- },
-/turf/open/floor/plating/grass/lava/purple,
-/area/ruin/unpowered/codelab/exterior)
-"Vc" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 10
- },
-/obj/machinery/light/small/directional/north,
-/obj/effect/turf_decal/trimline/opaque/blue/filled/line{
- dir = 4
- },
-/obj/effect/turf_decal/trimline/opaque/bottlegreen/filled/line{
- dir = 8
- },
-/turf/open/floor/plating/rust,
-/area/ruin/unpowered/codelab/maintenance)
-"Vd" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/visible/layer2{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered/codelab/maintenance)
-"Vi" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/light/dim/directional/south,
-/turf/open/floor/carpet/nanoweave/purple,
-/area/ruin/unpowered/codelab/laboratory)
-"VQ" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/closet/crate/large{
- anchored = 1
- },
-/obj/item/toy/plush/hornet/gay,
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/codelab/storage)
-"VW" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/carpet/nanoweave/purple,
-/area/ruin/unpowered/codelab/reception)
-"VX" = (
-/obj/structure/closet/cardboard,
-/obj/item/clothing/under/color/white,
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"VY" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered/codelab/laboratory)
-"Wa" = (
-/obj/structure/table,
-/obj/item/slime_extract/grey,
-/obj/item/reagent_containers/glass/beaker{
- pixel_y = 10;
- pixel_x = -9
- },
-/obj/item/research_notes/loot/small{
- pixel_y = 6;
- pixel_x = 10;
- name = "Notes on Xenobiology"
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/laboratory)
-"Wq" = (
-/obj/structure/window/plasma/reinforced{
- dir = 8
- },
-/obj/structure/window/plasma/reinforced{
- dir = 1
- },
-/obj/effect/turf_decal/atmos/air,
-/turf/open/floor/engine,
-/area/ruin/unpowered/codelab/maintenance)
-"Ws" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/on/layer4,
-/turf/open/floor/concrete/pavement/lava,
-/area/ruin/unpowered/codelab/maintenance)
-"Wt" = (
-/obj/structure/table,
-/obj/structure/window/reinforced/spawner,
-/obj/item/paper_bin/carbon{
- pixel_y = 4
- },
-/obj/effect/turf_decal/siding/wood,
-/turf/open/floor/wood{
- icon_state = "wood-broken7"
- },
-/area/ruin/unpowered/codelab/reception)
-"Wv" = (
-/obj/structure/filingcabinet/chestdrawer,
-/obj/effect/turf_decal/siding/wood{
- dir = 1
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered/codelab/reception)
-"WF" = (
-/obj/structure/table/chem,
-/obj/item/reagent_containers/glass/beaker/plastic{
- pixel_x = -7;
- pixel_y = 9
- },
-/obj/item/reagent_containers/glass/beaker/plastic{
- pixel_y = 9;
- pixel_x = 10
- },
-/obj/item/slime_extract/grey,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/laboratory)
-"WG" = (
-/obj/structure/closet/crate/medical{
- anchored = 1
- },
-/obj/item/stack/medical/gauze/twelve,
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/codelab/storage)
-"WH" = (
-/obj/effect/decal/cleanable/food/pie_smudge{
- desc = "Some kind of strange white goo.";
- name = "strange goo"
- },
-/obj/machinery/light/dim/directional/east,
-/obj/effect/turf_decal/corner/opaque/purple/border{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"WQ" = (
-/obj/structure/fence/corner{
- dir = 8
- },
-/turf/open/floor/plating/grass/lava,
-/area/ruin/unpowered/codelab/exterior)
-"WV" = (
-/obj/effect/decal/cleanable/cobweb,
-/obj/structure/fluff/paper/stack{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"WX" = (
-/obj/machinery/atmospherics/components/binary/pump/on{
- name = "Air to Distro";
- target_pressure = 1000
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/visible/layer2{
- dir = 8
- },
-/obj/effect/turf_decal/trimline/opaque/lightgrey/filled/line{
- dir = 1
- },
-/turf/open/floor/plating/rust,
-/area/ruin/unpowered/codelab/maintenance)
-"Xh" = (
-/obj/machinery/camera{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/storage)
-"Xl" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 1
- },
-/turf/open/floor/carpet/nanoweave/purple,
-/area/ruin/unpowered/codelab/reception)
-"Xo" = (
-/obj/machinery/camera,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/reception)
-"Xq" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 8
- },
-/obj/structure/sign/poster/official/work_for_a_future{
- pixel_y = -32
- },
-/obj/machinery/blackbox_recorder,
-/turf/open/floor/wood,
-/area/ruin/unpowered/codelab/laboratory)
-"Xu" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
-/obj/structure/sign/poster/official/random{
- pixel_y = 32
- },
-/turf/open/floor/carpet/nanoweave/purple,
-/area/ruin/unpowered/codelab/laboratory)
-"Xx" = (
-/obj/effect/decal/cleanable/generic,
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"XA" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 4
- },
-/obj/structure/chair/comfy/orange/directional/west,
-/turf/open/floor/wood,
-/area/ruin/unpowered/codelab/laboratory)
-"XB" = (
-/obj/structure/table/optable,
-/obj/effect/turf_decal/corner/opaque/purple/border{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"XS" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"XZ" = (
-/obj/structure/closet/crate/secure/plasma{
- anchored = 1
- },
-/obj/machinery/light/dim/directional/north,
-/obj/item/stack/sheet/mineral/plasma,
-/obj/item/stack/sheet/mineral/plasma,
-/obj/item/tank/internals/plasma,
-/obj/effect/turf_decal/industrial/outline,
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/codelab/storage)
-"Ya" = (
-/obj/machinery/door/airlock/external,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/reception)
-"Yk" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 4
- },
-/obj/effect/turf_decal/trimline/opaque/grey/filled/line{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/laboratory)
-"Yl" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/storage)
-"Yo" = (
-/obj/machinery/airalarm/directional/north,
-/turf/open/floor/carpet/nanoweave/purple,
-/area/ruin/unpowered/codelab/laboratory)
-"Yq" = (
-/obj/machinery/light/dim/directional/north,
-/obj/effect/turf_decal/siding/wood{
- dir = 1
- },
-/turf/open/floor/wood{
- icon_state = "wood-broken3"
- },
-/area/ruin/unpowered/codelab/reception)
-"Yr" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/reception)
-"Ys" = (
-/obj/structure/flora/ausbushes/hell,
-/turf/open/floor/plating/grass/lava,
-/area/ruin/unpowered/codelab/exterior)
-"Yw" = (
-/obj/structure/table,
-/obj/item/research_notes/loot/small{
- pixel_y = 6;
- pixel_x = 10;
- name = "Notes on Xenobiology"
- },
-/obj/item/disk/design_disk/adv{
- pixel_x = -9;
- pixel_y = 8
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/laboratory)
-"YB" = (
-/obj/machinery/light/broken/directional/north,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"YH" = (
-/turf/open/floor/wood,
-/area/ruin/unpowered/codelab/reception)
-"YO" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer4{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered/codelab/maintenance)
-"YV" = (
-/obj/structure/flora/ausbushes/genericbush/hell,
-/turf/open/floor/plating/grass/lava,
-/area/ruin/unpowered/codelab/exterior)
-"YW" = (
-/obj/structure/closet/cardboard,
-/obj/item/clothing/under/color/white,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"Zb" = (
-/obj/structure/marker_beacon,
-/obj/machinery/turretid{
- pixel_y = 26;
- name = "exterior turret control panel";
- lethal = 1;
- icon_state = "control_kill"
- },
-/turf/open/floor/plating/grass/lava/purple,
-/area/ruin/unpowered/codelab/exterior)
-"Zd" = (
-/obj/machinery/light/small/directional/north,
-/turf/open/floor/wood,
-/area/ruin/unpowered/codelab/laboratory)
-"Ze" = (
-/obj/effect/turf_decal/trimline/opaque/grey/filled/line{
- dir = 6
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/laboratory)
-"Zf" = (
-/obj/machinery/light/small/directional/north,
-/obj/structure/closet/emcloset/anchored,
-/turf/open/floor/plating/rust,
-/area/ruin/unpowered/codelab/maintenance)
-"Zi" = (
-/obj/machinery/vending/cola/shamblers,
-/obj/machinery/light/dim/directional/east,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/reception)
-"Zk" = (
-/obj/structure/cable{
- icon_state = "1-9"
- },
-/obj/structure/cable{
- 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/machinery/light/dim/directional/south,
-/turf/open/floor/plating,
-/area/ruin/unpowered/codelab/maintenance)
-"Zl" = (
-/obj/structure/fence{
- dir = 4
- },
-/turf/open/floor/concrete/pavement/lava,
-/area/ruin/unpowered/codelab/exterior)
-"Zs" = (
-/obj/structure/flora/tree/dead/hell,
-/turf/open/floor/plating/grass/lava,
-/area/ruin/unpowered/codelab/exterior)
-"Zv" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/visible/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer4,
-/obj/machinery/door/airlock/glass,
-/turf/open/floor/carpet/nanoweave/purple,
-/area/ruin/unpowered/codelab/laboratory)
-"Zx" = (
-/obj/structure/marker_beacon,
-/turf/open/floor/concrete/pavement/lava,
-/area/ruin/unpowered/codelab/exterior)
-"Zy" = (
-/obj/machinery/vending/snack/teal,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/reception)
-"Zz" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"ZC" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered/codelab/subjectrooms)
-"ZG" = (
-/obj/structure/closet/crate/internals{
- anchored = 1
- },
-/obj/item/tank/internals/oxygen,
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered/codelab/storage)
-
-(1,1,1) = {"
-Iv
-Iv
-Iv
-SY
-SY
-SY
-SY
-SY
-Iv
-Iv
-Iv
-Iv
-Iv
-Iv
-Iv
-Iv
-Iv
-Iv
-Iv
-Iv
-mA
-mA
-mA
-mA
-mA
-mA
-mA
-Iv
-Iv
-Iv
-Iv
-Iv
-Iv
-Iv
-Iv
-"}
-(2,1,1) = {"
-Iv
-SY
-SY
-lc
-SY
-SY
-SY
-md
-SY
-SY
-SY
-SY
-SY
-mA
-AK
-mA
-mA
-mA
-mA
-mA
-mA
-mA
-mA
-mA
-mA
-mA
-mA
-mA
-AK
-mA
-mA
-mA
-mA
-mA
-Iv
-"}
-(3,1,1) = {"
-Iv
-SY
-QO
-kF
-kF
-kF
-kF
-kF
-kF
-kF
-kF
-kF
-cv
-cv
-cv
-cv
-cv
-TS
-cv
-cv
-cv
-cv
-cv
-cv
-cv
-cv
-cv
-cv
-cv
-cv
-cv
-cv
-WQ
-mA
-Iv
-"}
-(4,1,1) = {"
-Iv
-SY
-rf
-SY
-SY
-SY
-md
-SY
-SY
-SY
-mA
-mA
-mA
-mA
-mA
-pB
-mA
-YV
-mA
-mA
-Zs
-mA
-mA
-YV
-gE
-mA
-mA
-YV
-mA
-pB
-mA
-mA
-gY
-mA
-Iv
-"}
-(5,1,1) = {"
-SY
-SY
-rf
-SY
-SY
-ny
-SY
-SY
-mA
-mA
-YV
-mA
-pB
-mA
-mA
-mA
-mA
-mA
-mA
-mA
-mA
-mA
-mA
-mA
-mA
-pB
-mA
-mA
-Jb
-mA
-ny
-mA
-gY
-AK
-mA
-"}
-(6,1,1) = {"
-lc
-SY
-rf
-SY
-vu
-SY
-SY
-SY
-SY
-jB
-He
-He
-He
-He
-He
-He
-hE
-hE
-hE
-hE
-hE
-hE
-hE
-hE
-mA
-mA
-mA
-mA
-mA
-mA
-mA
-mA
-gY
-mA
-mA
-"}
-(7,1,1) = {"
-SY
-SY
-rf
-SY
-SY
-SY
-SY
-SY
-jB
-jB
-He
-Qb
-KT
-wu
-iw
-He
-hE
-jH
-fZ
-Qn
-Un
-il
-jH
-hE
-hE
-AK
-mA
-mA
-mA
-Zs
-mA
-mA
-gY
-mA
-mA
-"}
-(8,1,1) = {"
-Lx
-SY
-rf
-SY
-SY
-SY
-SY
-SY
-jB
-jB
-He
-Qi
-QJ
-EM
-vb
-He
-rV
-Rp
-GG
-Gv
-dQ
-BI
-tD
-gM
-hE
-mA
-YV
-mA
-mA
-Ys
-mA
-pB
-gY
-mA
-mA
-"}
-(9,1,1) = {"
-SY
-SY
-rf
-SY
-SY
-SY
-SY
-SY
-Ws
-vL
-He
-sr
-xN
-EM
-Ef
-He
-cZ
-jx
-Hk
-DB
-Cj
-Yr
-lZ
-Lz
-hE
-mA
-mA
-mA
-pB
-mA
-mA
-mA
-gY
-mA
-mA
-"}
-(10,1,1) = {"
-SY
-SY
-rf
-SY
-SY
-SY
-SY
-UM
-UM
-Ux
-He
-mX
-pG
-BN
-kh
-He
-He
-GY
-AN
-He
-hE
-qU
-nZ
-hE
-hE
-hE
-hE
-hE
-mA
-mA
-AK
-mA
-gY
-mA
-mA
-"}
-(11,1,1) = {"
-Iv
-SY
-rf
-vQ
-SY
-SY
-SY
-UM
-Zf
-YO
-He
-oo
-sW
-Ai
-AL
-je
-WV
-TR
-TG
-EM
-hE
-FH
-Cd
-Cd
-PL
-ls
-gz
-hE
-mA
-mA
-mA
-mA
-gY
-mA
-mA
-"}
-(12,1,1) = {"
-Iv
-lc
-TS
-SY
-SY
-SY
-SY
-UM
-Fx
-MB
-He
-He
-He
-He
-He
-He
-TJ
-sE
-ob
-ye
-hE
-Nq
-LH
-kl
-kl
-NW
-Cw
-hE
-gE
-mA
-pB
-mA
-TS
-mA
-Iv
-"}
-(13,1,1) = {"
-Iv
-SY
-rf
-SY
-SY
-SY
-SY
-UM
-RZ
-uV
-He
-zK
-sB
-Qm
-Ho
-He
-Ay
-uy
-AG
-wd
-hE
-yT
-nl
-ME
-DZ
-CX
-Ob
-hE
-mA
-mA
-mA
-mA
-gY
-mA
-Iv
-"}
-(14,1,1) = {"
-Iv
-SY
-rf
-SY
-SY
-SY
-SY
-UM
-ns
-Vd
-He
-YB
-sE
-nH
-YW
-He
-fq
-sc
-vD
-lU
-hE
-Cd
-Cd
-zJ
-lY
-JR
-iN
-hE
-mA
-mA
-mA
-gE
-gY
-mA
-Iv
-"}
-(15,1,1) = {"
-Iv
-SY
-rf
-SY
-SY
-SY
-UM
-UM
-UM
-AB
-He
-PP
-xK
-hx
-AL
-ri
-xM
-TR
-eI
-rI
-hE
-oK
-aP
-Uf
-kl
-VW
-jz
-hE
-mA
-gE
-mA
-mA
-gY
-mA
-Iv
-"}
-(16,1,1) = {"
-Iv
-SY
-rf
-SY
-SY
-UM
-UM
-Ej
-xV
-Ka
-He
-He
-He
-He
-He
-He
-mO
-GN
-cR
-GN
-hE
-OW
-JE
-ya
-LG
-VW
-hE
-hE
-hE
-hE
-Ys
-mA
-gY
-mA
-Iv
-"}
-(17,1,1) = {"
-Iv
-SY
-rf
-SY
-SY
-UM
-Wq
-AO
-WX
-Bm
-He
-qr
-rq
-BJ
-zM
-He
-nM
-EM
-Hu
-EM
-hE
-Yq
-bl
-oY
-kl
-VW
-hE
-lJ
-Cd
-hE
-Kl
-jB
-rf
-SY
-Iv
-"}
-(18,1,1) = {"
-Iv
-SY
-rf
-Lx
-SY
-UM
-aO
-Bc
-sK
-nw
-He
-zH
-lU
-nH
-kh
-He
-tx
-GN
-bE
-Uj
-hE
-Wv
-wM
-PK
-kl
-Xl
-Ya
-Kv
-Ue
-ck
-jB
-jB
-IO
-SY
-Iv
-"}
-(19,1,1) = {"
-Iv
-SY
-rf
-SY
-SY
-UM
-RX
-mZ
-ol
-pS
-He
-XB
-WH
-CA
-AL
-xQ
-Du
-Zz
-bo
-Gq
-hE
-Tg
-YH
-Rf
-uk
-uL
-hE
-hE
-hE
-hE
-jB
-jB
-Zl
-SY
-Iv
-"}
-(20,1,1) = {"
-Iv
-SY
-rf
-SY
-SY
-UM
-hz
-JX
-Kx
-of
-He
-He
-He
-He
-He
-He
-TJ
-kA
-cR
-GN
-hE
-lW
-JE
-Wt
-kl
-Xl
-Ya
-Kv
-Ue
-ck
-jB
-jB
-IO
-SY
-SY
-"}
-(21,1,1) = {"
-Iv
-Lx
-rf
-SY
-SY
-UM
-LV
-Jm
-RS
-JI
-He
-KQ
-dx
-bT
-cA
-He
-hu
-EM
-Od
-nM
-hE
-Do
-bl
-dg
-kl
-VW
-hE
-lJ
-Cd
-hE
-Kl
-jB
-rf
-SY
-SY
-"}
-(22,1,1) = {"
-Iv
-SY
-rf
-SY
-SY
-UM
-Vc
-qL
-yS
-HA
-He
-QU
-ie
-VX
-Gc
-LU
-Jk
-TR
-bo
-GN
-hE
-kj
-hO
-PK
-kl
-VW
-hE
-hE
-hE
-hE
-jB
-jB
-rf
-SY
-SY
-"}
-(23,1,1) = {"
-Iv
-SY
-DU
-SY
-SY
-UM
-am
-Bj
-Hd
-CK
-He
-nG
-wZ
-pp
-xx
-He
-TJ
-Uj
-bE
-IL
-hE
-JM
-CJ
-aY
-LG
-VW
-pY
-hE
-lc
-SY
-jB
-jB
-rf
-lc
-SY
-"}
-(24,1,1) = {"
-Iv
-SY
-DU
-SY
-SY
-UM
-NX
-eH
-eq
-dL
-He
-He
-He
-He
-He
-He
-wJ
-GN
-Od
-GN
-hE
-Cd
-Cd
-aw
-kl
-aR
-zj
-hE
-SY
-SY
-jB
-jB
-rf
-SY
-SY
-"}
-(25,1,1) = {"
-Iv
-nm
-DU
-vQ
-SY
-UM
-nQ
-AI
-NA
-cX
-He
-Tw
-LP
-ZC
-Gc
-je
-dD
-cI
-SG
-Gb
-hE
-Xo
-Oj
-Fw
-DZ
-Am
-pQ
-hE
-SY
-Lx
-jB
-jB
-rf
-SY
-SY
-"}
-(26,1,1) = {"
-Iv
-nm
-DU
-nm
-SY
-UM
-Pu
-Uy
-Qv
-ef
-He
-mX
-bv
-ir
-XS
-He
-rY
-hB
-Ru
-GN
-hE
-eY
-Jd
-kl
-kl
-kl
-DJ
-hE
-SY
-SY
-jB
-jB
-rf
-SY
-SY
-"}
-(27,1,1) = {"
-Iv
-rz
-DU
-nm
-nm
-UM
-It
-uH
-Iu
-Ev
-He
-sr
-CZ
-EM
-Kw
-He
-yc
-ln
-Rg
-Xx
-hE
-sk
-ls
-Zy
-Zi
-yo
-ls
-hE
-SY
-Zx
-jB
-jB
-rf
-SY
-SY
-"}
-(28,1,1) = {"
-Iv
-nm
-DU
-nm
-nm
-UM
-FJ
-Uy
-BF
-Zk
-He
-wc
-en
-EM
-zY
-He
-He
-Dj
-xB
-He
-hE
-hE
-hE
-hE
-hE
-hE
-hE
-hE
-SY
-jB
-jB
-Zx
-rf
-SY
-Iv
-"}
-(29,1,1) = {"
-Iv
-nm
-DU
-nm
-nm
-UM
-qb
-FF
-SQ
-mw
-He
-Kj
-Br
-EX
-wP
-He
-hb
-HQ
-rG
-ec
-qs
-iI
-DF
-Pc
-SY
-SY
-SY
-SY
-SY
-jB
-jB
-SY
-rf
-SY
-Iv
-"}
-(30,1,1) = {"
-Iv
-nm
-DU
-nm
-nm
-UM
-oj
-FT
-Sq
-mw
-et
-et
-et
-et
-et
-et
-QD
-HQ
-Lr
-lt
-HQ
-HQ
-Ro
-Pc
-SY
-lc
-SY
-vQ
-SY
-jB
-jB
-SY
-rf
-SY
-Iv
-"}
-(31,1,1) = {"
-nm
-nm
-DU
-nm
-nm
-UM
-UM
-QV
-hA
-qt
-et
-pF
-ds
-yY
-FG
-et
-rS
-DL
-kP
-qQ
-pO
-Ff
-HQ
-Pc
-SY
-SY
-SY
-SY
-SY
-jB
-jB
-HW
-rf
-SY
-Iv
-"}
-(32,1,1) = {"
-nm
-nm
-DU
-nm
-UM
-UM
-UM
-UM
-UM
-Et
-et
-Fy
-cH
-Yw
-bG
-et
-Qc
-so
-ij
-QQ
-nu
-Db
-vU
-Pc
-vQ
-SY
-SY
-SY
-Zx
-jB
-jB
-Zx
-rf
-SY
-SY
-"}
-(33,1,1) = {"
-rz
-nm
-DU
-nm
-et
-nL
-Dc
-dy
-az
-qz
-et
-eE
-eE
-eE
-eE
-et
-Pc
-Pc
-Ex
-gr
-HQ
-Di
-HQ
-Pc
-SY
-HW
-vQ
-SY
-jB
-jB
-jB
-jB
-rf
-SY
-SY
-"}
-(34,1,1) = {"
-nm
-nm
-DU
-nm
-et
-mF
-TQ
-et
-az
-qz
-et
-WF
-Gd
-Hp
-jV
-et
-Bf
-HQ
-BK
-jn
-pb
-HQ
-HQ
-Pc
-SY
-SY
-jB
-jB
-jB
-jB
-jB
-jB
-rf
-SY
-SY
-"}
-(35,1,1) = {"
-nm
-nm
-DU
-nm
-et
-et
-et
-et
-az
-Vi
-et
-ai
-rH
-Gd
-xi
-et
-DD
-HQ
-zb
-Bp
-Ui
-HQ
-HQ
-Pc
-SY
-Zx
-jB
-jB
-jB
-jB
-Zx
-jB
-rf
-SY
-SY
-"}
-(36,1,1) = {"
-nm
-Lg
-DU
-nm
-et
-Bk
-DH
-et
-az
-vz
-et
-uA
-Gd
-Gd
-Wa
-et
-ge
-HQ
-OE
-eg
-GK
-hb
-Ro
-Pc
-SY
-Sf
-BP
-jB
-jB
-BP
-CV
-jB
-rf
-SY
-SY
-"}
-(37,1,1) = {"
-nm
-nm
-DU
-nm
-et
-KO
-uM
-et
-Xu
-gc
-et
-Ma
-yL
-Yk
-Ig
-et
-Aq
-HQ
-vk
-fr
-iz
-MN
-HQ
-Pc
-SY
-jB
-jB
-jB
-jB
-jB
-jB
-jB
-rf
-SY
-SY
-"}
-(38,1,1) = {"
-nm
-nm
-DU
-tH
-et
-Zd
-XA
-et
-az
-vz
-et
-IG
-Gd
-Ep
-Oq
-et
-Pc
-Pc
-vk
-rA
-qY
-HQ
-sp
-Pc
-SY
-jB
-jB
-jB
-jB
-jB
-jB
-jB
-rf
-SY
-SY
-"}
-(39,1,1) = {"
-nm
-nm
-DU
-nm
-et
-In
-pE
-zP
-uc
-Fd
-et
-Eh
-PU
-EF
-Ze
-et
-HQ
-HQ
-AA
-gr
-Ro
-jJ
-HQ
-Pc
-SY
-jB
-jB
-jB
-jB
-jB
-jB
-jB
-rf
-SY
-Iv
-"}
-(40,1,1) = {"
-nm
-nm
-DU
-nm
-et
-et
-et
-et
-Yo
-ez
-et
-et
-CC
-zN
-et
-et
-Aq
-bd
-iq
-ih
-Ni
-dF
-RI
-Pc
-SY
-Zx
-jB
-jB
-jB
-jB
-Zx
-jB
-rf
-SY
-Iv
-"}
-(41,1,1) = {"
-Iv
-nm
-TS
-nm
-et
-AJ
-Fg
-zP
-uc
-Fd
-et
-Jn
-fG
-Gu
-rw
-et
-HQ
-iE
-wN
-ZG
-fU
-Pc
-Pc
-Pc
-SY
-jB
-jB
-jB
-jB
-jB
-jB
-jB
-TS
-SY
-Iv
-"}
-(42,1,1) = {"
-Iv
-nm
-DU
-nm
-et
-Zd
-kc
-et
-az
-vz
-et
-UA
-iB
-pk
-Gd
-et
-HQ
-HQ
-ap
-Yl
-Js
-Ro
-DD
-Pc
-SY
-jB
-jB
-jB
-jB
-jB
-jB
-jB
-rf
-SY
-Iv
-"}
-(43,1,1) = {"
-Iv
-nm
-DU
-nm
-et
-rT
-BO
-et
-ar
-AV
-et
-rL
-bz
-Ab
-bn
-et
-XZ
-zG
-kP
-by
-sz
-HQ
-HQ
-Pc
-SY
-Zx
-jB
-jB
-jB
-jB
-Zx
-jB
-rf
-SY
-Iv
-"}
-(44,1,1) = {"
-Iv
-nm
-DU
-nm
-et
-Bk
-Fz
-et
-az
-pr
-Zv
-tp
-wB
-Tz
-LD
-et
-Ty
-GH
-yJ
-EY
-Ni
-Ri
-HQ
-Pc
-SY
-jB
-jB
-jB
-jB
-jB
-jB
-jB
-rf
-SY
-Iv
-"}
-(45,1,1) = {"
-Iv
-nm
-DU
-nm
-et
-et
-et
-et
-et
-tA
-et
-uQ
-jm
-fv
-bq
-et
-Pc
-Pc
-VQ
-WG
-Hc
-HQ
-sp
-Pc
-SY
-jB
-jB
-jB
-jB
-jB
-jB
-jB
-rf
-SY
-Iv
-"}
-(46,1,1) = {"
-Iv
-nm
-DU
-nm
-et
-gD
-NL
-NL
-zI
-VY
-et
-AE
-tI
-Jv
-im
-et
-Mp
-Hi
-fu
-Nn
-hb
-HQ
-HQ
-Pc
-SY
-jB
-jB
-jB
-jB
-jB
-jB
-jB
-rf
-SY
-Iv
-"}
-(47,1,1) = {"
-Iv
-nm
-DU
-nm
-et
-Kp
-Mv
-jK
-sA
-Xq
-et
-MK
-ma
-QC
-ow
-et
-HQ
-gr
-gC
-HQ
-Ro
-HQ
-Pc
-Pc
-SY
-cl
-cc
-jB
-jB
-cc
-yG
-jB
-rf
-SY
-Iv
-"}
-(48,1,1) = {"
-Iv
-nm
-DU
-nm
-nm
-et
-et
-et
-et
-et
-et
-et
-et
-zN
-CC
-et
-Op
-op
-Pc
-Pc
-Pc
-Pc
-Pc
-RY
-SY
-Zx
-jB
-jB
-jB
-jB
-Zx
-jB
-rf
-SY
-SY
-"}
-(49,1,1) = {"
-Iv
-nm
-DU
-nm
-nm
-nm
-nm
-nm
-nm
-nm
-nm
-nm
-Pc
-gr
-zu
-Xh
-St
-aA
-vg
-zZ
-cO
-fW
-yd
-JZ
-jB
-jB
-jB
-jB
-jB
-jB
-SY
-Lx
-rf
-SY
-SY
-"}
-(50,1,1) = {"
-Iv
-nm
-DU
-nm
-nm
-Lg
-nm
-nm
-nm
-nm
-rz
-nm
-Pc
-cd
-jG
-ox
-uj
-IC
-hc
-lH
-bw
-jk
-OM
-Bu
-jB
-jB
-jB
-jB
-jB
-SY
-SY
-SY
-rf
-SY
-SY
-"}
-(51,1,1) = {"
-nm
-nm
-DU
-nm
-nm
-nm
-nm
-nm
-tH
-nm
-nm
-nm
-Pc
-Pc
-jC
-gq
-lo
-HQ
-uW
-pf
-vG
-lM
-kY
-xz
-jB
-jB
-jB
-jB
-SY
-Lx
-SY
-SY
-rf
-Lx
-SY
-"}
-(52,1,1) = {"
-rz
-nm
-DU
-nm
-nm
-ny
-nm
-kt
-nm
-nm
-nm
-nm
-nm
-Pc
-Pc
-Pc
-Pc
-Pc
-Pc
-Pc
-Pc
-Pc
-Pc
-Zb
-nm
-nm
-SY
-SY
-SY
-SY
-ny
-SY
-rf
-SY
-SY
-"}
-(53,1,1) = {"
-nm
-nm
-DU
-nm
-nm
-nm
-nm
-nm
-xZ
-nm
-nm
-nm
-nm
-nm
-nm
-tH
-nm
-nm
-nm
-nm
-nm
-tH
-nm
-nm
-Lg
-nm
-SY
-Bs
-SY
-SY
-SY
-SY
-rf
-SY
-SY
-"}
-(54,1,1) = {"
-nm
-nm
-UU
-Sn
-Sn
-Sn
-Sn
-Sn
-Sn
-Sn
-Sn
-Sn
-Sn
-Sn
-Sn
-Sn
-Sn
-TS
-Sn
-Sn
-Sn
-Sn
-Sn
-Sn
-Sn
-Sn
-kF
-kF
-kF
-kF
-kF
-kF
-uf
-SY
-SY
-"}
-(55,1,1) = {"
-nm
-rz
-nm
-nm
-nm
-nm
-nm
-nm
-nm
-nm
-nm
-nm
-nm
-nm
-nm
-nm
-nm
-nm
-tH
-nm
-nm
-nm
-nm
-nm
-nm
-SY
-SY
-SY
-HW
-SY
-SY
-SY
-SY
-HW
-SY
-"}
-(56,1,1) = {"
-nm
-nm
-nm
-nm
-nm
-nm
-rz
-nm
-nm
-Iv
-Iv
-Iv
-Iv
-Iv
-nm
-Lg
-nm
-nm
-nm
-nm
-nm
-Iv
-Iv
-Iv
-Iv
-Iv
-Iv
-SY
-SY
-SY
-SY
-SY
-SY
-SY
-SY
-"}
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_comm_outpost.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_comm_outpost.dmm
deleted file mode 100644
index 91b482df849..00000000000
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_comm_outpost.dmm
+++ /dev/null
@@ -1,477 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"bk" = (
-/obj/machinery/light/dim/directional/south,
-/turf/open/floor/mineral/plastitanium{
- name = "base floor"
- },
-/area/ruin/unpowered/syndicate_outpost)
-"bA" = (
-/obj/machinery/computer/telecomms/monitor,
-/turf/open/floor/mineral/plastitanium/red{
- name = "base floor"
- },
-/area/ruin/unpowered/syndicate_outpost)
-"cO" = (
-/obj/structure/chair/comfy/grey/directional/north{
- desc = "It looks like it hasn't been used in a long time."
- },
-/turf/open/floor/carpet/black,
-/area/ruin/unpowered/syndicate_outpost)
-"eF" = (
-/obj/machinery/computer/telecomms{
- dir = 8
- },
-/turf/open/floor/mineral/plastitanium/red{
- name = "base floor"
- },
-/area/ruin/unpowered/syndicate_outpost)
-"fa" = (
-/obj/machinery/door/window/survival_pod{
- dir = 1
- },
-/turf/open/floor/mineral/plastitanium/airless{
- name = "telecomms floor"
- },
-/area/ruin/unpowered/syndicate_outpost)
-"ho" = (
-/turf/closed/wall/mineral/plastitanium,
-/area/ruin/unpowered/syndicate_outpost)
-"iT" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/toolbox/syndicate,
-/turf/open/floor/mineral/plastitanium/red{
- name = "base floor"
- },
-/area/ruin/unpowered/syndicate_outpost)
-"js" = (
-/turf/open/floor/mineral/plastitanium/red{
- name = "base floor"
- },
-/area/ruin/unpowered/syndicate_outpost)
-"ql" = (
-/obj/structure/table/reinforced,
-/turf/open/floor/mineral/plastitanium/red{
- name = "base floor"
- },
-/area/ruin/unpowered/syndicate_outpost)
-"qp" = (
-/obj/structure/chair/comfy/grey/directional/west,
-/turf/open/floor/mineral/plastitanium/red{
- name = "base floor"
- },
-/area/ruin/unpowered/syndicate_outpost)
-"so" = (
-/obj/machinery/telecomms/broadcaster,
-/turf/open/floor/mineral/plastitanium/airless{
- name = "telecomms floor"
- },
-/area/ruin/unpowered/syndicate_outpost)
-"uM" = (
-/obj/machinery/light/dim/directional/west,
-/turf/open/floor/mineral/plastitanium{
- name = "base floor"
- },
-/area/ruin/unpowered/syndicate_outpost)
-"xV" = (
-/obj/machinery/light/dim/directional/north,
-/turf/open/floor/carpet,
-/area/ruin/unpowered/syndicate_outpost)
-"AV" = (
-/obj/structure/table/reinforced,
-/obj/item/paper/crumpled/awaymissions/moonoutpost19/hastey_note{
- desc = "It seems like it was written in a hurry";
- default_raw_text = "Hey, you're probably reading this after having killed me, but that's alright. I probably shot first. Names' Yuto, Syndicate Radio Operator, there used to be another op here, a nice one too. Had syndicate command not forgotten about this post, we'd of probably been executed for sentinmental attachments on the job. Although she didn't have to worry about that, the local fauna got her first. I guess this note is my way of saying sorry. Take what you want from this station and my body, you need it more than I do now. Good luck out there, whoever you are. - Syndicate Radio
e f.";
- pixel_x = -3;
- pixel_y = 2
- },
-/obj/item/candle{
- pixel_x = 8;
- pixel_y = 5
- },
-/turf/open/floor/carpet,
-/area/ruin/unpowered/syndicate_outpost)
-"Cs" = (
-/obj/item/trash/sosjerky{
- pixel_x = -9;
- pixel_y = 16
- },
-/turf/open/floor/mineral/plastitanium{
- name = "base floor"
- },
-/area/ruin/unpowered/syndicate_outpost)
-"Et" = (
-/obj/machinery/vending/cigarette/syndicate,
-/turf/open/floor/carpet/black,
-/area/ruin/unpowered/syndicate_outpost)
-"EJ" = (
-/obj/machinery/vending/sustenance,
-/turf/open/floor/carpet/black,
-/area/ruin/unpowered/syndicate_outpost)
-"Hz" = (
-/obj/structure/table/reinforced,
-/obj/item/flashlight/lantern/lanternbang,
-/turf/open/floor/mineral/plastitanium/red{
- name = "base floor"
- },
-/area/ruin/unpowered/syndicate_outpost)
-"II" = (
-/obj/structure/table/reinforced,
-/obj/item/trash/syndi_cakes{
- pixel_y = 13
- },
-/turf/open/floor/mineral/plastitanium/red{
- name = "base floor"
- },
-/area/ruin/unpowered/syndicate_outpost)
-"JO" = (
-/obj/machinery/door/airlock/highsecurity{
- hackProof = 1;
- name = "Secure Airlock"
- },
-/turf/open/floor/mineral/plastitanium{
- name = "base floor"
- },
-/area/ruin/unpowered/syndicate_outpost)
-"Kq" = (
-/obj/structure/chair/comfy/grey/directional/south,
-/turf/open/floor/carpet,
-/area/ruin/unpowered/syndicate_outpost)
-"Kw" = (
-/obj/machinery/telecomms/receiver,
-/turf/open/floor/mineral/plastitanium/airless{
- name = "telecomms floor"
- },
-/area/ruin/unpowered/syndicate_outpost)
-"Lu" = (
-/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium,
-/turf/open/floor/plating,
-/area/ruin/unpowered/syndicate_outpost)
-"Mo" = (
-/obj/machinery/door/airlock/hatch{
- dir = 4
- },
-/turf/open/floor/mineral/plastitanium/red{
- name = "base floor"
- },
-/area/ruin/unpowered/syndicate_outpost)
-"MK" = (
-/obj/structure/closet/crate/grave/loot,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"NT" = (
-/turf/open/floor/mineral/plastitanium{
- name = "base floor"
- },
-/area/ruin/unpowered/syndicate_outpost)
-"OA" = (
-/obj/structure/window/reinforced/survival_pod{
- dir = 1;
- name = "window"
- },
-/turf/open/floor/mineral/plastitanium/airless{
- name = "telecomms floor"
- },
-/area/ruin/unpowered/syndicate_outpost)
-"Pi" = (
-/obj/structure/bed/dogbed{
- desc = "A well worn dog bed, wait... are dog beds supposed to have burn marks?."
- },
-/mob/living/simple_animal/hostile/asteroid/basilisk/watcher/magmawing{
- desc = "A domesticated Magmawing watcher, you weren't aware that was even possible. Unfortunately though, it's been domesticated by the Syndicate..";
- dir = 4;
- faction = list("Syndicate");
- movement_type = 1
- },
-/turf/open/floor/mineral/plastitanium{
- name = "base floor"
- },
-/area/ruin/unpowered/syndicate_outpost)
-"PG" = (
-/turf/closed/wall/mineral/plastitanium/interior,
-/area/ruin/unpowered/syndicate_outpost)
-"PX" = (
-/turf/open/floor/carpet,
-/area/ruin/unpowered/syndicate_outpost)
-"RV" = (
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"SD" = (
-/obj/structure/closet/crate,
-/obj/item/clothing/gloves/combat,
-/obj/item/gun/ballistic/automatic/pistol,
-/obj/item/ammo_box/magazine/m10mm,
-/obj/item/ammo_box/magazine/m10mm,
-/obj/item/ammo_box/magazine/m10mm,
-/turf/open/floor/carpet/black,
-/area/ruin/unpowered/syndicate_outpost)
-"To" = (
-/obj/machinery/light/dim/directional/west,
-/turf/open/floor/mineral/plastitanium/red{
- name = "base floor"
- },
-/area/ruin/unpowered/syndicate_outpost)
-"Ts" = (
-/mob/living/simple_animal/hostile/syndicate/ranged{
- dir = 8;
- health = 125;
- name = "Syndicate Radio Operative"
- },
-/turf/open/floor/mineral/plastitanium/red{
- name = "base floor"
- },
-/area/ruin/unpowered/syndicate_outpost)
-"VY" = (
-/obj/machinery/telecomms/bus,
-/turf/open/floor/mineral/plastitanium/airless{
- name = "telecomms floor"
- },
-/area/ruin/unpowered/syndicate_outpost)
-"Wt" = (
-/turf/template_noop,
-/area/template_noop)
-"WA" = (
-/obj/machinery/portable_atmospherics/canister/air,
-/turf/open/floor/mineral/plastitanium/red{
- name = "base floor"
- },
-/area/ruin/unpowered/syndicate_outpost)
-"WS" = (
-/turf/open/floor/carpet/black,
-/area/ruin/unpowered/syndicate_outpost)
-"Xz" = (
-/obj/machinery/door/window,
-/turf/open/floor/mineral/plastitanium/red{
- name = "base floor"
- },
-/area/ruin/unpowered/syndicate_outpost)
-"XB" = (
-/obj/structure/window/reinforced/survival_pod{
- dir = 1;
- name = "Window"
- },
-/turf/open/floor/mineral/plastitanium/airless{
- name = "telecomms floor"
- },
-/area/ruin/unpowered/syndicate_outpost)
-"YJ" = (
-/obj/structure/table/reinforced,
-/obj/item/radio/intercom/wideband/directional/north,
-/turf/open/floor/mineral/plastitanium/red{
- name = "base floor"
- },
-/area/ruin/unpowered/syndicate_outpost)
-"ZH" = (
-/obj/machinery/door/airlock/hatch,
-/turf/open/floor/mineral/plastitanium{
- name = "base floor"
- },
-/area/ruin/unpowered/syndicate_outpost)
-
-(1,1,1) = {"
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-Wt
-Wt
-Wt
-Wt
-Wt
-Wt
-"}
-(2,1,1) = {"
-RV
-ho
-ho
-ho
-JO
-ho
-ho
-RV
-RV
-Wt
-Wt
-Wt
-Wt
-Wt
-"}
-(3,1,1) = {"
-RV
-ho
-Pi
-uM
-NT
-NT
-ho
-ho
-RV
-RV
-RV
-RV
-RV
-Wt
-"}
-(4,1,1) = {"
-RV
-Lu
-NT
-Cs
-NT
-NT
-NT
-ho
-ho
-ho
-ho
-ho
-RV
-RV
-"}
-(5,1,1) = {"
-RV
-Lu
-II
-YJ
-ql
-ql
-NT
-NT
-PG
-Et
-EJ
-ho
-ho
-RV
-"}
-(6,1,1) = {"
-RV
-Lu
-js
-qp
-js
-Hz
-NT
-NT
-ZH
-PX
-WS
-SD
-ho
-RV
-"}
-(7,1,1) = {"
-RV
-ho
-js
-Ts
-js
-Xz
-NT
-bk
-PG
-xV
-PX
-WS
-ho
-RV
-"}
-(8,1,1) = {"
-RV
-ho
-PG
-PG
-Mo
-PG
-PG
-PG
-PG
-Kq
-AV
-cO
-ho
-RV
-"}
-(9,1,1) = {"
-RV
-ho
-bA
-To
-js
-js
-OA
-so
-PG
-Lu
-Lu
-Lu
-ho
-RV
-"}
-(10,1,1) = {"
-RV
-ho
-ho
-eF
-js
-js
-fa
-VY
-ho
-RV
-RV
-RV
-RV
-RV
-"}
-(11,1,1) = {"
-RV
-RV
-ho
-ho
-iT
-WA
-XB
-Kw
-ho
-MK
-RV
-RV
-RV
-Wt
-"}
-(12,1,1) = {"
-Wt
-RV
-RV
-ho
-ho
-ho
-ho
-ho
-ho
-RV
-RV
-RV
-RV
-Wt
-"}
-(13,1,1) = {"
-Wt
-Wt
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-Wt
-Wt
-"}
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_crashed_pinnance.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_crashed_pinnance.dmm
deleted file mode 100644
index 32c0fbf3100..00000000000
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_crashed_pinnance.dmm
+++ /dev/null
@@ -1,1662 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"ao" = (
-/obj/structure/table_frame/wood,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/ruin/unpowered/crashsite/pinnance)
-"aJ" = (
-/obj/effect/turf_decal/industrial/warning,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/components/unary/outlet_injector/layer4,
-/turf/open/floor/plating/rust,
-/area/ruin/unpowered/crashsite/pinnance)
-"bN" = (
-/obj/structure/table,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/layer4,
-/obj/item/storage/toolbox/mechanical,
-/obj/structure/railing,
-/turf/open/floor/plasteel/tech/grid,
-/area/ruin/unpowered/crashsite/pinnance)
-"bS" = (
-/obj/structure/girder/displaced,
-/turf/open/floor/plating,
-/area/ruin/unpowered/crashsite/pinnance)
-"cb" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/item/stack/cable_coil/cut/red,
-/turf/open/floor/plating,
-/area/ruin/unpowered/crashsite/pinnance)
-"cg" = (
-/obj/effect/decal/cleanable/ash/large,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"fj" = (
-/obj/structure/flora/rock,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"fn" = (
-/obj/item/stack/cable_coil/cut/red,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/ruin/unpowered/crashsite/pinnance)
-"gg" = (
-/obj/machinery/power/shuttle/engine/electric/premium{
- dir = 4;
- desc = "An expensive variant of a standard ion thruster, using highest quality components in order to achieve much better performance. This one seems broken beyond restoration"
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered/crashsite/pinnance)
-"gk" = (
-/obj/structure/rack,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/light/directional/west,
-/obj/structure/windoor_assembly{
- dir = 2
- },
-/obj/effect/spawner/lootdrop/maintenance/two,
-/turf/open/floor/plating/rust,
-/area/ruin/unpowered/crashsite/pinnance)
-"gD" = (
-/obj/structure/lattice,
-/obj/item/stack/ore/salvage/scraptitanium/five,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/ruin/unpowered/crashsite/pinnance)
-"hx" = (
-/obj/machinery/power/smes/shuttle/precharged{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/plasteel/tech/grid,
-/area/ruin/unpowered/crashsite/pinnance)
-"hN" = (
-/obj/structure/chair/office{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/blood/gibs/limb,
-/obj/effect/decal/cleanable/blood/gibs/limb,
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plasteel/mono/white,
-/area/ruin/unpowered/crashsite/pinnance)
-"iZ" = (
-/turf/closed/mineral,
-/area/ruin/unpowered/crashsite/pinnance)
-"jS" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark,
-/area/ruin/unpowered/crashsite/pinnance)
-"kW" = (
-/obj/structure/chair/office{
- dir = 1;
- name = "thinking chair";
- desc = "You sit in this. Innovation flows from there."
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/unpowered/crashsite/pinnance)
-"ln" = (
-/obj/structure/lattice,
-/obj/item/stack/sheet/mineral/wood,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/ruin/unpowered/crashsite/pinnance)
-"lI" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/effect/decal/cleanable/robot_debris,
-/obj/item/broken_bottle,
-/obj/item/stack/cable_coil/cut/red,
-/turf/open/floor/plating,
-/area/ruin/unpowered/crashsite/pinnance)
-"ni" = (
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/ruin/unpowered/crashsite/pinnance)
-"nO" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel,
-/area/ruin/unpowered/crashsite/pinnance)
-"oT" = (
-/obj/machinery/airalarm/directional/south,
-/obj/effect/turf_decal/corner_techfloor_grid,
-/obj/effect/turf_decal/corner_techfloor_grid{
- dir = 8
- },
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 4
- },
-/obj/effect/decal/cleanable/greenglow,
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ruin/unpowered/crashsite/pinnance)
-"pA" = (
-/obj/effect/spawner/lootdrop/maintenance/two,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"rr" = (
-/turf/closed/wall/mineral/titanium/nodiagonal,
-/area/ruin/unpowered/crashsite/pinnance)
-"rt" = (
-/obj/structure/cable{
- icon_state = "0-5"
- },
-/obj/machinery/power/terminal{
- dir = 8
- },
-/obj/effect/turf_decal/corner_techfloor_grid/full{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered/crashsite/pinnance)
-"rV" = (
-/obj/structure/rack,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/windoor_assembly,
-/obj/item/flashlight/glowstick,
-/turf/open/floor/plating/rust,
-/area/ruin/unpowered/crashsite/pinnance)
-"uo" = (
-/obj/item/clothing/under/shorts/purple,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"uA" = (
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 8
- },
-/turf/open/floor/plating/rust,
-/area/ruin/unpowered/crashsite/pinnance)
-"uV" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
- },
-/obj/effect/turf_decal/corner_techfloor_grid{
- dir = 9
- },
-/obj/item/light/tube/broken,
-/obj/structure/light_construct/directional/west,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ruin/unpowered/crashsite/pinnance)
-"vv" = (
-/obj/effect/decal/cleanable/ash/large,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/ruin/unpowered/crashsite/pinnance)
-"vH" = (
-/obj/structure/rack,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/light/broken/directional/west,
-/obj/structure/windoor_assembly,
-/turf/open/floor/plating/rust,
-/area/ruin/unpowered/crashsite/pinnance)
-"wq" = (
-/turf/closed/indestructible/rock,
-/area/overmap_encounter/planetoid/cave/explored)
-"xe" = (
-/obj/structure/lattice,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/ruin/unpowered/crashsite/pinnance)
-"xf" = (
-/obj/structure/cable,
-/obj/machinery/holopad/emergency/science,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/shard,
-/obj/machinery/power/apc/auto_name/directional/south{
- start_charge = 0
- },
-/turf/open/floor/plasteel/mono/dark,
-/area/ruin/unpowered/crashsite/pinnance)
-"xo" = (
-/obj/structure/frame/computer{
- dir = 8
- },
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/item/stack/cable_coil/cut/red,
-/turf/open/floor/plasteel/tech/grid,
-/area/ruin/unpowered/crashsite/pinnance)
-"xI" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/structure/windoor_assembly{
- dir = 4
- },
-/obj/item/stack/tile/plasteel,
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered/crashsite/pinnance)
-"xJ" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/girder,
-/obj/item/stack/ore/salvage/scraptitanium,
-/turf/open/floor/plating,
-/area/ruin/unpowered/crashsite/pinnance)
-"yD" = (
-/obj/item/chair/plastic,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/ruin/unpowered/crashsite/pinnance)
-"yG" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible/layer4,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/obj/effect/decal/remains/human,
-/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/plasteel,
-/area/ruin/unpowered/crashsite/pinnance)
-"yT" = (
-/obj/structure/flora/rock/pile,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"zb" = (
-/obj/structure/lattice,
-/obj/structure/flora/rock/pile,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/ruin/unpowered/crashsite/pinnance)
-"zY" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/mono/dark,
-/area/ruin/unpowered/crashsite/pinnance)
-"Ag" = (
-/obj/structure/girder,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/ruin/unpowered/crashsite/pinnance)
-"Aq" = (
-/obj/structure/chair/stool{
- dir = 4
- },
-/obj/structure/window{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark,
-/area/ruin/unpowered/crashsite/pinnance)
-"AB" = (
-/obj/structure/girder,
-/obj/structure/lattice,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/ruin/unpowered/crashsite/pinnance)
-"AN" = (
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/item/stack/tile/plasteel,
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered/crashsite/pinnance)
-"AU" = (
-/obj/item/stack/ore/salvage/scraptitanium,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"Cm" = (
-/obj/effect/decal/cleanable/robot_debris,
-/obj/item/stack/tile/plasteel/dark,
-/turf/open/floor/plating,
-/area/ruin/unpowered/crashsite/pinnance)
-"CY" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/corner_techfloor_grid{
- dir = 1
- },
-/obj/effect/turf_decal/corner_techfloor_grid{
- dir = 4
- },
-/obj/effect/decal/cleanable/plasma,
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ruin/unpowered/crashsite/pinnance)
-"DP" = (
-/obj/structure/grille/broken,
-/obj/item/shard,
-/turf/open/floor/plating,
-/area/ruin/unpowered/crashsite/pinnance)
-"Fv" = (
-/obj/effect/spawner/lootdrop/maintenance/two,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/ruin/unpowered/crashsite/pinnance)
-"FD" = (
-/obj/effect/turf_decal/industrial/warning/corner,
-/turf/open/floor/plating/rust,
-/area/ruin/unpowered/crashsite/pinnance)
-"Gn" = (
-/obj/machinery/atmospherics/pipe/layer_manifold,
-/obj/effect/mapping_helpers/airlock/locked,
-/obj/machinery/door/airlock/shuttle,
-/turf/open/floor/plasteel/mono/white,
-/area/ruin/unpowered/crashsite/pinnance)
-"Gt" = (
-/obj/structure/closet/wall/white/directional/east{
- name = "survey gear"
- },
-/obj/item/survey_handheld/elite,
-/obj/item/survey_handheld/advanced,
-/obj/item/survey_handheld/advanced,
-/obj/item/clothing/accessory/armband/science,
-/obj/item/clothing/suit/toggle/labcoat/science,
-/obj/item/clothing/glasses/science,
-/obj/item/tank/internals/oxygen,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/unpowered/crashsite/pinnance)
-"Gw" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2,
-/obj/effect/turf_decal/corner_techfloor_grid{
- dir = 9
- },
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ruin/unpowered/crashsite/pinnance)
-"HM" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/ash,
-/obj/effect/turf_decal/industrial/warning/corner,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/stack/ore/salvage/scrapplasma,
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ruin/unpowered/crashsite/pinnance)
-"HT" = (
-/obj/item/stack/ore/salvage/scraptitanium/five,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"Ik" = (
-/obj/structure/lattice,
-/obj/structure/fluff/beach_umbrella/science,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/ruin/unpowered/crashsite/pinnance)
-"Is" = (
-/obj/structure/bed,
-/obj/structure/curtain,
-/obj/item/shard,
-/turf/open/floor/plasteel/mono/dark,
-/area/ruin/unpowered/crashsite/pinnance)
-"Iv" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/layer2{
- dir = 1
- },
-/obj/structure/railing{
- dir = 1
- },
-/obj/structure/railing{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/tech/grid,
-/area/ruin/unpowered/crashsite/pinnance)
-"IC" = (
-/obj/machinery/power/shuttle/engine/electric/premium{
- dir = 4;
- desc = "An expensive variant of a standard ion thruster, using highest quality components in order to achieve much better performance. This one seems broken beyond restoration"
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered/crashsite/pinnance)
-"Jg" = (
-/obj/structure/frame/machine,
-/obj/machinery/light/small/broken/directional/west,
-/turf/open/floor/plating,
-/area/ruin/unpowered/crashsite/pinnance)
-"JS" = (
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/obj/effect/decal/cleanable/plasma,
-/turf/open/floor/plasteel/tech/grid,
-/area/ruin/unpowered/crashsite/pinnance)
-"Lz" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/layer2{
- dir = 8
- },
-/obj/effect/turf_decal/box,
-/obj/structure/table_frame,
-/turf/open/floor/plasteel/mono/dark,
-/area/ruin/unpowered/crashsite/pinnance)
-"LH" = (
-/obj/structure/table{
- name = "thinking table"
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered/crashsite/pinnance)
-"Nf" = (
-/obj/item/reagent_containers/food/snacks/canned/beans,
-/obj/structure/sign/poster/official/science{
- pixel_y = -32
- },
-/obj/effect/decal/cleanable/ash/large,
-/obj/machinery/light/small/broken/directional/south,
-/obj/item/shard,
-/obj/structure/table_frame,
-/turf/open/floor/plasteel/mono/dark,
-/area/ruin/unpowered/crashsite/pinnance)
-"NB" = (
-/obj/structure/flora/rock,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/ruin/unpowered/crashsite/pinnance)
-"NR" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/item/shard,
-/turf/open/floor/plasteel/mono/white,
-/area/ruin/unpowered/crashsite/pinnance)
-"Oa" = (
-/turf/closed/wall/mineral/titanium,
-/area/ruin/unpowered/crashsite/pinnance)
-"Ol" = (
-/obj/structure/girder,
-/obj/item/stack/ore/salvage/scraptitanium,
-/turf/open/floor/plating,
-/area/ruin/unpowered/crashsite/pinnance)
-"Om" = (
-/obj/structure/girder/displaced,
-/obj/item/stack/ore/salvage/scraptitanium/five,
-/turf/open/floor/plating,
-/area/ruin/unpowered/crashsite/pinnance)
-"Oz" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/item/stack/cable_coil/cut/red,
-/turf/open/floor/plating/rust,
-/area/ruin/unpowered/crashsite/pinnance)
-"OL" = (
-/obj/machinery/door/window{
- dir = 8
- },
-/obj/structure/cable{
- 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/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/obj/structure/frame/computer{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ruin/unpowered/crashsite/pinnance)
-"Po" = (
-/obj/structure/chair/stool{
- dir = 8
- },
-/obj/item/shard,
-/turf/open/floor/plasteel/dark,
-/area/ruin/unpowered/crashsite/pinnance)
-"PJ" = (
-/turf/closed/mineral,
-/area/overmap_encounter/planetoid/cave/explored)
-"Rh" = (
-/obj/item/stack/ore/salvage/scraptitanium,
-/obj/structure/flora/rock,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"Rw" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/light/small/broken/directional/east,
-/turf/open/floor/plating,
-/area/ruin/unpowered/crashsite/pinnance)
-"SD" = (
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"Te" = (
-/obj/item/clothing/glasses/cheapsuns,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"Tf" = (
-/obj/structure/frame/computer{
- dir = 8
- },
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/item/shard,
-/turf/open/floor/plasteel/tech/grid,
-/area/ruin/unpowered/crashsite/pinnance)
-"Tl" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/door_assembly/door_assembly_shuttle,
-/turf/open/floor/plasteel/mono/white,
-/area/ruin/unpowered/crashsite/pinnance)
-"UO" = (
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/machinery/power/terminal{
- dir = 8
- },
-/obj/effect/turf_decal/corner_techfloor_grid/full{
- dir = 4
- },
-/obj/effect/decal/cleanable/cobweb,
-/obj/machinery/power/port_gen/pacman,
-/turf/open/floor/plating,
-/area/ruin/unpowered/crashsite/pinnance)
-"Ve" = (
-/obj/machinery/atmospherics/components/binary/dp_vent_pump/on/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/advanced_airlock_controller{
- pixel_x = 30
- },
-/turf/open/floor/plating/rust,
-/area/ruin/unpowered/crashsite/pinnance)
-"Vf" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/layer4,
-/obj/effect/turf_decal/box,
-/obj/structure/table_frame,
-/turf/open/floor/plasteel/mono/dark,
-/area/ruin/unpowered/crashsite/pinnance)
-"VS" = (
-/obj/machinery/airalarm/directional/west,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/light/small/broken/directional/west,
-/obj/item/bedsheet/rd,
-/turf/open/floor/plating,
-/area/ruin/unpowered/crashsite/pinnance)
-"Wg" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/rack_parts,
-/obj/structure/windoor_assembly{
- dir = 2
- },
-/obj/effect/decal/cleanable/ash/large,
-/turf/open/floor/plating/rust,
-/area/ruin/unpowered/crashsite/pinnance)
-"Wu" = (
-/obj/structure/girder,
-/turf/open/floor/plating/rust,
-/area/ruin/unpowered/crashsite/pinnance)
-"Wz" = (
-/turf/template_noop,
-/area/template_noop)
-"WL" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ruin/unpowered/crashsite/pinnance)
-"Xn" = (
-/obj/structure/grille/broken,
-/turf/open/floor/plating/rust,
-/area/ruin/unpowered/crashsite/pinnance)
-"Yo" = (
-/obj/structure/lattice,
-/obj/effect/decal/cleanable/ash/large,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/ruin/unpowered/crashsite/pinnance)
-"Zk" = (
-/obj/item/stack/ore/salvage/scraptitanium,
-/obj/item/chair/plastic,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"Zo" = (
-/obj/structure/lattice,
-/obj/item/stack/ore/salvage/scraptitanium,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/ruin/unpowered/crashsite/pinnance)
-"Zu" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "1-10"
- },
-/obj/machinery/atmospherics/components/binary/pump/layer2{
- dir = 4
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ruin/unpowered/crashsite/pinnance)
-"ZJ" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
- },
-/turf/open/floor/plasteel/stairs{
- dir = 4
- },
-/area/ruin/unpowered/crashsite/pinnance)
-"ZM" = (
-/obj/structure/girder,
-/obj/item/stack/ore/salvage/scraptitanium/five,
-/turf/open/floor/plating,
-/area/ruin/unpowered/crashsite/pinnance)
-"ZO" = (
-/obj/machinery/door/window{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ruin/unpowered/crashsite/pinnance)
-
-(1,1,1) = {"
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wu
-rr
-SD
-cg
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-SD
-SD
-SD
-SD
-SD
-SD
-Wz
-Wz
-Wz
-Wz
-"}
-(2,1,1) = {"
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-SD
-rr
-rr
-IC
-SD
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-SD
-SD
-SD
-SD
-SD
-SD
-SD
-Wz
-Wz
-Wz
-Wz
-"}
-(3,1,1) = {"
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-cg
-vH
-xe
-fn
-gD
-SD
-cg
-SD
-SD
-SD
-SD
-Te
-SD
-Yo
-Oa
-bS
-xe
-SD
-Wz
-Wz
-Wz
-Wz
-"}
-(4,1,1) = {"
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-SD
-rV
-xe
-xe
-xe
-SD
-HT
-gg
-Oa
-SD
-NB
-ni
-ni
-Zo
-Oa
-wq
-xe
-SD
-Wz
-Wz
-Wz
-Wz
-"}
-(5,1,1) = {"
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-fj
-AB
-Zo
-Oa
-hx
-Oa
-Oa
-hx
-Oa
-xe
-ni
-yD
-ni
-ln
-gk
-SD
-SD
-SD
-SD
-Wz
-Wz
-Wz
-"}
-(6,1,1) = {"
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-SD
-Zo
-xe
-Oa
-UO
-Gw
-uV
-rt
-Oa
-xe
-ni
-ao
-Fv
-xe
-Wg
-SD
-SD
-SD
-Wz
-Wz
-Wz
-Wz
-"}
-(7,1,1) = {"
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-SD
-yT
-xe
-Oa
-CY
-HM
-Zu
-oT
-Oa
-xe
-Ik
-ni
-ni
-xe
-Ag
-SD
-SD
-Wz
-Wz
-Wz
-Wz
-Wz
-"}
-(8,1,1) = {"
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-SD
-SD
-xe
-Oa
-JS
-bN
-ZJ
-Iv
-Oa
-Yo
-xe
-SD
-Zk
-SD
-Rh
-SD
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-"}
-(9,1,1) = {"
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-SD
-xe
-Oa
-Oa
-Oa
-OL
-WL
-Oa
-xe
-SD
-uo
-pA
-SD
-SD
-SD
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-"}
-(10,1,1) = {"
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-SD
-cg
-Oa
-jS
-Jg
-lI
-zY
-xJ
-SD
-SD
-yT
-SD
-AU
-SD
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-"}
-(11,1,1) = {"
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-fj
-SD
-DP
-LH
-kW
-Oz
-xe
-Yo
-AU
-yT
-SD
-fj
-SD
-SD
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-"}
-(12,1,1) = {"
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-SD
-SD
-Yo
-xe
-xe
-xe
-Cm
-Xn
-SD
-SD
-SD
-SD
-SD
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-"}
-(13,1,1) = {"
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-SD
-ni
-ni
-ni
-ni
-xe
-vv
-SD
-SD
-SD
-SD
-yT
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-"}
-(14,1,1) = {"
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-SD
-Wz
-Wz
-Wz
-SD
-ni
-zb
-xe
-Yo
-xe
-xe
-xe
-xe
-SD
-SD
-SD
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-"}
-(15,1,1) = {"
-Wz
-Wz
-SD
-SD
-SD
-SD
-SD
-SD
-SD
-SD
-SD
-SD
-SD
-Om
-Gt
-Rw
-cb
-nO
-Oa
-SD
-SD
-SD
-Wz
-Wz
-Wz
-SD
-SD
-SD
-Wz
-Wz
-"}
-(16,1,1) = {"
-Wz
-Wz
-SD
-PJ
-SD
-SD
-fj
-SD
-SD
-HT
-fj
-SD
-FD
-Oa
-Oa
-Oa
-ZO
-Aq
-Oa
-SD
-SD
-SD
-Wz
-Wz
-fj
-SD
-PJ
-PJ
-Wz
-Wz
-"}
-(17,1,1) = {"
-Wz
-Wz
-Wz
-PJ
-PJ
-PJ
-SD
-SD
-SD
-HT
-SD
-SD
-aJ
-Gn
-Ve
-Tl
-yG
-Nf
-Oa
-SD
-SD
-SD
-SD
-SD
-SD
-SD
-PJ
-PJ
-PJ
-Wz
-"}
-(18,1,1) = {"
-Wz
-Wz
-Wz
-PJ
-PJ
-PJ
-PJ
-SD
-PJ
-SD
-SD
-SD
-uA
-rr
-Oa
-Oa
-xI
-Po
-Oa
-SD
-SD
-SD
-SD
-SD
-SD
-PJ
-PJ
-PJ
-PJ
-Wz
-"}
-(19,1,1) = {"
-Wz
-Wz
-Wz
-Wz
-PJ
-PJ
-PJ
-PJ
-PJ
-PJ
-SD
-HT
-SD
-Oa
-Is
-VS
-AN
-xf
-Oa
-SD
-fj
-SD
-yT
-PJ
-PJ
-PJ
-PJ
-PJ
-Wz
-Wz
-"}
-(20,1,1) = {"
-Wz
-Wz
-Wz
-Wz
-PJ
-PJ
-PJ
-PJ
-PJ
-PJ
-yT
-SD
-SD
-Oa
-Vf
-NR
-hN
-Lz
-Oa
-SD
-SD
-SD
-PJ
-PJ
-PJ
-PJ
-PJ
-Wz
-Wz
-Wz
-"}
-(21,1,1) = {"
-Wz
-Wz
-Wz
-Wz
-Wz
-PJ
-PJ
-PJ
-PJ
-PJ
-PJ
-PJ
-yT
-ZM
-Oa
-xo
-Tf
-Om
-Oa
-SD
-yT
-yT
-PJ
-PJ
-PJ
-PJ
-Wz
-Wz
-Wz
-Wz
-"}
-(22,1,1) = {"
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-PJ
-PJ
-PJ
-PJ
-PJ
-PJ
-PJ
-bS
-Oa
-DP
-DP
-iZ
-Ol
-PJ
-PJ
-PJ
-PJ
-PJ
-PJ
-PJ
-Wz
-Wz
-Wz
-Wz
-"}
-(23,1,1) = {"
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-PJ
-PJ
-PJ
-PJ
-PJ
-PJ
-PJ
-PJ
-PJ
-PJ
-PJ
-PJ
-PJ
-PJ
-PJ
-PJ
-PJ
-PJ
-PJ
-Wz
-Wz
-Wz
-Wz
-Wz
-"}
-(24,1,1) = {"
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-PJ
-PJ
-PJ
-PJ
-PJ
-PJ
-PJ
-PJ
-PJ
-PJ
-PJ
-PJ
-PJ
-PJ
-PJ
-PJ
-PJ
-PJ
-Wz
-Wz
-Wz
-Wz
-Wz
-"}
-(25,1,1) = {"
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-PJ
-PJ
-PJ
-PJ
-PJ
-PJ
-PJ
-PJ
-PJ
-PJ
-PJ
-PJ
-PJ
-PJ
-PJ
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-"}
-(26,1,1) = {"
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-PJ
-PJ
-PJ
-PJ
-PJ
-PJ
-PJ
-PJ
-PJ
-PJ
-PJ
-PJ
-PJ
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-"}
-(27,1,1) = {"
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-PJ
-PJ
-PJ
-PJ
-PJ
-PJ
-PJ
-PJ
-PJ
-PJ
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-"}
-(28,1,1) = {"
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-PJ
-PJ
-PJ
-PJ
-PJ
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-"}
-(29,1,1) = {"
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-"}
-(30,1,1) = {"
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-Wz
-"}
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_dwarffortress.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_dwarffortress.dmm
deleted file mode 100644
index cc86f39dfc8..00000000000
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_dwarffortress.dmm
+++ /dev/null
@@ -1,701 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"bP" = (
-/obj/effect/decal/cleanable/blood/old{
- icon_state = "floor3-old"
- },
-/turf/open/floor/plating/asteroid/basalt,
-/area/overmap_encounter/planetoid/cave/explored)
-"dO" = (
-/mob/living/simple_animal/hostile/asteroid/hivelord/legion/dwarf{
- name = "dwarf bartender"
- },
-/turf/open/floor/plating/asteroid/basalt,
-/area/overmap_encounter/planetoid/cave/explored)
-"fr" = (
-/obj/structure/closet/cabinet,
-/obj/item/instrument/banjo,
-/obj/item/instrument/trombone,
-/turf/open/floor/plating/asteroid/basalt,
-/area/overmap_encounter/planetoid/cave/explored)
-"gB" = (
-/mob/living/simple_animal/hostile/asteroid/hivelord/legion{
- name = "tall dwarf legion"
- },
-/turf/open/floor/plating/asteroid/basalt,
-/area/overmap_encounter/planetoid/cave/explored)
-"if" = (
-/obj/structure/table/wood,
-/obj/item/reagent_containers/food/drinks/drinkingglass{
- list_reagents = list(/datum/reagent/consumable/ethanol/fetching_fizz=30)
- },
-/turf/open/floor/plating/asteroid/basalt,
-/area/overmap_encounter/planetoid/cave/explored)
-"iI" = (
-/obj/structure/sign/poster/contraband/eat,
-/turf/closed/wall/mineral/wood,
-/area/overmap_encounter/planetoid/cave/explored)
-"iM" = (
-/obj/structure/table/wood,
-/obj/item/hatchet/wooden,
-/obj/item/hatchet/wooden,
-/turf/open/floor/plating/asteroid/basalt,
-/area/overmap_encounter/planetoid/cave/explored)
-"ks" = (
-/obj/structure/mineral_door/iron,
-/turf/open/floor/plating/asteroid/basalt,
-/area/overmap_encounter/planetoid/cave/explored)
-"kY" = (
-/mob/living/simple_animal/hostile/asteroid/hivelord/legion/dwarf{
- name = "dwarf armorer"
- },
-/turf/open/floor/plating/asteroid/basalt,
-/area/overmap_encounter/planetoid/cave/explored)
-"lt" = (
-/obj/structure/table/wood,
-/obj/item/reagent_containers/food/drinks/drinkingglass{
- list_reagents = list(/datum/reagent/consumable/ethanol/quintuple_sec=20)
- },
-/turf/open/floor/plating/asteroid/basalt,
-/area/overmap_encounter/planetoid/cave/explored)
-"mN" = (
-/obj/structure/chair/stool/bar,
-/mob/living/simple_animal/hostile/asteroid/hivelord/legion{
- icon_aggro = "dwarf_legion";
- icon_dead = "dwarf_legion";
- icon_living = "dwarf_legion";
- icon_state = "dwarf_legion";
- name = "dwarf legion"
- },
-/turf/open/floor/plating/asteroid/basalt,
-/area/overmap_encounter/planetoid/cave/explored)
-"mO" = (
-/obj/item/chair/wood/wings,
-/turf/open/floor/plating/asteroid/basalt,
-/area/overmap_encounter/planetoid/cave/explored)
-"qj" = (
-/mob/living/simple_animal/hostile/asteroid/hivelord/legion/dwarf,
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plating/asteroid/basalt,
-/area/overmap_encounter/planetoid/cave/explored)
-"sz" = (
-/obj/structure/spawner/lavaland/legion,
-/turf/open/floor/plating/asteroid/basalt,
-/area/overmap_encounter/planetoid/cave/explored)
-"sR" = (
-/obj/structure/fermenting_barrel,
-/turf/open/floor/plating/asteroid/basalt,
-/area/overmap_encounter/planetoid/cave/explored)
-"sS" = (
-/turf/template_noop,
-/area/template_noop)
-"th" = (
-/obj/structure/table/wood,
-/obj/item/reagent_containers/food/drinks/drinkingglass{
- list_reagents = list(/datum/reagent/consumable/ethanol/turbo=20)
- },
-/turf/open/floor/plating/asteroid/basalt,
-/area/overmap_encounter/planetoid/cave/explored)
-"ui" = (
-/obj/effect/decal/cleanable/blood/old{
- icon_state = "floor4-old"
- },
-/turf/open/floor/plating/asteroid/basalt,
-/area/overmap_encounter/planetoid/cave/explored)
-"uW" = (
-/obj/effect/decal/cleanable/blood/old{
- icon_state = "floor2-old"
- },
-/turf/open/floor/plating/asteroid/basalt,
-/area/overmap_encounter/planetoid/cave/explored)
-"wm" = (
-/obj/structure/bed,
-/obj/item/bedsheet/dorms,
-/turf/open/floor/plating/asteroid/basalt,
-/area/overmap_encounter/planetoid/cave/explored)
-"xi" = (
-/turf/closed/mineral/volcanic/lava_land_surface,
-/area/overmap_encounter/planetoid/cave/explored)
-"xP" = (
-/obj/structure/chair/wood/wings{
- dir = 1
- },
-/mob/living/simple_animal/hostile/asteroid/hivelord/legion{
- icon_aggro = "dwarf_legion";
- icon_dead = "dwarf_legion";
- icon_living = "dwarf_legion";
- icon_state = "dwarf_legion";
- name = "dwarf legion"
- },
-/turf/open/floor/plating/asteroid/basalt,
-/area/overmap_encounter/planetoid/cave/explored)
-"xR" = (
-/turf/closed/wall/mineral/wood,
-/area/overmap_encounter/planetoid/cave/explored)
-"zY" = (
-/mob/living/simple_animal/hostile/asteroid/hivelord/legion{
- icon_aggro = "dwarf_legion";
- icon_dead = "dwarf_legion";
- icon_living = "dwarf_legion";
- icon_state = "dwarf_legion";
- name = "dwarf legion"
- },
-/turf/open/floor/plating/asteroid/basalt,
-/area/overmap_encounter/planetoid/cave/explored)
-"Ay" = (
-/turf/open/floor/plating/asteroid/basalt,
-/area/overmap_encounter/planetoid/cave/explored)
-"Bd" = (
-/obj/effect/decal/cleanable/blood/old{
- icon_state = "floor6-old"
- },
-/turf/open/floor/plating/asteroid/basalt,
-/area/overmap_encounter/planetoid/cave/explored)
-"Cf" = (
-/obj/structure/table/wood,
-/obj/item/fireaxe/boneaxe,
-/turf/open/floor/plating/asteroid/basalt,
-/area/overmap_encounter/planetoid/cave/explored)
-"CI" = (
-/obj/structure/table/wood,
-/obj/item/toy/plush/lizardplushie{
- pixel_y = 3
- },
-/turf/open/floor/plating/asteroid/basalt,
-/area/overmap_encounter/planetoid/cave/explored)
-"Dk" = (
-/obj/structure/bed,
-/turf/open/floor/plating/asteroid/basalt,
-/area/overmap_encounter/planetoid/cave/explored)
-"ET" = (
-/obj/structure/table/wood,
-/obj/item/reagent_containers/food/drinks/drinkingglass{
- list_reagents = list(/datum/reagent/consumable/ethanol/hearty_punch=25)
- },
-/turf/open/floor/plating/asteroid/basalt,
-/area/overmap_encounter/planetoid/cave/explored)
-"Fs" = (
-/obj/structure/table/wood,
-/obj/item/spear/bonespear,
-/turf/open/floor/plating/asteroid/basalt,
-/area/overmap_encounter/planetoid/cave/explored)
-"GD" = (
-/obj/structure/table/wood,
-/obj/item/reagent_containers/food/snacks/meat/steak/goliath{
- pixel_y = 6
- },
-/turf/open/floor/plating/asteroid/basalt,
-/area/overmap_encounter/planetoid/cave/explored)
-"GL" = (
-/mob/living/simple_animal/hostile/asteroid/hivelord/legion/dwarf,
-/turf/open/floor/plating/asteroid/basalt,
-/area/overmap_encounter/planetoid/cave/explored)
-"GS" = (
-/obj/item/dice/d20{
- pixel_x = 5;
- pixel_y = 6
- },
-/obj/item/toy/figure/clown{
- pixel_x = -7;
- pixel_y = 1
- },
-/obj/structure/table/wood/fancy/purple,
-/turf/open/floor/plating/asteroid/basalt,
-/area/overmap_encounter/planetoid/cave/explored)
-"Hg" = (
-/obj/structure/table/wood,
-/obj/item/reagent_containers/food/drinks/drinkingglass{
- list_reagents = list(/datum/reagent/consumable/ethanol/manly_dorf=30)
- },
-/turf/open/floor/plating/asteroid/basalt,
-/area/overmap_encounter/planetoid/cave/explored)
-"Hj" = (
-/obj/structure/chair/wood/wings{
- dir = 8
- },
-/turf/open/floor/plating/asteroid/basalt,
-/area/overmap_encounter/planetoid/cave/explored)
-"HZ" = (
-/obj/structure/table/wood,
-/obj/item/flashlight/lantern,
-/obj/item/flashlight/lantern,
-/obj/item/flashlight/lantern,
-/turf/open/floor/plating/asteroid/basalt,
-/area/overmap_encounter/planetoid/cave/explored)
-"MR" = (
-/obj/structure/barricade/wooden,
-/turf/open/floor/plating/asteroid/basalt,
-/area/overmap_encounter/planetoid/cave/explored)
-"NL" = (
-/obj/structure/table/wood,
-/obj/item/toy/cards/deck{
- pixel_y = 5
- },
-/turf/open/floor/plating/asteroid/basalt,
-/area/overmap_encounter/planetoid/cave/explored)
-"Oy" = (
-/obj/structure/chair/comfy/orange/directional/south,
-/turf/open/floor/plating/asteroid/basalt,
-/area/overmap_encounter/planetoid/cave/explored)
-"Pl" = (
-/obj/effect/decal/cleanable/blood/gibs/old,
-/obj/item/clothing/head/helmet/skull,
-/turf/open/floor/plating/asteroid/basalt,
-/area/overmap_encounter/planetoid/cave/explored)
-"PB" = (
-/obj/structure/table/wood,
-/obj/item/shield/riot/buckler,
-/obj/item/shield/riot/buckler,
-/turf/open/floor/plating/asteroid/basalt,
-/area/overmap_encounter/planetoid/cave/explored)
-"PW" = (
-/obj/effect/decal/cleanable/blood/old,
-/obj/item/flashlight/flare/torch,
-/turf/open/floor/plating/asteroid/basalt,
-/area/overmap_encounter/planetoid/cave/explored)
-"QZ" = (
-/obj/structure/table/wood,
-/obj/item/pickaxe,
-/obj/item/pickaxe,
-/turf/open/floor/plating/asteroid/basalt,
-/area/overmap_encounter/planetoid/cave/explored)
-"RP" = (
-/obj/structure/reagent_dispensers/beerkeg,
-/turf/open/floor/plating/asteroid/basalt,
-/area/overmap_encounter/planetoid/cave/explored)
-"Sv" = (
-/obj/structure/sign/poster/official/high_class_martini,
-/turf/closed/wall/mineral/wood,
-/area/overmap_encounter/planetoid/cave/explored)
-"Ti" = (
-/obj/structure/table/wood,
-/obj/item/reagent_containers/food/drinks/ale{
- pixel_x = -6;
- pixel_y = 2
- },
-/obj/item/reagent_containers/food/drinks/bottle/lizardwine{
- pixel_x = 7;
- pixel_y = 5
- },
-/turf/open/floor/plating/asteroid/basalt,
-/area/overmap_encounter/planetoid/cave/explored)
-"UM" = (
-/obj/structure/table/wood,
-/turf/open/floor/plating/asteroid/basalt,
-/area/overmap_encounter/planetoid/cave/explored)
-"Vk" = (
-/obj/structure/chair/stool/bar,
-/turf/open/floor/plating/asteroid/basalt,
-/area/overmap_encounter/planetoid/cave/explored)
-"XW" = (
-/obj/effect/decal/cleanable/blood/old{
- icon_state = "floor7-old"
- },
-/turf/open/floor/plating/asteroid/basalt,
-/area/overmap_encounter/planetoid/cave/explored)
-"Zc" = (
-/obj/effect/decal/cleanable/blood/old{
- icon_state = "floor5-old"
- },
-/turf/open/floor/plating/asteroid/basalt,
-/area/overmap_encounter/planetoid/cave/explored)
-
-(1,1,1) = {"
-xi
-xi
-xi
-xi
-xi
-xi
-xi
-xi
-xi
-xi
-xi
-xi
-xi
-xi
-xi
-xi
-xi
-xi
-"}
-(2,1,1) = {"
-xi
-xi
-xi
-xR
-xR
-xR
-xR
-xR
-xR
-xR
-xR
-xR
-xR
-xi
-xi
-xi
-xi
-xi
-"}
-(3,1,1) = {"
-xi
-xi
-xR
-iI
-RP
-Ay
-GS
-xP
-xR
-Dk
-zY
-wm
-xR
-uW
-Ay
-Ay
-xi
-xi
-"}
-(4,1,1) = {"
-xi
-xi
-xR
-Ay
-Ay
-Ay
-Hj
-Ay
-xR
-wm
-Ay
-Dk
-xR
-Ay
-sz
-Ay
-Ay
-xi
-"}
-(5,1,1) = {"
-xi
-xi
-xR
-Ay
-ET
-Vk
-Ay
-Ay
-xR
-Dk
-XW
-Dk
-xR
-Ay
-Ay
-Zc
-Ay
-xi
-"}
-(6,1,1) = {"
-xi
-xi
-xR
-Ay
-lt
-Vk
-Ay
-Ay
-xR
-Dk
-Ay
-wm
-xR
-ui
-Ay
-Ay
-xi
-xi
-"}
-(7,1,1) = {"
-xi
-xi
-xR
-dO
-Hg
-mN
-Ay
-Ay
-ks
-Ay
-Ay
-Dk
-xR
-Ay
-MR
-xi
-xi
-xi
-"}
-(8,1,1) = {"
-xi
-xi
-xR
-Ay
-NL
-Vk
-Ay
-Ay
-xR
-uW
-Ay
-qj
-xR
-Ay
-Ay
-bP
-xi
-xi
-"}
-(9,1,1) = {"
-xi
-xi
-xR
-Ti
-GD
-Vk
-Ay
-Ay
-xR
-Dk
-Ay
-wm
-xR
-Ay
-Pl
-Ay
-xi
-xi
-"}
-(10,1,1) = {"
-xi
-xi
-xR
-sR
-Ay
-Ay
-Ay
-fr
-xR
-wm
-zY
-Ay
-xR
-xi
-MR
-GL
-xi
-xi
-"}
-(11,1,1) = {"
-xi
-xi
-xR
-xR
-xR
-xR
-Ay
-Sv
-xR
-xR
-xR
-ks
-xR
-xR
-Ay
-Ay
-xi
-xi
-"}
-(12,1,1) = {"
-xi
-xi
-xi
-xR
-mO
-Ay
-Ay
-Ay
-Ay
-xR
-Ay
-Ay
-UM
-xR
-Ay
-Bd
-xi
-xi
-"}
-(13,1,1) = {"
-sS
-xi
-xi
-xR
-if
-Ay
-Ay
-gB
-th
-xR
-QZ
-Ay
-Ay
-xR
-Ay
-Ay
-xi
-xi
-"}
-(14,1,1) = {"
-sS
-xi
-xi
-xR
-Hj
-Ay
-Ay
-Ay
-Ay
-xR
-Cf
-Ay
-ui
-ks
-Ay
-Ay
-xi
-xi
-"}
-(15,1,1) = {"
-sS
-xi
-xR
-xR
-Ay
-GL
-Ay
-Ay
-Ay
-xR
-HZ
-kY
-Ay
-ks
-uW
-Ay
-xi
-xi
-"}
-(16,1,1) = {"
-sS
-PW
-xR
-Ay
-Ay
-Ay
-Ay
-CI
-Ay
-xR
-Ay
-XW
-Ay
-xR
-Ay
-Ay
-xi
-xi
-"}
-(17,1,1) = {"
-sS
-Ay
-ks
-Ay
-Ay
-Ay
-Ay
-Oy
-Ay
-xR
-iM
-Fs
-PB
-xR
-Ay
-Ay
-xi
-xi
-"}
-(18,1,1) = {"
-sS
-zY
-xR
-xR
-xR
-xR
-xR
-xR
-xR
-xR
-xR
-xR
-xR
-xR
-zY
-xi
-xi
-xi
-"}
-(19,1,1) = {"
-sS
-xi
-xi
-xi
-xi
-xi
-xi
-xi
-xi
-xi
-xi
-xi
-xi
-xi
-xi
-xi
-xi
-xi
-"}
-(20,1,1) = {"
-sS
-xi
-xi
-xi
-xi
-xi
-xi
-xi
-xi
-xi
-xi
-xi
-xi
-xi
-xi
-xi
-xi
-xi
-"}
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_hierophant.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_hierophant.dmm
deleted file mode 100644
index cad120c3f25..00000000000
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_hierophant.dmm
+++ /dev/null
@@ -1,604 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"a" = (
-/turf/closed/indestructible/riveted/hierophant,
-/area/ruin/unpowered/hierophant)
-"b" = (
-/turf/open/indestructible/hierophant,
-/area/ruin/unpowered/hierophant)
-"c" = (
-/obj/effect/light_emitter{
- set_cap = 3;
- set_luminosity = 5
- },
-/turf/open/indestructible/hierophant,
-/area/ruin/unpowered/hierophant)
-"d" = (
-/mob/living/simple_animal/hostile/megafauna/hierophant,
-/turf/open/indestructible/hierophant/two,
-/area/ruin/unpowered/hierophant)
-"e" = (
-/turf/open/indestructible/hierophant/two,
-/area/ruin/unpowered/hierophant)
-"f" = (
-/obj/effect/light_emitter{
- set_cap = 3;
- set_luminosity = 5
- },
-/turf/open/indestructible/hierophant/two,
-/area/ruin/unpowered/hierophant)
-
-(1,1,1) = {"
-a
-a
-a
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-a
-a
-a
-"}
-(2,1,1) = {"
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-c
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-"}
-(3,1,1) = {"
-a
-b
-b
-b
-c
-c
-b
-b
-b
-a
-b
-b
-b
-a
-b
-b
-b
-c
-c
-b
-b
-b
-a
-"}
-(4,1,1) = {"
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-"}
-(5,1,1) = {"
-b
-b
-c
-b
-a
-a
-b
-c
-b
-b
-b
-c
-b
-b
-b
-c
-b
-a
-a
-b
-c
-b
-b
-"}
-(6,1,1) = {"
-b
-b
-c
-b
-a
-a
-b
-c
-b
-b
-b
-c
-b
-b
-b
-c
-b
-a
-a
-b
-c
-b
-b
-"}
-(7,1,1) = {"
-b
-b
-b
-b
-b
-b
-e
-e
-e
-e
-e
-e
-e
-e
-e
-e
-e
-b
-b
-b
-b
-b
-b
-"}
-(8,1,1) = {"
-a
-b
-b
-b
-c
-c
-e
-e
-e
-a
-e
-e
-e
-a
-e
-e
-e
-c
-c
-b
-b
-b
-a
-"}
-(9,1,1) = {"
-a
-b
-b
-b
-b
-b
-e
-e
-e
-e
-e
-f
-e
-e
-e
-e
-e
-b
-b
-b
-b
-b
-a
-"}
-(10,1,1) = {"
-a
-b
-a
-b
-b
-b
-e
-a
-e
-e
-e
-e
-e
-e
-e
-a
-e
-b
-b
-b
-a
-b
-a
-"}
-(11,1,1) = {"
-a
-b
-b
-b
-b
-b
-e
-e
-e
-e
-e
-e
-e
-e
-e
-e
-e
-b
-b
-b
-b
-b
-a
-"}
-(12,1,1) = {"
-a
-c
-b
-b
-c
-c
-e
-e
-f
-e
-e
-d
-e
-e
-f
-e
-e
-c
-c
-b
-b
-c
-a
-"}
-(13,1,1) = {"
-a
-b
-b
-b
-b
-b
-e
-e
-e
-e
-e
-e
-e
-e
-e
-e
-e
-b
-b
-b
-b
-b
-a
-"}
-(14,1,1) = {"
-a
-b
-a
-b
-b
-b
-e
-a
-e
-e
-e
-e
-e
-e
-e
-a
-e
-b
-b
-b
-a
-b
-a
-"}
-(15,1,1) = {"
-a
-b
-b
-b
-b
-b
-e
-e
-e
-e
-e
-f
-e
-e
-e
-e
-e
-b
-b
-b
-b
-b
-a
-"}
-(16,1,1) = {"
-a
-b
-b
-b
-c
-c
-e
-e
-e
-a
-e
-e
-e
-a
-e
-e
-e
-c
-c
-b
-b
-b
-a
-"}
-(17,1,1) = {"
-b
-b
-b
-b
-b
-b
-e
-e
-e
-e
-e
-e
-e
-e
-e
-e
-e
-b
-b
-b
-b
-b
-b
-"}
-(18,1,1) = {"
-b
-b
-c
-b
-a
-a
-b
-c
-b
-b
-b
-c
-b
-b
-b
-c
-b
-a
-a
-b
-c
-b
-b
-"}
-(19,1,1) = {"
-b
-b
-c
-b
-a
-a
-b
-c
-b
-b
-b
-c
-b
-b
-b
-c
-b
-a
-a
-b
-c
-b
-b
-"}
-(20,1,1) = {"
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-"}
-(21,1,1) = {"
-a
-b
-b
-b
-c
-c
-b
-b
-b
-a
-b
-b
-b
-a
-b
-b
-b
-c
-c
-b
-b
-b
-a
-"}
-(22,1,1) = {"
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-c
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-"}
-(23,1,1) = {"
-a
-a
-a
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-a
-a
-a
-"}
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_lava_canyon.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_lava_canyon.dmm
index ea2d614717d..3efc7429d80 100644
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_lava_canyon.dmm
+++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_lava_canyon.dmm
@@ -150,10 +150,7 @@
pixel_x = -5;
pixel_y = 12
},
-/obj/item/melee/cleric_mace{
- pixel_x = 5
- },
-/obj/item/clothing/head/helmet/chaplain/ancient{
+/obj/item/clothing/head/witchunter{
pixel_y = 13;
pixel_x = -5
},
@@ -891,7 +888,6 @@
"zb" = (
/mob/living/simple_animal/hostile/megafauna/blood_drunk_miner{
loot = list(/obj/item/melee/transforming/cleaving_saw,/obj/item/gun/energy/kinetic_accelerator,/obj/item/keycard/gatedrop/lavacanyon);
- crusher_loot = list(/obj/item/melee/transforming/cleaving_saw,/obj/item/gun/energy/kinetic_accelerator,/obj/item/crusher_trophy/miner_eye,/obj/item/keycard/gatedrop/lavacanyon)
},
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/overmap_encounter/planetoid/cave/explored)
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_pizzaparty.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_pizzaparty.dmm
deleted file mode 100644
index d035e25f5cb..00000000000
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_pizzaparty.dmm
+++ /dev/null
@@ -1,647 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"a" = (
-/turf/template_noop,
-/area/template_noop)
-"b" = (
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"c" = (
-/obj/structure/lattice,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"d" = (
-/turf/closed/wall,
-/area/ruin/unpowered)
-"e" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- initial_gas_mix = "o2=14;n2=5;co2=13;TEMP=300"
- },
-/area/ruin/unpowered)
-"f" = (
-/obj/structure/table/wood,
-/obj/item/storage/box/cups,
-/turf/open/floor/wood{
- initial_gas_mix = "o2=14;n2=5;co2=13;TEMP=300"
- },
-/area/ruin/unpowered)
-"g" = (
-/obj/structure/reagent_dispensers/water_cooler{
- name = "punch cooler";
- reagent_id = /datum/reagent/consumable/ethanol/bacchus_blessing
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood{
- initial_gas_mix = "o2=14;n2=5;co2=13;TEMP=300"
- },
-/area/ruin/unpowered)
-"h" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood{
- initial_gas_mix = "o2=14;n2=5;co2=13;TEMP=300"
- },
-/area/ruin/unpowered)
-"i" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood{
- initial_gas_mix = "o2=14;n2=5;co2=13;TEMP=300"
- },
-/area/ruin/unpowered)
-"j" = (
-/obj/item/reagent_containers/food/snacks/pizzaslice/mushroom,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- initial_gas_mix = "o2=14;n2=5;co2=13;TEMP=300"
- },
-/area/ruin/unpowered)
-"k" = (
-/obj/structure/table/wood,
-/obj/effect/spawner/lootdrop/pizzaparty,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood{
- initial_gas_mix = "o2=14;n2=5;co2=13;TEMP=300"
- },
-/area/ruin/unpowered)
-"l" = (
-/obj/machinery/light/directional/east,
-/obj/structure/table/wood,
-/obj/effect/spawner/lootdrop/pizzaparty,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/turf/open/floor/wood{
- initial_gas_mix = "o2=14;n2=5;co2=13;TEMP=300"
- },
-/area/ruin/unpowered)
-"m" = (
-/obj/item/chair/wood/wings,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- initial_gas_mix = "o2=14;n2=5;co2=13;TEMP=300"
- },
-/area/ruin/unpowered)
-"n" = (
-/obj/structure/glowshroom/single,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood{
- 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,
-/turf/open/floor/wood{
- initial_gas_mix = "o2=14;n2=5;co2=13;TEMP=300"
- },
-/area/ruin/unpowered)
-"q" = (
-/obj/item/chair/wood/wings,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood{
- 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/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"
- },
-/area/ruin/unpowered)
-"t" = (
-/obj/structure/chair/wood/wings,
-/obj/effect/decal/remains/human,
-/turf/open/floor/wood{
- initial_gas_mix = "o2=14;n2=5;co2=13;TEMP=300"
- },
-/area/ruin/unpowered)
-"u" = (
-/obj/structure/glowshroom/single,
-/turf/open/floor/wood{
- initial_gas_mix = "o2=14;n2=5;co2=13;TEMP=300"
- },
-/area/ruin/unpowered)
-"v" = (
-/obj/structure/lattice,
-/obj/item/chair/wood/wings,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"w" = (
-/obj/item/kitchen/fork,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood{
- initial_gas_mix = "o2=14;n2=5;co2=13;TEMP=300"
- },
-/area/ruin/unpowered)
-"x" = (
-/obj/structure/table/wood,
-/obj/effect/spawner/lootdrop/pizzaparty,
-/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/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,
-/obj/item/a_gift,
-/turf/open/floor/wood{
- 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
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- initial_gas_mix = "o2=14;n2=5;co2=13;TEMP=300"
- },
-/area/ruin/unpowered)
-"D" = (
-/obj/structure/table/wood,
-/obj/item/reagent_containers/food/snacks/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/reagent_containers/food/snacks/pizzaslice/meat,
-/turf/open/floor/wood{
- initial_gas_mix = "o2=14;n2=5;co2=13;TEMP=300"
- },
-/area/ruin/unpowered)
-"F" = (
-/obj/structure/table/wood,
-/obj/item/reagent_containers/food/snacks/store/cake/birthday,
-/turf/open/floor/wood{
- initial_gas_mix = "o2=14;n2=5;co2=13;TEMP=300"
- },
-/area/ruin/unpowered)
-"G" = (
-/obj/structure/table/wood,
-/turf/open/floor/wood{
- initial_gas_mix = "o2=14;n2=5;co2=13;TEMP=300"
- },
-/area/ruin/unpowered)
-"H" = (
-/obj/item/chair/wood/wings,
-/turf/open/floor/wood{
- initial_gas_mix = "o2=14;n2=5;co2=13;TEMP=300"
- },
-/area/ruin/unpowered)
-"I" = (
-/obj/item/kitchen/fork,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- initial_gas_mix = "o2=14;n2=5;co2=13;TEMP=300"
- },
-/area/ruin/unpowered)
-"J" = (
-/obj/structure/glowshroom/single,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- initial_gas_mix = "o2=14;n2=5;co2=13;TEMP=300"
- },
-/area/ruin/unpowered)
-"K" = (
-/obj/structure/chair/wood/wings{
- dir = 1
- },
-/obj/effect/decal/remains/human,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood{
- initial_gas_mix = "o2=14;n2=5;co2=13;TEMP=300"
- },
-/area/ruin/unpowered)
-"L" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- initial_gas_mix = "o2=14;n2=5;co2=13;TEMP=300"
- },
-/area/ruin/unpowered)
-"M" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/item/a_gift,
-/turf/open/floor/wood{
- initial_gas_mix = "o2=14;n2=5;co2=13;TEMP=300"
- },
-/area/ruin/unpowered)
-"N" = (
-/obj/structure/lattice,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"O" = (
-/obj/item/kitchen/knife,
-/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/machinery/light/directional/east,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood{
- initial_gas_mix = "o2=14;n2=5;co2=13;TEMP=300"
- },
-/area/ruin/unpowered)
-"Q" = (
-/turf/open/floor/plating{
- initial_gas_mix = "o2=14;n2=5;co2=13;TEMP=300"
- },
-/area/ruin/unpowered)
-
-(1,1,1) = {"
-a
-a
-b
-b
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-"}
-(2,1,1) = {"
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-c
-c
-b
-b
-b
-b
-a
-a
-"}
-(3,1,1) = {"
-b
-b
-b
-b
-b
-b
-b
-b
-c
-c
-e
-e
-c
-c
-b
-b
-b
-a
-"}
-(4,1,1) = {"
-b
-b
-b
-b
-d
-b
-c
-c
-e
-h
-h
-e
-Q
-e
-d
-b
-b
-a
-"}
-(5,1,1) = {"
-a
-b
-b
-b
-d
-b
-m
-e
-w
-h
-w
-h
-h
-e
-d
-b
-b
-b
-"}
-(6,1,1) = {"
-a
-b
-b
-b
-d
-f
-n
-h
-h
-c
-e
-M
-e
-c
-b
-b
-b
-b
-"}
-(7,1,1) = {"
-b
-b
-b
-b
-d
-g
-o
-h
-h
-C
-J
-h
-d
-b
-b
-b
-b
-b
-"}
-(8,1,1) = {"
-b
-b
-b
-b
-e
-h
-p
-q
-x
-D
-K
-M
-d
-b
-b
-b
-b
-b
-"}
-(9,1,1) = {"
-b
-b
-b
-c
-e
-i
-h
-r
-y
-E
-h
-h
-c
-b
-b
-b
-b
-b
-"}
-(10,1,1) = {"
-b
-b
-b
-c
-e
-j
-h
-s
-z
-F
-q
-N
-c
-b
-b
-b
-b
-b
-"}
-(11,1,1) = {"
-b
-b
-b
-b
-e
-e
-h
-t
-A
-G
-q
-h
-c
-b
-b
-b
-b
-b
-"}
-(12,1,1) = {"
-b
-b
-b
-b
-d
-k
-h
-s
-s
-H
-h
-O
-d
-b
-b
-b
-b
-b
-"}
-(13,1,1) = {"
-b
-b
-b
-b
-d
-k
-h
-u
-s
-s
-o
-n
-d
-b
-b
-b
-b
-a
-"}
-(14,1,1) = {"
-b
-b
-b
-b
-d
-l
-i
-h
-e
-I
-L
-P
-d
-b
-b
-b
-b
-a
-"}
-(15,1,1) = {"
-b
-b
-b
-b
-d
-d
-e
-e
-N
-e
-e
-d
-d
-b
-b
-b
-b
-a
-"}
-(16,1,1) = {"
-a
-b
-b
-b
-b
-b
-c
-v
-b
-c
-b
-b
-b
-b
-b
-b
-b
-a
-"}
-(17,1,1) = {"
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-"}
-(18,1,1) = {"
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-"}
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_random_ripley.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_random_ripley.dmm
deleted file mode 100644
index ba1bf8acc4d..00000000000
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_random_ripley.dmm
+++ /dev/null
@@ -1,58 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"a" = (
-/turf/template_noop,
-/area/template_noop)
-"b" = (
-/turf/closed/mineral/volcanic/lava_land_surface,
-/area/overmap_encounter/planetoid/cave/explored)
-"c" = (
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/cave/explored)
-"d" = (
-/obj/mecha/working/ripley/mining{
- ruin_mecha = 1
- },
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/cave/explored)
-"e" = (
-/obj/item/clothing/shoes/workboots/mining,
-/obj/item/clothing/under/rank/cargo/miner/lavaland,
-/obj/effect/decal/remains/human,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/cave/explored)
-
-(1,1,1) = {"
-a
-b
-b
-b
-a
-"}
-(2,1,1) = {"
-b
-c
-b
-c
-b
-"}
-(3,1,1) = {"
-b
-c
-d
-e
-b
-"}
-(4,1,1) = {"
-b
-c
-c
-b
-b
-"}
-(5,1,1) = {"
-b
-b
-b
-b
-a
-"}
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_sloth.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_sloth.dmm
deleted file mode 100644
index 4eee51cacf8..00000000000
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_sloth.dmm
+++ /dev/null
@@ -1,643 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"a" = (
-/turf/closed/indestructible/riveted,
-/area/ruin/unpowered)
-"b" = (
-/turf/open/lava/smooth/lava_land_surface,
-/area/ruin/unpowered)
-"c" = (
-/obj/item/paper/fluff/stations/lavaland/sloth/note,
-/turf/open/floor/sepia{
- slowdown = 10
- },
-/area/ruin/unpowered)
-"d" = (
-/turf/open/floor/sepia{
- slowdown = 10
- },
-/area/ruin/unpowered)
-"e" = (
-/obj/machinery/door/airlock/wood{
- dir = 4
- },
-/turf/open/floor/sepia{
- slowdown = 10
- },
-/area/ruin/unpowered)
-"g" = (
-/obj/structure/bed,
-/obj/item/bedsheet/brown,
-/turf/open/floor/sepia{
- slowdown = 10
- },
-/area/ruin/unpowered)
-"J" = (
-/obj/structure/table/wood,
-/obj/item/toy/plush/lizardplushie{
- name = "Mark"
- },
-/turf/open/floor/sepia{
- slowdown = 10
- },
-/area/ruin/unpowered)
-
-(1,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(2,1,1) = {"
-a
-b
-b
-b
-b
-b
-b
-b
-b
-a
-"}
-(3,1,1) = {"
-a
-b
-a
-a
-a
-a
-a
-a
-b
-a
-"}
-(4,1,1) = {"
-a
-b
-a
-c
-d
-d
-J
-a
-b
-a
-"}
-(5,1,1) = {"
-a
-b
-a
-d
-d
-d
-g
-a
-b
-a
-"}
-(6,1,1) = {"
-a
-b
-a
-d
-a
-a
-a
-a
-b
-a
-"}
-(7,1,1) = {"
-a
-b
-a
-d
-d
-d
-d
-a
-b
-a
-"}
-(8,1,1) = {"
-a
-b
-a
-a
-a
-a
-d
-a
-b
-a
-"}
-(9,1,1) = {"
-a
-b
-a
-d
-d
-d
-d
-a
-b
-a
-"}
-(10,1,1) = {"
-a
-b
-a
-d
-a
-a
-a
-a
-b
-a
-"}
-(11,1,1) = {"
-a
-b
-a
-d
-d
-d
-d
-a
-b
-a
-"}
-(12,1,1) = {"
-a
-b
-a
-a
-a
-a
-d
-a
-b
-a
-"}
-(13,1,1) = {"
-a
-b
-a
-d
-d
-d
-d
-a
-b
-a
-"}
-(14,1,1) = {"
-a
-b
-a
-d
-a
-a
-a
-a
-b
-a
-"}
-(15,1,1) = {"
-a
-b
-a
-d
-d
-d
-d
-a
-b
-a
-"}
-(16,1,1) = {"
-a
-b
-a
-a
-a
-a
-d
-a
-b
-a
-"}
-(17,1,1) = {"
-a
-b
-a
-d
-d
-d
-d
-a
-b
-a
-"}
-(18,1,1) = {"
-a
-b
-a
-d
-a
-a
-a
-a
-b
-a
-"}
-(19,1,1) = {"
-a
-b
-a
-d
-d
-d
-d
-a
-b
-a
-"}
-(20,1,1) = {"
-a
-b
-a
-a
-a
-a
-d
-a
-b
-a
-"}
-(21,1,1) = {"
-a
-b
-a
-d
-d
-d
-d
-a
-b
-a
-"}
-(22,1,1) = {"
-a
-b
-a
-d
-a
-a
-a
-a
-b
-a
-"}
-(23,1,1) = {"
-a
-b
-a
-d
-d
-d
-d
-a
-b
-a
-"}
-(24,1,1) = {"
-a
-b
-a
-a
-a
-a
-d
-a
-b
-a
-"}
-(25,1,1) = {"
-a
-b
-a
-d
-d
-d
-d
-a
-b
-a
-"}
-(26,1,1) = {"
-a
-b
-a
-d
-a
-a
-a
-a
-b
-a
-"}
-(27,1,1) = {"
-a
-b
-a
-d
-d
-d
-d
-a
-b
-a
-"}
-(28,1,1) = {"
-a
-b
-a
-a
-a
-a
-d
-a
-b
-a
-"}
-(29,1,1) = {"
-a
-b
-a
-d
-d
-d
-d
-a
-b
-a
-"}
-(30,1,1) = {"
-a
-b
-a
-d
-a
-a
-a
-a
-b
-a
-"}
-(31,1,1) = {"
-a
-b
-a
-d
-d
-d
-d
-a
-b
-a
-"}
-(32,1,1) = {"
-a
-b
-a
-a
-a
-a
-d
-a
-b
-a
-"}
-(33,1,1) = {"
-a
-b
-a
-d
-d
-d
-d
-a
-b
-a
-"}
-(34,1,1) = {"
-a
-b
-a
-d
-a
-a
-a
-a
-b
-a
-"}
-(35,1,1) = {"
-a
-b
-a
-d
-d
-d
-d
-a
-b
-a
-"}
-(36,1,1) = {"
-a
-b
-a
-a
-a
-a
-d
-a
-b
-a
-"}
-(37,1,1) = {"
-a
-b
-a
-d
-d
-d
-d
-a
-b
-a
-"}
-(38,1,1) = {"
-a
-b
-a
-d
-a
-a
-a
-a
-b
-a
-"}
-(39,1,1) = {"
-a
-b
-a
-d
-d
-d
-d
-a
-b
-a
-"}
-(40,1,1) = {"
-a
-b
-a
-a
-a
-a
-d
-a
-b
-a
-"}
-(41,1,1) = {"
-a
-b
-a
-d
-d
-d
-d
-a
-b
-a
-"}
-(42,1,1) = {"
-a
-b
-a
-d
-a
-a
-a
-a
-b
-a
-"}
-(43,1,1) = {"
-a
-b
-a
-d
-d
-d
-d
-a
-b
-a
-"}
-(44,1,1) = {"
-a
-b
-a
-a
-a
-a
-d
-a
-b
-a
-"}
-(45,1,1) = {"
-a
-b
-a
-d
-d
-d
-d
-a
-b
-a
-"}
-(46,1,1) = {"
-a
-b
-a
-d
-a
-a
-a
-a
-b
-a
-"}
-(47,1,1) = {"
-a
-b
-a
-d
-d
-d
-d
-a
-b
-a
-"}
-(48,1,1) = {"
-a
-b
-a
-a
-a
-a
-d
-a
-b
-a
-"}
-(49,1,1) = {"
-a
-b
-a
-d
-d
-d
-d
-a
-b
-a
-"}
-(50,1,1) = {"
-a
-a
-a
-a
-e
-e
-a
-a
-a
-a
-"}
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_survivalpod.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_survivalpod.dmm
deleted file mode 100644
index 5e8e6a7f0de..00000000000
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_survivalpod.dmm
+++ /dev/null
@@ -1,286 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"a" = (
-/turf/template_noop,
-/area/template_noop)
-"b" = (
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"c" = (
-/obj/structure/sign/mining/survival{
- pixel_y = -32
- },
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"d" = (
-/turf/closed/wall/mineral/titanium/survival/pod,
-/area/ruin/powered)
-"e" = (
-/obj/structure/sign/mining/survival{
- dir = 4;
- pixel_x = 32
- },
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"f" = (
-/obj/structure/fans,
-/turf/open/floor/pod/dark,
-/area/ruin/powered)
-"g" = (
-/obj/machinery/smartfridge/survival_pod/empty,
-/turf/open/floor/pod/dark,
-/area/ruin/powered)
-"h" = (
-/obj/item/gps/computer,
-/obj/structure/tubes,
-/turf/open/floor/pod/dark,
-/area/ruin/powered)
-"i" = (
-/obj/structure/sign/mining/survival{
- dir = 8;
- pixel_x = -32
- },
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"j" = (
-/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"k" = (
-/obj/machinery/sleeper/survival_pod,
-/turf/open/floor/pod/dark,
-/area/ruin/powered)
-"l" = (
-/obj/item/pickaxe,
-/obj/effect/decal/cleanable/blood,
-/turf/open/floor/pod/dark,
-/area/ruin/powered)
-"m" = (
-/obj/structure/bed/pod,
-/obj/item/bedsheet/black,
-/obj/structure/tubes,
-/obj/machinery/light/small/directional/east,
-/turf/open/floor/pod/dark,
-/area/ruin/powered)
-"n" = (
-/obj/effect/decal/cleanable/blood,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"o" = (
-/obj/effect/decal/cleanable/blood,
-/mob/living/simple_animal/hostile/asteroid/goliath/beast{
- health = 0
- },
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"p" = (
-/obj/structure/table/survival_pod,
-/obj/item/kitchen/knife/combat/survival,
-/turf/open/floor/pod/dark,
-/area/ruin/powered)
-"q" = (
-/obj/effect/mob_spawn/human/miner{
- brute_damage = 150;
- oxy_damage = 50
- },
-/obj/effect/decal/cleanable/blood,
-/obj/effect/decal/cleanable/blood/drip,
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 1
- },
-/turf/open/floor/pod/dark,
-/area/ruin/powered)
-"r" = (
-/obj/structure/tubes,
-/obj/item/crowbar,
-/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/pod/dark,
-/area/ruin/powered)
-"s" = (
-/obj/effect/decal/cleanable/blood/footprints,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"t" = (
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 1
- },
-/obj/machinery/door/airlock/survival_pod/glass,
-/turf/open/floor/pod/dark,
-/area/ruin/powered)
-"u" = (
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 8
- },
-/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"v" = (
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 8
- },
-/obj/effect/decal/cleanable/blood/footprints,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"w" = (
-/obj/structure/sign/mining/survival{
- pixel_y = 32
- },
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"x" = (
-/obj/effect/decal/cleanable/blood/drip,
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 1
- },
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"y" = (
-/obj/structure/sign/mining{
- pixel_y = 32
- },
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 8
- },
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"z" = (
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 8
- },
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-"A" = (
-/obj/effect/decal/cleanable/blood/footprints,
-/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/overmap_encounter/planetoid/lava/explored)
-
-(1,1,1) = {"
-a
-a
-a
-b
-b
-b
-b
-b
-a
-a
-a
-"}
-(2,1,1) = {"
-a
-a
-b
-b
-e
-b
-e
-b
-b
-a
-a
-"}
-(3,1,1) = {"
-a
-a
-b
-d
-d
-d
-d
-d
-b
-a
-a
-"}
-(4,1,1) = {"
-a
-b
-c
-d
-f
-k
-p
-d
-w
-b
-b
-"}
-(5,1,1) = {"
-a
-b
-b
-d
-g
-l
-q
-t
-x
-b
-b
-"}
-(6,1,1) = {"
-b
-b
-c
-d
-h
-m
-r
-d
-y
-b
-b
-"}
-(7,1,1) = {"
-a
-b
-b
-d
-d
-d
-d
-d
-z
-j
-j
-"}
-(8,1,1) = {"
-a
-a
-b
-b
-i
-b
-i
-u
-A
-b
-b
-"}
-(9,1,1) = {"
-a
-a
-b
-b
-j
-n
-s
-v
-a
-a
-a
-"}
-(10,1,1) = {"
-a
-a
-a
-a
-a
-o
-j
-b
-a
-a
-a
-"}
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_wrecked_factory.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_wrecked_factory.dmm
new file mode 100644
index 00000000000..f4f938f0b7b
--- /dev/null
+++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_wrecked_factory.dmm
@@ -0,0 +1,7757 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"ab" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 5
+ },
+/obj/structure/table/wood,
+/obj/item/reagent_containers/food/drinks/trophy/gold_cup,
+/turf/open/floor/wood,
+/area/ruin/lavaland/factory/manager_office)
+"ac" = (
+/obj/structure/curtain,
+/turf/open/floor/plasteel/showroomfloor,
+/area/ruin/lavaland/factory/dorms)
+"ae" = (
+/obj/structure/table/wood,
+/obj/item/storage/fancy/donut_box,
+/turf/open/floor/wood,
+/area/ruin/lavaland/factory/adminstrative)
+"am" = (
+/obj/effect/turf_decal/road/stop,
+/turf/open/floor/plasteel/dark/lava,
+/area/overmap_encounter/planetoid/cave/explored)
+"ap" = (
+/obj/structure/table_frame,
+/obj/effect/decal/cleanable/glass,
+/obj/item/shard,
+/turf/open/floor/carpet/nanoweave/blue,
+/area/ruin/lavaland/factory/lobby)
+"as" = (
+/obj/machinery/door/airlock/command{
+ dir = 4
+ },
+/obj/machinery/door/poddoor/shutters{
+ dir = 4;
+ id = "sec"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/carpet/nanoweave,
+/area/ruin/lavaland/factory/adminstrative)
+"av" = (
+/obj/structure/fence/door{
+ dir = 4
+ },
+/turf/open/floor/concrete/slab_1/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"ax" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/ruin/lavaland/factory/adminstrative)
+"aA" = (
+/obj/effect/turf_decal/trimline/opaque/ntblue/warning{
+ dir = 4
+ },
+/turf/open/floor/plasteel/mono/white,
+/area/ruin/lavaland/factory/lobby)
+"aE" = (
+/obj/effect/turf_decal/trimline/opaque/ntblue/warning{
+ dir = 8
+ },
+/obj/machinery/light/broken/directional/south,
+/obj/effect/decal/cleanable/glass,
+/mob/living/simple_animal/hostile/viscerator,
+/turf/open/floor/plasteel/mono/white,
+/area/ruin/lavaland/factory/lobby)
+"aL" = (
+/obj/item/camera,
+/turf/open/floor/plating/moss,
+/area/overmap_encounter/planetoid/lava/explored)
+"aM" = (
+/obj/item/documents/nanotrasen,
+/obj/item/spacecash/bundle/c1000,
+/obj/item/spacecash/bundle/c1000,
+/obj/item/spacecash/bundle/c1000,
+/obj/item/stock_parts/cell/gun/upgraded,
+/obj/structure/safe,
+/turf/open/floor/carpet/blue,
+/area/ruin/lavaland/factory/manager_office)
+"aW" = (
+/obj/machinery/door/airlock/outpost,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/dark,
+/area/overmap_encounter/planetoid/cave/explored)
+"bd" = (
+/turf/open/floor/concrete/slab_1/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"bh" = (
+/obj/effect/turf_decal/trimline/opaque/lime/filled/warning{
+ dir = 1
+ },
+/mob/living/simple_animal/hostile/viscerator,
+/turf/open/floor/plasteel/white,
+/area/ruin/lavaland/factory/adminstrative)
+"bi" = (
+/obj/structure/railing,
+/obj/effect/turf_decal/trimline/opaque/red/arrow_cw{
+ dir = 10
+ },
+/obj/structure/sign/poster/official/safety_report{
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel/mono/dark,
+/area/ruin/lavaland/factory/lobby)
+"bl" = (
+/obj/effect/turf_decal/trimline/opaque/beige/warning,
+/obj/effect/decal/cleanable/dirt/dust,
+/mob/living/simple_animal/hostile/human/syndicate/ranged/smg/space,
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/warehouse)
+"bm" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/button/door{
+ id = "foreman";
+ name = "Office Lockdown";
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/manager_office)
+"bn" = (
+/obj/effect/turf_decal/industrial/warning,
+/turf/open/floor/plasteel/dark/lava,
+/area/overmap_encounter/planetoid/cave/explored)
+"br" = (
+/obj/item/stack/rods,
+/obj/structure/disposalpipe/broken{
+ dir = 1
+ },
+/obj/structure/disposalpipe/broken{
+ dir = 8
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/overmap_encounter/planetoid/cave/explored)
+"bs" = (
+/obj/structure/fence{
+ dir = 4
+ },
+/turf/open/floor/concrete/pavement/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"bx" = (
+/obj/effect/turf_decal/corner/opaque/bar{
+ dir = 1
+ },
+/obj/effect/turf_decal/corner/opaque/bar,
+/obj/machinery/button/door{
+ id = "sec";
+ pixel_y = -22;
+ name = "Security Lockdown";
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/ruin/lavaland/factory/adminstrative)
+"bz" = (
+/obj/structure/table/wood,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/carpet/blue,
+/area/ruin/lavaland/factory/manager_office)
+"bE" = (
+/obj/structure/closet/crate/trashcart,
+/obj/effect/spawner/lootdrop/waste/trash,
+/obj/effect/spawner/lootdrop/waste/trash,
+/obj/item/storage/bag/trash,
+/obj/item/reagent_containers/glass/bucket,
+/obj/item/mop,
+/turf/open/floor/plasteel/tech,
+/area/ruin/lavaland/factory/warehouse)
+"bH" = (
+/obj/effect/decal/cleanable/ash,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/overmap_encounter/planetoid/cave/explored)
+"bQ" = (
+/obj/effect/turf_decal/trimline/opaque/lime/corner,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/item/ammo_casing/c9mm{
+ icon_state = "pistol-brass-empty";
+ projectile_type = null
+ },
+/obj/item/ammo_casing/c9mm{
+ icon_state = "pistol-brass-empty";
+ projectile_type = null
+ },
+/obj/item/ammo_casing/c9mm{
+ icon_state = "pistol-brass-empty";
+ projectile_type = null
+ },
+/obj/item/ammo_casing/c9mm{
+ icon_state = "pistol-brass-empty";
+ projectile_type = null
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/dorms)
+"ca" = (
+/obj/effect/turf_decal/trimline/opaque/beige/warning,
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/warehouse)
+"ce" = (
+/obj/machinery/conveyor{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/overmap_encounter/planetoid/cave/explored)
+"ch" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/mecha_parts/mecha_equipment/hydraulic_clamp,
+/turf/open/floor/plasteel/mono,
+/area/ruin/lavaland/factory/warehouse)
+"cm" = (
+/obj/structure/table/wood,
+/obj/machinery/light/directional/east,
+/obj/effect/spawner/lootdrop/waste/trash,
+/turf/open/floor/wood,
+/area/ruin/lavaland/factory/adminstrative)
+"co" = (
+/obj/structure/flora/ausbushes/fullgrass/hell,
+/turf/open/floor/plating/moss,
+/area/overmap_encounter/planetoid/cave/explored)
+"cu" = (
+/obj/effect/turf_decal/siding/white/corner,
+/obj/effect/mob_spawn/human/corpse/cargo_tech,
+/obj/effect/decal/cleanable/blood{
+ icon_state = "bubblegumfoot"
+ },
+/turf/open/floor/concrete/pavement/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"cx" = (
+/obj/structure/sink{
+ pixel_y = 10
+ },
+/obj/item/storage/pill_bottle{
+ pixel_x = 5;
+ pixel_y = -4
+ },
+/obj/item/storage/pill_bottle{
+ pixel_x = 12;
+ pixel_y = -2
+ },
+/obj/item/storage/pill_bottle{
+ pixel_x = 10;
+ pixel_y = 10
+ },
+/obj/item/reagent_containers/pill/morphine{
+ pixel_x = -15
+ },
+/obj/item/reagent_containers/pill/morphine{
+ pixel_x = -10;
+ pixel_y = 5
+ },
+/obj/structure/mirror{
+ icon_state = "mirror_broke";
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/ruin/lavaland/factory/adminstrative)
+"cy" = (
+/obj/effect/turf_decal/trimline/opaque/red/filled/warning{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/mono/dark,
+/area/ruin/lavaland/factory/lobby)
+"cz" = (
+/obj/effect/turf_decal/box/corners,
+/obj/structure/crate_shelf,
+/turf/open/floor/plasteel/mono,
+/area/ruin/lavaland/factory/warehouse)
+"cD" = (
+/obj/effect/turf_decal/trimline/opaque/beige/warning{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/plastic,
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/warehouse)
+"cE" = (
+/obj/structure/catwalk/over/plated_catwalk/dark,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating/rust,
+/area/ruin/lavaland/factory/warehouse)
+"cL" = (
+/obj/structure/flora/rock/pile,
+/turf/open/floor/plating/grass/lava/purple,
+/area/overmap_encounter/planetoid/lava/explored)
+"cO" = (
+/obj/effect/turf_decal/corner/opaque/ntblue{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/white/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"cR" = (
+/obj/machinery/button/door{
+ id = "sec";
+ name = "Security Lockdown";
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/open/floor/carpet/nanoweave,
+/area/ruin/lavaland/factory/manager_office)
+"cU" = (
+/obj/structure/flora/rock/hell,
+/turf/open/floor/plating/asteroid/purple/lit,
+/area/overmap_encounter/planetoid/lava/explored)
+"cX" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/carpet/nanoweave,
+/area/ruin/lavaland/factory/manager_office)
+"cZ" = (
+/obj/effect/turf_decal/trimline/opaque/beige/warning{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/ammo_casing/c45{
+ icon_state = "pistol-steel-empty";
+ projectile_type = null
+ },
+/obj/item/ammo_casing/c45{
+ icon_state = "pistol-steel-empty";
+ projectile_type = null
+ },
+/obj/item/ammo_casing/c45{
+ icon_state = "pistol-steel-empty";
+ projectile_type = null
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/warehouse)
+"dc" = (
+/obj/structure/bed,
+/obj/item/bedsheet/dorms,
+/obj/structure/curtain/cloth,
+/obj/effect/turf_decal/corner/opaque/ntblue,
+/obj/effect/turf_decal/corner/opaque/ntblue{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/white,
+/area/ruin/lavaland/factory/dorms)
+"dk" = (
+/obj/item/stack/rods,
+/obj/item/stack/cable_coil/cut/yellow,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/overmap_encounter/planetoid/lava/explored)
+"dl" = (
+/obj/machinery/shower{
+ pixel_y = -5;
+ dir = 1
+ },
+/obj/structure/curtain,
+/obj/item/bikehorn/rubberducky,
+/turf/open/floor/plasteel/showroomfloor,
+/area/ruin/lavaland/factory/adminstrative)
+"dm" = (
+/obj/machinery/door/poddoor/shutters{
+ dir = 4;
+ id = "foreman"
+ },
+/obj/effect/decal/cleanable/blood{
+ icon_state = "trails_2";
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/overmap_encounter/planetoid/cave/explored)
+"du" = (
+/obj/item/ammo_casing/c10mm{
+ icon_state = "pistol-steel-empty";
+ projectile_type = null
+ },
+/turf/open/floor/plasteel/dark/lava,
+/area/overmap_encounter/planetoid/cave/explored)
+"dA" = (
+/obj/effect/turf_decal/trimline/opaque/beige/corner,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
+ },
+/obj/item/storage/bag/ore,
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/warehouse)
+"dH" = (
+/obj/effect/turf_decal/trimline/opaque/beige/warning{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/warehouse)
+"dL" = (
+/obj/effect/turf_decal/trimline/opaque/red/arrow_cw{
+ dir = 4
+ },
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/mono/dark,
+/area/ruin/lavaland/factory/lobby)
+"dS" = (
+/obj/structure/flora/ausbushes/grassybush/hell,
+/turf/open/floor/plating/grass/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"dY" = (
+/obj/effect/turf_decal/trimline/opaque/lime/warning{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/dorms)
+"ei" = (
+/obj/structure/chair/office{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/ruin/lavaland/factory/adminstrative)
+"el" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/open/floor/wood,
+/area/ruin/lavaland/factory/adminstrative)
+"en" = (
+/obj/effect/turf_decal/trimline/opaque/lime/warning{
+ dir = 8
+ },
+/obj/machinery/door/airlock,
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/dorms)
+"ev" = (
+/obj/effect/gibspawner/human,
+/obj/effect/decal/remains/human,
+/turf/open/floor/plasteel/dark/lava,
+/area/overmap_encounter/planetoid/cave/explored)
+"ex" = (
+/obj/effect/turf_decal/corner/opaque/red/border{
+ dir = 6
+ },
+/obj/structure/bed,
+/obj/item/bedsheet/hos,
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/adminstrative)
+"ey" = (
+/obj/effect/turf_decal/corner/opaque/bar,
+/obj/effect/turf_decal/corner/opaque/bar{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/ruin/lavaland/factory/adminstrative)
+"eD" = (
+/obj/item/shard,
+/obj/effect/decal/cleanable/glass,
+/obj/item/stack/rods,
+/obj/machinery/door/poddoor/shutters{
+ dir = 4;
+ id = "foreman"
+ },
+/turf/open/floor/plating,
+/area/ruin/lavaland/factory/manager_office)
+"eE" = (
+/obj/item/trash/can,
+/obj/item/trash/can/food/beans{
+ pixel_x = 5;
+ pixel_y = 10
+ },
+/obj/item/trash/can/food/beans{
+ pixel_x = -4;
+ pixel_y = 7
+ },
+/turf/open/floor/plasteel/tech,
+/area/ruin/lavaland/factory/warehouse)
+"eG" = (
+/obj/effect/turf_decal/siding{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/ruin/lavaland/factory/adminstrative)
+"eH" = (
+/obj/effect/turf_decal/corner/opaque/ntblue{
+ dir = 6
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/white/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"eI" = (
+/obj/effect/turf_decal/trimline/opaque/beige/warning,
+/turf/open/floor/plasteel/dark/lava,
+/area/overmap_encounter/planetoid/cave/explored)
+"eO" = (
+/obj/effect/turf_decal/industrial/warning{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/mono,
+/area/ruin/lavaland/factory/warehouse)
+"eR" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 5
+ },
+/turf/open/floor/concrete/pavement/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"eT" = (
+/obj/structure/grille,
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/shutters{
+ dir = 4;
+ id = "foreman"
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/manager_office)
+"eU" = (
+/obj/effect/turf_decal/trimline/opaque/beige/warning{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/generic,
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/warehouse)
+"eW" = (
+/obj/effect/turf_decal/industrial/warning{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/oil/streak,
+/turf/open/floor/plasteel/mono,
+/area/ruin/lavaland/factory/warehouse)
+"fc" = (
+/obj/structure/catwalk/over/plated_catwalk/dark,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/ruin/lavaland/factory/warehouse)
+"fg" = (
+/obj/item/reagent_containers/food/drinks/flask/gold,
+/obj/effect/turf_decal/siding/wood{
+ dir = 9
+ },
+/obj/item/clothing/gloves/color/captain/nt,
+/obj/item/storage/belt/sabre,
+/obj/item/clothing/under/nanotrasen/captain/skirt,
+/obj/structure/closet/cabinet,
+/turf/open/floor/wood,
+/area/ruin/lavaland/factory/adminstrative)
+"fm" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/wood,
+/area/ruin/lavaland/factory/adminstrative)
+"fq" = (
+/obj/effect/turf_decal/industrial/warning{
+ dir = 1
+ },
+/obj/effect/turf_decal/industrial/stand_clear,
+/turf/open/floor/concrete/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"fr" = (
+/obj/effect/turf_decal/ntlogo{
+ dir = 4
+ },
+/obj/item/stock_parts/cell/gun/empty,
+/turf/open/floor/plasteel/white,
+/area/ruin/lavaland/factory/lobby)
+"fs" = (
+/obj/item/shovel,
+/turf/open/floor/plating/moss,
+/area/overmap_encounter/planetoid/cave/explored)
+"ft" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/turf/open/floor/concrete/pavement/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"fB" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/carpet/blue,
+/area/ruin/lavaland/factory/manager_office)
+"fE" = (
+/turf/template_noop,
+/area/template_noop)
+"ga" = (
+/mob/living/simple_animal/hostile/human/syndicate/ranged/space,
+/turf/open/floor/plating/moss,
+/area/overmap_encounter/planetoid/cave/explored)
+"gc" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/industrial/stand_clear{
+ dir = 1
+ },
+/obj/item/ammo_casing/c10mm{
+ icon_state = "pistol-steel-empty";
+ projectile_type = null
+ },
+/obj/item/ammo_casing/c10mm{
+ icon_state = "pistol-steel-empty";
+ projectile_type = null
+ },
+/turf/open/floor/plasteel/dark/lava,
+/area/overmap_encounter/planetoid/cave/explored)
+"gg" = (
+/obj/structure/flora/tree/dead/barren,
+/turf/open/floor/plating/grass/lava/orange,
+/area/overmap_encounter/planetoid/lava/explored)
+"gj" = (
+/obj/item/radio/intercom/directional/north,
+/mob/living/simple_animal/hostile/human/syndicate/ranged/shotgun/space,
+/turf/open/floor/carpet/nanoweave,
+/area/ruin/lavaland/factory/manager_office)
+"gk" = (
+/obj/structure/closet/secure_closet/personal,
+/obj/effect/turf_decal/corner/opaque/ntblue,
+/obj/effect/turf_decal/corner/opaque/ntblue{
+ dir = 1
+ },
+/obj/item/modular_computer/laptop,
+/obj/item/stack/arcadeticket,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plasteel/white,
+/area/ruin/lavaland/factory/dorms)
+"go" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/opaque/red/arrow_cw{
+ dir = 4
+ },
+/turf/open/floor/plasteel/mono/dark,
+/area/ruin/lavaland/factory/lobby)
+"gs" = (
+/obj/effect/turf_decal/box/corners{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/mono,
+/area/ruin/lavaland/factory/warehouse)
+"gt" = (
+/obj/machinery/vending/snack/orange,
+/turf/open/floor/plasteel/mono/white,
+/area/ruin/lavaland/factory/lobby)
+"gu" = (
+/obj/item/stack/cable_coil/cut/yellow,
+/obj/structure/salvageable/machine,
+/turf/open/floor/plating/rust/lava,
+/area/overmap_encounter/planetoid/cave/explored)
+"gG" = (
+/obj/effect/turf_decal/siding{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/white,
+/area/ruin/lavaland/factory/adminstrative)
+"gI" = (
+/obj/effect/turf_decal/siding/white,
+/obj/effect/decal/cleanable/generic,
+/turf/open/floor/concrete/pavement/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"gJ" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/item/stack/rods,
+/turf/open/floor/plating/rust/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"gL" = (
+/turf/open/floor/plating/moss,
+/area/overmap_encounter/planetoid/lava/explored)
+"gO" = (
+/obj/structure/closet/secure_closet/freezer/fridge,
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/item/reagent_containers/food/drinks/beer/light,
+/obj/item/reagent_containers/food/drinks/beer/light,
+/obj/item/reagent_containers/food/drinks/beer/light,
+/obj/item/reagent_containers/food/snacks/meat/slab,
+/obj/item/reagent_containers/food/snacks/meat/slab,
+/obj/item/reagent_containers/food/snacks/meat/slab,
+/obj/item/reagent_containers/food/condiment/flour,
+/obj/item/reagent_containers/food/condiment/rice,
+/obj/item/storage/fancy/egg_box,
+/obj/item/reagent_containers/food/condiment/soymilk,
+/obj/item/reagent_containers/food/condiment/milk,
+/obj/item/storage/box/ingredients/vegetarian,
+/turf/open/floor/wood,
+/area/ruin/lavaland/factory/adminstrative)
+"gT" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/ammo_casing/c9mm{
+ icon_state = "pistol-brass-empty";
+ projectile_type = null
+ },
+/obj/item/ammo_casing/c9mm{
+ icon_state = "pistol-brass-empty";
+ projectile_type = null
+ },
+/turf/open/floor/plasteel/white/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"ha" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/chair/office,
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/manager_office)
+"hb" = (
+/obj/effect/turf_decal/trimline/opaque/lime/warning,
+/obj/machinery/door/airlock{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/blood{
+ icon_state = "trails_2";
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/dorms)
+"hf" = (
+/obj/effect/turf_decal/ntlogo{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/white,
+/area/ruin/lavaland/factory/lobby)
+"hh" = (
+/obj/effect/turf_decal/trimline/opaque/ntblue/corner{
+ dir = 8
+ },
+/turf/open/floor/plasteel/mono/white,
+/area/ruin/lavaland/factory/lobby)
+"hm" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/carpet/nanoweave,
+/area/ruin/lavaland/factory/manager_office)
+"hu" = (
+/obj/effect/turf_decal/industrial/warning{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/industrial/stand_clear,
+/turf/open/floor/plasteel/dark/lava,
+/area/overmap_encounter/planetoid/cave/explored)
+"hv" = (
+/obj/machinery/light/broken/directional/east,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/tech/grid,
+/area/ruin/lavaland/factory/manager_office)
+"hw" = (
+/obj/effect/turf_decal/trimline/opaque/beige/warning{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/warehouse)
+"hy" = (
+/obj/effect/turf_decal/trimline/opaque/beige/warning{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/warehouse)
+"hJ" = (
+/obj/machinery/light/floor,
+/obj/effect/turf_decal/industrial/warning/corner,
+/turf/open/floor/concrete/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"hT" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/white/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"hY" = (
+/obj/structure/flora/ausbushes/sparsegrass/hell,
+/turf/open/floor/plating/grass/lava/purple,
+/area/overmap_encounter/planetoid/lava/explored)
+"hZ" = (
+/obj/structure/floodlight_frame,
+/obj/effect/decal/cleanable/glass,
+/obj/item/light/tube/broken,
+/turf/open/floor/concrete/slab_1/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"ia" = (
+/obj/effect/turf_decal/industrial/stand_clear{
+ dir = 8
+ },
+/mob/living/simple_animal/hostile/human/syndicate/ranged/shotgun/space,
+/turf/open/floor/plasteel/tech/grid,
+/area/ruin/lavaland/factory/manager_office)
+"ih" = (
+/obj/structure/frame/machine,
+/obj/item/stack/ore/salvage/scrapmetal{
+ pixel_x = -10;
+ pixel_y = 2
+ },
+/obj/item/stack/ore/salvage/scrapmetal{
+ pixel_x = -10;
+ pixel_y = 2
+ },
+/obj/item/stack/cable_coil/cut/random,
+/obj/structure/sign/poster/official/moth/hardhats{
+ pixel_y = 32
+ },
+/obj/item/circuitboard/machine/stacking_machine,
+/turf/open/floor/plasteel/dark/lava,
+/area/overmap_encounter/planetoid/cave/explored)
+"ii" = (
+/obj/item/chair{
+ dir = 8
+ },
+/turf/open/floor/carpet/nanoweave/blue,
+/area/ruin/lavaland/factory/lobby)
+"io" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/obj/item/ammo_box/magazine/co9mm{
+ start_empty = 1
+ },
+/obj/item/ammo_casing/c9mm{
+ icon_state = "pistol-brass-empty";
+ projectile_type = null
+ },
+/obj/item/ammo_casing/c9mm{
+ icon_state = "pistol-brass-empty";
+ projectile_type = null
+ },
+/turf/open/floor/concrete/pavement/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"ip" = (
+/obj/structure/flora/ausbushes/ywflowers/hell,
+/turf/open/floor/plating/grass/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"iE" = (
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
+ },
+/turf/open/floor/concrete/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"iP" = (
+/turf/closed/wall/r_wall,
+/area/ruin/lavaland/factory/warehouse)
+"iR" = (
+/obj/effect/turf_decal/trimline/opaque/lime/warning{
+ dir = 1
+ },
+/mob/living/simple_animal/hostile/viscerator,
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/dorms)
+"iS" = (
+/obj/structure/table,
+/obj/machinery/microwave,
+/obj/effect/turf_decal/corner/opaque/bar{
+ dir = 1
+ },
+/obj/effect/turf_decal/corner/opaque/bar,
+/obj/machinery/light/directional/north,
+/turf/open/floor/plasteel,
+/area/ruin/lavaland/factory/dorms)
+"iU" = (
+/obj/effect/turf_decal/corner/opaque/lime{
+ dir = 5
+ },
+/obj/structure/sign/poster/official/nanotrasen_logo{
+ pixel_y = 32
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/white,
+/area/ruin/lavaland/factory/adminstrative)
+"iW" = (
+/obj/structure/flora/ausbushes/ywflowers/hell,
+/turf/open/floor/plating/grass/lava/purple,
+/area/overmap_encounter/planetoid/lava/explored)
+"jb" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/turf/open/floor/concrete/pavement/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"jf" = (
+/obj/effect/turf_decal/corner/opaque/red/border{
+ dir = 8
+ },
+/obj/machinery/light/dim/directional/west,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/adminstrative)
+"ji" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/turf/open/floor/plating/rust/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"jk" = (
+/obj/effect/turf_decal/trimline/opaque/beige/warning{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/warehouse)
+"jm" = (
+/obj/structure/flora/rock/hell,
+/turf/open/floor/plating/grass/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"jr" = (
+/obj/effect/turf_decal/trimline/opaque/beige/corner,
+/obj/item/ammo_casing/c45{
+ icon_state = "pistol-steel-empty";
+ projectile_type = null
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/warehouse)
+"ju" = (
+/obj/effect/turf_decal/corner/opaque/lime{
+ dir = 5
+ },
+/obj/machinery/light/directional/north,
+/turf/open/floor/plasteel/white,
+/area/ruin/lavaland/factory/adminstrative)
+"jx" = (
+/obj/effect/turf_decal/corner/opaque/red/border{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/adminstrative)
+"jz" = (
+/obj/effect/turf_decal/trimline/opaque/beige/warning{
+ dir = 4
+ },
+/obj/effect/turf_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/warehouse)
+"jC" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/item/ammo_casing/c9mm{
+ icon_state = "pistol-brass-empty";
+ projectile_type = null
+ },
+/turf/open/floor/plating/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"jE" = (
+/obj/effect/turf_decal/trimline/opaque/lime/warning{
+ dir = 4
+ },
+/obj/machinery/door/airlock,
+/obj/effect/decal/cleanable/blood/footprints{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/dorms)
+"jG" = (
+/obj/structure/toilet{
+ dir = 4
+ },
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/plasteel/showroomfloor,
+/area/ruin/lavaland/factory/adminstrative)
+"jJ" = (
+/obj/effect/turf_decal/box/corners,
+/obj/effect/decal/cleanable/blood{
+ icon_state = "trails_2";
+ dir = 8
+ },
+/turf/open/floor/plasteel/mono,
+/area/ruin/lavaland/factory/warehouse)
+"jM" = (
+/obj/structure/sink{
+ pixel_y = 10
+ },
+/obj/effect/turf_decal/trimline/opaque/lime/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/dorms)
+"jP" = (
+/obj/effect/turf_decal/industrial/fire{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/turf/open/floor/concrete/pavement/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"jQ" = (
+/turf/closed/wall/mineral/titanium,
+/area/ruin/lavaland/factory/lobby)
+"jV" = (
+/obj/effect/turf_decal/box/corners{
+ dir = 4
+ },
+/obj/structure/rack,
+/obj/item/clothing/head/hardhat{
+ pixel_y = 5;
+ pixel_x = -2
+ },
+/obj/item/clothing/head/hardhat{
+ pixel_x = 10;
+ pixel_y = 5
+ },
+/turf/open/floor/plasteel/mono,
+/area/ruin/lavaland/factory/warehouse)
+"jW" = (
+/obj/machinery/button/door{
+ id = "management";
+ name = "Office Lockdown";
+ dir = 8;
+ pixel_x = 22
+ },
+/turf/open/floor/carpet/blue,
+/area/ruin/lavaland/factory/manager_office)
+"jX" = (
+/obj/structure/flora/rock/lava,
+/turf/open/floor/plating/moss,
+/area/overmap_encounter/planetoid/cave/explored)
+"ka" = (
+/obj/structure/lattice,
+/obj/item/stack/sheet/metal,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/overmap_encounter/planetoid/cave/explored)
+"kj" = (
+/obj/effect/turf_decal/trimline/opaque/beige/corner{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/warehouse)
+"ku" = (
+/obj/structure/railing{
+ dir = 9
+ },
+/obj/effect/turf_decal/trimline/opaque/red/arrow_cw{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/light/broken/directional/north,
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/plasteel/mono/dark,
+/area/ruin/lavaland/factory/lobby)
+"kv" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/machinery/light/dim/directional/west,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/wood,
+/area/ruin/lavaland/factory/adminstrative)
+"kx" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/item/ammo_casing/c10mm{
+ icon_state = "pistol-steel-empty";
+ projectile_type = null
+ },
+/turf/open/floor/plating/rust/lava,
+/area/overmap_encounter/planetoid/cave/explored)
+"kz" = (
+/obj/effect/turf_decal/trimline/opaque/lime/warning{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/blood{
+ icon_state = "drip1"
+ },
+/obj/item/spear,
+/obj/item/bodypart/l_arm,
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/dorms)
+"kB" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = 12
+ },
+/obj/structure/mirror{
+ pixel_x = 28
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/ruin/lavaland/factory/adminstrative)
+"kD" = (
+/obj/structure/flora/tree/dead/hell,
+/turf/open/floor/plating/grass/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"kG" = (
+/obj/effect/decal/cleanable/ash/large,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/overmap_encounter/planetoid/cave/explored)
+"kJ" = (
+/obj/machinery/light/directional/north,
+/turf/open/floor/carpet/nanoweave/blue,
+/area/ruin/lavaland/factory/lobby)
+"kO" = (
+/obj/structure/flora/ausbushes/ywflowers/hell,
+/turf/open/floor/plating/grass/lava/orange,
+/area/overmap_encounter/planetoid/lava/explored)
+"kT" = (
+/obj/effect/decal/cleanable/generic,
+/obj/item/stack/cable_coil/cut/yellow,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/overmap_encounter/planetoid/lava/explored)
+"kV" = (
+/obj/structure/rack,
+/obj/item/pickaxe,
+/obj/item/pickaxe,
+/turf/open/floor/plasteel/mono,
+/area/ruin/lavaland/factory/warehouse)
+"kY" = (
+/obj/machinery/light/floor,
+/obj/effect/turf_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/open/floor/concrete/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"lc" = (
+/obj/effect/turf_decal/box/corners{
+ dir = 8
+ },
+/obj/structure/crate_shelf,
+/turf/open/floor/plasteel/mono,
+/area/ruin/lavaland/factory/warehouse)
+"lf" = (
+/obj/effect/turf_decal/corner/opaque/red/border{
+ dir = 5
+ },
+/obj/structure/guncase,
+/obj/item/gun/energy/e_gun,
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/adminstrative)
+"lj" = (
+/obj/effect/turf_decal/corner/opaque/bar,
+/obj/effect/turf_decal/corner/opaque/bar{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/ruin/lavaland/factory/adminstrative)
+"lo" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plating/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"lq" = (
+/obj/machinery/shower{
+ dir = 4
+ },
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/plasteel/showroomfloor,
+/area/ruin/lavaland/factory/dorms)
+"lr" = (
+/obj/item/stack/cable_coil/cut/yellow,
+/turf/open/floor/plating/rust/lava,
+/area/overmap_encounter/planetoid/cave/explored)
+"lv" = (
+/obj/effect/turf_decal/trimline/opaque/lime/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/dorms)
+"lw" = (
+/obj/effect/turf_decal/corner/opaque/lime{
+ dir = 5
+ },
+/obj/machinery/light/directional/north,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/white,
+/area/ruin/lavaland/factory/adminstrative)
+"ly" = (
+/obj/structure/flora/tree/dead/tall/grey,
+/turf/open/floor/plating/asteroid/purple/lit,
+/area/overmap_encounter/planetoid/lava/explored)
+"lB" = (
+/obj/effect/turf_decal/corner/opaque/red{
+ dir = 10
+ },
+/obj/structure/reagent_dispensers/water_cooler,
+/obj/effect/turf_decal/corner/opaque/red{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/ruin/lavaland/factory/adminstrative)
+"lQ" = (
+/obj/structure/table_frame,
+/turf/open/floor/plasteel/white,
+/area/ruin/lavaland/factory/dorms)
+"lR" = (
+/obj/effect/decal/cleanable/blood/gibs/core,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/stamp/qm{
+ pixel_x = 7;
+ pixel_y = 10
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/manager_office)
+"lU" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/grille/broken,
+/obj/machinery/door/poddoor/shutters{
+ id = "foreman"
+ },
+/turf/open/floor/plating,
+/area/ruin/lavaland/factory/manager_office)
+"md" = (
+/obj/effect/turf_decal/trimline/opaque/beige/warning,
+/obj/structure/flippedtable{
+ dir = 4
+ },
+/obj/effect/mob_spawn/human/miner,
+/obj/item/gun/energy/kinetic_accelerator,
+/obj/effect/decal/cleanable/blood/gibs/bubblegum,
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/warehouse)
+"mi" = (
+/mob/living/simple_animal/hostile/viscerator,
+/turf/open/floor/plating,
+/area/overmap_encounter/planetoid/cave/explored)
+"mk" = (
+/obj/machinery/computer/mech_bay_power_console{
+ dir = 4
+ },
+/turf/open/floor/plasteel/mono,
+/area/ruin/lavaland/factory/warehouse)
+"mn" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc/auto_name/directional/west,
+/turf/open/floor/carpet/blue,
+/area/ruin/lavaland/factory/manager_office)
+"mv" = (
+/obj/effect/turf_decal/trimline/opaque/beige/corner{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/blood{
+ icon_state = "trails_2";
+ dir = 10
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/warehouse)
+"mG" = (
+/obj/machinery/door/airlock/glass,
+/obj/machinery/door/poddoor/shutters{
+ id = "sec"
+ },
+/turf/open/floor/plasteel/white,
+/area/ruin/lavaland/factory/adminstrative)
+"mK" = (
+/obj/effect/turf_decal/siding/white/corner{
+ dir = 8
+ },
+/turf/open/floor/concrete/pavement/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"mL" = (
+/obj/structure/flora/ash/cacti,
+/turf/open/floor/plating/moss,
+/area/overmap_encounter/planetoid/cave/explored)
+"mM" = (
+/obj/item/clothing/head/beret/qm,
+/obj/item/clothing/under/rank/cargo/qm,
+/obj/effect/turf_decal/siding/wood{
+ dir = 10
+ },
+/obj/structure/closet/cabinet,
+/turf/open/floor/wood,
+/area/ruin/lavaland/factory/adminstrative)
+"mQ" = (
+/obj/effect/turf_decal/corner/opaque/red{
+ dir = 10
+ },
+/obj/effect/decal/cleanable/blood{
+ icon_state = "floor5"
+ },
+/obj/machinery/light/built/directional/south,
+/obj/item/light/tube/broken,
+/turf/open/floor/plasteel/white,
+/area/ruin/lavaland/factory/adminstrative)
+"mS" = (
+/obj/structure/flora/rock/pile/lava,
+/turf/open/floor/plating/moss,
+/area/overmap_encounter/planetoid/cave/explored)
+"mT" = (
+/obj/structure/flora/ausbushes/ywflowers/hell,
+/turf/open/floor/plating/asteroid/purple/lit,
+/area/overmap_encounter/planetoid/lava/explored)
+"mU" = (
+/obj/effect/turf_decal/corner/opaque/ntblue,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/white/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"mY" = (
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/turf_decal/industrial/stand_clear{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark/lava,
+/area/overmap_encounter/planetoid/cave/explored)
+"nf" = (
+/obj/effect/turf_decal/industrial/warning{
+ dir = 1
+ },
+/turf/open/floor/concrete/slab_1/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"nh" = (
+/obj/effect/turf_decal/corner/opaque/bar{
+ dir = 1
+ },
+/obj/effect/turf_decal/corner/opaque/bar,
+/obj/structure/table,
+/obj/machinery/reagentgrinder,
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc/auto_name/directional/north,
+/turf/open/floor/plasteel,
+/area/ruin/lavaland/factory/dorms)
+"nk" = (
+/obj/structure/toilet{
+ dir = 8;
+ pixel_x = 5
+ },
+/obj/effect/decal/cleanable/vomit/old,
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/plasteel/showroomfloor,
+/area/ruin/lavaland/factory/adminstrative)
+"nm" = (
+/obj/effect/turf_decal/trimline/opaque/ntblue/warning,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/mono/white,
+/area/ruin/lavaland/factory/lobby)
+"ns" = (
+/obj/structure/flora/ausbushes/fullgrass/hell,
+/turf/open/floor/plating/grass/lava/orange,
+/area/overmap_encounter/planetoid/lava/explored)
+"nv" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating/rust/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"nA" = (
+/obj/effect/turf_decal/trimline/opaque/lime/warning,
+/obj/effect/mob_spawn/human/corpse/nanotrasensoldier,
+/obj/effect/decal/cleanable/blood{
+ icon_state = "trails_2";
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/dorms)
+"nD" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating/rust/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"nG" = (
+/obj/effect/turf_decal/box/corners{
+ dir = 8
+ },
+/mob/living/simple_animal/hostile/human/syndicate/ranged/shotgun/space,
+/turf/open/floor/plasteel/mono,
+/area/ruin/lavaland/factory/warehouse)
+"nH" = (
+/obj/structure/flippedtable,
+/obj/item/gun/energy/e_gun,
+/turf/open/floor/plasteel/white,
+/area/ruin/lavaland/factory/lobby)
+"nK" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/turf/open/floor/concrete/pavement/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"nL" = (
+/obj/effect/turf_decal/siding/white,
+/obj/item/ammo_casing/c10mm{
+ icon_state = "pistol-steel-empty";
+ projectile_type = null
+ },
+/obj/item/ammo_casing/c10mm{
+ icon_state = "pistol-steel-empty";
+ projectile_type = null
+ },
+/obj/item/ammo_casing/c10mm{
+ icon_state = "pistol-steel-empty";
+ projectile_type = null
+ },
+/obj/item/ammo_casing/c10mm{
+ icon_state = "pistol-steel-empty";
+ projectile_type = null
+ },
+/obj/item/ammo_casing/c10mm{
+ icon_state = "pistol-steel-empty";
+ projectile_type = null
+ },
+/obj/item/ammo_casing/c10mm{
+ icon_state = "pistol-steel-empty";
+ projectile_type = null
+ },
+/turf/open/floor/concrete/pavement/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"nO" = (
+/obj/effect/turf_decal/corner/opaque/ntblue{
+ dir = 10
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/white/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"nP" = (
+/obj/structure/table,
+/obj/effect/turf_decal/corner/opaque/bar{
+ dir = 1
+ },
+/obj/effect/turf_decal/corner/opaque/bar,
+/obj/item/storage/bag/tray/cafeteria,
+/obj/item/storage/bag/tray/cafeteria,
+/obj/item/storage/bag/tray/cafeteria{
+ pixel_y = 2
+ },
+/obj/item/storage/bag/tray/cafeteria{
+ pixel_y = 4
+ },
+/obj/item/storage/bag/tray/cafeteria{
+ pixel_y = 6
+ },
+/obj/machinery/light/directional/north,
+/turf/open/floor/plasteel,
+/area/ruin/lavaland/factory/dorms)
+"nT" = (
+/obj/structure/chair/office{
+ dir = 4
+ },
+/turf/open/floor/carpet/nanoweave/red,
+/area/ruin/lavaland/factory/adminstrative)
+"nV" = (
+/turf/open/floor/wood,
+/area/ruin/lavaland/factory/adminstrative)
+"oc" = (
+/obj/structure/table/reinforced,
+/obj/item/flashlight/lamp{
+ pixel_x = -10;
+ pixel_y = 12
+ },
+/obj/item/paper_bin{
+ pixel_x = 6;
+ pixel_y = 2
+ },
+/obj/item/pen{
+ pixel_y = 4;
+ pixel_x = 5
+ },
+/obj/item/folder/blue{
+ pixel_x = -10;
+ pixel_y = -5
+ },
+/obj/effect/turf_decal/corner/opaque/red/border,
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/adminstrative)
+"of" = (
+/obj/structure/closet/secure_closet/personal,
+/obj/effect/turf_decal/corner/opaque/ntblue,
+/obj/effect/turf_decal/corner/opaque/ntblue{
+ dir = 1
+ },
+/obj/item/storage/wallet/random,
+/obj/item/instrument/guitar,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plasteel/white,
+/area/ruin/lavaland/factory/dorms)
+"oh" = (
+/obj/structure/salvageable/protolathe,
+/obj/structure/lattice,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/overmap_encounter/planetoid/cave/explored)
+"oi" = (
+/obj/effect/turf_decal/corner/opaque/bar{
+ dir = 1
+ },
+/obj/effect/turf_decal/corner/opaque/bar,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/trash/can/food{
+ icon_state = "lemon-lime"
+ },
+/turf/open/floor/plasteel,
+/area/ruin/lavaland/factory/dorms)
+"ok" = (
+/obj/structure/toilet{
+ dir = 8;
+ pixel_x = 5
+ },
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/plasteel/showroomfloor,
+/area/ruin/lavaland/factory/dorms)
+"ol" = (
+/obj/effect/decal/cleanable/blood/footprints{
+ dir = 4
+ },
+/turf/open/floor/plating/lava,
+/area/overmap_encounter/planetoid/cave/explored)
+"om" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/blood{
+ icon_state = "gibbl2"
+ },
+/turf/open/floor/concrete/pavement/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"or" = (
+/mob/living/simple_animal/hostile/viscerator,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/overmap_encounter/planetoid/cave/explored)
+"os" = (
+/obj/machinery/light/floor,
+/obj/effect/turf_decal/siding/white{
+ dir = 6
+ },
+/turf/open/floor/concrete/pavement/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"oz" = (
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/overmap_encounter/planetoid/cave/explored)
+"oE" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating/rust,
+/area/overmap_encounter/planetoid/lava/explored)
+"oI" = (
+/obj/structure/closet/secure_closet/freezer/fridge,
+/obj/effect/turf_decal/corner/opaque/bar{
+ dir = 1
+ },
+/obj/effect/turf_decal/corner/opaque/bar,
+/obj/machinery/light/directional/east,
+/obj/item/storage/box/ingredients/vegetarian,
+/obj/item/reagent_containers/food/condiment/milk,
+/obj/item/reagent_containers/food/condiment/soymilk,
+/obj/item/storage/fancy/egg_box,
+/obj/item/reagent_containers/food/condiment/flour,
+/obj/item/reagent_containers/food/condiment/rice,
+/obj/item/reagent_containers/food/snacks/meat/slab,
+/obj/item/reagent_containers/food/snacks/meat/slab,
+/obj/item/reagent_containers/food/snacks/meat/slab,
+/turf/open/floor/plasteel,
+/area/ruin/lavaland/factory/dorms)
+"oJ" = (
+/obj/effect/turf_decal/corner/opaque/bar{
+ dir = 1
+ },
+/obj/effect/turf_decal/corner/opaque/bar,
+/obj/item/wrench,
+/turf/open/floor/plasteel,
+/area/ruin/lavaland/factory/dorms)
+"oL" = (
+/obj/effect/turf_decal/trimline/opaque/beige/corner,
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/effect/decal/cleanable/generic,
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/warehouse)
+"oO" = (
+/obj/structure/table/wood,
+/obj/item/newspaper{
+ desc = "An issue of The Griffon from 497 FS, a newspaper often found circulating aboard Nanotrasen Space Stations. Most of the articles have been ripped out.";
+ name = "torn up newspaper"
+ },
+/obj/item/photo/old{
+ desc = "A worn out photo. You can barely make out a few figures. They're all smiling.";
+ name = "worn out photo";
+ pixel_x = -5
+ },
+/obj/item/cane,
+/obj/item/flashlight/lamp/green{
+ pixel_x = -6;
+ pixel_y = 13
+ },
+/turf/open/floor/carpet/blue,
+/area/ruin/lavaland/factory/adminstrative)
+"pb" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/white/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"pc" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/carpet/nanoweave,
+/area/ruin/lavaland/factory/manager_office)
+"pn" = (
+/obj/effect/turf_decal/trimline/opaque/red/filled/warning,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/white,
+/area/ruin/lavaland/factory/adminstrative)
+"po" = (
+/obj/machinery/door/airlock/command,
+/obj/machinery/door/poddoor/shutters{
+ id = "management"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/carpet/blue,
+/area/ruin/lavaland/factory/manager_office)
+"pp" = (
+/obj/structure/toilet{
+ dir = 8;
+ pixel_x = 5
+ },
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/plasteel/showroomfloor,
+/area/ruin/lavaland/factory/adminstrative)
+"pq" = (
+/obj/effect/turf_decal/trimline/opaque/beige/warning{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/closet/crate,
+/obj/item/stack/sheet/glass/twenty,
+/obj/item/stack/sheet/metal/twenty,
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/warehouse)
+"pt" = (
+/obj/structure/fence{
+ dir = 4
+ },
+/obj/structure/fence{
+ dir = 4
+ },
+/turf/open/floor/concrete/slab_1/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"pw" = (
+/obj/structure/flora/rock/pile,
+/turf/open/floor/plating/grass/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"pH" = (
+/obj/effect/turf_decal/corner/opaque/ntblue,
+/obj/effect/turf_decal/corner/opaque/ntblue{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/white/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"pI" = (
+/obj/effect/turf_decal/trimline/opaque/red/filled/warning{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/adminstrative)
+"pL" = (
+/obj/effect/turf_decal/trimline/opaque/beige/warning{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/blood{
+ icon_state = "trails_2";
+ dir = 5
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/warehouse)
+"pP" = (
+/obj/item/stack/ore/salvage/scrapgold,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark/lava,
+/area/overmap_encounter/planetoid/cave/explored)
+"pV" = (
+/obj/machinery/power/floodlight,
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/effect/turf_decal/siding/white,
+/turf/open/floor/concrete/pavement/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"pX" = (
+/obj/effect/turf_decal/trimline/opaque/beige/warning,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/blood/splatter,
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/warehouse)
+"qe" = (
+/obj/machinery/conveyor{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark/lava,
+/area/overmap_encounter/planetoid/cave/explored)
+"qm" = (
+/obj/effect/turf_decal/industrial/warning,
+/obj/effect/turf_decal/industrial/stand_clear{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/turf/open/floor/concrete/pavement/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"qn" = (
+/obj/effect/turf_decal/trimline/opaque/lime/warning,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/flippedtable{
+ dir = 8
+ },
+/obj/item/ammo_casing/c9mm{
+ icon_state = "pistol-brass-empty";
+ projectile_type = null
+ },
+/obj/item/ammo_casing/c9mm{
+ icon_state = "pistol-brass-empty";
+ projectile_type = null
+ },
+/obj/item/ammo_casing/c9mm{
+ icon_state = "pistol-brass-empty";
+ projectile_type = null
+ },
+/obj/item/ammo_casing/c9mm{
+ icon_state = "pistol-brass-empty";
+ projectile_type = null
+ },
+/obj/item/ammo_casing/c9mm{
+ icon_state = "pistol-brass-empty";
+ projectile_type = null
+ },
+/obj/item/ammo_casing/c9mm{
+ icon_state = "pistol-brass-empty";
+ projectile_type = null
+ },
+/obj/item/ammo_casing/c9mm{
+ icon_state = "pistol-brass-empty";
+ projectile_type = null
+ },
+/obj/item/ammo_casing/c9mm{
+ icon_state = "pistol-brass-empty";
+ projectile_type = null
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/dorms)
+"qo" = (
+/obj/effect/turf_decal/trimline/opaque/lime/warning{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/dorms)
+"qs" = (
+/turf/open/floor/plasteel/white,
+/area/ruin/lavaland/factory/dorms)
+"qu" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/oil/slippery,
+/obj/item/storage/bag/ore,
+/turf/open/floor/plasteel/mono,
+/area/ruin/lavaland/factory/warehouse)
+"qz" = (
+/obj/item/stack/ore/salvage/scrapmetal{
+ pixel_x = -10;
+ pixel_y = 2
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/overmap_encounter/planetoid/cave/explored)
+"qH" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/obj/item/ammo_casing/c10mm{
+ icon_state = "pistol-steel-empty";
+ projectile_type = null
+ },
+/obj/item/ammo_casing/c10mm{
+ icon_state = "pistol-steel-empty";
+ projectile_type = null
+ },
+/obj/item/ammo_casing/c10mm{
+ icon_state = "pistol-steel-empty";
+ projectile_type = null
+ },
+/obj/item/ammo_casing/c10mm{
+ icon_state = "pistol-steel-empty";
+ projectile_type = null
+ },
+/obj/item/ammo_casing/c10mm{
+ icon_state = "pistol-steel-empty";
+ projectile_type = null
+ },
+/turf/open/floor/concrete/pavement/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"qK" = (
+/obj/effect/turf_decal/trimline/opaque/beige/arrow_cw{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/obj/item/ammo_casing/c45{
+ icon_state = "pistol-steel-empty";
+ projectile_type = null
+ },
+/turf/open/floor/plasteel/dark/lava,
+/area/overmap_encounter/planetoid/cave/explored)
+"qM" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plating/rust,
+/area/overmap_encounter/planetoid/lava/explored)
+"qP" = (
+/obj/effect/decal/cleanable/garbage,
+/turf/open/floor/plasteel/tech,
+/area/ruin/lavaland/factory/warehouse)
+"qS" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/structure/bookcase/random,
+/obj/machinery/light/directional/north,
+/turf/open/floor/wood,
+/area/ruin/lavaland/factory/adminstrative)
+"qV" = (
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/overmap_encounter/planetoid/lava/explored)
+"qX" = (
+/obj/structure/closet/secure_closet/personal,
+/obj/effect/turf_decal/corner/opaque/ntblue,
+/obj/effect/turf_decal/corner/opaque/ntblue{
+ dir = 1
+ },
+/obj/machinery/light/directional/west,
+/obj/item/poster/random_contraband,
+/obj/item/toy/eightball,
+/obj/item/toy/cards/deck/tarot,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plasteel/white,
+/area/ruin/lavaland/factory/dorms)
+"rh" = (
+/obj/effect/turf_decal/siding/wood,
+/obj/structure/chair/sofa/brown/corpo/right{
+ dir = 1
+ },
+/turf/open/floor/wood,
+/area/ruin/lavaland/factory/manager_office)
+"rj" = (
+/obj/effect/turf_decal/siding/wood,
+/turf/open/floor/wood,
+/area/ruin/lavaland/factory/adminstrative)
+"rB" = (
+/obj/structure/flora/ausbushes/fernybush/hell,
+/turf/open/floor/plating/grass/lava/purple,
+/area/overmap_encounter/planetoid/lava/explored)
+"rF" = (
+/obj/effect/turf_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/light/broken/directional/west,
+/turf/open/floor/plasteel/dark/lava,
+/area/overmap_encounter/planetoid/cave/explored)
+"rI" = (
+/obj/item/ammo_casing/c45{
+ icon_state = "pistol-steel-empty";
+ projectile_type = null
+ },
+/turf/open/floor/plasteel/mono,
+/area/ruin/lavaland/factory/warehouse)
+"rO" = (
+/obj/effect/turf_decal/trimline/opaque/lime/warning{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/blood{
+ icon_state = "floor3"
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/dorms)
+"rV" = (
+/obj/effect/mob_spawn/human/doctor,
+/obj/effect/decal/cleanable/blood{
+ icon_state = "floor4"
+ },
+/turf/open/floor/plasteel/mono,
+/area/ruin/lavaland/factory/warehouse)
+"se" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel/white,
+/area/ruin/lavaland/factory/adminstrative)
+"sf" = (
+/obj/structure/table/reinforced,
+/obj/item/megaphone/cargo,
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/manager_office)
+"sj" = (
+/obj/effect/turf_decal/trimline/opaque/lime/warning,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/item/ammo_casing/c9mm{
+ icon_state = "pistol-brass-empty";
+ projectile_type = null
+ },
+/obj/item/ammo_casing/c9mm{
+ icon_state = "pistol-brass-empty";
+ projectile_type = null
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/dorms)
+"sm" = (
+/obj/machinery/disposal/deliveryChute{
+ dir = 8
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark/lava,
+/area/overmap_encounter/planetoid/cave/explored)
+"sn" = (
+/obj/structure/chair/greyscale{
+ dir = 8
+ },
+/turf/open/floor/carpet/nanoweave/blue,
+/area/ruin/lavaland/factory/lobby)
+"so" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/manager_office)
+"sp" = (
+/obj/effect/turf_decal/industrial/warning{
+ dir = 1
+ },
+/turf/open/floor/concrete/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"ss" = (
+/obj/item/shard,
+/obj/effect/decal/cleanable/glass,
+/obj/structure/railing,
+/obj/effect/turf_decal/industrial/warning,
+/turf/open/floor/plasteel/dark/lava,
+/area/overmap_encounter/planetoid/cave/explored)
+"su" = (
+/turf/open/floor/plating/asteroid/basalt/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"sv" = (
+/obj/effect/turf_decal/industrial/warning{
+ dir = 1
+ },
+/obj/effect/turf_decal/industrial/stand_clear,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/mono,
+/area/ruin/lavaland/factory/warehouse)
+"sD" = (
+/obj/effect/turf_decal/road/stop{
+ dir = 8;
+ pixel_x = 5
+ },
+/obj/effect/decal/cleanable/glass,
+/obj/item/shard,
+/turf/open/floor/plasteel/mono/dark,
+/area/ruin/lavaland/factory/lobby)
+"sE" = (
+/obj/structure/toilet{
+ dir = 8;
+ pixel_x = 5
+ },
+/obj/machinery/light/small/directional/east,
+/mob/living/simple_animal/hostile/viscerator,
+/mob/living/simple_animal/hostile/viscerator,
+/mob/living/simple_animal/hostile/viscerator,
+/obj/effect/gibspawner/human,
+/obj/item/clothing/under/rank/cargo/tech,
+/obj/effect/decal/cleanable/blood{
+ icon_state = "trails_2";
+ dir = 4
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/ruin/lavaland/factory/dorms)
+"sG" = (
+/obj/effect/decal/cleanable/oil,
+/turf/open/floor/plasteel/mono,
+/area/ruin/lavaland/factory/warehouse)
+"sQ" = (
+/obj/effect/turf_decal/corner/opaque/red/border{
+ dir = 9
+ },
+/obj/structure/closet/secure_closet/security,
+/obj/item/stock_parts/cell/gun,
+/obj/item/stock_parts/cell/gun,
+/obj/item/clothing/suit/armor/vest,
+/obj/item/clothing/head/helmet/sec,
+/obj/item/clothing/glasses/hud/security/sunglasses,
+/obj/item/radio/headset/headset_sec/alt,
+/obj/item/restraints/handcuffs,
+/obj/item/flashlight/seclite,
+/obj/machinery/button/door{
+ id = "sec";
+ pixel_y = 22;
+ name = "Security Lockdown"
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/adminstrative)
+"sT" = (
+/obj/structure/sink{
+ pixel_y = 10
+ },
+/obj/structure/mirror{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/ruin/lavaland/factory/adminstrative)
+"sU" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/turf/open/floor/concrete/pavement/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"sV" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/carpet/nanoweave,
+/area/ruin/lavaland/factory/manager_office)
+"sZ" = (
+/turf/closed/wall/mineral/titanium,
+/area/ruin/lavaland/factory/dorms)
+"td" = (
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/turf_decal/industrial/stand_clear{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/turf/open/floor/concrete/pavement/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"tg" = (
+/obj/effect/turf_decal/industrial/warning,
+/obj/effect/turf_decal/industrial/stand_clear{
+ dir = 1
+ },
+/turf/open/floor/concrete/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"th" = (
+/obj/item/rack_parts/shelf,
+/turf/open/floor/plasteel/dark/lava,
+/area/overmap_encounter/planetoid/cave/explored)
+"ti" = (
+/obj/effect/turf_decal/industrial/fire{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/turf/open/floor/concrete/pavement/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"tj" = (
+/obj/item/toy/plush/nukeplushie,
+/turf/open/floor/plating/moss,
+/area/overmap_encounter/planetoid/lava/explored)
+"tm" = (
+/obj/structure/sign/departments/engineering,
+/turf/closed/wall/r_wall,
+/area/ruin/lavaland/factory/warehouse)
+"tq" = (
+/obj/structure/closet/crate/engineering/electrical,
+/obj/item/circuitboard/machine/cell_charger,
+/obj/item/stock_parts/cell/high/empty,
+/obj/item/stock_parts/cell/high/empty,
+/obj/item/stock_parts/cell/high/empty,
+/turf/open/floor/plasteel/mono,
+/area/ruin/lavaland/factory/warehouse)
+"ts" = (
+/obj/effect/turf_decal/corner/opaque/lime{
+ dir = 5
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/white,
+/area/ruin/lavaland/factory/adminstrative)
+"tu" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 9
+ },
+/turf/open/floor/concrete/pavement/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"ty" = (
+/obj/machinery/light/broken/directional/east,
+/turf/open/floor/plasteel/tech/grid,
+/area/ruin/lavaland/factory/manager_office)
+"tH" = (
+/obj/effect/turf_decal/trimline/opaque/lime/warning,
+/obj/effect/decal/cleanable/blood{
+ icon_state = "trails_2";
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/dorms)
+"tN" = (
+/obj/effect/turf_decal/trimline/opaque/lime/corner{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/dorms)
+"tR" = (
+/obj/structure/flora/ausbushes/genericbush/hell,
+/turf/open/floor/plating/grass/lava/orange,
+/area/overmap_encounter/planetoid/lava/explored)
+"tS" = (
+/obj/machinery/mineral/unloading_machine{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark/lava,
+/area/overmap_encounter/planetoid/cave/explored)
+"tT" = (
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/turf_decal/industrial/stand_clear{
+ dir = 8
+ },
+/turf/open/floor/concrete/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"tV" = (
+/turf/open/floor/plating/grass/lava/purple,
+/area/overmap_encounter/planetoid/lava/explored)
+"uc" = (
+/obj/structure/flora/ausbushes/hell,
+/turf/open/floor/plating/asteroid/purple/lit,
+/area/overmap_encounter/planetoid/lava/explored)
+"ud" = (
+/obj/effect/turf_decal/ntlogo{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/mob/living/simple_animal/hostile/human/syndicate/ranged/smg/space,
+/turf/open/floor/plasteel/white,
+/area/ruin/lavaland/factory/lobby)
+"ui" = (
+/obj/structure/flora/ash/leaf_shroom,
+/turf/open/floor/plating/moss,
+/area/overmap_encounter/planetoid/lava/explored)
+"us" = (
+/obj/machinery/door/airlock/freezer{
+ dir = 1;
+ name = "bathroom"
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/ruin/lavaland/factory/adminstrative)
+"ux" = (
+/obj/effect/turf_decal/trimline/opaque/beige/corner{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/blood{
+ icon_state = "gibarm"
+ },
+/obj/effect/decal/cleanable/blood{
+ icon_state = "drip1"
+ },
+/obj/item/ammo_casing/c45{
+ icon_state = "pistol-steel-empty";
+ projectile_type = null
+ },
+/obj/item/ammo_casing/c45{
+ icon_state = "pistol-steel-empty";
+ projectile_type = null
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/warehouse)
+"uz" = (
+/obj/machinery/door/airlock{
+ dir = 4;
+ name = "Bathroom";
+ id_tag = "sgi_bolt"
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/ruin/lavaland/factory/dorms)
+"uE" = (
+/turf/closed/wall/r_wall,
+/area/ruin/lavaland/factory/manager_office)
+"uH" = (
+/obj/structure/closet/crate/secure/engineering{
+ name = "ripley crate"
+ },
+/obj/item/mecha_parts/chassis/ripley,
+/obj/item/circuitboard/mecha/ripley/main,
+/obj/item/circuitboard/mecha/ripley/peripherals,
+/obj/item/mecha_parts/part/ripley_left_arm,
+/obj/item/mecha_parts/part/ripley_left_leg,
+/obj/item/mecha_parts/part/ripley_right_arm,
+/obj/item/mecha_parts/part/ripley_right_leg,
+/obj/item/mecha_parts/part/ripley_torso,
+/obj/item/mecha_parts/mecha_equipment/drill,
+/turf/open/floor/plasteel/mono,
+/area/ruin/lavaland/factory/warehouse)
+"uJ" = (
+/obj/effect/turf_decal/trimline/opaque/red/filled/warning,
+/turf/open/floor/plasteel/white,
+/area/ruin/lavaland/factory/adminstrative)
+"uL" = (
+/obj/effect/decal/cleanable/generic,
+/obj/structure/closet/crate/medical,
+/obj/item/reagent_containers/glass/bottle/morphine,
+/obj/item/reagent_containers/syringe,
+/obj/item/reagent_containers/glass/bottle/charcoal,
+/obj/item/clothing/neck/stethoscope,
+/obj/item/storage/firstaid/medical,
+/turf/open/floor/plasteel/mono,
+/area/ruin/lavaland/factory/warehouse)
+"uV" = (
+/obj/machinery/door/airlock/command{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/ruin/lavaland/factory/adminstrative)
+"uW" = (
+/obj/structure/closet/secure_closet/personal,
+/obj/effect/turf_decal/corner/opaque/ntblue,
+/obj/effect/turf_decal/corner/opaque/ntblue{
+ dir = 1
+ },
+/obj/item/storage/fancy/cigarettes/cigpack_cannabis,
+/obj/item/lighter/greyscale,
+/obj/item/reagent_containers/food/drinks/bottle/whiskey,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plasteel/white,
+/area/ruin/lavaland/factory/dorms)
+"ve" = (
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/ruin/lavaland/factory/manager_office)
+"vj" = (
+/obj/structure/mirror,
+/turf/closed/wall/mineral/titanium,
+/area/ruin/lavaland/factory/dorms)
+"vp" = (
+/obj/effect/turf_decal/trimline/opaque/lime/corner{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/dorms)
+"vv" = (
+/obj/effect/turf_decal/box/corners,
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/plasteel/mono,
+/area/ruin/lavaland/factory/warehouse)
+"vw" = (
+/obj/effect/turf_decal/industrial/warning{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark/lava,
+/area/overmap_encounter/planetoid/cave/explored)
+"vx" = (
+/obj/structure/flora/ausbushes/hell,
+/turf/open/floor/plating/grass/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"vy" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/carpet/nanoweave/blue,
+/area/ruin/lavaland/factory/lobby)
+"vB" = (
+/obj/effect/turf_decal/box/corners{
+ dir = 8
+ },
+/obj/structure/closet/crate/large,
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/turf/open/floor/plasteel/mono,
+/area/ruin/lavaland/factory/warehouse)
+"vC" = (
+/obj/effect/turf_decal/trimline/opaque/beige/warning{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/warehouse)
+"vE" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 9
+ },
+/turf/open/floor/wood,
+/area/ruin/lavaland/factory/manager_office)
+"vG" = (
+/obj/effect/turf_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/turf/open/floor/concrete/pavement/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"vH" = (
+/obj/effect/turf_decal/trimline/opaque/beige/warning{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/plastic,
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/warehouse)
+"vN" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/item/ammo_casing/c10mm{
+ icon_state = "pistol-steel-empty";
+ projectile_type = null
+ },
+/obj/item/ammo_casing/c10mm{
+ icon_state = "pistol-steel-empty";
+ projectile_type = null
+ },
+/turf/open/floor/plating/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"vP" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/chair/comfy/beige,
+/mob/living/simple_animal/hostile/human/nanotrasen/elite{
+ name = "Manager";
+ environment_smash = 0;
+ health = 200;
+ maxHealth = 200
+ },
+/turf/open/floor/carpet/blue,
+/area/ruin/lavaland/factory/manager_office)
+"vQ" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/obj/item/kirbyplants/random,
+/turf/open/floor/wood,
+/area/ruin/lavaland/factory/manager_office)
+"vS" = (
+/obj/effect/turf_decal/trimline/opaque/lime/warning{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/dorms)
+"wi" = (
+/obj/structure/flora/ausbushes/genericbush/hell,
+/turf/open/floor/plating/grass/lava/purple,
+/area/overmap_encounter/planetoid/lava/explored)
+"wk" = (
+/obj/effect/turf_decal/trimline/opaque/beige/corner{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/warehouse)
+"wl" = (
+/obj/structure/flora/ash/cacti,
+/turf/open/floor/plating/moss,
+/area/overmap_encounter/planetoid/lava/explored)
+"wt" = (
+/obj/effect/turf_decal/industrial/warning,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark/lava,
+/area/overmap_encounter/planetoid/cave/explored)
+"wM" = (
+/obj/machinery/light/floor,
+/obj/effect/turf_decal/siding/white{
+ dir = 9
+ },
+/turf/open/floor/concrete/pavement/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"wO" = (
+/obj/structure/flora/ash/leaf_shroom,
+/turf/open/floor/plating/moss,
+/area/overmap_encounter/planetoid/cave/explored)
+"wP" = (
+/obj/machinery/conveyor{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/overmap_encounter/planetoid/cave/explored)
+"wR" = (
+/obj/structure/table/wood,
+/obj/item/radio/intercom/table{
+ dir = 4;
+ pixel_x = 4
+ },
+/turf/open/floor/carpet/blue,
+/area/ruin/lavaland/factory/manager_office)
+"wU" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/grille,
+/obj/machinery/door/poddoor/shutters{
+ dir = 4;
+ id = "foreman"
+ },
+/turf/open/floor/plating,
+/area/ruin/lavaland/factory/manager_office)
+"xb" = (
+/obj/structure/flora/ausbushes/fernybush/hell,
+/turf/open/floor/plating/asteroid/purple/lit,
+/area/overmap_encounter/planetoid/lava/explored)
+"xi" = (
+/turf/open/floor/plating/grass/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"xj" = (
+/obj/structure/table,
+/obj/item/reagent_containers/food/drinks/waterbottle/empty{
+ pixel_x = -7
+ },
+/obj/item/reagent_containers/food/drinks/waterbottle/empty,
+/obj/item/reagent_containers/food/drinks/waterbottle/empty{
+ pixel_x = 7;
+ pixel_y = 5
+ },
+/obj/item/reagent_containers/food/drinks/waterbottle/empty{
+ pixel_y = 5;
+ pixel_x = -7
+ },
+/obj/item/reagent_containers/food/drinks/waterbottle/empty{
+ pixel_y = 5
+ },
+/obj/item/reagent_containers/food/drinks/waterbottle/empty{
+ pixel_x = 7
+ },
+/turf/open/floor/plasteel/tech,
+/area/ruin/lavaland/factory/warehouse)
+"xm" = (
+/obj/effect/decal/cleanable/ash,
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/turf/open/floor/plating/rust/lava,
+/area/overmap_encounter/planetoid/cave/explored)
+"xw" = (
+/obj/effect/mob_spawn/human/corpse/cargo_tech,
+/obj/effect/turf_decal/trimline/opaque/red/filled/warning,
+/obj/effect/decal/cleanable/blood{
+ icon_state = "floor6"
+ },
+/turf/open/floor/plasteel/white,
+/area/ruin/lavaland/factory/adminstrative)
+"xz" = (
+/obj/effect/turf_decal/box/corners{
+ dir = 1
+ },
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/plasteel/mono,
+/area/ruin/lavaland/factory/warehouse)
+"xB" = (
+/obj/effect/turf_decal/trimline/opaque/beige/warning{
+ dir = 4
+ },
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/warehouse)
+"xC" = (
+/obj/structure/table,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/storage/toolbox/mechanical,
+/obj/item/weldingtool/largetank,
+/obj/item/clothing/glasses/welding,
+/obj/structure/sign/poster/official/safety_eye_protection{
+ pixel_x = -32
+ },
+/obj/machinery/light/directional/west,
+/turf/open/floor/plasteel/mono,
+/area/ruin/lavaland/factory/warehouse)
+"xY" = (
+/obj/effect/turf_decal/corner/opaque/red{
+ dir = 10
+ },
+/obj/item/ammo_casing/shotgun/buckshot{
+ icon_state = "buckshot-empty";
+ pixel_x = 10;
+ pixel_y = 11;
+ projectile_type = null
+ },
+/obj/machinery/button/door{
+ id = "sec";
+ pixel_y = -22;
+ name = "Security Lockdown";
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/ruin/lavaland/factory/adminstrative)
+"xZ" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 10
+ },
+/turf/open/floor/concrete/pavement/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"yi" = (
+/obj/effect/turf_decal/trimline/opaque/ntblue/warning{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/mono/white,
+/area/ruin/lavaland/factory/lobby)
+"yo" = (
+/obj/effect/turf_decal/trimline/opaque/beige/warning,
+/obj/effect/decal/cleanable/blood/gibs/down,
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/warehouse)
+"yq" = (
+/obj/structure/displaycase/noalert{
+ start_showpiece_type = /obj/item/gun/energy/e_gun/hades
+ },
+/turf/open/floor/carpet/blue,
+/area/ruin/lavaland/factory/manager_office)
+"yw" = (
+/obj/effect/turf_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/structure/sign/warning/incident,
+/turf/closed/wall/r_wall,
+/area/ruin/lavaland/factory/warehouse)
+"yy" = (
+/obj/effect/turf_decal/trimline/opaque/lime/warning{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/robot_debris/down,
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/dorms)
+"yF" = (
+/obj/machinery/light/floor,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
+ },
+/turf/open/floor/concrete/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"yG" = (
+/obj/effect/turf_decal/trimline/opaque/beige/warning{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/mob/living/simple_animal/hostile/human/syndicate/melee/space,
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/warehouse)
+"yK" = (
+/obj/effect/turf_decal/trimline/opaque/beige/line{
+ dir = 5
+ },
+/obj/machinery/door/airlock/mining{
+ dir = 4;
+ name = "Warehouse"
+ },
+/obj/effect/decal/cleanable/blood{
+ icon_state = "trails_2";
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/warehouse)
+"yN" = (
+/turf/open/floor/plating/moss,
+/area/overmap_encounter/planetoid/cave/explored)
+"yP" = (
+/obj/structure/flora/tree/dead/tall,
+/turf/open/floor/plating/asteroid/purple/lit,
+/area/overmap_encounter/planetoid/lava/explored)
+"yQ" = (
+/turf/closed/indestructible/titanium,
+/area/ruin/lavaland/factory/manager_office)
+"yU" = (
+/obj/structure/table/wood,
+/obj/machinery/microwave,
+/turf/open/floor/wood,
+/area/ruin/lavaland/factory/adminstrative)
+"yX" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/ammo_casing/c10mm{
+ icon_state = "pistol-steel-empty";
+ projectile_type = null
+ },
+/turf/open/floor/plasteel/dark/lava,
+/area/overmap_encounter/planetoid/cave/explored)
+"yY" = (
+/obj/effect/mob_spawn/human/corpse/syndicatesoldier,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/carpet/nanoweave,
+/area/ruin/lavaland/factory/manager_office)
+"zf" = (
+/obj/structure/bed/double{
+ dir = 1
+ },
+/obj/item/bedsheet/double/captain{
+ dir = 1
+ },
+/turf/open/floor/carpet/blue,
+/area/ruin/lavaland/factory/adminstrative)
+"zg" = (
+/obj/structure/flora/ausbushes/fernybush/hell,
+/turf/open/floor/plating/grass/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"zh" = (
+/obj/effect/decal/cleanable/glass,
+/obj/machinery/light/broken/directional/north,
+/obj/machinery/door/poddoor/crusher{
+ name = "Malfunctioning Presser"
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/overmap_encounter/planetoid/cave/explored)
+"zj" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/item/ammo_casing/shotgun/buckshot{
+ icon_state = "buckshot-empty";
+ pixel_x = 5;
+ pixel_y = -13;
+ projectile_type = null
+ },
+/turf/open/floor/plasteel/white,
+/area/ruin/lavaland/factory/adminstrative)
+"zk" = (
+/obj/machinery/light/directional/east,
+/turf/open/floor/carpet/blue,
+/area/ruin/lavaland/factory/manager_office)
+"zl" = (
+/obj/item/kitchen/knife/combat/survival,
+/obj/item/kitchen/knife/combat/survival,
+/obj/structure/closet/crate/secure/gear,
+/turf/open/floor/plasteel/mono,
+/area/ruin/lavaland/factory/warehouse)
+"zs" = (
+/obj/structure/table/wood,
+/obj/item/modular_computer/laptop/preset/civilian/rilena,
+/turf/open/floor/carpet/blue,
+/area/ruin/lavaland/factory/adminstrative)
+"zx" = (
+/obj/machinery/power/port_gen/pacman/super,
+/obj/machinery/power/terminal{
+ dir = 4
+ },
+/obj/structure/catwalk/over/plated_catwalk/dark,
+/turf/open/floor/plating,
+/area/ruin/lavaland/factory/warehouse)
+"zz" = (
+/obj/effect/turf_decal/trimline/opaque/lime/warning{
+ dir = 1
+ },
+/obj/item/ammo_box/magazine/smgm9mm{
+ start_empty = 1
+ },
+/obj/item/gun/ballistic/automatic/smg/proto,
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/dorms)
+"zC" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/dark/lava,
+/area/overmap_encounter/planetoid/cave/explored)
+"zD" = (
+/obj/machinery/door/airlock/command/glass,
+/obj/machinery/door/poddoor/shutters{
+ id = "sec"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/white,
+/area/ruin/lavaland/factory/adminstrative)
+"zI" = (
+/obj/effect/turf_decal/trimline/opaque/lime/warning,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/ammo_casing/c9mm{
+ icon_state = "pistol-brass-empty";
+ projectile_type = null
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/dorms)
+"zJ" = (
+/obj/effect/decal/cleanable/generic,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/light/built/directional/north,
+/turf/open/floor/plasteel/dark/lava,
+/area/overmap_encounter/planetoid/cave/explored)
+"zO" = (
+/obj/effect/decal/cleanable/glass,
+/obj/structure/table_frame,
+/obj/item/stack/sheet/plasteel,
+/obj/machinery/door/poddoor/shutters{
+ id = "foreman"
+ },
+/turf/open/floor/plating,
+/area/ruin/lavaland/factory/manager_office)
+"zQ" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/clothing/mask/gas/explorer,
+/obj/effect/decal/cleanable/generic,
+/turf/open/floor/plasteel/mono,
+/area/ruin/lavaland/factory/warehouse)
+"Ac" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/adminstrative)
+"Ai" = (
+/obj/structure/table_frame,
+/obj/effect/decal/cleanable/blood/gibs/old,
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/manager_office)
+"Al" = (
+/obj/structure/filingcabinet/double,
+/turf/open/floor/carpet/blue,
+/area/ruin/lavaland/factory/manager_office)
+"An" = (
+/obj/structure/fence{
+ dir = 4
+ },
+/turf/open/floor/concrete/slab_1/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"Ao" = (
+/obj/structure/girder/reinforced,
+/turf/open/floor/plating/rust/lava,
+/area/overmap_encounter/planetoid/cave/explored)
+"AB" = (
+/obj/effect/turf_decal/trimline/opaque/beige/warning{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/warehouse)
+"AC" = (
+/obj/effect/turf_decal/trimline/opaque/beige/warning{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/button/door{
+ id = "warehouse";
+ name = "Warehouse Shutters";
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/warehouse)
+"AE" = (
+/obj/effect/turf_decal/industrial/warning,
+/turf/open/floor/concrete/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"AG" = (
+/obj/effect/decal/cleanable/plastic,
+/mob/living/simple_animal/hostile/human/syndicate/ranged/shotgun/space,
+/turf/open/floor/plasteel/dark/lava,
+/area/overmap_encounter/planetoid/cave/explored)
+"AI" = (
+/obj/effect/turf_decal/corner/opaque/bar{
+ dir = 1
+ },
+/obj/effect/turf_decal/corner/opaque/bar,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/ruin/lavaland/factory/dorms)
+"AM" = (
+/obj/effect/turf_decal/road/stop{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark/lava,
+/area/overmap_encounter/planetoid/cave/explored)
+"AP" = (
+/obj/structure/catwalk/over/plated_catwalk/dark,
+/obj/machinery/light/small/directional/east,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/ruin/lavaland/factory/warehouse)
+"AT" = (
+/obj/effect/decal/cleanable/generic,
+/obj/effect/turf_decal/trimline/opaque/beige/warning,
+/mob/living/simple_animal/hostile/viscerator,
+/turf/open/floor/plasteel/dark/lava,
+/area/overmap_encounter/planetoid/cave/explored)
+"AW" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/salvageable/computer{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark/lava,
+/area/overmap_encounter/planetoid/cave/explored)
+"Ba" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plating/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"Bd" = (
+/obj/effect/turf_decal/trimline/opaque/red/filled/warning{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/adminstrative)
+"Be" = (
+/obj/structure/catwalk/over/plated_catwalk/dark,
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/smes/engineering,
+/turf/open/floor/plating,
+/area/ruin/lavaland/factory/warehouse)
+"Bh" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/ruin/lavaland/factory/adminstrative)
+"Bo" = (
+/obj/structure/sign/warning/fire,
+/turf/closed/wall/mineral/titanium,
+/area/overmap_encounter/planetoid/lava/explored)
+"Br" = (
+/obj/item/trash/can/food{
+ icon_state = "ice_tea_can";
+ pixel_x = -7;
+ pixel_y = 10
+ },
+/turf/open/floor/plasteel/white,
+/area/ruin/lavaland/factory/dorms)
+"Bs" = (
+/obj/effect/turf_decal/box/corners,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/mob_spawn/human/corpse/syndicatesoldier,
+/obj/effect/decal/cleanable/blood/old,
+/turf/open/floor/plasteel/mono,
+/area/ruin/lavaland/factory/warehouse)
+"Bv" = (
+/obj/effect/turf_decal/industrial/fire{
+ dir = 1
+ },
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/floodlight,
+/turf/open/floor/plating/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"By" = (
+/obj/structure/table/wood,
+/obj/machinery/computer/secure_data/laptop{
+ dir = 4;
+ pixel_x = -5;
+ pixel_y = 5
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/carpet/blue,
+/area/ruin/lavaland/factory/manager_office)
+"BA" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window{
+ dir = 8
+ },
+/obj/structure/windoor_assembly{
+ dir = 4;
+ name = "broken windoor"
+ },
+/turf/open/floor/plasteel/mono/dark,
+/area/ruin/lavaland/factory/adminstrative)
+"Cc" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 10
+ },
+/turf/open/floor/wood,
+/area/ruin/lavaland/factory/manager_office)
+"Ci" = (
+/obj/effect/turf_decal/corner/opaque/ntblue{
+ dir = 1
+ },
+/obj/effect/turf_decal/corner/opaque/ntblue,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/white/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"Ck" = (
+/obj/machinery/light/directional/west,
+/turf/open/floor/carpet/blue,
+/area/ruin/lavaland/factory/manager_office)
+"Cu" = (
+/obj/structure/flora/ausbushes/hell,
+/turf/open/floor/plating/grass/lava/orange,
+/area/overmap_encounter/planetoid/lava/explored)
+"CG" = (
+/turf/open/floor/plating/rust/lava,
+/area/overmap_encounter/planetoid/cave/explored)
+"CP" = (
+/obj/machinery/door/airlock/command{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/ruin/lavaland/factory/adminstrative)
+"CT" = (
+/obj/structure/closet/secure_closet/personal,
+/obj/effect/turf_decal/corner/opaque/ntblue,
+/obj/effect/turf_decal/corner/opaque/ntblue{
+ dir = 1
+ },
+/obj/machinery/light/directional/west,
+/obj/item/kitchen/knife/hunting,
+/obj/item/clothing/suit/hooded/cloak/goliath,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plasteel/white,
+/area/ruin/lavaland/factory/dorms)
+"CW" = (
+/obj/structure/girder/reinforced,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/overmap_encounter/planetoid/cave/explored)
+"CX" = (
+/obj/effect/turf_decal/industrial/warning/corner,
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/obj/item/ammo_casing/c9mm{
+ icon_state = "pistol-brass-empty";
+ projectile_type = null
+ },
+/turf/open/floor/concrete/pavement/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"Dd" = (
+/obj/effect/turf_decal/trimline/opaque/lime/warning,
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/effect/decal/cleanable/blood{
+ icon_state = "gibmid2"
+ },
+/obj/item/toy/cards/deck,
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/dorms)
+"Df" = (
+/obj/effect/turf_decal/corner/opaque/lime{
+ dir = 1
+ },
+/obj/effect/turf_decal/corner/opaque/red{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc/auto_name/directional/west,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/white,
+/area/ruin/lavaland/factory/adminstrative)
+"Dk" = (
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/overmap_encounter/planetoid/cave/explored)
+"Dt" = (
+/obj/item/rack_parts/shelf,
+/turf/open/floor/plasteel/mono,
+/area/ruin/lavaland/factory/warehouse)
+"Dz" = (
+/obj/structure/lattice,
+/obj/structure/salvageable/machine,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/overmap_encounter/planetoid/cave/explored)
+"DB" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/ruin/lavaland/factory/manager_office)
+"DE" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/machinery/newscaster/directional/west,
+/turf/open/floor/wood,
+/area/ruin/lavaland/factory/adminstrative)
+"DK" = (
+/obj/machinery/shower{
+ dir = 4
+ },
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/plasteel/showroomfloor,
+/area/ruin/lavaland/factory/dorms)
+"DP" = (
+/obj/effect/turf_decal/trimline/opaque/lime/warning{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/dorms)
+"DT" = (
+/obj/machinery/door/airlock{
+ name = "Restroom"
+ },
+/obj/machinery/door/poddoor/shutters{
+ id = "sec"
+ },
+/turf/open/floor/plasteel/white,
+/area/ruin/lavaland/factory/adminstrative)
+"DY" = (
+/obj/effect/turf_decal/siding/white/corner{
+ dir = 1
+ },
+/turf/open/floor/concrete/pavement/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"Eb" = (
+/obj/effect/decal/cleanable/blood{
+ icon_state = "gib3"
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/manager_office)
+"Ee" = (
+/obj/effect/turf_decal/trimline/opaque/lime/filled/warning{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/ruin/lavaland/factory/adminstrative)
+"Eg" = (
+/obj/effect/turf_decal/box/corners{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/crate/secure/engineering{
+ name = "mining crate"
+ },
+/obj/item/gun/energy/kinetic_accelerator,
+/obj/item/mining_scanner,
+/turf/open/floor/plasteel/mono,
+/area/ruin/lavaland/factory/warehouse)
+"Ek" = (
+/obj/effect/turf_decal/trimline/opaque/lime/warning{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/blood{
+ icon_state = "trails_2";
+ dir = 9
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/dorms)
+"El" = (
+/obj/machinery/door/poddoor/shutters{
+ dir = 4;
+ id = "foreman"
+ },
+/turf/open/floor/plasteel/dark,
+/area/overmap_encounter/planetoid/cave/explored)
+"Ev" = (
+/obj/item/storage/toolbox/electrical,
+/obj/structure/table,
+/obj/structure/catwalk/over/plated_catwalk/dark,
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/open/floor/plating,
+/area/ruin/lavaland/factory/warehouse)
+"EC" = (
+/obj/structure/bed{
+ dir = 1
+ },
+/obj/effect/turf_decal/corner/opaque/red/border{
+ dir = 10
+ },
+/obj/item/bedsheet/hos{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/adminstrative)
+"EK" = (
+/obj/structure/closet/secure_closet/personal,
+/obj/effect/turf_decal/corner/opaque/ntblue,
+/obj/effect/turf_decal/corner/opaque/ntblue{
+ dir = 1
+ },
+/obj/effect/spawner/lootdrop/waste/trash,
+/obj/effect/spawner/lootdrop/waste/trash,
+/obj/effect/spawner/lootdrop/waste/trash,
+/obj/effect/spawner/lootdrop/waste/trash,
+/obj/effect/spawner/lootdrop/waste/trash,
+/obj/effect/spawner/lootdrop/waste/trash,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/white,
+/area/ruin/lavaland/factory/dorms)
+"EP" = (
+/obj/structure/bed,
+/obj/item/bedsheet/dorms,
+/obj/structure/curtain/cloth,
+/obj/effect/turf_decal/corner/opaque/ntblue,
+/obj/effect/turf_decal/corner/opaque/ntblue{
+ dir = 1
+ },
+/mob/living/simple_animal/hostile/viscerator,
+/turf/open/floor/plasteel/white,
+/area/ruin/lavaland/factory/dorms)
+"EQ" = (
+/obj/effect/turf_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/light/broken/directional/west,
+/turf/open/floor/plasteel/dark/lava,
+/area/overmap_encounter/planetoid/cave/explored)
+"EU" = (
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 1
+ },
+/turf/open/floor/wood,
+/area/ruin/lavaland/factory/manager_office)
+"EW" = (
+/obj/structure/crate_shelf,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/mono,
+/area/ruin/lavaland/factory/warehouse)
+"Fe" = (
+/obj/effect/decal/cleanable/generic,
+/obj/structure/railing,
+/obj/effect/turf_decal/industrial/warning,
+/turf/open/floor/plasteel/dark/lava,
+/area/overmap_encounter/planetoid/cave/explored)
+"Fk" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/open/floor/plating/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"Fm" = (
+/obj/effect/turf_decal/trimline/opaque/beige/warning,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/clothing/head/hardhat{
+ pixel_y = 5;
+ pixel_x = -2
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/warehouse)
+"Fs" = (
+/obj/item/trash/plate,
+/obj/item/trash/can/food/beans{
+ pixel_x = -4;
+ pixel_y = 7
+ },
+/turf/open/floor/plasteel/tech,
+/area/ruin/lavaland/factory/warehouse)
+"Fv" = (
+/obj/effect/turf_decal/corner/opaque/red/border,
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/adminstrative)
+"Fw" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/open/floor/plating/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"Fx" = (
+/obj/effect/turf_decal/siding/wood/corner,
+/turf/open/floor/wood,
+/area/ruin/lavaland/factory/adminstrative)
+"FC" = (
+/obj/structure/flora/rock/pile,
+/turf/open/floor/plating/grass/lava/orange,
+/area/overmap_encounter/planetoid/lava/explored)
+"FH" = (
+/obj/effect/decal/cleanable/ash,
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/plasteel/dark/lava,
+/area/overmap_encounter/planetoid/cave/explored)
+"FJ" = (
+/obj/item/toy/cards/singlecard{
+ icon_state = "syndicate_hand3"
+ },
+/obj/machinery/light/broken/directional/east,
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/plasteel/white,
+/area/ruin/lavaland/factory/dorms)
+"FM" = (
+/obj/effect/turf_decal/trimline/opaque/beige/arrow_cw,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark/lava,
+/area/overmap_encounter/planetoid/cave/explored)
+"FY" = (
+/obj/effect/turf_decal/corner/opaque/red/border{
+ dir = 9
+ },
+/obj/machinery/button/door{
+ id = "sec";
+ pixel_y = 22;
+ name = "Security Lockdown"
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/adminstrative)
+"FZ" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/stack/ore/salvage/scrapmetal/five,
+/turf/open/floor/plasteel/dark/lava,
+/area/overmap_encounter/planetoid/cave/explored)
+"Ga" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/glass,
+/obj/item/ammo_casing/c45{
+ icon_state = "pistol-steel-empty";
+ projectile_type = null
+ },
+/turf/open/floor/plasteel/dark/lava,
+/area/overmap_encounter/planetoid/cave/explored)
+"Gc" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/white,
+/area/ruin/lavaland/factory/lobby)
+"Gj" = (
+/obj/structure/table,
+/obj/machinery/jukebox/boombox,
+/obj/effect/turf_decal/trimline/opaque/lime/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/dorms)
+"Gn" = (
+/obj/effect/turf_decal/industrial/stand_clear{
+ dir = 8
+ },
+/obj/machinery/button/door{
+ id = "management";
+ pixel_y = 22;
+ name = "Door Buzzer"
+ },
+/turf/open/floor/plasteel/tech/grid,
+/area/ruin/lavaland/factory/manager_office)
+"Go" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/turf/open/floor/concrete/pavement/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"Gp" = (
+/obj/item/trash/sosjerky,
+/turf/open/floor/plasteel/tech,
+/area/ruin/lavaland/factory/warehouse)
+"Gw" = (
+/mob/living/simple_animal/bot/secbot/ed209/rockplanet{
+ faction = list("Deathsquad");
+ name = "\improper ED-209 Robot"
+ },
+/turf/open/floor/circuit/red,
+/area/ruin/lavaland/factory/manager_office)
+"Gy" = (
+/obj/machinery/light/floor,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
+ },
+/turf/open/floor/concrete/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"GC" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/turf/open/floor/concrete/pavement/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"GE" = (
+/obj/item/trash/chips,
+/turf/open/floor/plasteel/tech,
+/area/ruin/lavaland/factory/warehouse)
+"GJ" = (
+/obj/structure/flora/ausbushes/fullgrass/hell,
+/turf/open/floor/plating/grass/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"GK" = (
+/obj/machinery/door/airlock/outpost,
+/turf/open/floor/plasteel/dark,
+/area/overmap_encounter/planetoid/cave/explored)
+"GL" = (
+/obj/effect/turf_decal/trimline/opaque/beige/warning{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/light/broken/directional/north,
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/warehouse)
+"GO" = (
+/obj/structure/fence,
+/turf/open/floor/concrete/slab_1/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"GP" = (
+/obj/structure/lattice,
+/obj/structure/disposalpipe/broken,
+/obj/structure/disposalpipe/broken{
+ dir = 1
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/overmap_encounter/planetoid/cave/explored)
+"GR" = (
+/obj/effect/turf_decal/siding/white/corner,
+/turf/open/floor/concrete/pavement/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"GS" = (
+/obj/structure/table/wood,
+/obj/item/reagent_containers/food/drinks/bottle/champagne{
+ pixel_y = 20;
+ pixel_x = -5
+ },
+/obj/item/storage/bag/tray,
+/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass/commemorative{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass/commemorative{
+ pixel_x = -5;
+ pixel_y = 5
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 9
+ },
+/turf/open/floor/wood,
+/area/ruin/lavaland/factory/manager_office)
+"GT" = (
+/obj/structure/flora/ausbushes/grassybush/hell,
+/turf/open/floor/plating/grass/lava/orange,
+/area/overmap_encounter/planetoid/lava/explored)
+"GW" = (
+/obj/structure/flora/ausbushes/sparsegrass/hell,
+/turf/open/floor/plating/grass/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"Ha" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/mob/living/simple_animal/hostile/viscerator,
+/turf/open/floor/plasteel/white,
+/area/ruin/lavaland/factory/adminstrative)
+"Hc" = (
+/obj/machinery/mineral/processing_unit{
+ input_dir = 8;
+ output_dir = 1
+ },
+/turf/open/floor/plasteel/dark/lava,
+/area/overmap_encounter/planetoid/cave/explored)
+"Hl" = (
+/obj/effect/decal/cleanable/blood/footprints{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark/lava,
+/area/overmap_encounter/planetoid/cave/explored)
+"Ho" = (
+/turf/open/floor/plasteel/mono,
+/area/ruin/lavaland/factory/warehouse)
+"Hp" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 6
+ },
+/turf/open/floor/wood,
+/area/ruin/lavaland/factory/adminstrative)
+"Hs" = (
+/obj/structure/salvageable/computer,
+/turf/open/floor/plating/rust/lava,
+/area/overmap_encounter/planetoid/cave/explored)
+"HA" = (
+/obj/effect/turf_decal/trimline/opaque/lime/warning{
+ dir = 8
+ },
+/mob/living/simple_animal/hostile/human/syndicate/ranged/space,
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/dorms)
+"HJ" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 5
+ },
+/obj/structure/dresser,
+/obj/item/toy/figure/assistant{
+ pixel_x = -10;
+ pixel_y = 12
+ },
+/obj/item/toy/figure/cargotech{
+ pixel_y = 12
+ },
+/obj/item/toy/figure/ian{
+ pixel_y = 5
+ },
+/obj/item/toy/figure/tali{
+ pixel_x = 10;
+ pixel_y = 12
+ },
+/obj/item/toy/figure/syndie{
+ pixel_x = -10;
+ pixel_y = 5
+ },
+/obj/item/toy/figure/head_of_personnel{
+ pixel_y = 5;
+ pixel_x = 10
+ },
+/obj/machinery/button/door{
+ id = "foreman";
+ pixel_y = 22;
+ name = "Office Lockdown"
+ },
+/turf/open/floor/wood,
+/area/ruin/lavaland/factory/adminstrative)
+"HK" = (
+/obj/effect/turf_decal/trimline/opaque/beige/warning{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/warehouse)
+"HL" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/siding/white,
+/turf/open/floor/concrete/pavement/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"HO" = (
+/obj/effect/turf_decal/trimline/opaque/ntblue/warning{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/mono/white,
+/area/ruin/lavaland/factory/lobby)
+"HS" = (
+/obj/effect/turf_decal/box/corners{
+ dir = 1
+ },
+/turf/open/floor/plasteel/mono,
+/area/ruin/lavaland/factory/warehouse)
+"Id" = (
+/obj/structure/table/wood,
+/obj/machinery/fax/ruin,
+/obj/effect/turf_decal/siding/wood,
+/turf/open/floor/wood,
+/area/ruin/lavaland/factory/manager_office)
+"Ie" = (
+/obj/effect/turf_decal/trimline/opaque/lime/warning,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/dorms)
+"If" = (
+/obj/effect/turf_decal/trimline/opaque/beige/warning{
+ dir = 1
+ },
+/obj/structure/flippedtable{
+ dir = 4
+ },
+/obj/item/reagent_containers/food/drinks/bottle/molotov,
+/obj/item/lighter/greyscale{
+ pixel_x = -8;
+ pixel_y = -7
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/warehouse)
+"Ij" = (
+/obj/item/storage/cans/sixbeer,
+/turf/open/floor/plating,
+/area/ruin/lavaland/factory/warehouse)
+"Il" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/turf/open/floor/concrete/pavement/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"In" = (
+/turf/open/floor/concrete/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"Iz" = (
+/obj/machinery/modular_computer/console/preset/command{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/manager_office)
+"IG" = (
+/obj/structure/table,
+/obj/item/storage/pill_bottle/dice{
+ pixel_x = -8;
+ pixel_y = 8
+ },
+/obj/item/paper_bin{
+ pixel_x = 6;
+ pixel_y = 2
+ },
+/obj/item/pen{
+ pixel_x = 6;
+ pixel_y = 2
+ },
+/obj/effect/turf_decal/trimline/opaque/lime/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/dorms)
+"II" = (
+/obj/effect/turf_decal/trimline/opaque/beige/corner{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/ammo_casing/shotgun/buckshot{
+ icon_state = "buckshot-empty";
+ pixel_x = -3;
+ pixel_y = -10;
+ projectile_type = null
+ },
+/obj/item/ammo_casing/shotgun/buckshot{
+ icon_state = "buckshot-empty";
+ pixel_x = 7;
+ pixel_y = 9;
+ projectile_type = null
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/warehouse)
+"IJ" = (
+/obj/machinery/light/floor,
+/obj/effect/turf_decal/industrial/warning/corner{
+ dir = 4
+ },
+/turf/open/floor/concrete/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"IO" = (
+/obj/effect/turf_decal/trimline/opaque/beige/warning{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/light/directional/east,
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/warehouse)
+"IQ" = (
+/obj/machinery/door/airlock/security,
+/obj/machinery/door/poddoor/shutters{
+ id = "sec"
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/adminstrative)
+"IX" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/ruin/lavaland/factory/adminstrative)
+"Jc" = (
+/mob/living/simple_animal/hostile/human/syndicate/ranged/space,
+/turf/open/floor/carpet/nanoweave/blue,
+/area/ruin/lavaland/factory/lobby)
+"Jd" = (
+/obj/effect/turf_decal/trimline/opaque/beige/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/warehouse)
+"Jk" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/mecha_wreckage/ripley,
+/obj/effect/decal/cleanable/robot_debris/old,
+/turf/open/floor/plasteel/mono,
+/area/ruin/lavaland/factory/warehouse)
+"Jt" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"JM" = (
+/obj/structure/table/glass,
+/obj/item/phone,
+/obj/structure/sign/poster/contraband/space_cola{
+ pixel_y = 32
+ },
+/turf/open/floor/carpet/nanoweave/blue,
+/area/ruin/lavaland/factory/lobby)
+"JO" = (
+/obj/effect/turf_decal/industrial/stand_clear{
+ dir = 8
+ },
+/turf/open/floor/plasteel/tech/grid,
+/area/ruin/lavaland/factory/manager_office)
+"JQ" = (
+/obj/effect/turf_decal/trimline/opaque/beige/warning{
+ dir = 4
+ },
+/obj/effect/turf_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/warehouse)
+"JT" = (
+/obj/effect/turf_decal/trimline/opaque/lime/warning{
+ dir = 1
+ },
+/obj/machinery/door/airlock{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/dorms)
+"Kc" = (
+/obj/effect/turf_decal/box/corners{
+ dir = 8
+ },
+/obj/structure/closet/crate/internals,
+/obj/item/tank/internals/emergency_oxygen/engi,
+/obj/item/storage/toolbox/emergency,
+/obj/item/storage/toolbox/emergency,
+/obj/item/clothing/mask/breath,
+/turf/open/floor/plasteel/mono,
+/area/ruin/lavaland/factory/warehouse)
+"Kg" = (
+/obj/machinery/photocopier,
+/obj/effect/turf_decal/siding/wood{
+ dir = 6
+ },
+/obj/machinery/light/directional/south,
+/turf/open/floor/wood,
+/area/ruin/lavaland/factory/manager_office)
+"Km" = (
+/turf/open/floor/plasteel/white,
+/area/ruin/lavaland/factory/lobby)
+"Kp" = (
+/obj/structure/reagent_dispensers/water_cooler,
+/turf/open/floor/plasteel/white,
+/area/ruin/lavaland/factory/dorms)
+"KB" = (
+/obj/effect/decal/cleanable/plastic,
+/obj/structure/railing,
+/obj/effect/turf_decal/industrial/warning,
+/turf/open/floor/plasteel/dark/lava,
+/area/overmap_encounter/planetoid/cave/explored)
+"KI" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/gibspawner/human,
+/turf/open/floor/plasteel/dark/lava,
+/area/overmap_encounter/planetoid/cave/explored)
+"KK" = (
+/obj/effect/turf_decal/industrial/warning,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/turf/open/floor/concrete/pavement/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"KM" = (
+/obj/effect/turf_decal/trimline/opaque/lime/warning{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/dorms)
+"KS" = (
+/obj/item/stack/rods,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/overmap_encounter/planetoid/cave/explored)
+"KX" = (
+/turf/closed/wall/mineral/titanium,
+/area/ruin/lavaland/factory/manager_office)
+"La" = (
+/obj/structure/flora/ausbushes/sparsegrass/hell,
+/turf/open/floor/plating/asteroid/purple/lit,
+/area/overmap_encounter/planetoid/lava/explored)
+"Lb" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 6
+ },
+/turf/open/floor/concrete/pavement/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"Lq" = (
+/obj/effect/turf_decal/trimline/opaque/ntblue/corner,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/mono/white,
+/area/ruin/lavaland/factory/lobby)
+"Lv" = (
+/turf/open/floor/carpet/nanoweave/blue,
+/area/ruin/lavaland/factory/lobby)
+"LB" = (
+/obj/item/stack/cable_coil/cut/yellow,
+/turf/open/floor/plating/lava,
+/area/overmap_encounter/planetoid/cave/explored)
+"LE" = (
+/obj/effect/turf_decal/trimline/opaque/beige/warning{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/warehouse)
+"LF" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/mono,
+/area/ruin/lavaland/factory/warehouse)
+"LI" = (
+/obj/structure/flora/ausbushes/sparsegrass/hell,
+/obj/structure/flora/rock/pile,
+/turf/open/floor/plating/grass/lava/orange,
+/area/overmap_encounter/planetoid/lava/explored)
+"LK" = (
+/obj/effect/turf_decal/industrial/stand_clear,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/mono,
+/area/ruin/lavaland/factory/warehouse)
+"LL" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/ruin/lavaland/factory/manager_office)
+"LP" = (
+/turf/open/floor/carpet/blue,
+/area/ruin/lavaland/factory/manager_office)
+"LR" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/carpet/nanoweave,
+/area/ruin/lavaland/factory/manager_office)
+"LS" = (
+/obj/effect/turf_decal/ntlogo,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/white,
+/area/ruin/lavaland/factory/lobby)
+"LU" = (
+/obj/effect/turf_decal/trimline/opaque/lime/warning,
+/obj/effect/decal/cleanable/blood{
+ icon_state = "trails_2";
+ dir = 4
+ },
+/obj/item/chair{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/dorms)
+"LW" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/item/kitchen/knife/shiv,
+/turf/open/floor/plasteel/white,
+/area/ruin/lavaland/factory/adminstrative)
+"LX" = (
+/obj/effect/turf_decal/trimline/opaque/red/arrow_cw{
+ dir = 8
+ },
+/turf/open/floor/plasteel/mono/dark,
+/area/ruin/lavaland/factory/lobby)
+"LZ" = (
+/turf/open/lava/smooth,
+/area/overmap_encounter/planetoid/lava/explored)
+"Mb" = (
+/obj/structure/railing{
+ dir = 6
+ },
+/obj/effect/turf_decal/trimline/opaque/red/arrow_cw{
+ dir = 6
+ },
+/turf/open/floor/plasteel/mono/dark,
+/area/ruin/lavaland/factory/lobby)
+"Md" = (
+/obj/effect/decal/cleanable/blood/footprints{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/glass,
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/manager_office)
+"Me" = (
+/obj/effect/turf_decal/corner/opaque/ntblue{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/white/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"Mk" = (
+/obj/structure/flora/ash/fern,
+/turf/open/floor/plating/moss,
+/area/overmap_encounter/planetoid/cave/explored)
+"Mm" = (
+/obj/structure/ore_box,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/overmap_encounter/planetoid/cave/explored)
+"Mp" = (
+/obj/item/wallframe/apc,
+/turf/open/floor/plating/rust/lava,
+/area/overmap_encounter/planetoid/cave/explored)
+"Mq" = (
+/obj/structure/salvageable/computer,
+/turf/open/floor/plasteel/dark/lava,
+/area/overmap_encounter/planetoid/cave/explored)
+"MC" = (
+/obj/effect/turf_decal/trimline/opaque/beige/warning{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/light/directional/south,
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/warehouse)
+"ME" = (
+/obj/machinery/vending/cola/shamblers,
+/turf/open/floor/plasteel/mono/white,
+/area/ruin/lavaland/factory/lobby)
+"MF" = (
+/obj/effect/turf_decal/corner/opaque/bar{
+ dir = 1
+ },
+/obj/effect/turf_decal/corner/opaque/bar,
+/obj/structure/table,
+/obj/item/kitchen/fork{
+ pixel_x = -10;
+ pixel_y = 3
+ },
+/obj/item/kitchen/fork{
+ pixel_x = -8;
+ pixel_y = 2
+ },
+/obj/item/kitchen/fork{
+ pixel_x = -6;
+ pixel_y = 1
+ },
+/obj/item/reagent_containers/food/drinks/drinkingglass{
+ pixel_x = 10;
+ pixel_y = 10
+ },
+/obj/item/reagent_containers/food/drinks/drinkingglass{
+ pixel_x = 10;
+ pixel_y = 2
+ },
+/obj/item/reagent_containers/food/drinks/drinkingglass{
+ pixel_y = 10;
+ pixel_x = 2
+ },
+/obj/item/reagent_containers/food/drinks/drinkingglass{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/turf/open/floor/plasteel,
+/area/ruin/lavaland/factory/dorms)
+"MH" = (
+/turf/closed/mineral/volcanic,
+/area/overmap_encounter/planetoid/cave/explored)
+"MJ" = (
+/obj/item/stack/sheet/metal,
+/turf/open/floor/plating/rust/lava,
+/area/overmap_encounter/planetoid/cave/explored)
+"ML" = (
+/obj/structure/bed/roller,
+/obj/effect/mob_spawn/human/corpse/cargo_tech,
+/obj/effect/decal/cleanable/blood{
+ icon_state = "xfloor1"
+ },
+/obj/item/reagent_containers/hypospray/medipen{
+ icon_state = "medipen0";
+ pixel_y = 10;
+ list_reagents = null
+ },
+/turf/open/floor/plasteel/mono,
+/area/ruin/lavaland/factory/warehouse)
+"MY" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 6
+ },
+/turf/open/floor/wood,
+/area/ruin/lavaland/factory/manager_office)
+"MZ" = (
+/obj/effect/turf_decal/trimline/opaque/lime/warning,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/dorms)
+"Ne" = (
+/obj/structure/flora/tree/dead/tall,
+/turf/open/floor/plating/grass/lava/purple,
+/area/overmap_encounter/planetoid/lava/explored)
+"Nj" = (
+/obj/machinery/light/floor,
+/obj/effect/turf_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/open/floor/concrete/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"Nr" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/blood{
+ icon_state = "trails_2";
+ dir = 4
+ },
+/turf/open/floor/plating/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"NA" = (
+/obj/effect/turf_decal/trimline/opaque/beige/warning{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/glass,
+/obj/machinery/light/broken/directional/east,
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/warehouse)
+"NE" = (
+/obj/item/ammo_casing/c10mm{
+ icon_state = "pistol-steel-empty";
+ projectile_type = null
+ },
+/turf/closed/mineral/volcanic,
+/area/overmap_encounter/planetoid/cave/explored)
+"NG" = (
+/obj/structure/flippedtable,
+/obj/effect/mob_spawn/human/corpse/nanotrasensoldier,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/gibspawner/human/bodypartless,
+/turf/open/floor/plasteel/white,
+/area/ruin/lavaland/factory/lobby)
+"NM" = (
+/turf/open/floor/plating/asteroid/purple/lit,
+/area/overmap_encounter/planetoid/lava/explored)
+"NP" = (
+/obj/structure/lattice,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/overmap_encounter/planetoid/cave/explored)
+"Oc" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp/green{
+ pixel_y = 10;
+ pixel_x = -6
+ },
+/obj/item/toy/figure/captain{
+ pixel_x = 10
+ },
+/turf/open/floor/carpet/blue,
+/area/ruin/lavaland/factory/manager_office)
+"Oe" = (
+/turf/open/floor/plating/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"Om" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/white,
+/area/ruin/lavaland/factory/lobby)
+"Op" = (
+/obj/effect/turf_decal/trimline/opaque/lime/warning{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/blood{
+ icon_state = "armorblood"
+ },
+/obj/effect/decal/cleanable/blood{
+ icon_state = "drip5"
+ },
+/obj/effect/decal/cleanable/robot_debris,
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/dorms)
+"Oq" = (
+/obj/effect/decal/cleanable/blood/footprints{
+ dir = 8
+ },
+/turf/open/floor/plating/rust/lava,
+/area/overmap_encounter/planetoid/cave/explored)
+"Or" = (
+/obj/structure/closet/crate/freezer,
+/obj/effect/spawner/lootdrop/ration,
+/obj/effect/spawner/lootdrop/ration,
+/obj/effect/spawner/lootdrop/ration,
+/obj/effect/spawner/lootdrop/ration,
+/obj/effect/spawner/lootdrop/ration,
+/obj/item/reagent_containers/food/drinks/waterbottle/large,
+/obj/item/reagent_containers/food/drinks/waterbottle/large,
+/obj/item/reagent_containers/food/drinks/waterbottle/large,
+/obj/item/reagent_containers/food/drinks/waterbottle/large,
+/obj/item/reagent_containers/food/drinks/waterbottle/large,
+/turf/open/floor/plasteel/mono,
+/area/ruin/lavaland/factory/warehouse)
+"Ou" = (
+/turf/open/floor/plasteel/dark/lava,
+/area/overmap_encounter/planetoid/cave/explored)
+"Ox" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 6
+ },
+/obj/item/kirbyplants/photosynthetic,
+/obj/structure/sign/poster/official/soft_cap_pop_art{
+ pixel_y = -32
+ },
+/turf/open/floor/wood,
+/area/ruin/lavaland/factory/adminstrative)
+"OE" = (
+/obj/structure/flora/ausbushes/fullgrass/hell,
+/turf/open/floor/plating/asteroid/purple/lit,
+/area/overmap_encounter/planetoid/lava/explored)
+"OG" = (
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/turf_decal/industrial/stand_clear{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/blood{
+ icon_state = "gibbl1"
+ },
+/obj/item/ammo_casing/c10mm{
+ icon_state = "pistol-steel-empty";
+ projectile_type = null
+ },
+/obj/item/ammo_casing/c10mm{
+ icon_state = "pistol-steel-empty";
+ projectile_type = null
+ },
+/turf/open/floor/concrete/pavement/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"OO" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/ruin/lavaland/factory/adminstrative)
+"OS" = (
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/turf_decal/industrial/stand_clear{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/blood{
+ icon_state = "trails_2";
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark/lava,
+/area/overmap_encounter/planetoid/cave/explored)
+"Pb" = (
+/obj/effect/turf_decal/corner/opaque/lime{
+ dir = 5
+ },
+/turf/open/floor/plasteel/white,
+/area/ruin/lavaland/factory/adminstrative)
+"Pf" = (
+/obj/effect/turf_decal/trimline/opaque/ntblue/warning{
+ dir = 4
+ },
+/obj/machinery/light/dim/directional/south,
+/turf/open/floor/plasteel/mono/white,
+/area/ruin/lavaland/factory/lobby)
+"Pg" = (
+/obj/effect/mob_spawn/human/corpse/cargo_tech,
+/turf/open/floor/plasteel/tech,
+/area/ruin/lavaland/factory/warehouse)
+"Ph" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/plastic,
+/turf/open/floor/concrete/pavement/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"Pi" = (
+/mob/living/simple_animal/hostile/viscerator,
+/turf/open/floor/plating/moss,
+/area/overmap_encounter/planetoid/cave/explored)
+"Pk" = (
+/obj/effect/turf_decal/trimline/opaque/lime/warning{
+ dir = 8
+ },
+/obj/structure/closet/wall/white/directional/west{
+ name = "shower locker"
+ },
+/obj/item/soap/nanotrasen,
+/obj/item/towel,
+/obj/item/towel,
+/obj/item/towel,
+/obj/item/soap/nanotrasen,
+/obj/item/soap/nanotrasen,
+/obj/item/soap/nanotrasen,
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/dorms)
+"Pp" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/grille,
+/obj/machinery/door/poddoor/shutters{
+ id = "foreman"
+ },
+/turf/open/floor/plating,
+/area/ruin/lavaland/factory/manager_office)
+"Pt" = (
+/obj/effect/turf_decal/trimline/opaque/beige/warning{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/warehouse)
+"Pv" = (
+/obj/structure/table/reinforced,
+/obj/machinery/recharger,
+/obj/item/stamp/hos{
+ pixel_x = 10;
+ pixel_y = -8
+ },
+/obj/effect/turf_decal/corner/opaque/red/border{
+ dir = 10
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/adminstrative)
+"PE" = (
+/obj/effect/mob_spawn/human/corpse/charredskeleton,
+/obj/item/clothing/neck/cloak/qm,
+/obj/structure/closet/crate/grave/loot,
+/turf/open/floor/plating/moss,
+/area/overmap_encounter/planetoid/cave/explored)
+"PH" = (
+/obj/structure/table,
+/obj/item/stack/ore/salvage/scraptitanium,
+/turf/open/floor/plating/lava,
+/area/overmap_encounter/planetoid/cave/explored)
+"PK" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/mob_spawn/human/engineer,
+/obj/effect/decal/cleanable/blood/old,
+/turf/open/floor/plasteel/mono,
+/area/ruin/lavaland/factory/warehouse)
+"PL" = (
+/obj/effect/turf_decal/corner/opaque/bar{
+ dir = 1
+ },
+/obj/effect/turf_decal/corner/opaque/bar,
+/turf/open/floor/plasteel,
+/area/ruin/lavaland/factory/dorms)
+"PQ" = (
+/obj/structure/chair/greyscale{
+ dir = 4
+ },
+/mob/living/simple_animal/hostile/human/syndicate/ranged/smg/space,
+/turf/open/floor/plasteel/white,
+/area/ruin/lavaland/factory/dorms)
+"PR" = (
+/obj/machinery/door/poddoor/shutters{
+ dir = 4;
+ id = "management"
+ },
+/turf/open/floor/plasteel/tech/grid,
+/area/ruin/lavaland/factory/manager_office)
+"PT" = (
+/obj/effect/turf_decal/trimline/opaque/lime/warning{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/dorms)
+"Qa" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/ammo_casing/c45{
+ icon_state = "pistol-steel-empty";
+ projectile_type = null
+ },
+/turf/open/floor/plasteel/white/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"Qc" = (
+/turf/open/floor/carpet/nanoweave,
+/area/ruin/lavaland/factory/manager_office)
+"Qh" = (
+/obj/machinery/mech_bay_recharge_port{
+ dir = 1
+ },
+/turf/open/floor/plasteel/mono,
+/area/ruin/lavaland/factory/warehouse)
+"Qw" = (
+/obj/structure/flora/rock/hell,
+/turf/open/floor/plating/grass/lava/purple,
+/area/overmap_encounter/planetoid/lava/explored)
+"QA" = (
+/obj/item/folder/yellow{
+ pixel_x = -7;
+ pixel_y = -4
+ },
+/obj/structure/fluff/paper/stack{
+ dir = 1
+ },
+/obj/structure/fluff/paper/stack,
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/manager_office)
+"QB" = (
+/obj/structure/lattice,
+/obj/item/stack/cable_coil/cut/yellow,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/overmap_encounter/planetoid/cave/explored)
+"QG" = (
+/obj/effect/decal/cleanable/blood/footprints{
+ dir = 1
+ },
+/obj/item/pen/fourcolor,
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/manager_office)
+"QK" = (
+/obj/effect/turf_decal/trimline/opaque/lime/filled/warning,
+/obj/effect/turf_decal/siding{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/white,
+/area/ruin/lavaland/factory/adminstrative)
+"QM" = (
+/obj/structure/table/wood,
+/obj/item/cutting_board,
+/obj/item/kitchen/knife,
+/turf/open/floor/wood,
+/area/ruin/lavaland/factory/adminstrative)
+"QR" = (
+/obj/structure/flora/ausbushes/grassybush/hell,
+/turf/open/floor/plating/asteroid/purple/lit,
+/area/overmap_encounter/planetoid/lava/explored)
+"Rd" = (
+/obj/item/stack/rods,
+/obj/item/stack/rods,
+/obj/item/stack/rods,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/overmap_encounter/planetoid/cave/explored)
+"Re" = (
+/obj/machinery/door/airlock{
+ dir = 4;
+ name = "Bathroom";
+ id_tag = "sgi_bolt"
+ },
+/obj/effect/decal/cleanable/blood{
+ icon_state = "trails_2";
+ dir = 4
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/ruin/lavaland/factory/dorms)
+"Rj" = (
+/obj/item/stack/ore/salvage/scrapmetal{
+ pixel_x = -15;
+ pixel_y = -10
+ },
+/turf/open/floor/plasteel/dark/lava,
+/area/overmap_encounter/planetoid/cave/explored)
+"Rn" = (
+/obj/effect/turf_decal/siding/wood,
+/obj/structure/chair/comfy/blue{
+ dir = 1
+ },
+/turf/open/floor/wood,
+/area/ruin/lavaland/factory/adminstrative)
+"Ro" = (
+/obj/effect/turf_decal/siding/white/corner{
+ dir = 4
+ },
+/turf/open/floor/concrete/pavement/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"Rv" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/mono,
+/area/ruin/lavaland/factory/warehouse)
+"RA" = (
+/obj/structure/curtain,
+/obj/machinery/shower{
+ pixel_y = 15
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/ruin/lavaland/factory/adminstrative)
+"RC" = (
+/obj/effect/turf_decal/siding/white,
+/obj/item/ammo_box/magazine/m10mm{
+ start_empty = 1
+ },
+/obj/item/ammo_casing/c10mm{
+ icon_state = "pistol-steel-empty";
+ projectile_type = null
+ },
+/obj/item/ammo_casing/c10mm{
+ icon_state = "pistol-steel-empty";
+ projectile_type = null
+ },
+/obj/item/ammo_casing/c10mm{
+ icon_state = "pistol-steel-empty";
+ projectile_type = null
+ },
+/obj/item/ammo_casing/c10mm{
+ icon_state = "pistol-steel-empty";
+ projectile_type = null
+ },
+/obj/item/ammo_casing/c10mm{
+ icon_state = "pistol-steel-empty";
+ projectile_type = null
+ },
+/turf/open/floor/concrete/pavement/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"RF" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 10
+ },
+/obj/effect/turf_decal/siding/wood,
+/obj/machinery/light/directional/south,
+/obj/structure/chair/sofa/brown/corpo/left{
+ dir = 1
+ },
+/turf/open/floor/wood,
+/area/ruin/lavaland/factory/manager_office)
+"RI" = (
+/obj/item/stack/sheet/metal,
+/obj/structure/railing,
+/turf/open/floor/plating,
+/area/overmap_encounter/planetoid/cave/explored)
+"RK" = (
+/obj/effect/turf_decal/industrial/warning{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/ammo_casing/c45{
+ icon_state = "pistol-steel-empty";
+ projectile_type = null
+ },
+/turf/open/floor/plasteel/dark/lava,
+/area/overmap_encounter/planetoid/cave/explored)
+"RO" = (
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/plasteel/dark/lava,
+/area/overmap_encounter/planetoid/cave/explored)
+"RU" = (
+/obj/effect/decal/cleanable/robot_debris/old,
+/obj/item/assembly/prox_sensor,
+/obj/item/bot_assembly/ed209,
+/turf/open/floor/circuit/red,
+/area/ruin/lavaland/factory/manager_office)
+"RZ" = (
+/obj/machinery/shower{
+ dir = 4
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/ruin/lavaland/factory/dorms)
+"Sa" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/stack/ore/salvage/scrapmetal,
+/turf/open/floor/plasteel/dark/lava,
+/area/overmap_encounter/planetoid/cave/explored)
+"Sd" = (
+/obj/structure/lattice,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/overmap_encounter/planetoid/lava/explored)
+"Sm" = (
+/obj/structure/chair/greyscale{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/white,
+/area/ruin/lavaland/factory/dorms)
+"Sn" = (
+/obj/item/stock_parts/matter_bin,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark/lava,
+/area/overmap_encounter/planetoid/cave/explored)
+"Sq" = (
+/obj/effect/turf_decal/corner/opaque/red{
+ dir = 10
+ },
+/obj/machinery/light/directional/south,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/white,
+/area/ruin/lavaland/factory/adminstrative)
+"Su" = (
+/obj/effect/turf_decal/trimline/opaque/beige/corner{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/generic,
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/warehouse)
+"Sx" = (
+/turf/open/floor/concrete/pavement/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"SC" = (
+/obj/effect/turf_decal/trimline/opaque/beige/line{
+ dir = 6
+ },
+/obj/machinery/door/airlock/mining{
+ dir = 4;
+ name = "Warehouse"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/warehouse)
+"SE" = (
+/obj/effect/turf_decal/trimline/opaque/lime/warning{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/dorms)
+"SK" = (
+/obj/effect/turf_decal/corner/opaque/lime{
+ dir = 5
+ },
+/obj/structure/closet/crate/bin,
+/obj/effect/turf_decal/corner/opaque/lime{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/ruin/lavaland/factory/adminstrative)
+"SL" = (
+/turf/closed/indestructible/reinforced,
+/area/ruin/lavaland/factory/manager_office)
+"SP" = (
+/obj/item/stack/ore/salvage/scrapmetal,
+/turf/open/floor/plating/moss,
+/area/overmap_encounter/planetoid/cave/explored)
+"SQ" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/machinery/light/directional/north,
+/turf/open/floor/wood,
+/area/ruin/lavaland/factory/adminstrative)
+"SR" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin{
+ pixel_x = 5
+ },
+/obj/item/pen/fountain/captain{
+ pixel_x = 5
+ },
+/obj/item/stamp/captain{
+ pixel_x = -8
+ },
+/turf/open/floor/carpet/blue,
+/area/ruin/lavaland/factory/manager_office)
+"SZ" = (
+/obj/structure/chair,
+/turf/open/floor/wood,
+/area/ruin/lavaland/factory/adminstrative)
+"Tc" = (
+/obj/effect/turf_decal/trimline/opaque/lime/line{
+ dir = 9
+ },
+/obj/machinery/door/airlock{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/dorms)
+"Tg" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"Th" = (
+/obj/structure/sink{
+ pixel_y = 10
+ },
+/obj/effect/turf_decal/trimline/opaque/lime/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/dorms)
+"Tj" = (
+/obj/effect/turf_decal/corner/opaque/ntblue{
+ dir = 9
+ },
+/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/effect/decal/cleanable/dirt,
+/obj/effect/mob_spawn/human/corpse/nanotrasensoldier,
+/obj/effect/gibspawner/human/bodypartless,
+/turf/open/floor/plasteel/white/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"Tn" = (
+/obj/item/ammo_casing/c45{
+ icon_state = "pistol-steel-empty";
+ projectile_type = null
+ },
+/obj/item/ammo_casing/c45{
+ icon_state = "pistol-steel-empty";
+ projectile_type = null
+ },
+/obj/item/ammo_casing/c45{
+ icon_state = "pistol-steel-empty";
+ projectile_type = null
+ },
+/obj/item/ammo_casing/c45{
+ icon_state = "pistol-steel-empty";
+ projectile_type = null
+ },
+/obj/item/ammo_casing/c45{
+ icon_state = "pistol-steel-empty";
+ projectile_type = null
+ },
+/turf/open/floor/plasteel/mono,
+/area/ruin/lavaland/factory/warehouse)
+"Tt" = (
+/obj/machinery/door/airlock/security/glass,
+/obj/machinery/door/poddoor/shutters{
+ id = "sec"
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/adminstrative)
+"Tx" = (
+/obj/machinery/door/airlock/command/glass,
+/obj/machinery/door/poddoor/shutters{
+ id = "foreman"
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/manager_office)
+"TC" = (
+/obj/effect/turf_decal/box/corners{
+ dir = 1
+ },
+/obj/item/rack_parts,
+/turf/open/floor/plasteel/mono,
+/area/ruin/lavaland/factory/warehouse)
+"TG" = (
+/obj/structure/falsewall/reinforced,
+/turf/open/floor/plating,
+/area/ruin/lavaland/factory/warehouse)
+"TI" = (
+/obj/effect/turf_decal/trimline/opaque/lime/corner{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/blood/gibs/down,
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/dorms)
+"TP" = (
+/obj/structure/railing,
+/obj/effect/turf_decal/industrial/warning,
+/mob/living/simple_animal/hostile/human/syndicate/ranged/smg/space,
+/turf/open/floor/plasteel/dark/lava,
+/area/overmap_encounter/planetoid/cave/explored)
+"TS" = (
+/obj/effect/decal/cleanable/blood{
+ icon_state = "trails_2";
+ dir = 4
+ },
+/turf/open/floor/plating/rust/lava,
+/area/overmap_encounter/planetoid/cave/explored)
+"TZ" = (
+/obj/effect/turf_decal/trimline/opaque/beige/warning{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/industrial/warning,
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/warehouse)
+"Uf" = (
+/obj/effect/turf_decal/trimline/opaque/lime/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/dorms)
+"Uh" = (
+/obj/machinery/door/poddoor/shutters{
+ id = "warehouse"
+ },
+/turf/open/floor/plasteel,
+/area/ruin/lavaland/factory/warehouse)
+"Ui" = (
+/obj/structure/flora/ausbushes/fullgrass/hell,
+/turf/open/floor/plating/grass/lava/purple,
+/area/overmap_encounter/planetoid/lava/explored)
+"Uj" = (
+/obj/effect/turf_decal/corner/opaque/red/border{
+ dir = 8
+ },
+/obj/machinery/light/dim/directional/west,
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/adminstrative)
+"Up" = (
+/obj/effect/turf_decal/corner/opaque/ntblue{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/white/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"Ut" = (
+/obj/structure/closet/secure_closet/quartermaster{
+ populate = 0
+ },
+/obj/machinery/light/dim/directional/north,
+/obj/item/clipboard,
+/obj/item/storage/box/shipping,
+/obj/item/clothing/suit/space/hardsuit/mining/heavy,
+/obj/item/gun/energy/e_gun/mini,
+/obj/item/stock_parts/cell/gun/mini,
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/manager_office)
+"Uu" = (
+/obj/structure/flora/ausbushes/sparsegrass/hell,
+/turf/open/floor/plating/grass/lava/orange,
+/area/overmap_encounter/planetoid/lava/explored)
+"Uz" = (
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
+ },
+/turf/open/floor/concrete/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"UC" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/white/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"UF" = (
+/obj/effect/mapping_helpers/airlock/locked,
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/patterned,
+/area/ruin/lavaland/factory/warehouse)
+"UG" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 6
+ },
+/obj/machinery/suit_storage_unit/open,
+/turf/open/floor/wood,
+/area/ruin/lavaland/factory/adminstrative)
+"UJ" = (
+/obj/item/bedsheet/qm{
+ dir = 4
+ },
+/obj/structure/bed{
+ dir = 1
+ },
+/obj/item/toy/plush/kari,
+/turf/open/floor/carpet/blue,
+/area/ruin/lavaland/factory/adminstrative)
+"UO" = (
+/obj/structure/table_frame,
+/turf/open/floor/plating/lava,
+/area/overmap_encounter/planetoid/cave/explored)
+"US" = (
+/obj/structure/sign/warning/securearea,
+/turf/closed/wall/concrete,
+/area/overmap_encounter/planetoid/lava/explored)
+"UX" = (
+/turf/open/floor/plasteel/stairs{
+ dir = 1
+ },
+/area/ruin/lavaland/factory/adminstrative)
+"UY" = (
+/obj/effect/turf_decal/corner/opaque/red{
+ dir = 10
+ },
+/turf/open/floor/plasteel/white,
+/area/ruin/lavaland/factory/adminstrative)
+"Va" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark/lava,
+/area/overmap_encounter/planetoid/cave/explored)
+"Ve" = (
+/obj/effect/turf_decal/trimline/opaque/ntblue/warning{
+ dir = 4
+ },
+/mob/living/simple_animal/hostile/viscerator,
+/turf/open/floor/plasteel/mono/white,
+/area/ruin/lavaland/factory/lobby)
+"Vn" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile/shuttle,
+/turf/open/floor/plating,
+/area/ruin/lavaland/factory/manager_office)
+"Vp" = (
+/obj/item/stack/sheet/metal,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/dark/lava,
+/area/overmap_encounter/planetoid/cave/explored)
+"Vw" = (
+/turf/open/floor/wood,
+/area/ruin/lavaland/factory/manager_office)
+"VA" = (
+/obj/structure/flora/ausbushes/fullgrass/hell,
+/turf/open/floor/plating/moss,
+/area/overmap_encounter/planetoid/lava/explored)
+"VC" = (
+/obj/item/stack/ore/salvage/scrapmetal{
+ pixel_x = -15;
+ pixel_y = -10
+ },
+/obj/effect/decal/cleanable/blood/drip,
+/turf/open/floor/plating/rust/lava,
+/area/overmap_encounter/planetoid/cave/explored)
+"VD" = (
+/obj/effect/turf_decal/trimline/opaque/lime/warning{
+ dir = 1
+ },
+/obj/effect/mob_spawn/human/corpse/assistant,
+/obj/item/stack/sheet/metal,
+/obj/item/stack/rods,
+/obj/item/stack/rods,
+/obj/effect/decal/cleanable/generic,
+/obj/effect/decal/cleanable/blood{
+ icon_state = "bubblegumfoot"
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/dorms)
+"VI" = (
+/obj/structure/girder/reinforced,
+/turf/open/floor/concrete/pavement/lava,
+/area/overmap_encounter/planetoid/cave/explored)
+"VK" = (
+/obj/effect/turf_decal/trimline/opaque/lime/warning{
+ dir = 4
+ },
+/obj/machinery/light/directional/east,
+/obj/effect/decal/cleanable/blood/footprints{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/blood{
+ icon_state = "drip4"
+ },
+/obj/effect/decal/cleanable/blood{
+ icon_state = "gibmid2"
+ },
+/obj/effect/decal/cleanable/blood{
+ icon_state = "trails_2";
+ dir = 2
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/dorms)
+"VL" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/gun/ballistic/automatic/pistol/commander/no_mag,
+/turf/open/floor/plasteel/white/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"VN" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/mob/living/simple_animal/hostile/human/syndicate/ranged/shotgun/space/stormtrooper,
+/turf/open/floor/plasteel/white,
+/area/ruin/lavaland/factory/adminstrative)
+"VO" = (
+/obj/effect/turf_decal/siding/white,
+/turf/open/floor/concrete/pavement/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"VV" = (
+/obj/effect/turf_decal/corner/opaque/ntblue{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/white/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"VX" = (
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/turf_decal/industrial/stand_clear{
+ dir = 4
+ },
+/turf/open/floor/concrete/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"VY" = (
+/obj/item/chair{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/toy/cards/singlecard{
+ icon_state = "syndicate_hand4"
+ },
+/turf/open/floor/plasteel/white,
+/area/ruin/lavaland/factory/dorms)
+"Wa" = (
+/obj/structure/flora/ausbushes/genericbush/hell,
+/turf/open/floor/plating/grass/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"We" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/table/reinforced,
+/obj/item/radio/intercom/table{
+ dir = 4;
+ pixel_x = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/manager_office)
+"Wh" = (
+/obj/effect/decal/cleanable/plastic,
+/turf/open/floor/plating/lava,
+/area/overmap_encounter/planetoid/cave/explored)
+"Wx" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 5
+ },
+/turf/open/floor/wood,
+/area/ruin/lavaland/factory/manager_office)
+"WI" = (
+/obj/effect/decal/cleanable/plastic,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/overmap_encounter/planetoid/lava/explored)
+"WQ" = (
+/obj/structure/flora/tree/dead/hell,
+/turf/open/floor/plating/grass/lava/purple,
+/area/overmap_encounter/planetoid/lava/explored)
+"WR" = (
+/obj/effect/turf_decal/siding/white/corner{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/plastic,
+/turf/open/floor/concrete/pavement/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"WX" = (
+/obj/structure/flora/ausbushes/genericbush/hell,
+/turf/open/floor/plating/asteroid/purple/lit,
+/area/overmap_encounter/planetoid/lava/explored)
+"WZ" = (
+/obj/effect/turf_decal/trimline/opaque/lime/warning,
+/obj/effect/decal/cleanable/blood{
+ icon_state = "trails_2";
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/dorms)
+"Xc" = (
+/obj/structure/sign/poster/official/cleanliness,
+/turf/closed/wall/mineral/titanium,
+/area/ruin/lavaland/factory/dorms)
+"Xh" = (
+/obj/effect/turf_decal/corner/opaque/bar{
+ dir = 1
+ },
+/obj/effect/turf_decal/corner/opaque/bar,
+/obj/structure/closet/crate/bin,
+/obj/machinery/light/directional/west,
+/obj/effect/spawner/lootdrop/waste/trash,
+/obj/effect/spawner/lootdrop/waste/trash,
+/obj/effect/spawner/lootdrop/waste/trash,
+/turf/open/floor/plasteel,
+/area/ruin/lavaland/factory/dorms)
+"Xn" = (
+/turf/open/floor/plating/grass/lava/orange,
+/area/overmap_encounter/planetoid/lava/explored)
+"Xp" = (
+/obj/machinery/computer/secure_data,
+/turf/open/floor/carpet/nanoweave/red,
+/area/ruin/lavaland/factory/adminstrative)
+"Xv" = (
+/obj/structure/salvageable/machine,
+/turf/open/floor/plasteel/dark/lava,
+/area/overmap_encounter/planetoid/cave/explored)
+"XA" = (
+/obj/machinery/computer/security/telescreen/entertainment,
+/turf/closed/wall/mineral/titanium,
+/area/ruin/lavaland/factory/adminstrative)
+"XB" = (
+/obj/structure/table_frame,
+/obj/effect/decal/cleanable/plastic,
+/turf/open/floor/plating/lava,
+/area/overmap_encounter/planetoid/cave/explored)
+"XF" = (
+/obj/effect/turf_decal/trimline/opaque/ntblue/warning,
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/machinery/power/apc/auto_name/directional/north,
+/turf/open/floor/plasteel/mono/white,
+/area/ruin/lavaland/factory/lobby)
+"XM" = (
+/obj/machinery/newscaster/directional/west,
+/obj/structure/noticeboard/staff{
+ dir = 1;
+ pixel_y = -26
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/white,
+/area/ruin/lavaland/factory/dorms)
+"XR" = (
+/obj/machinery/light/floor,
+/obj/effect/turf_decal/siding/white{
+ dir = 5
+ },
+/turf/open/floor/concrete/pavement/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"XT" = (
+/obj/effect/decal/cleanable/oil/slippery,
+/obj/item/rack_parts,
+/obj/item/clothing/mask/gas/explorer,
+/turf/open/floor/plasteel/mono,
+/area/ruin/lavaland/factory/warehouse)
+"XU" = (
+/obj/item/ammo_casing/c10mm{
+ icon_state = "pistol-steel-empty";
+ projectile_type = null
+ },
+/turf/open/floor/plating/moss,
+/area/overmap_encounter/planetoid/cave/explored)
+"Yl" = (
+/obj/effect/mob_spawn/human/corpse/syndicatesoldier,
+/obj/effect/decal/cleanable/blood/old,
+/obj/effect/turf_decal/siding/white,
+/obj/item/ammo_box/magazine/m10mm{
+ start_empty = 1
+ },
+/turf/open/floor/concrete/pavement/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"Yo" = (
+/obj/machinery/light/directional/west,
+/obj/item/chair,
+/turf/open/floor/plasteel/white,
+/area/ruin/lavaland/factory/dorms)
+"Yp" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 5
+ },
+/obj/item/ammo_casing/c9mm{
+ icon_state = "pistol-brass-empty";
+ projectile_type = null
+ },
+/turf/open/floor/concrete/pavement/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"Yr" = (
+/obj/effect/turf_decal/trimline/opaque/beige/arrow_cw{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark/lava,
+/area/overmap_encounter/planetoid/cave/explored)
+"Yw" = (
+/obj/effect/turf_decal/trimline/opaque/lime/warning{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/generic,
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/dorms)
+"Yy" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 5
+ },
+/turf/open/floor/wood,
+/area/ruin/lavaland/factory/adminstrative)
+"Yz" = (
+/obj/item/broken_bottle,
+/obj/effect/decal/cleanable/oil,
+/turf/open/floor/plasteel/white,
+/area/ruin/lavaland/factory/dorms)
+"YG" = (
+/obj/effect/turf_decal/trimline/opaque/lime/warning{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/dorms)
+"YH" = (
+/obj/structure/chair/greyscale{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/ruin/lavaland/factory/dorms)
+"YI" = (
+/obj/structure/flora/ausbushes/hell,
+/turf/open/floor/plating/grass/lava/purple,
+/area/overmap_encounter/planetoid/lava/explored)
+"YJ" = (
+/obj/structure/bed,
+/obj/item/bedsheet/dorms,
+/obj/structure/curtain/cloth,
+/obj/effect/turf_decal/corner/opaque/ntblue,
+/obj/effect/turf_decal/corner/opaque/ntblue{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/ruin/lavaland/factory/dorms)
+"YK" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/structure/dresser,
+/obj/item/clothing/accessory/medal/gold/captain{
+ pixel_x = -8;
+ pixel_y = 5
+ },
+/obj/item/clothing/accessory/medal/gold/heroism{
+ pixel_y = 5
+ },
+/obj/item/clothing/accessory/medal/bronze_heart{
+ pixel_y = 5;
+ pixel_x = 10
+ },
+/obj/structure/sign/poster/official/enlist{
+ pixel_y = 32
+ },
+/turf/open/floor/wood,
+/area/ruin/lavaland/factory/adminstrative)
+"YU" = (
+/obj/item/ammo_casing/c45{
+ icon_state = "pistol-steel-empty";
+ projectile_type = null
+ },
+/turf/open/floor/plating/rust/lava,
+/area/overmap_encounter/planetoid/cave/explored)
+"Za" = (
+/obj/effect/turf_decal/trimline/opaque/beige/warning,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/warehouse)
+"Zc" = (
+/turf/closed/wall/mineral/titanium,
+/area/ruin/lavaland/factory/adminstrative)
+"Zd" = (
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 1
+ },
+/turf/open/floor/wood,
+/area/ruin/lavaland/factory/adminstrative)
+"Zg" = (
+/obj/effect/decal/cleanable/blood/footprints{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/glass,
+/obj/effect/turf_decal/trimline/opaque/beige/arrow_cw{
+ dir = 6
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark/lava,
+/area/overmap_encounter/planetoid/cave/explored)
+"Zn" = (
+/obj/machinery/computer/security{
+ dir = 1
+ },
+/turf/open/floor/carpet/nanoweave/red,
+/area/ruin/lavaland/factory/adminstrative)
+"Zp" = (
+/obj/machinery/door/airlock/glass_large,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/white,
+/area/ruin/lavaland/factory/lobby)
+"Zq" = (
+/obj/effect/turf_decal/trimline/opaque/lime/line{
+ dir = 10
+ },
+/obj/machinery/door/airlock{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/lavaland/factory/dorms)
+"Zt" = (
+/obj/machinery/light/built/directional/west,
+/obj/item/light/tube/broken,
+/turf/open/floor/mech_bay_recharge_floor,
+/area/ruin/lavaland/factory/warehouse)
+"Zx" = (
+/obj/effect/decal/cleanable/generic,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/overmap_encounter/planetoid/lava/explored)
+"ZD" = (
+/obj/structure/flora/ash/stem_shroom,
+/turf/open/floor/plating/moss,
+/area/overmap_encounter/planetoid/cave/explored)
+"ZH" = (
+/obj/structure/table/wood,
+/obj/item/storage/fancy/cigarettes/cigars,
+/obj/item/lighter{
+ pixel_y = 7;
+ pixel_x = 4
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/ruin/lavaland/factory/manager_office)
+"ZL" = (
+/turf/closed/wall/r_wall/rust,
+/area/overmap_encounter/planetoid/cave/explored)
+"ZN" = (
+/obj/machinery/door/poddoor/shutters{
+ id = "foreman"
+ },
+/turf/open/floor/plasteel/dark,
+/area/overmap_encounter/planetoid/cave/explored)
+"ZO" = (
+/obj/item/radio,
+/turf/open/floor/plating/moss,
+/area/overmap_encounter/planetoid/lava/explored)
+"ZS" = (
+/turf/closed/wall/r_wall,
+/area/overmap_encounter/planetoid/cave/explored)
+"ZT" = (
+/obj/machinery/light/floor,
+/obj/effect/turf_decal/siding/white{
+ dir = 10
+ },
+/turf/open/floor/concrete/pavement/lava,
+/area/overmap_encounter/planetoid/lava/explored)
+"ZU" = (
+/obj/item/trash/pistachios,
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/plasteel/tech,
+/area/ruin/lavaland/factory/warehouse)
+
+(1,1,1) = {"
+fE
+fE
+fE
+fE
+fE
+fE
+fE
+fE
+fE
+fE
+fE
+fE
+fE
+fE
+fE
+fE
+fE
+fE
+fE
+fE
+fE
+fE
+fE
+fE
+fE
+fE
+fE
+fE
+fE
+fE
+fE
+US
+GO
+GO
+GO
+GO
+GO
+GO
+GO
+GO
+GO
+US
+fE
+fE
+fE
+fE
+fE
+fE
+fE
+fE
+fE
+fE
+"}
+(2,1,1) = {"
+fE
+fE
+fE
+fE
+fE
+fE
+fE
+fE
+fE
+fE
+fE
+fE
+fE
+fE
+fE
+ns
+Xn
+Xn
+fE
+Xn
+fE
+fE
+fE
+fE
+fE
+fE
+fE
+fE
+fE
+fE
+fE
+An
+hJ
+iE
+iE
+tT
+yF
+tT
+iE
+iE
+IJ
+An
+fE
+fE
+fE
+fE
+fE
+fE
+fE
+fE
+fE
+fE
+"}
+(3,1,1) = {"
+fE
+fE
+fE
+fE
+fE
+fE
+fE
+fE
+fE
+fE
+fE
+fE
+MH
+MH
+MH
+Xn
+Xn
+Xn
+Xn
+ns
+GT
+Xn
+Xn
+Xn
+Cu
+Xn
+Xn
+iW
+tV
+tV
+fE
+An
+tg
+In
+In
+In
+In
+In
+In
+In
+fq
+An
+fE
+fE
+fE
+fE
+fE
+fE
+fE
+fE
+fE
+fE
+"}
+(4,1,1) = {"
+fE
+fE
+fE
+fE
+fE
+fE
+fE
+fE
+fE
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+FC
+kO
+Xn
+gg
+Xn
+Xn
+tR
+Xn
+Xn
+Xn
+Xn
+Ui
+hY
+Ui
+tV
+An
+AE
+In
+In
+In
+In
+In
+In
+In
+sp
+An
+xi
+vx
+xi
+fE
+fE
+fE
+fE
+fE
+fE
+fE
+"}
+(5,1,1) = {"
+fE
+fE
+fE
+fE
+fE
+fE
+fE
+fE
+MH
+MH
+MH
+MH
+MH
+Zc
+Zc
+Zc
+Zc
+Zc
+Zc
+Zc
+Zc
+Zc
+Zc
+Zc
+LI
+ns
+Xn
+FC
+rB
+tV
+wi
+An
+AE
+In
+In
+In
+In
+In
+In
+In
+sp
+An
+GJ
+xi
+GW
+xi
+xi
+fE
+fE
+fE
+fE
+fE
+"}
+(6,1,1) = {"
+fE
+fE
+fE
+fE
+fE
+fE
+fE
+MH
+MH
+MH
+MH
+MH
+Zc
+Zc
+oO
+zf
+Zc
+UJ
+zs
+ei
+mM
+Zc
+jG
+Zc
+Zc
+hY
+Xn
+Xn
+tV
+Ne
+Ui
+An
+tg
+In
+In
+In
+In
+In
+In
+In
+fq
+An
+GJ
+Wa
+GJ
+xi
+ip
+fE
+fE
+fE
+fE
+fE
+"}
+(7,1,1) = {"
+fE
+fE
+fE
+fE
+fE
+fE
+fE
+MH
+MH
+MH
+MH
+MH
+Zc
+fg
+Zd
+rj
+Zc
+SQ
+nV
+Fx
+Hp
+us
+kB
+dl
+Zc
+kO
+Xn
+wi
+Qw
+hY
+Ui
+pt
+Nj
+Uz
+Uz
+VX
+Gy
+VX
+Uz
+Uz
+kY
+An
+jm
+GJ
+GW
+xi
+zg
+xi
+fE
+fE
+fE
+fE
+"}
+(8,1,1) = {"
+fE
+fE
+fE
+fE
+fE
+fE
+MH
+MH
+MH
+MH
+Zc
+Zc
+Zc
+qS
+nV
+Rn
+Zc
+HJ
+Bh
+Ox
+Zc
+Zc
+Zc
+Zc
+Zc
+Zc
+Zc
+Zc
+Zc
+tV
+Ui
+US
+GO
+av
+GO
+GO
+GO
+GO
+GO
+GO
+GO
+US
+GW
+GJ
+GW
+xi
+pw
+xi
+fE
+fE
+fE
+fE
+"}
+(9,1,1) = {"
+fE
+fE
+fE
+fE
+fE
+MH
+MH
+MH
+MH
+MH
+Zc
+RA
+Zc
+YK
+Fx
+UG
+Zc
+Zc
+uV
+Zc
+Zc
+SK
+Df
+lB
+Zc
+sQ
+jf
+EC
+Zc
+tV
+rB
+tV
+pV
+Ba
+nK
+GJ
+xi
+dS
+ip
+xi
+xi
+xi
+xi
+xb
+GW
+dS
+xi
+NM
+fE
+fE
+fE
+fE
+"}
+(10,1,1) = {"
+fE
+fE
+fE
+fE
+MH
+MH
+MH
+MH
+MH
+MH
+Zc
+cx
+us
+Yy
+Hp
+UX
+CP
+eG
+gG
+QK
+mG
+bh
+IX
+uJ
+IQ
+pI
+Ac
+Fv
+Zc
+Ui
+tV
+tV
+VO
+nD
+nK
+kD
+iP
+iP
+iP
+iP
+iP
+iP
+iP
+iP
+NM
+NM
+NM
+NM
+fE
+fE
+fE
+fE
+"}
+(11,1,1) = {"
+fE
+fE
+fE
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+Zc
+nk
+Zc
+Zc
+Zc
+Zc
+Zc
+lj
+ey
+bx
+Zc
+lw
+IX
+Sq
+Zc
+lf
+jx
+ex
+Zc
+Ui
+tV
+YI
+VO
+nD
+nK
+iP
+yw
+TZ
+Zt
+Qh
+mk
+xC
+hw
+iP
+iP
+WX
+NM
+cU
+fE
+fE
+fE
+fE
+"}
+(12,1,1) = {"
+fE
+fE
+fE
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+Zc
+Zc
+Zc
+gO
+kv
+ax
+DE
+fm
+ax
+ax
+Zc
+ts
+VN
+UY
+Zc
+Zc
+Zc
+Zc
+Zc
+cL
+tV
+Ui
+VO
+nD
+nK
+iP
+dH
+jz
+xB
+Jd
+dA
+LE
+JQ
+HK
+iP
+La
+NM
+La
+La
+OE
+fE
+fE
+"}
+(13,1,1) = {"
+fE
+fE
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+LZ
+Zc
+Zc
+yU
+QM
+nV
+SZ
+ae
+el
+Zc
+iU
+zj
+xY
+Zc
+FY
+Uj
+Pv
+Zc
+WQ
+tV
+tV
+VO
+Jt
+qm
+Uh
+sv
+Rv
+nG
+vH
+ca
+TC
+qu
+lc
+iP
+OE
+NM
+NM
+mT
+OE
+fE
+fE
+"}
+(14,1,1) = {"
+fE
+fE
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+LZ
+LZ
+LZ
+LZ
+Zc
+Zc
+Zc
+XA
+SZ
+cm
+el
+Zc
+Pb
+LW
+xw
+Tt
+Bd
+Ac
+oc
+Zc
+rB
+tV
+tV
+VO
+Jt
+KK
+Uh
+eO
+PK
+Tn
+jk
+ca
+kV
+zl
+Dt
+iP
+La
+ly
+uc
+OE
+La
+fE
+fE
+"}
+(15,1,1) = {"
+fE
+fE
+MH
+MH
+MH
+MH
+MH
+LZ
+LZ
+LZ
+LZ
+LZ
+LZ
+LZ
+LZ
+LZ
+Zc
+Zc
+Zc
+Zc
+Zc
+ju
+IX
+mQ
+Zc
+Xp
+nT
+Zn
+Zc
+hY
+tV
+tV
+VO
+Jt
+KK
+Uh
+eW
+Jk
+Ho
+AB
+Fm
+XT
+LF
+EW
+iP
+QR
+NM
+OE
+NM
+La
+fE
+fE
+"}
+(16,1,1) = {"
+fE
+MH
+MH
+MH
+MH
+MH
+LZ
+LZ
+LZ
+LZ
+LZ
+LZ
+LZ
+LZ
+LZ
+gL
+LZ
+LZ
+Zc
+sT
+DT
+Ee
+Ha
+UY
+Zc
+OO
+BA
+OO
+Zc
+jQ
+Ui
+Ui
+VO
+nD
+qm
+Uh
+LK
+ch
+Bs
+AB
+bl
+jV
+zQ
+cz
+iP
+NM
+NM
+NM
+NM
+yP
+fE
+fE
+"}
+(17,1,1) = {"
+MH
+MH
+MH
+MH
+MH
+MH
+LZ
+LZ
+LZ
+LZ
+LZ
+LZ
+LZ
+yQ
+yQ
+yQ
+yQ
+yQ
+yQ
+pp
+Zc
+Pb
+se
+pn
+zD
+cy
+sD
+LX
+bi
+jQ
+jQ
+Qw
+VO
+nD
+nK
+iP
+AC
+hy
+cD
+kj
+Su
+Pt
+Pt
+Pt
+iP
+mT
+xb
+NM
+NM
+OE
+fE
+fE
+"}
+(18,1,1) = {"
+fE
+MH
+MH
+MH
+MH
+MH
+LZ
+LZ
+LZ
+LZ
+Vn
+Vn
+yQ
+yQ
+GS
+ZH
+DB
+RF
+yQ
+Zc
+Zc
+Zc
+as
+Zc
+Zc
+ku
+go
+dL
+Mb
+ME
+jQ
+jQ
+Yl
+Jt
+nK
+iP
+GL
+dH
+HK
+wk
+jr
+HK
+eU
+MC
+iP
+iP
+iP
+NM
+NM
+NM
+Xn
+Xn
+"}
+(19,1,1) = {"
+fE
+MH
+MH
+MH
+MH
+MH
+LZ
+LZ
+LZ
+Vn
+Vn
+LP
+mn
+Ck
+Wx
+ve
+Vw
+rh
+yQ
+Qc
+Qc
+LR
+sV
+cR
+KX
+Lq
+aA
+yi
+yi
+Ve
+Pf
+jQ
+nL
+Jt
+Ph
+iP
+HS
+uL
+Kc
+jk
+Za
+xz
+Ho
+vB
+iP
+Ij
+iP
+iP
+Xn
+NM
+Xn
+kO
+"}
+(20,1,1) = {"
+fE
+MH
+MH
+MH
+aL
+gL
+gL
+LZ
+LZ
+Vn
+aM
+LP
+By
+Oc
+LP
+Wx
+LL
+MY
+yQ
+gj
+Qc
+LR
+sV
+LR
+KX
+XF
+ud
+LS
+NG
+Gc
+Gc
+Zp
+HL
+Ba
+nK
+iP
+Or
+Rv
+rV
+cZ
+pX
+Ho
+Ho
+tq
+iP
+TG
+iP
+iP
+iP
+kO
+Xn
+Xn
+"}
+(21,1,1) = {"
+MH
+MH
+MH
+ZO
+tj
+gL
+LZ
+LZ
+LZ
+Vn
+yq
+LP
+vP
+bz
+fB
+fB
+fB
+fB
+po
+yY
+cX
+hm
+pc
+Qc
+KX
+nm
+hf
+fr
+nH
+Om
+Om
+Km
+VO
+nD
+nK
+iP
+Ho
+Ho
+ML
+jk
+yo
+rI
+uH
+sG
+iP
+ZU
+bE
+xj
+iP
+iP
+Uu
+Xn
+"}
+(22,1,1) = {"
+fE
+MH
+MH
+MH
+MH
+MH
+LZ
+LZ
+LZ
+Vn
+Al
+LP
+wR
+SR
+LP
+vE
+DB
+Cc
+KX
+Gn
+hv
+JO
+ty
+ia
+KX
+hh
+HO
+HO
+HO
+HO
+aE
+jQ
+RC
+nD
+nK
+iP
+Eg
+Ho
+jJ
+If
+md
+gs
+Ho
+vv
+iP
+eE
+Fs
+qP
+zx
+iP
+Cu
+Xn
+"}
+(23,1,1) = {"
+MH
+MH
+MH
+MH
+MH
+MH
+LZ
+LZ
+LZ
+Vn
+Vn
+LP
+jW
+zk
+vE
+EU
+Vw
+Id
+KX
+PR
+KX
+PR
+KX
+PR
+KX
+kJ
+Lv
+vy
+Jc
+gt
+jQ
+jQ
+gI
+Jt
+nK
+iP
+iP
+pq
+pL
+mv
+II
+Pt
+hy
+hy
+tm
+GE
+Gp
+Pg
+Be
+iP
+Uu
+Xn
+"}
+(24,1,1) = {"
+fE
+MH
+MH
+MH
+MH
+gL
+LZ
+LZ
+LZ
+LZ
+Vn
+Vn
+yQ
+yQ
+ab
+vQ
+LL
+Kg
+KX
+Gw
+KX
+Gw
+KX
+RU
+KX
+JM
+sn
+ii
+ap
+jQ
+jQ
+GR
+Lb
+UC
+eR
+Ro
+iP
+iP
+IO
+ux
+oL
+NA
+vC
+yG
+UF
+cE
+fc
+AP
+Ev
+iP
+Xn
+Xn
+"}
+(25,1,1) = {"
+fE
+MH
+MH
+MH
+MH
+ui
+LZ
+LZ
+LZ
+LZ
+LZ
+LZ
+LZ
+yQ
+yQ
+yQ
+yQ
+yQ
+KX
+KX
+KX
+KX
+KX
+KX
+KX
+jQ
+jQ
+jQ
+jQ
+jQ
+cu
+os
+mU
+pH
+Up
+XR
+Ro
+iP
+iP
+yK
+SC
+iP
+iP
+iP
+iP
+iP
+iP
+iP
+iP
+iP
+Xn
+tR
+"}
+(26,1,1) = {"
+fE
+MH
+MH
+MH
+MH
+LZ
+LZ
+LZ
+LZ
+LZ
+LZ
+LZ
+LZ
+LZ
+LZ
+LZ
+LZ
+LZ
+LZ
+LZ
+LZ
+bs
+jP
+sU
+sU
+sU
+sU
+sU
+sU
+sU
+Lb
+pb
+pb
+Ci
+VL
+gT
+Yp
+io
+sU
+om
+ft
+sU
+sU
+sU
+sU
+sU
+Zx
+sU
+sU
+GT
+gg
+Xn
+"}
+(27,1,1) = {"
+fE
+fE
+MH
+MH
+MH
+MH
+LZ
+LZ
+LZ
+LZ
+LZ
+LZ
+LZ
+LZ
+LZ
+LZ
+LZ
+LZ
+su
+LZ
+LZ
+Bo
+Bv
+nv
+Tg
+nv
+Tg
+Fk
+nv
+nv
+hT
+hT
+Me
+Tj
+VV
+hT
+hT
+jC
+vN
+Nr
+Fw
+Tg
+gJ
+Tg
+lo
+Tg
+Tg
+dk
+ji
+ns
+ns
+Xn
+"}
+(28,1,1) = {"
+fE
+MH
+MH
+MH
+MH
+MH
+gL
+LZ
+LZ
+LZ
+LZ
+LZ
+LZ
+LZ
+LZ
+wl
+LZ
+su
+MH
+MH
+MH
+bs
+ti
+Il
+Il
+qH
+Il
+jb
+qH
+Il
+xZ
+pb
+nO
+eH
+Up
+Qa
+tu
+Il
+CX
+OG
+td
+vG
+Sx
+Il
+kT
+Il
+Il
+Zx
+qV
+ns
+ns
+Xn
+"}
+(29,1,1) = {"
+fE
+fE
+MH
+MH
+MH
+MH
+MH
+LZ
+LZ
+LZ
+LZ
+LZ
+LZ
+LZ
+LZ
+gL
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+sZ
+sZ
+Tc
+Zq
+sZ
+sZ
+WR
+ZT
+cO
+UC
+pb
+wM
+DY
+ZS
+ZS
+dm
+El
+ZS
+ZS
+ZS
+ZS
+ZS
+ZS
+hZ
+bd
+Xn
+tR
+Xn
+"}
+(30,1,1) = {"
+fE
+fE
+MH
+MH
+MH
+MH
+MH
+LZ
+LZ
+LZ
+LZ
+LZ
+LZ
+LZ
+LZ
+MH
+MH
+sZ
+sZ
+sZ
+sZ
+sZ
+MH
+sZ
+sZ
+Xh
+dY
+MZ
+Yo
+sZ
+sZ
+mK
+xZ
+UC
+tu
+DY
+ZS
+ZS
+rF
+OS
+mY
+EQ
+CG
+th
+FH
+bn
+ZN
+nf
+bd
+bd
+kO
+Xn
+"}
+(31,1,1) = {"
+fE
+fE
+fE
+MH
+MH
+MH
+MH
+LZ
+LZ
+LZ
+LZ
+LZ
+LZ
+MH
+MH
+MH
+MH
+sZ
+DK
+RZ
+lq
+sZ
+sZ
+sZ
+MF
+oJ
+VD
+qn
+Yz
+YH
+sZ
+sZ
+VO
+Jt
+nK
+ZS
+ZS
+zJ
+Rj
+TS
+AT
+Sa
+Ou
+mi
+Va
+Wh
+ZN
+nf
+Oe
+Oe
+bd
+Xn
+"}
+(32,1,1) = {"
+fE
+fE
+MH
+MH
+MH
+MH
+MH
+LZ
+LZ
+LZ
+LZ
+LZ
+MH
+MH
+MH
+MH
+sZ
+sZ
+ac
+sZ
+ac
+sZ
+sZ
+nP
+PL
+PL
+dY
+zI
+Sm
+Br
+XM
+sZ
+VO
+qM
+GC
+aW
+Vp
+zC
+AG
+bH
+eI
+gc
+Mm
+hu
+RO
+wt
+ZN
+nf
+Sd
+WI
+Sd
+Sd
+"}
+(33,1,1) = {"
+fE
+fE
+MH
+MH
+MH
+MH
+gL
+LZ
+LZ
+LZ
+LZ
+LZ
+LZ
+LZ
+MH
+MH
+vj
+Th
+qo
+Pk
+yy
+vS
+en
+SE
+vS
+HA
+tN
+TI
+vS
+vS
+IG
+sZ
+VO
+oE
+Ph
+GK
+Va
+LB
+Dk
+ka
+QB
+RI
+tS
+Hs
+du
+SL
+uE
+wU
+wU
+SL
+Sd
+Zx
+"}
+(34,1,1) = {"
+fE
+fE
+MH
+MH
+MH
+MH
+gL
+VA
+LZ
+LZ
+LZ
+LZ
+LZ
+LZ
+MH
+MH
+vj
+jM
+Ek
+VK
+kz
+Op
+jE
+rO
+DP
+YG
+vp
+bQ
+YG
+DP
+Gj
+sZ
+VO
+Jt
+nK
+VI
+oh
+FZ
+UO
+Dk
+Ga
+TP
+qe
+Rd
+yX
+Tx
+bm
+so
+sf
+SL
+SL
+bd
+"}
+(35,1,1) = {"
+fE
+fE
+fE
+MH
+MH
+MH
+MH
+MH
+LZ
+LZ
+LZ
+LZ
+LZ
+LZ
+MH
+MH
+sZ
+Xc
+Re
+sZ
+uz
+sZ
+sZ
+iS
+oi
+PL
+dY
+sj
+PQ
+qs
+Kp
+sZ
+VO
+Jt
+nK
+ZL
+ce
+vw
+PH
+ev
+gu
+Fe
+qe
+NP
+CG
+SL
+Ut
+so
+ha
+Iz
+Pp
+bd
+"}
+(36,1,1) = {"
+fE
+fE
+fE
+MH
+MH
+MH
+MH
+LZ
+LZ
+LZ
+LZ
+LZ
+LZ
+LZ
+MH
+MH
+MH
+sZ
+sE
+sZ
+ok
+sZ
+sZ
+sZ
+nh
+AI
+KM
+Dd
+lQ
+VY
+sZ
+sZ
+VO
+Jt
+nK
+ZL
+zh
+RK
+XB
+AM
+Dk
+ss
+Hc
+kx
+am
+zO
+Eb
+lR
+QG
+Ai
+Pp
+bd
+"}
+(37,1,1) = {"
+fE
+fE
+MH
+MH
+MH
+MH
+MH
+MH
+LZ
+LZ
+LZ
+LZ
+LZ
+LZ
+MH
+MH
+MH
+sZ
+sZ
+sZ
+sZ
+sZ
+MH
+sZ
+sZ
+oI
+Yw
+LU
+FJ
+sZ
+sZ
+MH
+MH
+MH
+Sx
+ZL
+wP
+Dk
+Dz
+bH
+or
+KB
+NP
+KS
+FM
+lU
+We
+Md
+QA
+SL
+SL
+bd
+"}
+(38,1,1) = {"
+fE
+fE
+MH
+MH
+MH
+MH
+MH
+gL
+LZ
+LZ
+LZ
+LZ
+LZ
+LZ
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+sZ
+sZ
+JT
+hb
+sZ
+sZ
+MH
+MH
+VO
+oE
+Go
+ZS
+wP
+pP
+KI
+MJ
+NP
+YU
+sm
+Dk
+Oq
+SL
+SL
+eD
+eT
+SL
+bd
+bd
+"}
+(39,1,1) = {"
+fE
+fE
+MH
+MH
+MH
+MH
+MH
+MH
+LZ
+LZ
+LZ
+LZ
+VA
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+sZ
+qX
+iR
+WZ
+CT
+sZ
+MH
+MH
+MH
+MH
+nK
+ZS
+ZS
+ih
+Sn
+GP
+xm
+qK
+br
+Yr
+Zg
+AW
+ZL
+bd
+bd
+bd
+bd
+fE
+"}
+(40,1,1) = {"
+fE
+fE
+fE
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+sZ
+YJ
+PT
+WZ
+EP
+sZ
+MH
+MH
+MH
+MH
+MH
+MH
+ZS
+ZS
+Mq
+oz
+or
+VC
+lr
+Mp
+Hl
+Xv
+ZS
+bd
+bd
+bd
+MH
+fE
+"}
+(41,1,1) = {"
+fE
+fE
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+sZ
+gk
+PT
+tH
+of
+sZ
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+CW
+ZS
+KS
+qz
+kG
+CG
+Ao
+ol
+ZL
+ZL
+bd
+bd
+MH
+MH
+fE
+"}
+(42,1,1) = {"
+fE
+fE
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+sZ
+YJ
+zz
+nA
+YJ
+sZ
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+yN
+yN
+yN
+yN
+co
+Pi
+yN
+yN
+Mk
+MH
+MH
+MH
+MH
+MH
+fE
+"}
+(43,1,1) = {"
+fE
+fE
+fE
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+sZ
+uW
+dY
+Ie
+EK
+sZ
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+wO
+co
+mL
+co
+co
+co
+mS
+MH
+MH
+MH
+MH
+MH
+MH
+fE
+"}
+(44,1,1) = {"
+fE
+fE
+fE
+fE
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+NE
+MH
+MH
+MH
+MH
+MH
+sZ
+YJ
+lv
+Uf
+dc
+sZ
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+co
+yN
+MH
+ZD
+SP
+co
+yN
+MH
+MH
+MH
+MH
+MH
+fE
+fE
+"}
+(45,1,1) = {"
+fE
+fE
+fE
+fE
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+fE
+MH
+MH
+MH
+MH
+sZ
+sZ
+sZ
+sZ
+sZ
+sZ
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+jX
+ZD
+co
+ga
+XU
+yN
+MH
+MH
+MH
+fE
+fE
+fE
+"}
+(46,1,1) = {"
+fE
+fE
+fE
+fE
+fE
+MH
+fE
+fE
+fE
+fE
+fE
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+fE
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+yN
+co
+yN
+PE
+fs
+MH
+MH
+fE
+fE
+fE
+fE
+"}
+(47,1,1) = {"
+fE
+fE
+fE
+fE
+fE
+fE
+fE
+fE
+fE
+fE
+fE
+fE
+fE
+fE
+fE
+MH
+MH
+MH
+fE
+fE
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+MH
+fE
+fE
+fE
+fE
+MH
+MH
+MH
+MH
+MH
+yN
+co
+co
+co
+yN
+yN
+MH
+fE
+fE
+fE
+fE
+fE
+"}
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_xeno_nest.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_xeno_nest.dmm
deleted file mode 100644
index 823ed145a94..00000000000
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_xeno_nest.dmm
+++ /dev/null
@@ -1,1544 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"a" = (
-/turf/template_noop,
-/area/template_noop)
-"b" = (
-/obj/structure/alien/weeds,
-/obj/structure/alien/resin/wall,
-/turf/open/floor/plating/asteroid/basalt,
-/area/ruin/unpowered/xenonest)
-"d" = (
-/obj/structure/alien/resin/wall,
-/obj/structure/alien/weeds,
-/turf/open/floor/plating/asteroid/basalt,
-/area/ruin/unpowered/xenonest)
-"e" = (
-/obj/structure/alien/weeds,
-/obj/structure/alien/egg/burst,
-/turf/open/floor/plating/asteroid/basalt,
-/area/ruin/unpowered/xenonest)
-"f" = (
-/obj/structure/alien/weeds,
-/obj/structure/alien/weeds,
-/turf/open/floor/plating/asteroid/basalt,
-/area/ruin/unpowered/xenonest)
-"g" = (
-/obj/structure/alien/weeds,
-/turf/open/floor/plating/asteroid/basalt,
-/area/ruin/unpowered/xenonest)
-"i" = (
-/obj/structure/alien/weeds,
-/obj/structure/bed/nest,
-/turf/open/floor/plating/asteroid/basalt,
-/area/ruin/unpowered/xenonest)
-"j" = (
-/obj/structure/alien/weeds,
-/mob/living/simple_animal/hostile/alien,
-/turf/open/floor/plating/asteroid/basalt,
-/area/ruin/unpowered/xenonest)
-"l" = (
-/obj/structure/alien/weeds/node,
-/turf/open/floor/plating/asteroid/basalt,
-/area/ruin/unpowered/xenonest)
-"o" = (
-/obj/structure/alien/weeds,
-/obj/structure/bed/nest,
-/obj/effect/decal/cleanable/blood/gibs,
-/obj/item/gun/ballistic/automatic/pistol,
-/turf/open/floor/plating/asteroid/basalt,
-/area/ruin/unpowered/xenonest)
-"r" = (
-/obj/structure/alien/weeds,
-/obj/structure/alien/resin/wall,
-/obj/structure/alien/resin/wall,
-/turf/open/floor/plating/asteroid/basalt,
-/area/ruin/unpowered/xenonest)
-"t" = (
-/obj/structure/alien/weeds,
-/mob/living/simple_animal/hostile/alien/sentinel,
-/turf/open/floor/plating/asteroid/basalt,
-/area/ruin/unpowered/xenonest)
-"u" = (
-/obj/structure/alien/weeds,
-/obj/effect/decal/cleanable/blood/gibs,
-/turf/open/floor/plating/asteroid/basalt,
-/area/ruin/unpowered/xenonest)
-"v" = (
-/obj/structure/alien/weeds/node,
-/obj/effect/decal/cleanable/blood,
-/turf/open/floor/plating/asteroid/basalt,
-/area/ruin/unpowered/xenonest)
-"w" = (
-/obj/structure/alien/weeds,
-/obj/structure/bed/nest,
-/obj/structure/alien/resin/wall,
-/turf/open/floor/plating/asteroid/basalt,
-/area/ruin/unpowered/xenonest)
-"y" = (
-/obj/structure/alien/weeds/node,
-/obj/structure/alien/resin/wall,
-/turf/open/floor/plating/asteroid/basalt,
-/area/ruin/unpowered/xenonest)
-"z" = (
-/obj/structure/alien/weeds,
-/obj/structure/bed/nest,
-/obj/effect/decal/cleanable/blood/gibs,
-/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/basalt,
-/area/ruin/unpowered/xenonest)
-"B" = (
-/obj/structure/alien/weeds,
-/obj/structure/alien/egg/burst,
-/obj/effect/decal/cleanable/blood/gibs,
-/turf/open/floor/plating/asteroid/basalt,
-/area/ruin/unpowered/xenonest)
-"C" = (
-/obj/structure/alien/weeds,
-/obj/structure/alien/egg/burst,
-/obj/effect/decal/cleanable/blood,
-/turf/open/floor/plating/asteroid/basalt,
-/area/ruin/unpowered/xenonest)
-"E" = (
-/obj/structure/alien/weeds,
-/mob/living/simple_animal/hostile/alien/drone{
- plants_off = 1
- },
-/turf/open/floor/plating/asteroid/basalt,
-/area/ruin/unpowered/xenonest)
-"F" = (
-/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
- },
-/turf/open/floor/plating/asteroid/basalt,
-/area/ruin/unpowered/xenonest)
-"G" = (
-/turf/open/lava/smooth/lava_land_surface,
-/area/overmap_encounter/planetoid/cave/explored)
-"H" = (
-/obj/structure/alien/weeds,
-/obj/effect/decal/cleanable/blood,
-/turf/open/floor/plating/asteroid/basalt,
-/area/ruin/unpowered/xenonest)
-"I" = (
-/obj/structure/alien/weeds,
-/obj/structure/bed/nest,
-/obj/effect/decal/cleanable/blood/gibs,
-/obj/effect/decal/cleanable/blood,
-/obj/item/clothing/under/syndicate,
-/obj/item/clothing/glasses/night,
-/turf/open/floor/plating/asteroid/basalt,
-/area/ruin/unpowered/xenonest)
-"K" = (
-/obj/structure/alien/weeds/node,
-/mob/living/simple_animal/hostile/alien,
-/turf/open/floor/plating/asteroid/basalt,
-/area/ruin/unpowered/xenonest)
-"L" = (
-/obj/structure/alien/weeds/node,
-/mob/living/simple_animal/hostile/alien/drone{
- plants_off = 1
- },
-/turf/open/floor/plating/asteroid/basalt,
-/area/ruin/unpowered/xenonest)
-"M" = (
-/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,
-/turf/open/floor/plating/asteroid/basalt,
-/area/ruin/unpowered/xenonest)
-"Q" = (
-/obj/structure/alien/weeds,
-/obj/effect/decal/cleanable/blood,
-/mob/living/simple_animal/hostile/alien/drone{
- plants_off = 1
- },
-/turf/open/floor/plating/asteroid/basalt,
-/area/ruin/unpowered/xenonest)
-
-(1,1,1) = {"
-a
-a
-a
-G
-G
-G
-G
-G
-G
-G
-G
-G
-G
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(2,1,1) = {"
-a
-a
-a
-G
-b
-b
-b
-b
-b
-b
-b
-b
-G
-G
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(3,1,1) = {"
-a
-a
-G
-G
-b
-g
-e
-e
-b
-g
-g
-b
-b
-G
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(4,1,1) = {"
-a
-a
-G
-b
-b
-g
-g
-g
-g
-E
-g
-e
-b
-G
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(5,1,1) = {"
-a
-a
-G
-b
-g
-g
-y
-b
-b
-b
-y
-b
-b
-G
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(6,1,1) = {"
-a
-a
-G
-b
-g
-g
-w
-g
-F
-u
-I
-b
-b
-G
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(7,1,1) = {"
-a
-a
-G
-b
-e
-t
-g
-g
-g
-H
-u
-g
-b
-G
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(8,1,1) = {"
-a
-a
-G
-b
-i
-u
-b
-g
-l
-g
-t
-e
-b
-G
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(9,1,1) = {"
-a
-a
-G
-b
-o
-v
-g
-b
-g
-g
-e
-b
-b
-G
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(10,1,1) = {"
-a
-a
-G
-b
-g
-u
-b
-g
-g
-g
-y
-e
-b
-G
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(11,1,1) = {"
-a
-a
-G
-b
-b
-g
-t
-g
-g
-t
-g
-g
-b
-G
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-a
-"}
-(12,1,1) = {"
-a
-a
-G
-G
-b
-e
-g
-g
-g
-g
-g
-g
-b
-G
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-M
-i
-b
-b
-"}
-(13,1,1) = {"
-a
-a
-a
-G
-b
-b
-g
-g
-l
-g
-g
-b
-b
-G
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-e
-u
-Q
-g
-b
-"}
-(14,1,1) = {"
-a
-a
-a
-G
-G
-b
-b
-g
-g
-g
-b
-b
-G
-G
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-i
-g
-l
-g
-e
-b
-"}
-(15,1,1) = {"
-a
-a
-a
-a
-G
-G
-b
-b
-b
-b
-b
-G
-G
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-g
-g
-g
-i
-b
-b
-"}
-(16,1,1) = {"
-a
-a
-a
-a
-a
-G
-b
-l
-l
-b
-G
-G
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-g
-j
-g
-e
-b
-b
-b
-a
-"}
-(17,1,1) = {"
-a
-a
-a
-a
-a
-a
-b
-E
-g
-b
-b
-G
-b
-b
-b
-b
-b
-b
-b
-b
-b
-g
-g
-b
-b
-b
-b
-a
-a
-a
-"}
-(18,1,1) = {"
-a
-a
-a
-a
-a
-a
-b
-g
-g
-E
-b
-b
-b
-g
-g
-g
-g
-g
-g
-b
-b
-g
-b
-b
-a
-a
-a
-a
-a
-a
-"}
-(19,1,1) = {"
-a
-a
-a
-a
-a
-a
-b
-b
-g
-g
-g
-b
-g
-g
-g
-g
-g
-g
-l
-g
-g
-g
-b
-a
-a
-a
-a
-a
-a
-a
-"}
-(20,1,1) = {"
-b
-b
-b
-b
-a
-a
-a
-b
-b
-g
-l
-g
-g
-g
-b
-b
-b
-b
-g
-g
-f
-b
-b
-a
-a
-a
-a
-a
-a
-a
-"}
-(21,1,1) = {"
-b
-e
-i
-b
-b
-b
-b
-b
-b
-g
-g
-g
-g
-b
-b
-a
-a
-b
-b
-g
-g
-b
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(22,1,1) = {"
-d
-f
-j
-g
-b
-b
-g
-g
-g
-g
-g
-g
-b
-b
-a
-a
-a
-b
-g
-g
-g
-b
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(23,1,1) = {"
-d
-g
-e
-l
-g
-g
-g
-b
-b
-g
-b
-b
-b
-a
-a
-a
-a
-b
-g
-g
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(24,1,1) = {"
-b
-b
-i
-i
-b
-b
-b
-b
-b
-g
-b
-a
-a
-a
-a
-a
-a
-b
-g
-g
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(25,1,1) = {"
-a
-b
-b
-b
-b
-a
-a
-a
-b
-E
-b
-b
-a
-a
-a
-a
-a
-b
-g
-L
-b
-b
-b
-a
-a
-a
-a
-a
-a
-b
-"}
-(26,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-b
-g
-g
-b
-a
-a
-a
-a
-a
-b
-g
-g
-g
-g
-b
-b
-b
-a
-a
-a
-b
-b
-"}
-(27,1,1) = {"
-a
-a
-a
-a
-a
-a
-b
-b
-b
-g
-g
-b
-b
-a
-a
-a
-a
-b
-b
-g
-g
-g
-g
-g
-b
-b
-b
-b
-y
-g
-"}
-(28,1,1) = {"
-a
-a
-a
-a
-a
-b
-b
-B
-g
-g
-l
-e
-b
-a
-a
-a
-b
-b
-g
-g
-b
-b
-g
-g
-g
-b
-l
-g
-g
-g
-"}
-(29,1,1) = {"
-a
-a
-a
-a
-a
-b
-z
-C
-j
-g
-e
-i
-b
-a
-a
-a
-b
-g
-g
-b
-b
-b
-b
-g
-l
-b
-l
-g
-g
-g
-"}
-(30,1,1) = {"
-a
-a
-a
-a
-a
-b
-i
-u
-g
-i
-i
-b
-b
-a
-a
-a
-b
-g
-b
-b
-a
-a
-b
-b
-b
-b
-b
-y
-g
-g
-"}
-(31,1,1) = {"
-a
-a
-a
-a
-a
-b
-b
-b
-g
-b
-b
-b
-a
-a
-a
-a
-b
-g
-b
-b
-a
-a
-a
-a
-a
-a
-a
-b
-g
-g
-"}
-(32,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-b
-g
-b
-a
-a
-a
-a
-a
-a
-b
-g
-g
-b
-a
-a
-a
-a
-a
-a
-a
-b
-g
-g
-"}
-(33,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-b
-g
-b
-a
-a
-a
-a
-a
-a
-b
-b
-l
-b
-a
-a
-a
-a
-a
-a
-b
-b
-g
-a
-"}
-(34,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-b
-l
-b
-a
-a
-a
-a
-a
-a
-a
-b
-g
-b
-a
-a
-a
-a
-a
-a
-b
-a
-a
-a
-"}
-(35,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-b
-g
-b
-a
-a
-a
-a
-a
-a
-a
-b
-g
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(36,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-b
-g
-b
-a
-a
-a
-a
-a
-a
-b
-b
-g
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(37,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-b
-g
-b
-a
-a
-a
-a
-a
-b
-b
-g
-g
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(38,1,1) = {"
-a
-a
-a
-a
-a
-a
-b
-b
-g
-b
-b
-b
-b
-b
-b
-b
-g
-g
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(39,1,1) = {"
-a
-a
-a
-a
-a
-b
-b
-g
-g
-e
-b
-b
-g
-g
-K
-g
-g
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(40,1,1) = {"
-a
-a
-a
-a
-a
-b
-i
-E
-g
-g
-g
-g
-g
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(41,1,1) = {"
-a
-a
-a
-a
-b
-b
-e
-g
-l
-g
-e
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(42,1,1) = {"
-a
-a
-a
-a
-b
-e
-g
-g
-i
-i
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(43,1,1) = {"
-a
-a
-a
-a
-r
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
diff --git a/_maps/RandomRuins/RockRuins/rockplanet_boxsci.dmm b/_maps/RandomRuins/RockRuins/rockplanet_boxsci.dmm
deleted file mode 100644
index 1e3c1d7ce29..00000000000
--- a/_maps/RandomRuins/RockRuins/rockplanet_boxsci.dmm
+++ /dev/null
@@ -1,1085 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"aj" = (
-/obj/structure/table,
-/obj/item/mmi/syndie,
-/obj/item/mmi/syndie,
-/obj/item/mmi/syndie,
-/turf/open/floor/plasteel/mono/dark,
-/area/ruin/unpowered)
-"aq" = (
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-"aH" = (
-/obj/structure/table,
-/obj/item/retractor,
-/turf/open/floor/plasteel/mono/dark,
-/area/ruin/unpowered)
-"aI" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/shutters,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"aO" = (
-/obj/machinery/door/airlock/maintenance_hatch{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/disposalpipe/broken{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"bN" = (
-/obj/structure/table_frame,
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"cp" = (
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-"cB" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/mono/dark,
-/area/ruin/unpowered)
-"cY" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/shutters{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-"et" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor,
-/obj/structure/disposalpipe/broken{
- dir = 1
- },
-/turf/open/floor/engine,
-/area/ruin/unpowered)
-"fp" = (
-/obj/structure/table,
-/obj/machinery/button/door{
- pixel_x = 6;
- pixel_y = 25
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-"fB" = (
-/obj/structure/frame/machine{
- anchored = 1
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/ruin/unpowered)
-"fV" = (
-/obj/machinery/button/door{
- pixel_x = 6;
- pixel_y = 25
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"gW" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"ha" = (
-/obj/structure/table_frame,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/ruin/unpowered)
-"hK" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor,
-/turf/open/floor/engine,
-/area/ruin/unpowered)
-"hN" = (
-/obj/machinery/door/airlock/security,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-"hS" = (
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/ruin/unpowered)
-"iE" = (
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/effect/decal/cleanable/dirt,
-/obj/item/robot_suit/prebuilt,
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"jk" = (
-/obj/effect/turf_decal/industrial/warning,
-/obj/machinery/aug_manipulator,
-/obj/machinery/light/directional/east,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-"ks" = (
-/obj/machinery/computer/rdconsole/core,
-/obj/effect/decal/cleanable/dirt,
-/obj/item/research_notes/loot/big,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-"kz" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/shutters{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-"lv" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating/rust,
-/area/ruin/unpowered)
-"lE" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/circuit/red/telecomms,
-/area/ruin/unpowered)
-"ml" = (
-/obj/machinery/recharge_station,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"nm" = (
-/obj/structure/flora/rock/pile,
-/turf/open/floor/plating/asteroid/rockplanet/lit,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"nS" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"oa" = (
-/turf/open/floor/plating/rust,
-/area/ruin/unpowered)
-"oh" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-"oo" = (
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
-/area/ruin/unpowered)
-"oH" = (
-/obj/machinery/mech_bay_recharge_port{
- dir = 2
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"oJ" = (
-/obj/machinery/computer/operating{
- dir = 1
- },
-/obj/effect/turf_decal/borderfloor,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/mono/dark,
-/area/ruin/unpowered)
-"oM" = (
-/obj/structure/table/optable,
-/obj/effect/turf_decal/borderfloor,
-/turf/open/floor/plasteel/mono/dark,
-/area/ruin/unpowered)
-"oY" = (
-/obj/effect/spawner/structure/window,
-/obj/machinery/door/poddoor/shutters,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"pz" = (
-/obj/effect/turf_decal/trimline/opaque/red/filled/line{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"pO" = (
-/obj/structure/filingcabinet/chestdrawer,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-"ra" = (
-/turf/open/floor/plating/asteroid/rockplanet/lit,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"rm" = (
-/obj/structure/table,
-/obj/item/circular_saw,
-/obj/item/scalpel{
- pixel_y = 12
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/mono/dark,
-/area/ruin/unpowered)
-"rr" = (
-/obj/machinery/door/airlock/research,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-"rB" = (
-/obj/structure/door_assembly/door_assembly_com{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/dark,
-/area/ruin/unpowered)
-"rQ" = (
-/obj/machinery/computer/mech_bay_power_console{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"rW" = (
-/obj/effect/mob_spawn/slime,
-/turf/open/floor/engine,
-/area/ruin/unpowered)
-"sp" = (
-/obj/machinery/door/poddoor/shutters,
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"sO" = (
-/obj/machinery/light/broken/directional/south,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating/rust,
-/area/ruin/unpowered)
-"sR" = (
-/obj/machinery/light/directional/south,
-/obj/structure/table,
-/obj/item/storage/toolbox/mechanical,
-/obj/item/crowbar,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"tc" = (
-/obj/item/circuitboard/machine/rdserver,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/dark,
-/area/ruin/unpowered)
-"tF" = (
-/obj/effect/turf_decal/industrial/warning/corner,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/ruin/unpowered)
-"tW" = (
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/ruin/unpowered)
-"uD" = (
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-"uE" = (
-/obj/effect/turf_decal/trimline/opaque/red/filled/line{
- dir = 1
- },
-/obj/structure/table_frame,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"uQ" = (
-/obj/effect/turf_decal/industrial/warning,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-"uR" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/shutters{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"vc" = (
-/obj/structure/table,
-/obj/item/clothing/gloves/color/latex,
-/obj/item/razor,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/mono/dark,
-/area/ruin/unpowered)
-"wF" = (
-/obj/effect/turf_decal/rechargefloor,
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"xq" = (
-/obj/structure/window/reinforced/spawner/west,
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-"yH" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/circuit/red/telecomms,
-/area/ruin/unpowered)
-"zv" = (
-/obj/structure/table_frame,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"zz" = (
-/obj/machinery/button/door{
- pixel_x = 6;
- pixel_y = 25
- },
-/obj/machinery/light_switch{
- pixel_x = -7;
- pixel_y = 25
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating/rust,
-/area/ruin/unpowered)
-"Ap" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"AD" = (
-/obj/effect/spawner/structure/window,
-/obj/machinery/door/poddoor/shutters,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"AX" = (
-/obj/machinery/door/poddoor/shutters,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-"BI" = (
-/obj/effect/spawner/structure/window,
-/obj/machinery/door/poddoor/shutters{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"BV" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor{
- dir = 8
- },
-/turf/open/floor/engine,
-/area/ruin/unpowered)
-"Cq" = (
-/turf/template_noop,
-/area/template_noop)
-"Cu" = (
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"CR" = (
-/obj/machinery/door/poddoor,
-/turf/open/floor/engine,
-/area/ruin/unpowered)
-"DJ" = (
-/obj/structure/girder/reinforced,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"DV" = (
-/obj/item/kirbyplants/random,
-/obj/effect/turf_decal/borderfloor,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/mono/dark,
-/area/ruin/unpowered)
-"ET" = (
-/obj/structure/table_frame,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"Fk" = (
-/obj/item/mine/pressure/explosive/shrapnel/live,
-/turf/open/floor/plating/asteroid/rockplanet/lit,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"FH" = (
-/obj/effect/turf_decal/trimline/opaque/red/filled/line{
- dir = 9
- },
-/obj/structure/reagent_dispensers/peppertank{
- pixel_x = -32
- },
-/obj/structure/closet/secure_closet/security/science,
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"Gb" = (
-/obj/effect/turf_decal/borderfloor,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/mono/dark,
-/area/ruin/unpowered)
-"Gk" = (
-/obj/machinery/door/airlock/research,
-/obj/machinery/door/poddoor/shutters{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-"Hp" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/obj/machinery/rnd/production/protolathe/department/science,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-"HD" = (
-/obj/structure/table,
-/obj/item/storage/box/bodybags,
-/obj/item/pen,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/mono/dark,
-/area/ruin/unpowered)
-"Jg" = (
-/obj/structure/frame/machine{
- anchored = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/ruin/unpowered)
-"Jx" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/ruin/unpowered)
-"JY" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/poddoor/shutters,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"Kj" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-"KZ" = (
-/obj/machinery/door/airlock/research,
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"Lt" = (
-/obj/structure/girder/reinforced,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/ruin/unpowered)
-"LG" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/circuit/red/telecomms,
-/area/ruin/unpowered)
-"LN" = (
-/obj/machinery/light/small/directional/west{
- brightness = 3
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/dark,
-/area/ruin/unpowered)
-"LZ" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/obj/machinery/conveyor_switch/oneway,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-"Mm" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/shutters{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"My" = (
-/obj/structure/table,
-/obj/item/mmi/syndie,
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"MG" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"MQ" = (
-/turf/open/floor/engine,
-/area/ruin/unpowered)
-"Nf" = (
-/turf/open/floor/circuit/red/telecomms,
-/area/ruin/unpowered)
-"NP" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating/asteroid/rockplanet/lit,
-/area/ruin/unpowered)
-"NV" = (
-/turf/closed/wall/r_wall/syndicate/nodiagonal,
-/area/ruin/unpowered)
-"Od" = (
-/obj/structure/table,
-/obj/item/hemostat,
-/obj/item/cautery{
- pixel_x = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"Ol" = (
-/obj/machinery/mech_bay_recharge_port{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"Op" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"Ox" = (
-/obj/structure/disposalpipe/trunk,
-/obj/structure/disposaloutlet{
- dir = 1
- },
-/turf/open/floor/engine,
-/area/ruin/unpowered)
-"ON" = (
-/obj/machinery/mecha_part_fabricator,
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"Pn" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-"Qi" = (
-/obj/machinery/door/airlock/research{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"Qr" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"QM" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-"QP" = (
-/obj/machinery/computer/mech_bay_power_console{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"Rg" = (
-/obj/structure/bodycontainer/morgue,
-/obj/effect/turf_decal/borderfloor,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"RV" = (
-/obj/machinery/conveyor{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"SS" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/poddoor/shutters{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"Tl" = (
-/obj/structure/window/reinforced/spawner/west,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-"Ts" = (
-/turf/closed/wall/r_wall/syndicate,
-/area/ruin/unpowered)
-"TF" = (
-/obj/structure/door_assembly/door_assembly_com,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"Ub" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/ruin/unpowered)
-"UH" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/general/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"Vp" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-"Vx" = (
-/obj/effect/turf_decal/trimline/opaque/red/filled/line{
- dir = 8
- },
-/obj/machinery/light/built/directional/west,
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"VO" = (
-/obj/machinery/rnd/production/circuit_imprinter,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-"VR" = (
-/obj/structure/disposalpipe/broken{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-"WJ" = (
-/obj/machinery/light/small/broken/directional/east,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"WO" = (
-/obj/machinery/recharge_station,
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"Xw" = (
-/obj/effect/turf_decal/rechargefloor,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"XI" = (
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-"Yd" = (
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"Yj" = (
-/obj/machinery/door/window/eastright{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating/rust,
-/area/ruin/unpowered)
-"YE" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/mono,
-/area/ruin/unpowered)
-"YK" = (
-/obj/structure/disposalpipe/broken,
-/obj/machinery/light_switch{
- pixel_x = -25;
- pixel_y = 8
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
-/area/ruin/unpowered)
-
-(1,1,1) = {"
-NV
-aO
-Ts
-Ts
-Ts
-Ts
-Ts
-Ts
-Ts
-Ts
-NV
-Cq
-Cq
-Cq
-Cq
-Cq
-Cq
-NV
-Ts
-Ts
-Ts
-NV
-Cq
-"}
-(2,1,1) = {"
-Ts
-fV
-Ol
-wF
-rQ
-ml
-Ts
-vc
-HD
-Rg
-NV
-NV
-Gk
-NV
-NV
-NV
-NV
-NV
-MQ
-rW
-MQ
-Ts
-ra
-"}
-(3,1,1) = {"
-AX
-Op
-Nf
-lv
-LG
-gW
-Ts
-Od
-cB
-Gb
-NV
-aq
-Cu
-NV
-Jg
-LN
-Jg
-NV
-MQ
-MQ
-MQ
-Ts
-BV
-"}
-(4,1,1) = {"
-AX
-MG
-lv
-Nf
-lv
-sR
-Ts
-rm
-lv
-oM
-Ts
-Vp
-Vp
-NV
-lE
-tc
-yH
-NV
-rW
-MQ
-MQ
-MQ
-hK
-"}
-(5,1,1) = {"
-AX
-Ap
-LG
-LG
-LG
-oa
-Ts
-aH
-lv
-oJ
-Ts
-oa
-lv
-NV
-UH
-rB
-UH
-NV
-MQ
-MQ
-MQ
-MQ
-CR
-"}
-(6,1,1) = {"
-KZ
-Ap
-oH
-Xw
-QP
-WO
-Ts
-aj
-cB
-DV
-Ts
-aq
-Vp
-TF
-Jx
-lv
-Jx
-NV
-MQ
-MQ
-MQ
-Ox
-et
-"}
-(7,1,1) = {"
-Ts
-Qi
-kz
-cY
-cY
-Ts
-Ts
-xq
-Yj
-Tl
-Ts
-lv
-Vp
-NV
-Jx
-NP
-nS
-NV
-MQ
-rW
-MQ
-Ts
-BV
-"}
-(8,1,1) = {"
-Ts
-cp
-QM
-QM
-VR
-YK
-Pn
-XI
-Vp
-Vp
-Ts
-lv
-Vp
-NV
-fB
-WJ
-ha
-NV
-MQ
-MQ
-MQ
-Ts
-ra
-"}
-(9,1,1) = {"
-Ts
-VO
-Vp
-tF
-Kj
-hS
-Cu
-LZ
-lv
-uD
-Ts
-Vp
-Vp
-NV
-NV
-NV
-NV
-NV
-NV
-DJ
-Lt
-NV
-Cq
-"}
-(10,1,1) = {"
-Ts
-ks
-lv
-uQ
-lv
-tW
-hS
-ON
-RV
-sO
-Ts
-Vp
-lv
-NV
-FH
-Vx
-Cu
-ra
-Cq
-Cq
-Cq
-Cq
-Cq
-"}
-(11,1,1) = {"
-NV
-Ts
-fp
-uQ
-gW
-NP
-Jx
-ET
-RV
-oh
-NV
-Vp
-Vp
-NV
-zz
-YE
-tW
-Fk
-ra
-Cq
-Cq
-Cq
-Cq
-"}
-(12,1,1) = {"
-ra
-sp
-oo
-lv
-tW
-iE
-gW
-bN
-iE
-oh
-AD
-Vp
-nS
-hN
-pz
-nS
-oa
-ra
-ra
-ra
-ra
-Cq
-Cq
-"}
-(13,1,1) = {"
-ra
-JY
-Vp
-nS
-gW
-Qr
-gW
-tW
-lv
-oh
-rr
-Vp
-Vp
-aI
-uE
-YE
-tW
-ra
-ra
-ra
-Fk
-Cq
-Cq
-"}
-(14,1,1) = {"
-ra
-sp
-pO
-jk
-ET
-bN
-bN
-My
-Yd
-Hp
-oY
-lv
-nS
-aI
-zv
-Ub
-tW
-nm
-Cq
-Cq
-Cq
-Cq
-Cq
-"}
-(15,1,1) = {"
-ra
-NV
-NV
-NV
-NV
-NV
-Ts
-BI
-SS
-NV
-NV
-Cu
-oa
-NV
-Mm
-Mm
-uR
-Cq
-Cq
-Cq
-Cq
-Cq
-Cq
-"}
diff --git a/_maps/RandomRuins/RockRuins/rockplanet_budgetcuts.dmm b/_maps/RandomRuins/RockRuins/rockplanet_budgetcuts.dmm
index 505ae3600d3..b837eff979f 100644
--- a/_maps/RandomRuins/RockRuins/rockplanet_budgetcuts.dmm
+++ b/_maps/RandomRuins/RockRuins/rockplanet_budgetcuts.dmm
@@ -35,7 +35,7 @@
/turf/open/floor/plastic,
/area/ruin/rockplanet/nanotrasen)
"aQ" = (
-/mob/living/simple_animal/hostile/nanotrasen,
+/mob/living/simple_animal/hostile/human/nanotrasen,
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/siding/white{
dir = 1
@@ -339,7 +339,7 @@
/turf/open/floor/engine,
/area/ruin/rockplanet/nanotrasen)
"ff" = (
-/mob/living/simple_animal/hostile/nanotrasen/ranged/smg,
+/mob/living/simple_animal/hostile/human/nanotrasen/ranged/smg,
/obj/effect/turf_decal/siding/white{
dir = 4
},
@@ -1347,7 +1347,7 @@
/obj/effect/decal/cleanable/dirt/dust,
/obj/effect/decal/cleanable/oil,
/obj/machinery/light/small/broken/directional/north,
-/mob/living/simple_animal/hostile/pirate/ranged/space,
+/mob/living/simple_animal/hostile/human/pirate/ranged/space,
/turf/open/floor/plating,
/area/ruin/rockplanet/nanotrasen)
"vz" = (
@@ -1462,7 +1462,7 @@
/obj/effect/turf_decal/siding/wood{
dir = 4
},
-/mob/living/simple_animal/hostile/nanotrasen,
+/mob/living/simple_animal/hostile/human/nanotrasen,
/turf/open/floor/wood{
icon_state = "wood-broken7"
},
@@ -1728,7 +1728,7 @@
/turf/open/floor/plasteel/white,
/area/ruin/rockplanet/nanotrasen)
"CJ" = (
-/mob/living/simple_animal/hostile/pirate/melee/space,
+/mob/living/simple_animal/hostile/human/pirate/melee/space,
/turf/open/floor/plating{
icon_state = "panelscorched"
},
@@ -1767,7 +1767,7 @@
/turf/open/floor/plasteel,
/area/ruin/rockplanet/nanotrasen)
"Dt" = (
-/mob/living/simple_animal/hostile/pirate/ranged/space,
+/mob/living/simple_animal/hostile/human/pirate/ranged/space,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
@@ -2036,7 +2036,7 @@
/obj/effect/turf_decal/corner/opaque/red/border{
dir = 8
},
-/mob/living/simple_animal/hostile/nanotrasen/ranged,
+/mob/living/simple_animal/hostile/human/nanotrasen/ranged,
/turf/open/floor/plasteel/dark,
/area/ruin/rockplanet/nanotrasen)
"Hs" = (
@@ -2069,7 +2069,7 @@
},
/area/ruin/rockplanet/nanotrasen)
"Ie" = (
-/mob/living/simple_animal/hostile/pirate/melee/space,
+/mob/living/simple_animal/hostile/human/pirate/melee/space,
/turf/open/floor/plating{
icon_state = "platingdmg1"
},
@@ -2697,7 +2697,7 @@
/turf/open/floor/plasteel/rockvault,
/area/ruin/rockplanet/nanotrasen)
"Vn" = (
-/mob/living/simple_animal/hostile/nanotrasen/ranged,
+/mob/living/simple_animal/hostile/human/nanotrasen/ranged,
/obj/effect/turf_decal/industrial/warning{
dir = 1
},
@@ -2744,9 +2744,8 @@
/turf/open/floor/plasteel/tech/grid,
/area/ruin/rockplanet/nanotrasen)
"WY" = (
-/obj/machinery/computer/communications{
+/obj/structure/frame/computer{
dir = 1;
- req_access = null
},
/obj/effect/turf_decal/corner/opaque/red/diagonal,
/turf/open/floor/plasteel/tech/techmaint,
@@ -2835,7 +2834,7 @@
/turf/open/floor/plating/dirt/jungle/lit,
/area/overmap_encounter/planetoid/rockplanet/explored)
"Ze" = (
-/mob/living/simple_animal/hostile/nanotrasen/ranged/smg,
+/mob/living/simple_animal/hostile/human/nanotrasen/ranged/smg,
/obj/effect/turf_decal/corner/transparent/purple/border{
dir = 1
},
@@ -2908,7 +2907,7 @@
/obj/structure/railing{
dir = 8
},
-/mob/living/simple_animal/hostile/nanotrasen/ranged/assault,
+/mob/living/simple_animal/hostile/human/nanotrasen/ranged/assault,
/turf/open/floor/plasteel/dark,
/area/ruin/rockplanet/nanotrasen)
"ZZ" = (
diff --git a/_maps/RandomRuins/RockRuins/rockplanet_crash.dmm b/_maps/RandomRuins/RockRuins/rockplanet_crash.dmm
deleted file mode 100644
index 43db217f9dc..00000000000
--- a/_maps/RandomRuins/RockRuins/rockplanet_crash.dmm
+++ /dev/null
@@ -1,2102 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"as" = (
-/obj/effect/spawner/structure/window/shuttle,
-/obj/machinery/door/poddoor{
- id = "whiteship_bridge"
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"aH" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 1
- },
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"aS" = (
-/obj/structure/marker_beacon,
-/obj/effect/decal/cleanable/blood/tracks,
-/turf/open/floor/plating/asteroid/rockplanet/lit,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"bl" = (
-/obj/effect/decal/cleanable/blood,
-/obj/structure/catwalk/over/plated_catwalk,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/mob/living/simple_animal/hostile/hivebot/rapid/rockplanet,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"bC" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/medical/glass,
-/obj/structure/barricade/wooden/crude,
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"cb" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"cg" = (
-/obj/item/stack/ore/salvage/scraptitanium,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"cr" = (
-/obj/effect/decal/cleanable/blood,
-/obj/machinery/power/terminal{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"ct" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/blue,
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 4
- },
-/obj/machinery/airalarm/directional/south{
- pixel_y = -25
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"cD" = (
-/obj/structure/tank_dispenser/oxygen,
-/obj/effect/turf_decal/corner/opaque/brown{
- dir = 4
- },
-/obj/effect/turf_decal/corner/opaque/brown,
-/obj/effect/turf_decal/corner/opaque/brown{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"cZ" = (
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 4
- },
-/obj/effect/turf_decal/corner/opaque/green,
-/obj/machinery/hydroponics/constructable,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"dh" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"dj" = (
-/obj/machinery/computer/crew,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/corner/opaque/blue,
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 4
- },
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"dr" = (
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 1
- },
-/turf/closed/wall/mineral/titanium,
-/area/ruin/unpowered)
-"ej" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 4
- },
-/obj/machinery/hydroponics/constructable,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"ex" = (
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 4
- },
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"eE" = (
-/obj/structure/table,
-/obj/item/storage/firstaid/regular,
-/obj/item/storage/firstaid/regular,
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 4
- },
-/obj/effect/turf_decal/corner/opaque/blue,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"eG" = (
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 4
- },
-/obj/item/stack/ore/salvage/scraptitanium,
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"eK" = (
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 4
- },
-/turf/open/floor/plating/asteroid/rockplanet/lit,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"eX" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 1
- },
-/obj/machinery/advanced_airlock_controller{
- dir = 8;
- pixel_x = 25
- },
-/obj/item/flashlight/glowstick/red{
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"eZ" = (
-/obj/effect/decal/cleanable/blood,
-/obj/effect/decal/cleanable/blood/gibs/up,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"fg" = (
-/obj/structure/table,
-/obj/structure/cable,
-/obj/machinery/cell_charger,
-/obj/item/stock_parts/cell/high/plus,
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/blue,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"fE" = (
-/obj/effect/turf_decal/corner/opaque/blue,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"hj" = (
-/obj/effect/turf_decal/corner/opaque/solgovgold{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"hm" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/barricade/wooden/crude,
-/obj/machinery/door/airlock/command/glass{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"hs" = (
-/obj/structure/chair,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 4
- },
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 1
- },
-/obj/machinery/airalarm/directional/north{
- pixel_y = 25
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"hw" = (
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"hD" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/blood/gibs/old,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"hX" = (
-/obj/item/stack/ore/salvage/scraptitanium,
-/obj/item/stack/ore/salvage/scraptitanium,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"ig" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/blood,
-/obj/effect/decal/cleanable/blood{
- icon_state = "floor5";
- pixel_x = -2
- },
-/obj/machinery/power/terminal{
- dir = 8
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"ij" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/flashlight/glowstick/red{
- on = 1
- },
-/obj/machinery/power/terminal{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/solgovgold{
- dir = 10
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"in" = (
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"iK" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/blood,
-/obj/effect/decal/cleanable/blood,
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"iW" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/blood,
-/obj/machinery/door/airlock/external{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"jU" = (
-/obj/structure/flora/rock/pile,
-/turf/open/floor/plating/asteroid/rockplanet/lit,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"kj" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/barricade/wooden/crude,
-/obj/effect/decal/cleanable/blood/tracks,
-/obj/machinery/door/airlock/mining,
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"kr" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"kE" = (
-/obj/machinery/door/airlock/public/glass{
- name = "Crew Quarters"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"kF" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"li" = (
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 10
- },
-/turf/open/floor/plating/asteroid/rockplanet/lit,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"lu" = (
-/obj/effect/decal/cleanable/blood{
- icon_state = "floor5";
- pixel_x = -2
- },
-/obj/effect/decal/cleanable/blood/gibs/limb,
-/obj/structure/girder/displaced,
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"lF" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/power/smes/shuttle/precharged{
- dir = 4
- },
-/obj/structure/window/reinforced/spawner/west,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"lG" = (
-/obj/structure/closet/emcloset/anchored,
-/obj/effect/decal/cleanable/blood,
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"lZ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/barricade/wooden/crude,
-/obj/machinery/door/airlock/public/glass{
- name = "Crew Quarters"
- },
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"mq" = (
-/obj/structure/table,
-/obj/item/reagent_containers/food/condiment/saltshaker{
- pixel_x = -10;
- pixel_y = 10
- },
-/obj/item/reagent_containers/food/condiment/peppermill{
- pixel_x = 6;
- pixel_y = -2
- },
-/obj/item/trash/plate{
- pixel_x = -6;
- pixel_y = -2
- },
-/obj/item/trash/plate{
- pixel_y = 12
- },
-/obj/item/trash/plate{
- pixel_x = 11;
- pixel_y = 4
- },
-/obj/item/kitchen/fork{
- pixel_x = 12;
- pixel_y = 3
- },
-/obj/item/kitchen/fork{
- pixel_x = -3;
- pixel_y = 6
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"mx" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/corner/opaque/brown{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"my" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/corner/opaque/brown{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"mN" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 4
- },
-/obj/machinery/door/airlock/external{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"nv" = (
-/turf/closed/wall/mineral/titanium/nodiagonal,
-/area/ruin/unpowered)
-"nX" = (
-/obj/machinery/door/airlock/mining,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"ou" = (
-/obj/item/flashlight/glowstick/red{
- on = 1
- },
-/turf/open/floor/plating/asteroid/rockplanet/lit,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"oA" = (
-/obj/structure/table,
-/obj/machinery/microwave{
- pixel_x = -3;
- pixel_y = 6
- },
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"oG" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/mining,
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"qg" = (
-/obj/structure/girder,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"qi" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 4
- },
-/obj/item/flashlight/glowstick/red{
- on = 1
- },
-/mob/living/simple_animal/hostile/hivebot/strong/rockplanet,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"qS" = (
-/obj/structure/closet/emcloset/anchored,
-/obj/effect/turf_decal/corner/opaque/brown,
-/obj/effect/turf_decal/corner/opaque/brown{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/brown{
- dir = 1
- },
-/obj/item/electronics/apc,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"rb" = (
-/obj/effect/decal/cleanable/plasma,
-/obj/effect/decal/cleanable/glass,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"rf" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/brown{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/brown{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"rB" = (
-/obj/machinery/light/broken/directional/south,
-/obj/effect/turf_decal/corner/opaque/blue,
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"rH" = (
-/obj/effect/turf_decal/corner/opaque/solgovgold{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"sN" = (
-/obj/machinery/processor,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"sX" = (
-/obj/machinery/light/broken/directional/west,
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"sY" = (
-/obj/effect/decal/cleanable/blood,
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 1
- },
-/obj/structure/sink{
- pixel_y = 20
- },
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"tc" = (
-/obj/structure/chair{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"tX" = (
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 4
- },
-/obj/machinery/airalarm/directional/north{
- pixel_y = 25
- },
-/obj/effect/decal/cleanable/blood,
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"ua" = (
-/obj/effect/decal/cleanable/blood/tracks,
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"ul" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/corner/opaque/brown{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/brown{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/blood,
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"uo" = (
-/obj/machinery/door/airlock/external,
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"uU" = (
-/obj/structure/table,
-/obj/machinery/reagentgrinder{
- pixel_y = 6
- },
-/obj/item/kitchen/knife{
- pixel_x = 16
- },
-/obj/item/kitchen/rollingpin{
- pixel_x = 8
- },
-/obj/item/storage/box/drinkingglasses{
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/item/storage/box/donkpockets,
-/obj/effect/turf_decal/corner/opaque/green,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"va" = (
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"vJ" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"vO" = (
-/obj/effect/decal/cleanable/blood,
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"vT" = (
-/obj/structure/table,
-/obj/item/gps{
- gpstag = "NTREC1";
- pixel_x = -9;
- pixel_y = 7
- },
-/obj/item/megaphone{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/effect/turf_decal/corner/opaque/blue,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"wh" = (
-/obj/effect/decal/cleanable/blood,
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"wn" = (
-/obj/machinery/light/broken/directional/east,
-/obj/effect/turf_decal/corner/opaque/green,
-/obj/machinery/hydroponics/constructable,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"wt" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/medical/glass,
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"ww" = (
-/obj/effect/decal/cleanable/blood{
- icon_state = "floor5";
- pixel_x = -2
- },
-/obj/effect/turf_decal/corner/opaque/solgovgold{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"wB" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"wG" = (
-/obj/structure/chair/comfy/shuttle{
- dir = 4
- },
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"wH" = (
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"wM" = (
-/obj/structure/grille,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"xb" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/blood,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"xo" = (
-/obj/item/ectoplasm,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 4
- },
-/obj/item/flashlight/glowstick/red{
- on = 1
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"xt" = (
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 4
- },
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 1
- },
-/obj/item/flashlight/glowstick/red{
- on = 1
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"xI" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"xT" = (
-/obj/structure/table,
-/obj/machinery/recharger,
-/obj/item/gun/energy/laser/retro,
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"xY" = (
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 5
- },
-/turf/open/floor/plating/asteroid/rockplanet/lit,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"yb" = (
-/obj/structure/catwalk/over/plated_catwalk,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"zd" = (
-/obj/effect/spawner/structure/window/shuttle,
-/obj/machinery/atmospherics/pipe/simple/yellow/visible,
-/obj/machinery/door/poddoor{
- id = "whiteship_windows"
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"zo" = (
-/obj/effect/spawner/structure/window/shuttle,
-/obj/machinery/door/poddoor{
- id = "whiteship_bridge";
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"zF" = (
-/obj/effect/decal/cleanable/blood,
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 6
- },
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"zP" = (
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 4
- },
-/obj/item/flashlight/glowstick/red{
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"Ao" = (
-/obj/machinery/power/smes/shuttle/precharged{
- dir = 4
- },
-/obj/structure/window/reinforced/spawner/west,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"Aw" = (
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/corner/opaque/brown{
- dir = 8
- },
-/mob/living/simple_animal/hostile/hivebot/rapid/rockplanet,
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"Ax" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/fans/tiny,
-/obj/machinery/door/airlock/external{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"Ba" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/blood,
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"Bz" = (
-/obj/machinery/atmospherics/components/unary/vent_pump,
-/obj/machinery/advanced_airlock_controller{
- dir = 8;
- pixel_x = 25
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"BC" = (
-/obj/machinery/suit_storage_unit/atmos,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/corner/opaque/brown{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/brown{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/brown{
- dir = 4
- },
-/obj/effect/turf_decal/corner/opaque/brown,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"BV" = (
-/obj/effect/decal/cleanable/blood,
-/obj/effect/decal/cleanable/blood/gibs/body,
-/obj/effect/decal/cleanable/blood/tracks,
-/obj/structure/catwalk/over/plated_catwalk,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/structure/cable{
- icon_state = "2-9"
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"BW" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/effect/turf_decal/corner/opaque/brown,
-/obj/effect/turf_decal/corner/opaque/brown{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"BX" = (
-/obj/structure/table,
-/obj/item/radio{
- pixel_x = 6;
- pixel_y = 14
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/button/door{
- id = "whiteship_windows";
- name = "Windows Blast Door Control";
- pixel_x = -22;
- pixel_y = -6
- },
-/obj/machinery/button/door{
- id = "whiteship_bridge";
- name = "Bridge Blast Door Control";
- pixel_x = -22;
- pixel_y = 2
- },
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 4
- },
-/obj/item/areaeditor/shuttle,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"Cm" = (
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 1
- },
-/mob/living/simple_animal/hostile/hivebot/strong/rockplanet,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"Dc" = (
-/obj/machinery/door/airlock/external,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"Dj" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/fans/tiny,
-/obj/machinery/door/airlock/external{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"Dr" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/girder,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"Es" = (
-/turf/open/floor/plating/asteroid/rockplanet/lit,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"Ez" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/obj/effect/decal/cleanable/blood,
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"EQ" = (
-/obj/effect/spawner/structure/window/shuttle,
-/obj/machinery/door/poddoor{
- id = "whiteship_windows"
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"Fa" = (
-/obj/structure/table,
-/obj/item/storage/firstaid/fire,
-/obj/item/storage/firstaid/brute,
-/obj/effect/turf_decal/corner/opaque/blue,
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"Fe" = (
-/obj/effect/turf_decal/corner/opaque/brown{
- dir = 1
- },
-/obj/structure/ore_box,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"Fn" = (
-/obj/structure/marker_beacon,
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 5
- },
-/turf/open/floor/plating/asteroid/rockplanet/lit,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"Ge" = (
-/obj/machinery/power/smes/engineering,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"Gz" = (
-/obj/effect/decal/cleanable/blood{
- icon_state = "floor5";
- pixel_x = -2
- },
-/obj/effect/decal/cleanable/blood/gibs/core,
-/obj/effect/decal/cleanable/blood/tracks,
-/obj/effect/mob_spawn/human/corpse/damaged,
-/mob/living/simple_animal/hostile/hivebot/range/rockplanet,
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"GW" = (
-/obj/effect/turf_decal/corner/opaque/blue,
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"Hl" = (
-/obj/effect/turf_decal/corner/opaque/brown,
-/obj/machinery/airalarm/directional/south{
- pixel_y = -25
- },
-/obj/structure/rack,
-/obj/item/pickaxe/emergency,
-/obj/item/pickaxe/emergency,
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"Hm" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/blood,
-/obj/machinery/power/terminal{
- dir = 8
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"Ht" = (
-/obj/structure/chair/comfy/shuttle{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/corner/opaque/blue,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"Hx" = (
-/obj/effect/decal/cleanable/blood/gibs/down,
-/obj/effect/decal/cleanable/blood/tracks,
-/obj/structure/catwalk/over/plated_catwalk,
-/obj/structure/cable{
- icon_state = "0-1"
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"HD" = (
-/obj/structure/grille/broken,
-/obj/effect/decal/cleanable/glass,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"HE" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 4
- },
-/obj/structure/marker_beacon,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"HW" = (
-/obj/structure/table,
-/obj/item/healthanalyzer,
-/obj/item/storage/firstaid/o2,
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 4
- },
-/obj/effect/turf_decal/corner/opaque/blue,
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 1
- },
-/obj/item/defibrillator/loaded,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"If" = (
-/obj/effect/decal/cleanable/blood,
-/turf/closed/wall/mineral/titanium,
-/area/ruin/unpowered)
-"Iw" = (
-/obj/item/stack/sheet/mineral/titanium,
-/obj/structure/girder/displaced,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"II" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/corner/opaque/brown,
-/obj/item/flashlight/glowstick/red{
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"IO" = (
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"IU" = (
-/obj/machinery/suit_storage_unit/atmos,
-/obj/effect/turf_decal/corner/opaque/brown{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/brown{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/brown{
- dir = 4
- },
-/obj/effect/turf_decal/corner/opaque/brown,
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"Jh" = (
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"Jq" = (
-/obj/effect/decal/cleanable/blood,
-/obj/effect/decal/cleanable/blood{
- icon_state = "floor5";
- pixel_x = -2
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"JE" = (
-/obj/machinery/power/shuttle/engine/electric{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"JX" = (
-/obj/machinery/computer/monitor{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 4
- },
-/obj/effect/turf_decal/corner/opaque/blue,
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 1
- },
-/obj/item/radio/intercom/wideband/directional/north,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"Ka" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/blood,
-/obj/effect/decal/cleanable/blood/tracks,
-/obj/structure/door_assembly/door_assembly_min{
- anchored = 1
- },
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"KH" = (
-/obj/item/chainsaw,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/blood,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"KV" = (
-/obj/effect/decal/cleanable/blood,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"Lq" = (
-/obj/effect/decal/cleanable/blood/innards,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"Lz" = (
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 4
- },
-/obj/effect/turf_decal/corner/opaque/green,
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"LK" = (
-/obj/structure/closet/secure_closet/freezer/fridge/open,
-/obj/item/reagent_containers/food/snacks/meat/slab/synthmeat{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/reagent_containers/food/snacks/meat/slab/synthmeat{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/reagent_containers/food/snacks/meat/slab/synthmeat{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/reagent_containers/food/condiment/flour{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/reagent_containers/food/condiment/flour{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/corner/opaque/green,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"Mn" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"Nr" = (
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"Nt" = (
-/turf/closed/wall/mineral/titanium,
-/area/ruin/unpowered)
-"Nu" = (
-/obj/structure/catwalk/over/plated_catwalk,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"On" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/blood,
-/obj/effect/turf_decal/corner/opaque/brown{
- dir = 4
- },
-/obj/effect/turf_decal/corner/opaque/brown{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"OB" = (
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 4
- },
-/obj/machinery/power/terminal{
- dir = 8
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"PU" = (
-/obj/item/pickaxe/rusted,
-/obj/effect/gibspawner/human/bodypartless,
-/turf/open/floor/plating/asteroid/rockplanet/lit,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"QE" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
- icon_state = "4-10"
- },
-/obj/effect/turf_decal/corner/opaque/solgovgold{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"QK" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 4
- },
-/obj/machinery/door/airlock/command/glass{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"QN" = (
-/obj/structure/catwalk/over/plated_catwalk,
-/obj/structure/cable{
- icon_state = "0-5"
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"Rc" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 4
- },
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 1
- },
-/obj/effect/decal/cleanable/blood,
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"Rq" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"Ru" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/blood{
- icon_state = "floor5";
- pixel_x = -2
- },
-/obj/effect/turf_decal/corner/opaque/solgovgold{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"RY" = (
-/obj/effect/spawner/structure/window/shuttle,
-/obj/machinery/door/poddoor{
- id = "whiteship_windows";
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"Sm" = (
-/obj/structure/girder,
-/obj/item/stack/sheet/mineral/titanium,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"Sq" = (
-/obj/machinery/power/port_gen/pacman,
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"SC" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/blood/gibs/old,
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"SP" = (
-/obj/structure/marker_beacon,
-/turf/open/floor/plating/asteroid/rockplanet/lit,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"Tn" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"TR" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/frame/computer{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/solgovgold,
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"Up" = (
-/obj/effect/decal/cleanable/blood,
-/mob/living/simple_animal/hostile/hivebot/rapid/rockplanet,
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"Us" = (
-/obj/structure/flora/rock,
-/turf/open/floor/plating/asteroid/rockplanet/lit,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"UA" = (
-/obj/item/stack/ore/salvage/scraptitanium,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/robot_debris,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"UE" = (
-/obj/machinery/light/broken/directional/west,
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/blue,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"UI" = (
-/obj/effect/spawner/structure/window/shuttle,
-/obj/machinery/door/poddoor{
- id = "whiteship_bridge";
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"UV" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/frame/machine,
-/obj/item/stack/cable_coil/cut/red,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"Vz" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 4
- },
-/mob/living/simple_animal/hostile/hivebot/range/rockplanet,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"VK" = (
-/obj/machinery/power/terminal{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/solgovgold{
- dir = 5
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"VV" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/decal/cleanable/blood,
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"VX" = (
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"Wh" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/blue,
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"Wi" = (
-/obj/effect/spawner/structure/window/shuttle,
-/obj/machinery/door/poddoor{
- id = "whiteship_windows";
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"Wm" = (
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"WS" = (
-/obj/machinery/door/airlock/external,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper,
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"Xh" = (
-/obj/structure/table,
-/obj/item/storage/bag/plants/portaseeder,
-/obj/item/shovel/spade,
-/obj/item/cultivator,
-/obj/item/plant_analyzer,
-/obj/item/reagent_containers/glass/bucket,
-/obj/effect/turf_decal/corner/opaque/green,
-/obj/machinery/power/terminal{
- dir = 8
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"Xs" = (
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"XI" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/blood,
-/obj/effect/decal/cleanable/blood,
-/obj/machinery/power/terminal{
- dir = 8
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"XN" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/blood,
-/obj/effect/decal/cleanable/blood,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"XV" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/holopad/emergency/command{
- pixel_y = 16
- },
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"Yp" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"Zf" = (
-/turf/closed/mineral/random/rockplanet,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"Zg" = (
-/obj/structure/catwalk/over/plated_catwalk,
-/obj/structure/cable{
- icon_state = "6-8"
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"Zm" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/obj/machinery/light/broken/directional/south,
-/obj/effect/turf_decal/corner/opaque/blue,
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 8
- },
-/obj/effect/decal/cleanable/blood,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-
-(1,1,1) = {"
-Es
-Es
-Es
-SP
-jU
-Es
-Es
-Nt
-Dj
-Ax
-Nt
-Es
-Us
-Es
-SP
-Es
-Es
-Es
-"}
-(2,1,1) = {"
-Nt
-JE
-rb
-JE
-JE
-Nt
-jU
-EQ
-HE
-KH
-EQ
-Es
-Nt
-JE
-JE
-JE
-JE
-Nt
-"}
-(3,1,1) = {"
-qg
-Ao
-UV
-Ao
-lF
-Nt
-Es
-EQ
-xo
-xb
-EQ
-Es
-Dr
-Ao
-Ao
-Ao
-Ao
-Nt
-"}
-(4,1,1) = {"
-EQ
-VK
-vJ
-ig
-ij
-wH
-Es
-EQ
-SC
-xb
-EQ
-Es
-Nt
-OB
-Hm
-XI
-Xh
-EQ
-"}
-(5,1,1) = {"
-EQ
-hD
-Nu
-Jq
-TR
-Nt
-Es
-Nt
-mN
-iW
-Nt
-Es
-Nt
-sY
-VV
-vO
-oA
-EQ
-"}
-(6,1,1) = {"
-wM
-ww
-Zg
-Lq
-xb
-If
-Nt
-nv
-IO
-Rq
-nv
-RY
-Nt
-hs
-mq
-tc
-uU
-EQ
-"}
-(7,1,1) = {"
-HD
-eZ
-Gz
-BV
-Hx
-Ka
-ua
-kj
-zF
-Jh
-kE
-Jh
-lZ
-Rc
-cb
-KV
-sN
-EQ
-"}
-(8,1,1) = {"
-zd
-rH
-QN
-lu
-hj
-nv
-Wi
-Nt
-iK
-XN
-nv
-RY
-Nt
-xt
-Yp
-Up
-LK
-EQ
-"}
-(9,1,1) = {"
-EQ
-QE
-yb
-Rq
-Ru
-Nt
-Es
-qg
-eG
-Jh
-Nt
-Es
-Nt
-wH
-kr
-xb
-va
-EQ
-"}
-(10,1,1) = {"
-Nt
-Ge
-cr
-bl
-Sq
-Sm
-Es
-EQ
-Wm
-Rq
-EQ
-Es
-Nt
-cZ
-wn
-ej
-Lz
-UA
-"}
-(11,1,1) = {"
-Nt
-cg
-Sm
-Nt
-Nt
-wH
-Es
-EQ
-xI
-hD
-EQ
-Es
-Nt
-qg
-Nt
-Nt
-Iw
-Dr
-"}
-(12,1,1) = {"
-Es
-Es
-Es
-SP
-Es
-ou
-Es
-hX
-IO
-KV
-EQ
-Es
-Es
-Es
-SP
-Es
-Es
-Es
-"}
-(13,1,1) = {"
-Nt
-Nt
-Nt
-Nt
-Nt
-Nt
-Es
-qg
-zP
-Ba
-EQ
-Es
-Nt
-Nt
-Nt
-Nt
-Nt
-Nt
-"}
-(14,1,1) = {"
-Nt
-IU
-II
-mx
-qS
-Nt
-Es
-Nt
-Wm
-dh
-Nt
-Es
-Nt
-lG
-fE
-Xs
-Fa
-EQ
-"}
-(15,1,1) = {"
-nv
-RY
-xb
-On
-Hl
-Nt
-RY
-nv
-IO
-xb
-nv
-Nt
-Nt
-tX
-rB
-nv
-RY
-nv
-"}
-(16,1,1) = {"
-WS
-Bz
-hw
-ul
-BW
-nX
-Jh
-oG
-Mn
-dh
-bC
-Jh
-wt
-kF
-Wh
-Dc
-eX
-uo
-"}
-(17,1,1) = {"
-nv
-nv
-Tn
-rf
-Aw
-Nt
-RY
-nv
-Vz
-dh
-Nt
-RY
-nv
-Cm
-Zm
-Nt
-Nt
-nv
-"}
-(18,1,1) = {"
-Nt
-BC
-my
-Fe
-cD
-Nt
-Es
-Nt
-ex
-Nr
-dr
-li
-Nt
-eE
-wh
-VX
-HW
-EQ
-"}
-(19,1,1) = {"
-Nt
-Nt
-RY
-Wi
-Nt
-Nt
-Es
-Nt
-IO
-Rq
-Nt
-eK
-Nt
-Nt
-Wi
-Wi
-Nt
-Nt
-"}
-(20,1,1) = {"
-Es
-Es
-Es
-Es
-SP
-Es
-Es
-Nt
-Mn
-Jh
-Nt
-xY
-aS
-li
-Es
-Es
-Es
-Zf
-"}
-(21,1,1) = {"
-Zf
-Es
-Us
-Es
-Es
-Es
-Nt
-Nt
-QK
-hm
-nv
-Nt
-Us
-eK
-ou
-Zf
-Zf
-Zf
-"}
-(22,1,1) = {"
-Zf
-Es
-Es
-jU
-Es
-Nt
-Nt
-BX
-aH
-in
-fg
-Nt
-Nt
-eK
-Zf
-Zf
-Zf
-Zf
-"}
-(23,1,1) = {"
-Zf
-Zf
-Es
-SP
-Es
-as
-sX
-wB
-qi
-XV
-Ez
-UE
-as
-Fn
-PU
-Es
-SP
-Es
-"}
-(24,1,1) = {"
-Zf
-Zf
-Es
-ou
-Es
-as
-dj
-wG
-KV
-Rq
-Ht
-ct
-Nt
-Es
-jU
-Zf
-Zf
-Es
-"}
-(25,1,1) = {"
-Zf
-Zf
-Zf
-Es
-Es
-Nt
-Nt
-JX
-vT
-xT
-GW
-Nt
-Nt
-Es
-Zf
-Zf
-Zf
-Zf
-"}
-(26,1,1) = {"
-Zf
-Zf
-Zf
-Zf
-Es
-Es
-Nt
-UI
-UI
-zo
-Nt
-Nt
-Es
-Es
-Es
-Es
-Zf
-Zf
-"}
diff --git a/_maps/RandomRuins/RockRuins/rockplanet_dangerpod.dmm b/_maps/RandomRuins/RockRuins/rockplanet_dangerpod.dmm
deleted file mode 100644
index dd6bb43fd91..00000000000
--- a/_maps/RandomRuins/RockRuins/rockplanet_dangerpod.dmm
+++ /dev/null
@@ -1,94 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"a" = (
-/turf/closed/wall/mineral/titanium/survival/pod,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"c" = (
-/obj/machinery/smartfridge/survival_pod,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/pod/dark,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"h" = (
-/mob/living/simple_animal/hostile/skeleton/plasmaminer/jackhammer,
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/pod/dark,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"u" = (
-/obj/item/gps/computer,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/turf/open/floor/pod/dark,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"v" = (
-/obj/structure/fans,
-/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/pod/dark,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"C" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/pod/dark,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"M" = (
-/obj/structure/chair/comfy/grey/directional/west,
-/obj/structure/tubes,
-/obj/effect/decal/cleanable/blood/old,
-/mob/living/simple_animal/hostile/mining_drone/rockplanet,
-/turf/open/floor/pod/dark,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"Q" = (
-/obj/machinery/sleeper/survival_pod,
-/obj/effect/mob_spawn/human/corpse/cargo_tech,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/pod/dark,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"S" = (
-/obj/structure/bed/pod,
-/obj/item/bedsheet/black,
-/turf/open/floor/pod/dark,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"U" = (
-/obj/machinery/door/airlock/survival_pod,
-/obj/structure/fans/tiny,
-/turf/open/floor/pod/dark,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"Y" = (
-/obj/structure/table/survival_pod,
-/obj/item/t_scanner/adv_mining_scanner,
-/obj/item/instrument/guitar,
-/turf/open/floor/pod/dark,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-
-(1,1,1) = {"
-a
-a
-a
-a
-a
-"}
-(2,1,1) = {"
-a
-v
-Q
-Y
-a
-"}
-(3,1,1) = {"
-a
-c
-h
-C
-U
-"}
-(4,1,1) = {"
-a
-u
-S
-M
-a
-"}
-(5,1,1) = {"
-a
-a
-a
-a
-a
-"}
diff --git a/_maps/RandomRuins/RockRuins/rockplanet_harmfactory.dmm b/_maps/RandomRuins/RockRuins/rockplanet_harmfactory.dmm
index 8d9d02795d7..8a79949e34b 100644
--- a/_maps/RandomRuins/RockRuins/rockplanet_harmfactory.dmm
+++ b/_maps/RandomRuins/RockRuins/rockplanet_harmfactory.dmm
@@ -152,6 +152,7 @@
icon_state = "1-2"
},
/obj/effect/decal/remains/human,
+/obj/item/clothing/neck/tie/red,
/turf/open/floor/plasteel/patterned,
/area/ruin/powered)
"dU" = (
@@ -223,14 +224,14 @@
/turf/open/floor/plating,
/area/ruin/powered)
"fq" = (
-/obj/machinery/door/keycard/stockroom,
+/obj/machinery/door/keycard/harmfactory/office,
/turf/open/floor/plasteel/patterned/brushed,
/area/ruin/powered)
"fF" = (
-/obj/machinery/door/keycard/stockroom,
/obj/structure/cable{
icon_state = "1-2"
},
+/obj/machinery/door/keycard/harmfactory/office,
/turf/open/floor/plating/rust,
/area/ruin/powered)
"fJ" = (
@@ -287,7 +288,7 @@
"gx" = (
/obj/structure/filingcabinet/employment,
/obj/structure/safe/floor,
-/obj/item/keycard/office,
+/obj/item/keycard/harmfactory/office,
/turf/open/floor/plating/rust,
/area/ruin/powered)
"gz" = (
@@ -303,14 +304,14 @@
/turf/open/floor/plating,
/area/ruin/powered)
"gP" = (
-/obj/machinery/door/keycard/office,
+/obj/machinery/door/keycard/harmfactory/stockroom,
/turf/open/floor/plasteel/patterned,
/area/ruin/powered)
"hf" = (
-/obj/machinery/door/keycard/office,
/obj/structure/cable{
icon_state = "1-2"
},
+/obj/machinery/door/keycard/harmfactory/stockroom,
/turf/open/floor/plasteel/patterned,
/area/ruin/powered)
"hg" = (
@@ -370,15 +371,15 @@
/turf/closed/wall/r_wall/rust,
/area/ruin/powered)
"je" = (
-/obj/machinery/door/keycard/entry,
+/obj/machinery/door/keycard/harmfactory,
/turf/open/floor/plating,
/area/ruin/powered)
"jq" = (
/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/door/keycard/entry,
/obj/structure/cable{
icon_state = "1-2"
},
+/obj/machinery/door/keycard/harmfactory,
/turf/open/floor/plasteel/patterned,
/area/ruin/powered)
"jB" = (
@@ -430,18 +431,14 @@
/turf/open/floor/plating/rust,
/area/ruin/powered)
"kC" = (
-/obj/machinery/door/keycard{
- puzzle_id = "factory4"
- },
+/obj/machinery/door/keycard/harmfactory/entry,
/turf/open/floor/plasteel/patterned/brushed,
/area/ruin/powered)
"kI" = (
/obj/structure/cable{
icon_state = "1-2"
},
-/obj/machinery/door/keycard{
- puzzle_id = "factory4"
- },
+/obj/machinery/door/keycard/harmfactory/entry,
/turf/open/floor/plating/rust,
/area/ruin/powered)
"kM" = (
@@ -1216,9 +1213,7 @@
/area/ruin/powered)
"BQ" = (
/obj/structure/table/greyscale,
-/obj/item/keycard{
- puzzle_id = "factory4"
- },
+/obj/item/keycard/harmfactory,
/turf/open/floor/engine,
/area/ruin/powered)
"BW" = (
@@ -1453,7 +1448,7 @@
/area/ruin/powered)
"GO" = (
/obj/structure/table/greyscale,
-/obj/item/keycard/stockroom,
+/obj/item/keycard/harmfactory/stockroom,
/turf/open/floor/engine,
/area/ruin/powered)
"GR" = (
@@ -1866,11 +1861,11 @@
/turf/open/floor/plasteel/patterned,
/area/ruin/powered)
"QK" = (
-/obj/structure/cable,
-/obj/item/keycard/entry,
-/obj/machinery/light/dim/directional/north,
-/obj/structure/grille,
-/turf/open/floor/plating,
+/obj/machinery/conveyor/auto{
+ dir = 1
+ },
+/obj/item/keycard/harmfactory/entry,
+/turf/open/floor/engine,
/area/ruin/powered)
"Rd" = (
/obj/effect/decal/cleanable/dirt/dust,
@@ -3066,7 +3061,7 @@ mc
px
st
vi
-QK
+sN
te
te
te
@@ -3110,7 +3105,7 @@ pC
sx
vi
sN
-te
+QK
te
te
Hs
diff --git a/_maps/RandomRuins/RockRuins/rockplanet_heirophant.dmm b/_maps/RandomRuins/RockRuins/rockplanet_heirophant.dmm
deleted file mode 100644
index 20c0e7158a0..00000000000
--- a/_maps/RandomRuins/RockRuins/rockplanet_heirophant.dmm
+++ /dev/null
@@ -1,617 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"a" = (
-/turf/closed/indestructible/riveted/hierophant,
-/area/ruin/unpowered/hierophant)
-"b" = (
-/turf/open/indestructible/hierophant,
-/area/ruin/unpowered/hierophant)
-"c" = (
-/obj/effect/light_emitter{
- set_cap = 3;
- set_luminosity = 5
- },
-/turf/open/indestructible/hierophant,
-/area/ruin/unpowered/hierophant)
-"d" = (
-/mob/living/simple_animal/hostile/megafauna/hierophant,
-/turf/open/indestructible/hierophant,
-/area/ruin/unpowered/hierophant)
-"e" = (
-/turf/open/indestructible/hierophant/two,
-/area/ruin/unpowered/hierophant)
-"f" = (
-/obj/effect/light_emitter{
- set_cap = 3;
- set_luminosity = 5
- },
-/turf/open/indestructible/hierophant/two,
-/area/ruin/unpowered/hierophant)
-"m" = (
-/turf/open/floor/plating/asteroid/rockplanet,
-/area/overmap_encounter/planetoid/rockplanet)
-"s" = (
-/obj/effect/light_emitter{
- set_cap = 3;
- set_luminosity = 5
- },
-/turf/open/floor/plating/asteroid/rockplanet/lit,
-/area/ruin/unpowered/hierophant)
-"Z" = (
-/turf/open/floor/plating/asteroid/rockplanet/lit,
-/area/ruin/unpowered/hierophant)
-
-(1,1,1) = {"
-m
-m
-m
-Z
-Z
-Z
-b
-a
-a
-Z
-Z
-a
-a
-a
-a
-a
-Z
-Z
-Z
-b
-Z
-Z
-Z
-"}
-(2,1,1) = {"
-m
-m
-Z
-Z
-Z
-b
-b
-b
-b
-b
-b
-c
-b
-b
-b
-b
-b
-b
-b
-b
-b
-Z
-Z
-"}
-(3,1,1) = {"
-m
-m
-Z
-Z
-s
-c
-b
-b
-b
-a
-b
-b
-b
-a
-b
-b
-b
-c
-c
-b
-b
-Z
-Z
-"}
-(4,1,1) = {"
-m
-Z
-Z
-Z
-Z
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-Z
-Z
-Z
-"}
-(5,1,1) = {"
-m
-Z
-Z
-Z
-Z
-a
-b
-b
-Z
-Z
-b
-c
-b
-b
-b
-c
-b
-a
-a
-b
-s
-Z
-Z
-"}
-(6,1,1) = {"
-m
-Z
-Z
-Z
-Z
-a
-b
-c
-b
-b
-b
-c
-b
-b
-b
-c
-b
-a
-a
-b
-s
-Z
-Z
-"}
-(7,1,1) = {"
-m
-Z
-Z
-Z
-Z
-Z
-Z
-Z
-Z
-e
-e
-e
-e
-e
-e
-e
-e
-b
-b
-b
-Z
-Z
-Z
-"}
-(8,1,1) = {"
-Z
-Z
-Z
-Z
-s
-s
-Z
-Z
-e
-a
-e
-e
-e
-a
-e
-e
-e
-c
-c
-b
-Z
-Z
-Z
-"}
-(9,1,1) = {"
-Z
-Z
-Z
-Z
-Z
-Z
-Z
-Z
-e
-e
-e
-f
-e
-e
-e
-e
-e
-b
-b
-Z
-Z
-Z
-a
-"}
-(10,1,1) = {"
-Z
-Z
-Z
-Z
-Z
-Z
-Z
-Z
-e
-e
-e
-e
-e
-e
-e
-a
-e
-b
-b
-Z
-a
-Z
-a
-"}
-(11,1,1) = {"
-Z
-Z
-Z
-Z
-Z
-Z
-Z
-Z
-e
-e
-b
-b
-b
-e
-e
-e
-e
-b
-b
-Z
-Z
-Z
-m
-"}
-(12,1,1) = {"
-Z
-s
-Z
-Z
-Z
-s
-Z
-Z
-f
-e
-b
-d
-b
-e
-f
-e
-e
-c
-c
-Z
-Z
-Z
-m
-"}
-(13,1,1) = {"
-Z
-Z
-Z
-Z
-Z
-Z
-Z
-Z
-e
-e
-b
-b
-b
-e
-e
-e
-e
-b
-b
-Z
-Z
-Z
-m
-"}
-(14,1,1) = {"
-Z
-Z
-Z
-Z
-Z
-Z
-e
-a
-e
-e
-e
-e
-e
-e
-e
-a
-e
-b
-b
-Z
-Z
-Z
-m
-"}
-(15,1,1) = {"
-Z
-Z
-Z
-Z
-Z
-Z
-e
-e
-e
-e
-e
-f
-e
-e
-e
-e
-e
-b
-b
-Z
-Z
-Z
-m
-"}
-(16,1,1) = {"
-a
-Z
-Z
-Z
-s
-c
-e
-e
-e
-a
-e
-e
-e
-a
-e
-e
-e
-c
-c
-b
-Z
-Z
-m
-"}
-(17,1,1) = {"
-Z
-Z
-Z
-Z
-Z
-b
-e
-e
-e
-e
-e
-e
-e
-e
-e
-e
-e
-b
-b
-b
-Z
-Z
-m
-"}
-(18,1,1) = {"
-Z
-Z
-s
-Z
-a
-a
-b
-c
-b
-b
-b
-c
-b
-b
-b
-c
-b
-a
-a
-b
-c
-Z
-m
-"}
-(19,1,1) = {"
-Z
-Z
-s
-Z
-a
-Z
-b
-c
-b
-b
-b
-c
-b
-b
-b
-c
-b
-a
-a
-b
-c
-Z
-Z
-"}
-(20,1,1) = {"
-Z
-Z
-Z
-Z
-Z
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-Z
-"}
-(21,1,1) = {"
-Z
-Z
-Z
-Z
-s
-c
-b
-b
-b
-a
-b
-b
-b
-a
-b
-b
-b
-c
-c
-b
-b
-b
-a
-"}
-(22,1,1) = {"
-Z
-Z
-Z
-Z
-Z
-Z
-b
-b
-b
-b
-b
-c
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-"}
-(23,1,1) = {"
-a
-a
-Z
-Z
-Z
-Z
-Z
-a
-a
-a
-a
-a
-a
-a
-a
-a
-Z
-Z
-Z
-b
-a
-a
-a
-"}
diff --git a/_maps/RandomRuins/RockRuins/rockplanet_house.dmm b/_maps/RandomRuins/RockRuins/rockplanet_house.dmm
deleted file mode 100644
index 7c13fbf7bd2..00000000000
--- a/_maps/RandomRuins/RockRuins/rockplanet_house.dmm
+++ /dev/null
@@ -1,151 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"a" = (
-/turf/closed/wall/rust,
-/area/ruin/unpowered)
-"g" = (
-/obj/machinery/door/airlock/wood{
- dir = 4
- },
-/obj/structure/barricade/wooden,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"h" = (
-/obj/structure/table/wood,
-/obj/item/gun/ballistic/automatic/pistol/candor,
-/obj/item/ammo_box/magazine/m45,
-/obj/effect/gibspawner/human/bodypartless,
-/obj/item/ammo_box/magazine/m45,
-/turf/open/floor/carpet/donk,
-/area/ruin/unpowered)
-"m" = (
-/obj/structure/closet/secure_closet/freezer/fridge,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"r" = (
-/obj/structure/fireplace,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"u" = (
-/obj/structure/table/wood,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"x" = (
-/obj/structure/table/wood,
-/obj/machinery/computer/security/wooden_tv,
-/turf/open/floor/carpet,
-/area/ruin/unpowered)
-"y" = (
-/obj/structure/chair/sofa/brown/right/directional/east,
-/turf/open/floor/carpet,
-/area/ruin/unpowered)
-"A" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/barricade/wooden/crude,
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"H" = (
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"L" = (
-/turf/open/floor/carpet,
-/area/ruin/unpowered)
-"M" = (
-/obj/structure/chair/wood/wings{
- dir = 4
- },
-/turf/open/floor/carpet/donk,
-/area/ruin/unpowered)
-"O" = (
-/obj/structure/chair/sofa/brown/directional/east,
-/turf/open/floor/carpet,
-/area/ruin/unpowered)
-"V" = (
-/obj/structure/chair/sofa/brown/left/directional/east,
-/turf/open/floor/carpet,
-/area/ruin/unpowered)
-"X" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/barricade/wooden/crude,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"Z" = (
-/obj/structure/chair/wood/wings{
- dir = 8
- },
-/obj/effect/mob_spawn/human/engineer,
-/turf/open/floor/carpet/donk,
-/area/ruin/unpowered)
-
-(1,1,1) = {"
-a
-a
-a
-a
-g
-a
-a
-"}
-(2,1,1) = {"
-a
-M
-H
-H
-H
-m
-X
-"}
-(3,1,1) = {"
-A
-h
-H
-H
-H
-H
-X
-"}
-(4,1,1) = {"
-a
-Z
-H
-H
-H
-H
-X
-"}
-(5,1,1) = {"
-a
-H
-H
-V
-O
-y
-a
-"}
-(6,1,1) = {"
-a
-r
-H
-L
-L
-L
-a
-"}
-(7,1,1) = {"
-a
-u
-u
-L
-x
-L
-a
-"}
-(8,1,1) = {"
-a
-a
-a
-X
-a
-a
-a
-"}
diff --git a/_maps/RandomRuins/RockRuins/rockplanet_miningexpedition.dmm b/_maps/RandomRuins/RockRuins/rockplanet_miningexpedition.dmm
deleted file mode 100644
index 088015c83b1..00000000000
--- a/_maps/RandomRuins/RockRuins/rockplanet_miningexpedition.dmm
+++ /dev/null
@@ -1,1073 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"ai" = (
-/mob/living/simple_animal/hostile/asteroid/goliath{
- dir = 4
- },
-/turf/open/floor/plating/asteroid/rockplanet/lit,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"an" = (
-/obj/machinery/door/airlock{
- dir = 4
- },
-/turf/open/floor/plasteel/grimy,
-/area/ruin/rockplanet/syndicate)
-"bs" = (
-/obj/structure/barricade/sandbags,
-/turf/open/floor/plating/asteroid/rockplanet/lit,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"bB" = (
-/obj/structure/sign/poster/contraband/steppyflag,
-/turf/closed/wall/r_wall/rust,
-/area/ruin/rockplanet/syndicate)
-"dk" = (
-/obj/structure/ore_box,
-/turf/open/floor/plating/asteroid/rockplanet/lit,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"dz" = (
-/obj/structure/chair/plastic{
- dir = 4
- },
-/obj/effect/decal/cleanable/blood,
-/turf/open/floor/plating/asteroid/rockplanet/lit,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"fL" = (
-/obj/item/kinetic_crusher,
-/obj/effect/decal/cleanable/blood,
-/obj/effect/gibspawner/human,
-/obj/item/clothing/suit/space/hardsuit/mining,
-/turf/open/floor/plating/asteroid/rockplanet/lit,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"gN" = (
-/obj/structure/sign/poster/contraband/tools,
-/turf/closed/wall/r_wall/rust,
-/area/ruin/rockplanet/syndicate)
-"js" = (
-/obj/item/chair,
-/obj/effect/decal/cleanable/blood,
-/obj/item/gun/ballistic/automatic/pistol/candor{
- pixel_y = 1
- },
-/turf/open/floor/plasteel/grimy,
-/area/ruin/rockplanet/syndicate)
-"lg" = (
-/obj/structure/table,
-/obj/machinery/microwave,
-/turf/open/floor/plasteel/grimy,
-/area/ruin/rockplanet/syndicate)
-"ll" = (
-/turf/open/floor/plating/rust,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"mf" = (
-/obj/structure/bed,
-/obj/machinery/light/broken/directional/west,
-/turf/open/floor/plasteel/grimy,
-/area/ruin/rockplanet/syndicate)
-"mk" = (
-/turf/open/floor/plasteel/grimy,
-/area/ruin/rockplanet/syndicate)
-"nn" = (
-/obj/structure/fans/tiny,
-/obj/machinery/door/airlock/mining,
-/turf/open/floor/plasteel/mono/dark,
-/area/ruin/rockplanet/syndicate)
-"ov" = (
-/obj/structure/sign/warning/gasmask,
-/turf/closed/wall/r_wall/rust,
-/area/ruin/rockplanet/syndicate)
-"pl" = (
-/turf/open/floor/plasteel/rockvault,
-/area/ruin/rockplanet/syndicate)
-"qj" = (
-/mob/living/simple_animal/hostile/netherworld/blankbody{
- desc = "What seems to be the remnants of what was once a human.";
- name = "Turned"
- },
-/turf/open/floor/plating/asteroid/rockplanet/lit,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"ro" = (
-/obj/effect/decal/cleanable/oil,
-/turf/open/floor/plasteel/mono/dark,
-/area/ruin/rockplanet/syndicate)
-"rr" = (
-/obj/structure/sign/warning/xeno_mining,
-/turf/closed/wall/r_wall/rust,
-/area/ruin/rockplanet/syndicate)
-"rY" = (
-/mob/living/simple_animal/hostile/netherworld/blankbody{
- desc = "What seems to be the remnants of what was once a human.";
- name = "Turned"
- },
-/turf/open/floor/plasteel/grimy,
-/area/ruin/rockplanet/syndicate)
-"sj" = (
-/obj/machinery/computer/mech_bay_power_console{
- dir = 8
- },
-/turf/open/floor/plasteel/rockvault,
-/area/ruin/rockplanet/syndicate)
-"sJ" = (
-/obj/effect/gibspawner/human,
-/turf/open/floor/plasteel/grimy,
-/area/ruin/rockplanet/syndicate)
-"sM" = (
-/obj/structure/flora/rock/pile,
-/turf/open/floor/plating/asteroid/rockplanet/lit,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"sP" = (
-/mob/living/simple_animal/hostile/skeleton/plasmaminer,
-/turf/open/floor/plating/asteroid/rockplanet/lit,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"tN" = (
-/turf/open/floor/plating/asteroid/rockplanet/lit,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"ub" = (
-/obj/machinery/computer{
- dir = 8
- },
-/turf/open/floor/plasteel/rockvault,
-/area/ruin/rockplanet/syndicate)
-"ug" = (
-/obj/machinery/suit_storage_unit/mining,
-/turf/open/floor/plasteel/mono,
-/area/ruin/rockplanet/syndicate)
-"uq" = (
-/obj/machinery/suit_storage_unit/open,
-/turf/open/floor/plasteel/mono,
-/area/ruin/rockplanet/syndicate)
-"ur" = (
-/obj/structure/flora/rock,
-/turf/open/floor/plating/asteroid/rockplanet/lit,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"vK" = (
-/obj/machinery/door/airlock/mining,
-/obj/structure/fans/tiny,
-/turf/open/floor/plasteel/mono/dark,
-/area/ruin/rockplanet/syndicate)
-"wY" = (
-/obj/structure/table,
-/obj/item/stack/sheet/cardboard,
-/turf/open/floor/plasteel/grimy,
-/area/ruin/rockplanet/syndicate)
-"yv" = (
-/turf/open/floor/plasteel/mono/dark,
-/area/ruin/rockplanet/syndicate)
-"yz" = (
-/obj/structure/sign/poster/official/no_erp,
-/turf/closed/wall/r_wall/rust,
-/area/ruin/rockplanet/syndicate)
-"yT" = (
-/obj/machinery/mineral/ore_redemption,
-/turf/open/floor/plasteel/rockvault,
-/area/ruin/rockplanet/syndicate)
-"yZ" = (
-/turf/closed/mineral/random/rockplanet,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"BR" = (
-/obj/effect/decal/cleanable/oil,
-/turf/open/floor/plasteel/rockvault,
-/area/ruin/rockplanet/syndicate)
-"Ch" = (
-/obj/machinery/vending/mining_equipment,
-/turf/open/floor/plasteel/mono,
-/area/ruin/rockplanet/syndicate)
-"CL" = (
-/obj/structure/sign/poster/random,
-/turf/closed/wall/r_wall/rust,
-/area/ruin/rockplanet/syndicate)
-"CX" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/obj/machinery/light/broken/directional/east,
-/turf/open/floor/plasteel/mono,
-/area/ruin/rockplanet/syndicate)
-"Du" = (
-/obj/structure/sign/poster/contraband/space_up,
-/turf/closed/wall/r_wall/rust,
-/area/ruin/rockplanet/syndicate)
-"Fl" = (
-/obj/structure/bed,
-/obj/effect/gibspawner/human/bodypartless,
-/turf/open/floor/plasteel/grimy,
-/area/ruin/rockplanet/syndicate)
-"Gc" = (
-/mob/living/simple_animal/hostile/asteroid/goliath,
-/turf/open/floor/plating/asteroid/rockplanet/lit,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"Gh" = (
-/obj/structure/tank_dispenser/oxygen,
-/turf/open/floor/plasteel/mono,
-/area/ruin/rockplanet/syndicate)
-"HW" = (
-/obj/machinery/light/broken/directional/east,
-/turf/open/floor/plasteel/grimy,
-/area/ruin/rockplanet/syndicate)
-"Jz" = (
-/obj/effect/decal/cleanable/blood,
-/mob/living/simple_animal/hostile/netherworld/blankbody{
- desc = "What seems to be the remnants of what was once a human.";
- name = "Turned"
- },
-/turf/open/floor/plating/asteroid/rockplanet/lit,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"JC" = (
-/obj/item/weldingtool,
-/obj/effect/decal/cleanable/blood/gibs/up,
-/turf/open/floor/plasteel/rockvault,
-/area/ruin/rockplanet/syndicate)
-"LZ" = (
-/obj/effect/decal/cleanable/blood,
-/turf/open/floor/plasteel/grimy,
-/area/ruin/rockplanet/syndicate)
-"Mh" = (
-/obj/structure/bed,
-/turf/open/floor/plasteel/grimy,
-/area/ruin/rockplanet/syndicate)
-"NV" = (
-/obj/machinery/light/broken/directional/south,
-/obj/effect/decal/cleanable/blood,
-/turf/open/floor/plasteel/rockvault,
-/area/ruin/rockplanet/syndicate)
-"OB" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/effect/decal/cleanable/blood,
-/turf/open/floor/plasteel/grimy,
-/area/ruin/rockplanet/syndicate)
-"OQ" = (
-/obj/effect/turf_decal/dept/mining,
-/turf/open/floor/plasteel/mono/dark,
-/area/ruin/rockplanet/syndicate)
-"Pk" = (
-/obj/item/reagent_containers/food/drinks/beer/light,
-/obj/item/cigbutt{
- pixel_x = -10;
- pixel_y = -7
- },
-/turf/open/floor/plating/asteroid/rockplanet/lit,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"Pn" = (
-/obj/item/reagent_containers/food/snacks/donkpocket/warm/berry,
-/obj/effect/decal/cleanable/blood/gibs/core,
-/obj/effect/decal/cleanable/blood,
-/turf/open/floor/plasteel/grimy,
-/area/ruin/rockplanet/syndicate)
-"Pz" = (
-/obj/effect/decal/cleanable/blood,
-/turf/open/floor/plasteel/rockvault,
-/area/ruin/rockplanet/syndicate)
-"PJ" = (
-/obj/structure/table/wood,
-/obj/item/toy/cards/deck{
- pixel_x = 3;
- pixel_y = 6
- },
-/turf/open/floor/plasteel/grimy,
-/area/ruin/rockplanet/syndicate)
-"PK" = (
-/obj/effect/decal/cleanable/blood,
-/obj/item/stack/ore/plasma{
- amount = 8
- },
-/turf/open/floor/plasteel/rockvault,
-/area/ruin/rockplanet/syndicate)
-"Qo" = (
-/obj/effect/decal/cleanable/blood,
-/obj/effect/mob_spawn/human/miner,
-/obj/item/pickaxe,
-/turf/open/floor/plating/asteroid/rockplanet/lit,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"Qr" = (
-/obj/effect/turf_decal/rechargefloor,
-/obj/structure/mecha_wreckage/ripley,
-/turf/open/floor/plasteel/rockvault,
-/area/ruin/rockplanet/syndicate)
-"QR" = (
-/mob/living/simple_animal/bot/mulebot,
-/turf/open/floor/plating/asteroid/rockplanet/lit,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"Rk" = (
-/obj/effect/decal/cleanable/blood,
-/turf/open/floor/plating/asteroid/rockplanet/lit,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"SC" = (
-/obj/structure/table,
-/obj/item/reagent_containers/food/drinks/soda_cans/cola{
- pixel_x = 8;
- pixel_y = 5
- },
-/obj/item/toy/figure/miner{
- pixel_x = -5
- },
-/obj/machinery/light/broken/directional/east,
-/turf/open/floor/plasteel/grimy,
-/area/ruin/rockplanet/syndicate)
-"Uu" = (
-/obj/machinery/light/broken/directional/north,
-/obj/effect/decal/cleanable/oil,
-/turf/open/floor/plasteel/rockvault,
-/area/ruin/rockplanet/syndicate)
-"Vw" = (
-/turf/closed/wall/r_wall/rust,
-/area/ruin/rockplanet/syndicate)
-"VL" = (
-/obj/machinery/mech_bay_recharge_port{
- dir = 2
- },
-/turf/open/floor/plasteel/rockvault,
-/area/ruin/rockplanet/syndicate)
-"VM" = (
-/obj/item/chair{
- dir = 8
- },
-/turf/open/floor/plasteel/grimy,
-/area/ruin/rockplanet/syndicate)
-"Wf" = (
-/obj/effect/decal/cleanable/blood,
-/obj/item/clothing/glasses/material/mining/gar,
-/turf/open/floor/plating/asteroid/rockplanet/lit,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"Wv" = (
-/obj/structure/marker_beacon,
-/turf/open/floor/plating/asteroid/rockplanet/lit,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"Wz" = (
-/obj/item/broken_bottle,
-/obj/effect/decal/cleanable/blood/gibs/body,
-/turf/open/floor/plasteel/grimy,
-/area/ruin/rockplanet/syndicate)
-"YN" = (
-/obj/effect/decal/cleanable/blood,
-/obj/structure/bed,
-/turf/open/floor/plasteel/grimy,
-/area/ruin/rockplanet/syndicate)
-"YS" = (
-/obj/machinery/door/airlock/mining{
- dir = 8
- },
-/turf/open/floor/plasteel/rockvault,
-/area/ruin/rockplanet/syndicate)
-"YW" = (
-/obj/structure/barricade/wooden,
-/turf/open/floor/plating/asteroid/rockplanet/lit,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-
-(1,1,1) = {"
-yZ
-yZ
-yZ
-yZ
-Vw
-Vw
-yz
-Vw
-Vw
-Vw
-Vw
-Vw
-yZ
-yZ
-yZ
-yZ
-ll
-ll
-ll
-ll
-yZ
-yZ
-"}
-(2,1,1) = {"
-yZ
-tN
-yZ
-yZ
-Vw
-mk
-Mh
-Mh
-mf
-Mh
-Fl
-bB
-Vw
-Vw
-Vw
-yZ
-tN
-bs
-bs
-tN
-yZ
-yZ
-"}
-(3,1,1) = {"
-yZ
-Gc
-sM
-yZ
-Vw
-YN
-rY
-sJ
-mk
-mk
-LZ
-Vw
-ug
-uq
-ug
-rr
-Wv
-tN
-tN
-tN
-tN
-Wv
-"}
-(4,1,1) = {"
-yZ
-tN
-Rk
-yZ
-Vw
-Mh
-mk
-mk
-mk
-mk
-mk
-vK
-yv
-ro
-OQ
-nn
-tN
-tN
-bs
-tN
-tN
-tN
-"}
-(5,1,1) = {"
-yZ
-yZ
-Qo
-yZ
-Vw
-YN
-mk
-VM
-LZ
-mk
-mk
-Vw
-Gh
-CX
-Ch
-ov
-tN
-tN
-bs
-tN
-ll
-yZ
-"}
-(6,1,1) = {"
-yZ
-ll
-Rk
-yZ
-Vw
-mk
-mk
-mk
-SC
-sJ
-rY
-CL
-Vw
-Vw
-Vw
-Pk
-dz
-tN
-tN
-tN
-yZ
-yZ
-"}
-(7,1,1) = {"
-yZ
-ll
-ai
-yZ
-Vw
-Vw
-an
-Vw
-Du
-Vw
-Vw
-Vw
-ll
-ll
-ll
-tN
-tN
-tN
-sM
-tN
-tN
-bs
-"}
-(8,1,1) = {"
-yZ
-yZ
-tN
-yZ
-Vw
-js
-Wz
-Vw
-yZ
-yZ
-yZ
-yZ
-ll
-tN
-tN
-tN
-tN
-dk
-ll
-bs
-Wv
-tN
-"}
-(9,1,1) = {"
-yZ
-yZ
-tN
-yZ
-CL
-PJ
-mk
-Vw
-Vw
-Vw
-yZ
-ll
-ll
-tN
-tN
-bs
-bs
-bs
-ll
-yZ
-yZ
-yZ
-"}
-(10,1,1) = {"
-yZ
-yZ
-tN
-yZ
-Vw
-OB
-Pn
-rY
-lg
-Vw
-yZ
-ll
-tN
-tN
-tN
-tN
-Wv
-ll
-ll
-yZ
-yZ
-yZ
-"}
-(11,1,1) = {"
-yZ
-yZ
-tN
-ll
-Vw
-mk
-HW
-mk
-wY
-Vw
-ll
-ll
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-sM
-tN
-tN
-"}
-(12,1,1) = {"
-yZ
-ll
-tN
-ur
-Vw
-Vw
-gN
-Vw
-Vw
-Vw
-ll
-ll
-ll
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-Wv
-"}
-(13,1,1) = {"
-yZ
-ll
-Wv
-tN
-tN
-YW
-YW
-Wv
-sP
-tN
-tN
-ll
-tN
-tN
-ur
-tN
-tN
-ll
-ll
-yZ
-yZ
-yZ
-"}
-(14,1,1) = {"
-yZ
-ll
-tN
-ll
-tN
-YW
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-ll
-ll
-yZ
-yZ
-yZ
-"}
-(15,1,1) = {"
-yZ
-ll
-tN
-ll
-yZ
-yZ
-yZ
-ll
-ll
-tN
-sM
-tN
-tN
-tN
-tN
-yZ
-yZ
-yZ
-yZ
-yZ
-yZ
-yZ
-"}
-(16,1,1) = {"
-yZ
-yZ
-tN
-yZ
-yZ
-yZ
-yZ
-ll
-ll
-tN
-tN
-tN
-tN
-tN
-Wv
-Rk
-tN
-tN
-tN
-Rk
-tN
-yZ
-"}
-(17,1,1) = {"
-yZ
-yZ
-tN
-yZ
-yZ
-yZ
-yZ
-ll
-tN
-tN
-tN
-tN
-ll
-ll
-yZ
-yZ
-yZ
-yZ
-yZ
-tN
-Jz
-yZ
-"}
-(18,1,1) = {"
-yZ
-yZ
-tN
-yZ
-yZ
-yZ
-yZ
-ll
-tN
-QR
-tN
-ll
-ll
-ll
-ll
-yZ
-yZ
-yZ
-yZ
-yZ
-yZ
-yZ
-"}
-(19,1,1) = {"
-yZ
-yZ
-tN
-yZ
-yZ
-yZ
-yZ
-ll
-tN
-tN
-tN
-tN
-tN
-Wv
-tN
-tN
-tN
-tN
-tN
-tN
-Wv
-tN
-"}
-(20,1,1) = {"
-yZ
-ll
-tN
-yZ
-yZ
-yZ
-ll
-ll
-tN
-tN
-Rk
-ll
-yZ
-yZ
-yZ
-yZ
-yZ
-yZ
-yZ
-yZ
-yZ
-yZ
-"}
-(21,1,1) = {"
-yZ
-tN
-tN
-yZ
-yZ
-yZ
-ll
-ll
-tN
-tN
-tN
-tN
-ll
-yZ
-yZ
-yZ
-yZ
-yZ
-yZ
-yZ
-yZ
-yZ
-"}
-(22,1,1) = {"
-yZ
-tN
-yZ
-yZ
-yZ
-yZ
-ll
-ll
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-Wv
-tN
-tN
-tN
-tN
-tN
-"}
-(23,1,1) = {"
-yZ
-tN
-yZ
-yZ
-yZ
-yZ
-ll
-ll
-tN
-sM
-tN
-qj
-tN
-tN
-ll
-yZ
-yZ
-yZ
-sM
-ll
-tN
-ll
-"}
-(24,1,1) = {"
-yZ
-tN
-yZ
-yZ
-yZ
-yZ
-ll
-Wv
-Rk
-tN
-tN
-Rk
-tN
-yZ
-yZ
-yZ
-yZ
-yZ
-yZ
-yZ
-tN
-ll
-"}
-(25,1,1) = {"
-yZ
-tN
-tN
-yZ
-yZ
-yZ
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-yZ
-yZ
-tN
-tN
-yZ
-yZ
-yZ
-tN
-yZ
-"}
-(26,1,1) = {"
-yZ
-yZ
-tN
-yZ
-yZ
-ll
-tN
-Vw
-YS
-Vw
-Vw
-Vw
-Vw
-yZ
-tN
-sM
-Wf
-tN
-tN
-ll
-Rk
-yZ
-"}
-(27,1,1) = {"
-yZ
-yZ
-Wv
-yZ
-yZ
-ll
-tN
-Vw
-Pz
-pl
-yT
-PK
-Vw
-ll
-ll
-tN
-tN
-tN
-tN
-Wv
-tN
-yZ
-"}
-(28,1,1) = {"
-yZ
-yZ
-tN
-yZ
-yZ
-ll
-tN
-Vw
-Uu
-JC
-BR
-NV
-CL
-ll
-tN
-qj
-tN
-tN
-fL
-tN
-tN
-yZ
-"}
-(29,1,1) = {"
-ll
-ll
-tN
-ll
-yZ
-yZ
-tN
-Vw
-VL
-Qr
-sj
-ub
-Vw
-ll
-tN
-tN
-Rk
-dk
-tN
-sM
-ll
-yZ
-"}
-(30,1,1) = {"
-ll
-ll
-tN
-ll
-yZ
-yZ
-Wv
-Vw
-Vw
-Vw
-Vw
-Vw
-Vw
-ll
-Wv
-ll
-yZ
-yZ
-yZ
-yZ
-yZ
-yZ
-"}
diff --git a/_maps/RandomRuins/RockRuins/rockplanet_pioneer.dmm b/_maps/RandomRuins/RockRuins/rockplanet_pioneer.dmm
deleted file mode 100644
index 4dba7705223..00000000000
--- a/_maps/RandomRuins/RockRuins/rockplanet_pioneer.dmm
+++ /dev/null
@@ -1,96 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"a" = (
-/turf/template_noop,
-/area/template_noop)
-"b" = (
-/obj/effect/decal/remains/human,
-/turf/open/floor/plating/asteroid/rockplanet/lit,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"f" = (
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 10
- },
-/turf/open/floor/plating/asteroid/rockplanet/lit,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"k" = (
-/obj/item/pizzabox,
-/turf/open/floor/plating/asteroid/rockplanet/lit,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"l" = (
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 4
- },
-/turf/open/floor/plating/asteroid/rockplanet/lit,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"t" = (
-/obj/structure/flora/rock,
-/turf/open/floor/plating/asteroid/rockplanet/lit,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"I" = (
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 8
- },
-/turf/open/floor/plating/asteroid/rockplanet/lit,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"M" = (
-/obj/item/clothing/neck/tie/red,
-/obj/item/clothing/shoes/laceup,
-/turf/open/floor/plating/asteroid/rockplanet/lit,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"R" = (
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 5
- },
-/turf/open/floor/plating/asteroid/rockplanet/lit,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-
-(1,1,1) = {"
-b
-a
-a
-"}
-(2,1,1) = {"
-M
-t
-a
-"}
-(3,1,1) = {"
-k
-I
-a
-"}
-(4,1,1) = {"
-a
-l
-a
-"}
-(5,1,1) = {"
-a
-I
-a
-"}
-(6,1,1) = {"
-a
-I
-a
-"}
-(7,1,1) = {"
-a
-l
-a
-"}
-(8,1,1) = {"
-a
-I
-a
-"}
-(9,1,1) = {"
-a
-R
-f
-"}
-(10,1,1) = {"
-a
-a
-l
-"}
diff --git a/_maps/RandomRuins/RockRuins/rockplanet_saloon.dmm b/_maps/RandomRuins/RockRuins/rockplanet_saloon.dmm
deleted file mode 100644
index 3b597c46f4e..00000000000
--- a/_maps/RandomRuins/RockRuins/rockplanet_saloon.dmm
+++ /dev/null
@@ -1,2430 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"aa" = (
-/obj/structure/chair/stool/bar{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/siding/wood,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"al" = (
-/obj/structure/barricade/wooden,
-/obj/item/shard,
-/obj/effect/decal/cleanable/glass,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"an" = (
-/obj/structure/table/wood,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"aJ" = (
-/obj/structure/table/wood/fancy/red_gold,
-/obj/item/toy/cards/deck/syndicate,
-/turf/open/floor/carpet/nanoweave,
-/area/ruin/unpowered)
-"bi" = (
-/obj/structure/table/wood,
-/obj/item/reagent_containers/food/drinks/bottle/small{
- pixel_x = -2;
- pixel_y = 4
- },
-/turf/open/floor/wood{
- icon_state = "wood-broken"
- },
-/area/ruin/unpowered)
-"bC" = (
-/obj/effect/decal/cleanable/blood/old{
- icon_state = "floor3-old"
- },
-/obj/item/reagent_containers/hypospray/medipen{
- desc = "A rapid and safe way to stabilize patients in critical condition for personnel without advanced medical knowledge. Contains a powerful preservative that can delay decomposition when applied to a dead body. This one is spent.";
- icon_state = "medipen0";
- list_reagents = null;
- name = "spent epinephrine medipen";
- pixel_x = 3;
- pixel_y = -8
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/siding/wood{
- color = "#543C30";
- dir = 4
- },
-/turf/open/floor/wood/walnut,
-/area/ruin/unpowered)
-"bK" = (
-/obj/structure/table/wood,
-/obj/item/reagent_containers/food/drinks/bottle/tequila{
- pixel_x = -6;
- pixel_y = 10
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"cf" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/wood{
- icon_state = "wood-broken3"
- },
-/area/ruin/unpowered)
-"ch" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/siding/wood{
- dir = 8
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"ci" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/wood{
- icon_state = "wood-broken4"
- },
-/area/ruin/unpowered)
-"cr" = (
-/obj/structure/table/wood,
-/obj/item/reagent_containers/food/drinks/bottle/small{
- pixel_x = 1;
- pixel_y = 3
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"cH" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/siding/wood{
- dir = 8
- },
-/turf/open/floor/wood{
- icon_state = "wood-broken2"
- },
-/area/ruin/unpowered)
-"dw" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/siding/wood/end,
-/turf/open/floor/plasteel/grimy,
-/area/ruin/unpowered)
-"dF" = (
-/obj/effect/decal/cleanable/blood/old{
- icon_state = "floor5-old"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/siding/wood{
- color = "#543C30";
- dir = 6
- },
-/turf/open/floor/wood/walnut{
- icon_state = "wood-broken"
- },
-/area/ruin/unpowered)
-"dP" = (
-/mob/living/simple_animal/hostile/netherworld/migo,
-/turf/open/floor/plating/asteroid/rockplanet/lit,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"dS" = (
-/mob/living/simple_animal/hostile/mining_drone/rockplanet,
-/turf/open/floor/plating/asteroid/rockplanet/cracked/lit,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"dW" = (
-/obj/structure/table/wood,
-/obj/item/reagent_containers/food/drinks/shaker{
- pixel_x = -6;
- pixel_y = 10
- },
-/obj/item/reagent_containers/glass/rag{
- pixel_x = -4;
- pixel_y = 5
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"dZ" = (
-/obj/structure/railing{
- color = "#BA8C63"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/siding/wood,
-/obj/effect/turf_decal/siding/wood{
- dir = 1
- },
-/turf/open/floor/wood,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"ei" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 1
- },
-/obj/effect/turf_decal/siding/wood,
-/turf/open/floor/wood{
- icon_state = "wood-broken4"
- },
-/area/ruin/unpowered)
-"eF" = (
-/obj/structure/table/wood,
-/obj/item/trash/plate{
- pixel_y = 2
- },
-/obj/item/candle{
- pixel_y = 6
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/siding/wood{
- dir = 4
- },
-/turf/open/floor/wood{
- icon_state = "wood-broken2"
- },
-/area/ruin/unpowered)
-"eJ" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/siding/wood{
- dir = 9
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"eM" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 1
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"eS" = (
-/obj/item/chair/wood,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/siding/wood{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"eX" = (
-/obj/structure/toilet{
- dir = 1
- },
-/obj/structure/curtain,
-/obj/effect/decal/cleanable/vomit/old{
- icon_state = "vomit_4-old"
- },
-/mob/living/simple_animal/hostile/netherworld,
-/obj/effect/decal/cleanable/blood/old{
- icon_state = "floor2-old"
- },
-/obj/item/storage/firstaid{
- pixel_x = -6;
- pixel_y = 2
- },
-/turf/open/floor/plasteel/freezer,
-/area/ruin/unpowered)
-"fo" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/siding/wood{
- dir = 1
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"fs" = (
-/obj/item/chair/wood,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"fu" = (
-/obj/structure/table/wood/fancy/red_gold,
-/obj/item/spacecash/bundle/c500{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/carpet/nanoweave,
-/area/ruin/unpowered)
-"fL" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 1
- },
-/turf/open/floor/wood{
- icon_state = "wood-broken3"
- },
-/area/ruin/unpowered)
-"fN" = (
-/obj/effect/turf_decal/siding/wood,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"fO" = (
-/obj/structure/chair/wood{
- dir = 1
- },
-/obj/effect/turf_decal/siding/wood{
- dir = 8
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"fZ" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/carpet/black,
-/area/ruin/unpowered)
-"gq" = (
-/obj/structure/table/wood,
-/obj/item/trash/plate{
- pixel_y = 2
- },
-/obj/item/candle{
- pixel_y = 6
- },
-/obj/effect/turf_decal/siding/wood{
- dir = 8
- },
-/turf/open/floor/wood{
- icon_state = "wood-broken"
- },
-/area/ruin/unpowered)
-"gL" = (
-/obj/structure/railing{
- color = "#BA8C63"
- },
-/obj/structure/railing/corner{
- color = "#BA8C63";
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/siding/wood,
-/obj/effect/turf_decal/siding/wood{
- dir = 1
- },
-/turf/open/floor/wood{
- icon_state = "wood-broken"
- },
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"hj" = (
-/obj/structure/table/wood,
-/obj/item/book/manual/wiki/drinks{
- pixel_x = -2;
- pixel_y = 12
- },
-/obj/item/reagent_containers/food/drinks/flask{
- pixel_x = -4;
- pixel_y = 5
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/siding/wood{
- color = "#543C30";
- dir = 8
- },
-/turf/open/floor/wood/walnut,
-/area/ruin/unpowered)
-"hp" = (
-/obj/structure/sink{
- dir = 1
- },
-/obj/structure/mirror{
- pixel_y = -28
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/blood/old{
- icon_state = "floor6-old"
- },
-/turf/open/floor/plasteel/freezer,
-/area/ruin/unpowered)
-"ib" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/siding/wood{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"im" = (
-/obj/item/clothing/mask/breath{
- pixel_x = -8;
- pixel_y = 2
- },
-/obj/item/tank/internals/emergency_oxygen/engi/empty{
- pixel_x = -18;
- pixel_y = -6
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/wood/ebony,
-/area/ruin/unpowered)
-"it" = (
-/turf/open/floor/plating/asteroid/rockplanet/cracked/lit,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"iS" = (
-/obj/structure/table/wood,
-/obj/item/reagent_containers/food/drinks/bottle/whiskey{
- pixel_x = 6;
- pixel_y = 12
- },
-/obj/item/reagent_containers/food/drinks/bottle{
- pixel_x = -8;
- pixel_y = 4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"jz" = (
-/obj/structure/chair/wood{
- dir = 1
- },
-/mob/living/simple_animal/hostile/netherworld/migo,
-/obj/effect/turf_decal/siding/wood,
-/turf/open/floor/wood{
- icon_state = "wood-broken"
- },
-/area/ruin/unpowered)
-"jQ" = (
-/mob/living/simple_animal/hostile/netherworld,
-/turf/open/floor/plating/asteroid/rockplanet/cracked/lit,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"jW" = (
-/obj/structure/barricade/wooden/crude,
-/obj/structure/door_assembly/door_assembly_wood{
- anchored = 1
- },
-/obj/effect/turf_decal/siding/wood{
- dir = 8
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"kb" = (
-/obj/structure/barricade/wooden/crude,
-/obj/machinery/door/airlock/wood,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/wood/maple,
-/area/ruin/unpowered)
-"kd" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 4
- },
-/turf/open/floor/wood{
- icon_state = "wood-broken2"
- },
-/area/ruin/unpowered)
-"kh" = (
-/obj/item/ammo_casing/caseless{
- pixel_x = -4;
- pixel_y = -7
- },
-/obj/item/ammo_casing/caseless{
- pixel_x = 9;
- pixel_y = 2
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/carpet/royalblack,
-/area/ruin/unpowered)
-"kq" = (
-/obj/effect/decal/cleanable/blood/old{
- icon_state = "floor6-old"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/wood/ebony{
- icon_state = "wood-broken3"
- },
-/area/ruin/unpowered)
-"la" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/carpet/green,
-/area/ruin/unpowered)
-"lH" = (
-/obj/structure/table/wood,
-/obj/item/trash/plate{
- pixel_y = 2
- },
-/obj/item/candle{
- pixel_y = 6
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"lI" = (
-/obj/effect/spawner/structure/window,
-/obj/structure/barricade/wooden,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"lM" = (
-/obj/structure/reagent_dispensers/beerkeg,
-/obj/effect/turf_decal/siding/wood{
- color = "#543C30";
- dir = 4
- },
-/turf/open/floor/wood/walnut{
- icon_state = "wood-broken5"
- },
-/area/ruin/unpowered)
-"lT" = (
-/obj/item/ammo_casing/caseless{
- pixel_x = -3;
- pixel_y = 4
- },
-/turf/open/floor/carpet/royalblack,
-/area/ruin/unpowered)
-"lV" = (
-/obj/structure/sink{
- pixel_y = 16
- },
-/obj/structure/mirror{
- pixel_y = 28
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/vomit/old{
- icon_state = "vomit_1-old"
- },
-/turf/open/floor/plasteel/freezer,
-/area/ruin/unpowered)
-"lW" = (
-/obj/effect/decal/remains/human,
-/obj/item/clothing/under/rank/civilian/bartender{
- pixel_x = 4;
- pixel_y = 6
- },
-/obj/item/clothing/shoes/laceup{
- pixel_x = -6;
- pixel_y = -10
- },
-/obj/item/clothing/suit/armor/vest/alt{
- pixel_x = 4;
- pixel_y = 6
- },
-/obj/item/gun/ballistic/shotgun/hellfire{
- pixel_x = -10;
- pixel_y = 2
- },
-/obj/effect/decal/cleanable/blood/old{
- icon_state = "floor5-old"
- },
-/obj/effect/turf_decal/siding/wood{
- color = "#543C30";
- dir = 4
- },
-/mob/living/simple_animal/hostile/illusion,
-/turf/open/floor/wood/walnut,
-/area/ruin/unpowered)
-"mh" = (
-/obj/machinery/vending/boozeomat/all_access,
-/obj/effect/turf_decal/siding/wood{
- dir = 8
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"mC" = (
-/obj/structure/railing{
- color = "#BA8C63"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/siding/wood,
-/obj/effect/turf_decal/siding/wood{
- dir = 1
- },
-/turf/open/floor/wood{
- icon_state = "wood-broken4"
- },
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"mE" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/wood{
- icon_state = "wood-broken7"
- },
-/area/ruin/unpowered)
-"mZ" = (
-/obj/effect/turf_decal/siding/wood,
-/obj/effect/turf_decal/siding/wood/corner{
- dir = 1
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"ou" = (
-/obj/item/shard,
-/obj/effect/decal/cleanable/glass,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"oN" = (
-/obj/structure/table/wood,
-/obj/item/trash/plate{
- pixel_y = 2
- },
-/obj/item/candle{
- pixel_y = 6
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/siding/wood{
- dir = 4
- },
-/turf/open/floor/wood{
- icon_state = "wood-broken3"
- },
-/area/ruin/unpowered)
-"pe" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/siding/wood,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"pp" = (
-/obj/structure/railing{
- color = "#BA8C63";
- dir = 10
- },
-/obj/effect/turf_decal/siding/wood/end{
- dir = 8
- },
-/turf/open/floor/wood,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"pz" = (
-/obj/structure/chair/wood,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/siding/wood{
- dir = 1
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"pM" = (
-/obj/structure/table/wood,
-/obj/item/trash/plate{
- pixel_y = 2
- },
-/obj/item/candle{
- pixel_y = 6
- },
-/obj/effect/turf_decal/siding/wood{
- dir = 8
- },
-/turf/open/floor/wood{
- icon_state = "wood-broken2"
- },
-/area/ruin/unpowered)
-"pO" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/siding/wood{
- dir = 4
- },
-/turf/open/floor/wood{
- icon_state = "wood-broken"
- },
-/area/ruin/unpowered)
-"pV" = (
-/obj/item/ammo_casing/caseless{
- pixel_x = 6;
- pixel_y = -10
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/carpet/royalblack,
-/area/ruin/unpowered)
-"pY" = (
-/obj/structure/chair/wood{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"qd" = (
-/obj/structure/door_assembly/door_assembly_wood{
- anchored = 1;
- dir = 8
- },
-/turf/open/floor/wood/maple,
-/area/ruin/unpowered)
-"qh" = (
-/obj/structure/door_assembly/door_assembly_silver{
- anchored = 1
- },
-/obj/effect/turf_decal/siding/wood{
- dir = 1
- },
-/turf/open/floor/plasteel/freezer,
-/area/ruin/unpowered)
-"qy" = (
-/obj/effect/turf_decal/siding/wood/corner{
- dir = 1
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"rh" = (
-/obj/item/chair/stool/bar{
- dir = 4
- },
-/obj/effect/turf_decal/siding/wood{
- dir = 8
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"rB" = (
-/obj/structure/bed,
-/obj/item/bedsheet/brown,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/siding/wood{
- color = "#543C30";
- dir = 6
- },
-/turf/open/floor/wood/walnut,
-/area/ruin/unpowered)
-"rT" = (
-/obj/structure/sink{
- dir = 1
- },
-/obj/structure/mirror{
- pixel_y = -28
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/freezer,
-/area/ruin/unpowered)
-"sj" = (
-/obj/structure/railing/corner{
- color = "#BA8C63"
- },
-/obj/item/ammo_casing/caseless{
- pixel_x = -4;
- pixel_y = -7
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/siding/wood/corner{
- dir = 4
- },
-/obj/effect/turf_decal/siding/wood,
-/turf/open/floor/wood,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"sF" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/mob/living/simple_animal/hostile/netherworld/migo,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"to" = (
-/obj/structure/closet/cabinet,
-/obj/item/storage/bag/money/vault,
-/obj/item/spacecash/bundle/c1000,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/siding/wood{
- color = "#543C30";
- dir = 5
- },
-/turf/open/floor/wood/walnut,
-/area/ruin/unpowered)
-"tK" = (
-/obj/effect/turf_decal/siding/wood,
-/obj/effect/turf_decal/siding/wood/corner{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"tL" = (
-/obj/effect/decal/cleanable/blood/old{
- icon_state = "floor2-old"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/siding/wood/end{
- dir = 1
- },
-/turf/open/floor/plasteel/grimy,
-/area/ruin/unpowered)
-"tO" = (
-/obj/structure/closet/crate/bin,
-/obj/item/broken_bottle{
- pixel_x = -6;
- pixel_y = -4
- },
-/obj/item/paper/crumpled{
- pixel_x = 1;
- pixel_y = -5
- },
-/obj/item/cigbutt/cigarbutt{
- pixel_y = -6
- },
-/obj/item/cigbutt/cigarbutt{
- pixel_x = 3;
- pixel_y = 2
- },
-/obj/effect/spawner/lootdrop/maintenance/two,
-/obj/effect/turf_decal/siding/wood{
- color = "#543C30";
- dir = 10
- },
-/turf/open/floor/wood/walnut{
- icon_state = "wood-broken2"
- },
-/area/ruin/unpowered)
-"tR" = (
-/obj/structure/table/wood/fancy/royalblack,
-/obj/machinery/chem_dispenser/drinks/beer{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/siding/wood{
- dir = 8
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"tZ" = (
-/obj/structure/barricade/wooden,
-/obj/effect/spawner/structure/window,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"ud" = (
-/obj/effect/turf_decal/siding/wood/corner,
-/obj/effect/turf_decal/siding/wood{
- dir = 1
- },
-/turf/open/floor/wood{
- icon_state = "wood-broken4"
- },
-/area/ruin/unpowered)
-"ul" = (
-/obj/machinery/vending/classicbeats,
-/turf/open/floor/carpet/green,
-/area/ruin/unpowered)
-"uS" = (
-/obj/structure/barricade/wooden,
-/obj/effect/spawner/structure/window,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"va" = (
-/obj/machinery/chem_master/condimaster{
- desc = "Used to mix booze. You can see a Coondimaster label lazily covered up.";
- name = "Hoochmaster 2000"
- },
-/obj/effect/turf_decal/siding/wood{
- color = "#543C30";
- dir = 9
- },
-/turf/open/floor/wood/walnut{
- icon_state = "wood-broken2"
- },
-/area/ruin/unpowered)
-"ve" = (
-/obj/effect/decal/cleanable/blood/old,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/siding/wood{
- color = "#543C30";
- dir = 1
- },
-/turf/open/floor/wood/walnut{
- icon_state = "wood-broken5"
- },
-/area/ruin/unpowered)
-"wu" = (
-/obj/structure/barricade/wooden,
-/obj/machinery/door/airlock/wood,
-/obj/effect/turf_decal/siding/wood{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"wD" = (
-/turf/open/floor/carpet/black,
-/area/ruin/unpowered)
-"wJ" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/siding/wood{
- dir = 5
- },
-/turf/open/floor/wood{
- icon_state = "wood-broken3"
- },
-/area/ruin/unpowered)
-"wQ" = (
-/obj/item/stack/medical/mesh{
- pixel_x = 7;
- pixel_y = 5
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/wood/ebony,
-/area/ruin/unpowered)
-"wZ" = (
-/obj/machinery/door/airlock/silver,
-/obj/effect/turf_decal/siding/wood,
-/turf/open/floor/plasteel/freezer,
-/area/ruin/unpowered)
-"xc" = (
-/obj/structure/table/wood,
-/obj/item/trash/plate{
- pixel_y = 2
- },
-/obj/item/candle{
- pixel_y = 6
- },
-/obj/effect/turf_decal/siding/wood{
- dir = 8
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"xl" = (
-/obj/structure/table/wood,
-/obj/item/reagent_containers/food/drinks/bottle/cognac{
- pixel_x = 6
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"xE" = (
-/obj/structure/railing/corner{
- color = "#BA8C63";
- dir = 4
- },
-/obj/item/gun/ballistic/automatic/pistol/no_mag,
-/obj/item/ammo_casing/caseless{
- pixel_x = 6;
- pixel_y = -10
- },
-/turf/open/floor/plating/asteroid/rockplanet/cracked/lit,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"xH" = (
-/obj/structure/table/wood/fancy/red_gold,
-/obj/item/spacecash/bundle/c200{
- pixel_x = -4;
- pixel_y = -6
- },
-/obj/item/coin/iron{
- pixel_x = -6;
- pixel_y = 2
- },
-/obj/item/coin/iron{
- pixel_x = -6;
- pixel_y = 4
- },
-/obj/item/coin/iron{
- pixel_x = -6;
- pixel_y = 6
- },
-/turf/open/floor/carpet/nanoweave,
-/area/ruin/unpowered)
-"yn" = (
-/obj/structure/table/wood,
-/obj/item/trash/plate{
- pixel_y = 2
- },
-/obj/item/candle{
- pixel_y = 6
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/siding/wood,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"yp" = (
-/obj/effect/decal/cleanable/blood/old{
- icon_state = "floor7-old"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"yQ" = (
-/obj/structure/door_assembly/door_assembly_silver{
- anchored = 1
- },
-/turf/open/floor/plasteel/freezer,
-/area/ruin/unpowered)
-"zm" = (
-/obj/structure/railing/corner{
- color = "#BA8C63";
- dir = 8
- },
-/obj/item/ammo_casing/caseless{
- pixel_x = -3;
- pixel_y = 4
- },
-/obj/item/ammo_casing/caseless{
- pixel_x = 6;
- pixel_y = -10
- },
-/obj/effect/decal/cleanable/blood/old{
- icon_state = "floor7-old"
- },
-/obj/effect/turf_decal/siding/wood/corner{
- dir = 1
- },
-/obj/effect/turf_decal/siding/wood,
-/turf/open/floor/wood{
- icon_state = "wood-broken2"
- },
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"zC" = (
-/obj/item/clothing/neck/tie/black,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/wood/ebony{
- icon_state = "wood-broken"
- },
-/area/ruin/unpowered)
-"zG" = (
-/obj/structure/chair/stool/bar{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"Aa" = (
-/obj/structure/dresser,
-/obj/item/clothing/glasses/sunglasses{
- pixel_x = -4;
- pixel_y = 12
- },
-/obj/item/storage/firstaid{
- empty = 1;
- pixel_x = -12;
- pixel_y = -9
- },
-/obj/effect/turf_decal/siding/wood{
- color = "#543C30";
- dir = 5
- },
-/turf/open/floor/wood/walnut{
- icon_state = "wood-broken"
- },
-/area/ruin/unpowered)
-"Ab" = (
-/obj/structure/toilet,
-/obj/structure/curtain,
-/obj/effect/decal/cleanable/vomit/old{
- icon_state = "vomit_3-old"
- },
-/mob/living/simple_animal/hostile/cockroach/glockroach,
-/turf/open/floor/plasteel/freezer,
-/area/ruin/unpowered)
-"Ad" = (
-/obj/structure/table/wood,
-/obj/machinery/reagentgrinder{
- pixel_y = 8
- },
-/obj/item/storage/box/drinkingglasses,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/siding/wood{
- color = "#543C30";
- dir = 8
- },
-/turf/open/floor/wood/walnut{
- icon_state = "wood-broken4"
- },
-/area/ruin/unpowered)
-"AO" = (
-/obj/machinery/door/airlock/silver,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/freezer,
-/area/ruin/unpowered)
-"AR" = (
-/obj/structure/barricade/wooden,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"AY" = (
-/obj/structure/musician/piano,
-/turf/open/floor/carpet/green,
-/area/ruin/unpowered)
-"Bz" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/wood{
- icon_state = "wood-broken"
- },
-/area/ruin/unpowered)
-"BI" = (
-/turf/open/floor/wood{
- icon_state = "wood-broken4"
- },
-/area/ruin/unpowered)
-"CC" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/siding/wood{
- dir = 5
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"CG" = (
-/obj/item/chair/wood,
-/obj/effect/turf_decal/siding/wood{
- dir = 9
- },
-/turf/open/floor/wood{
- icon_state = "wood-broken5"
- },
-/area/ruin/unpowered)
-"CH" = (
-/obj/structure/sink{
- pixel_y = 16
- },
-/obj/structure/mirror{
- pixel_y = 28
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/freezer,
-/area/ruin/unpowered)
-"Dj" = (
-/mob/living/simple_animal/hostile/netherworld/migo,
-/turf/open/floor/plating/asteroid/rockplanet/cracked/lit,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"Dt" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/siding/wood{
- color = "#543C30"
- },
-/turf/open/floor/wood/walnut,
-/area/ruin/unpowered)
-"Dw" = (
-/obj/item/chair/stool/bar,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/siding/wood{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"DT" = (
-/obj/structure/table/wood/fancy/red_gold,
-/obj/item/spacecash/bundle/c100{
- pixel_x = 6;
- pixel_y = 8
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/coin/gold{
- pixel_x = 4;
- pixel_y = 5
- },
-/turf/open/floor/carpet/nanoweave,
-/area/ruin/unpowered)
-"DW" = (
-/obj/structure/chair/wood{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/siding/wood{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"DX" = (
-/obj/machinery/vending/cigarette,
-/obj/effect/turf_decal/siding/wood{
- dir = 6
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"FN" = (
-/obj/item/shard,
-/obj/structure/barricade/wooden/crude,
-/obj/effect/decal/cleanable/glass,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"FW" = (
-/obj/structure/chair/stool/bar,
-/obj/effect/turf_decal/siding/wood{
- dir = 8
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"Gd" = (
-/obj/structure/railing{
- color = "#BA8C63";
- dir = 6
- },
-/obj/effect/turf_decal/siding/wood/end{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"Gr" = (
-/obj/structure/barricade/wooden,
-/obj/item/shard,
-/obj/effect/decal/cleanable/glass,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"Gw" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/mob/living/simple_animal/hostile/netherworld/migo,
-/turf/open/floor/carpet/green,
-/area/ruin/unpowered)
-"GG" = (
-/obj/effect/decal/cleanable/blood/old{
- icon_state = "floor3-old"
- },
-/turf/open/floor/plasteel/freezer,
-/area/ruin/unpowered)
-"GT" = (
-/obj/effect/decal/cleanable/blood/old{
- icon_state = "floor5-old"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/siding/wood{
- dir = 5
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"GZ" = (
-/obj/structure/railing/corner{
- color = "#BA8C63";
- dir = 1
- },
-/turf/open/floor/plating/asteroid/rockplanet/lit,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"Hu" = (
-/obj/effect/decal/cleanable/blood/old{
- icon_state = "floor6-old"
- },
-/obj/effect/turf_decal/siding/wood{
- dir = 8
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"Hz" = (
-/obj/structure/chair/stool{
- dir = 8
- },
-/turf/open/floor/carpet/green,
-/area/ruin/unpowered)
-"HY" = (
-/obj/structure/chair/wood,
-/obj/effect/turf_decal/siding/wood{
- dir = 5
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"Ih" = (
-/obj/structure/table/wood,
-/obj/item/storage/fancy/cigarettes/cigars/havana{
- pixel_y = 4
- },
-/obj/item/lighter{
- pixel_x = -2;
- pixel_y = 3
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/siding/wood{
- color = "#543C30"
- },
-/turf/open/floor/wood/walnut{
- icon_state = "wood-broken4"
- },
-/area/ruin/unpowered)
-"Im" = (
-/obj/structure/chair/stool/bar{
- pixel_x = 16
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"Iz" = (
-/obj/structure/ore_box,
-/turf/open/floor/plating/asteroid/rockplanet/lit,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"IB" = (
-/obj/structure/chair/wood{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"IJ" = (
-/obj/effect/decal/cleanable/blood/old{
- icon_state = "floor5-old"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/siding/wood,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"Jj" = (
-/obj/item/stack/medical/mesh{
- pixel_x = 12;
- pixel_y = -7
- },
-/obj/effect/turf_decal/siding/wood{
- color = "#543C30";
- dir = 1
- },
-/turf/open/floor/wood/walnut{
- icon_state = "wood-broken6"
- },
-/area/ruin/unpowered)
-"Kd" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/siding/wood/corner{
- dir = 8
- },
-/obj/effect/turf_decal/siding/wood/corner{
- dir = 1
- },
-/obj/effect/turf_decal/siding/wood{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"Ku" = (
-/obj/structure/railing/corner{
- color = "#BA8C63";
- dir = 4
- },
-/turf/open/floor/plating/asteroid/rockplanet/lit,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"KX" = (
-/obj/structure/toilet,
-/obj/structure/curtain,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/blood/old{
- icon_state = "floor7-old"
- },
-/turf/open/floor/plasteel/freezer,
-/area/ruin/unpowered)
-"Ls" = (
-/mob/living/simple_animal/hostile/cockroach/glockroach,
-/turf/open/floor/plasteel/freezer,
-/area/ruin/unpowered)
-"LY" = (
-/obj/structure/railing/corner{
- color = "#BA8C63";
- dir = 1
- },
-/turf/open/floor/plating/asteroid/rockplanet/cracked/lit,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"Mp" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/wood{
- icon_state = "wood-broken2"
- },
-/area/ruin/unpowered)
-"Ms" = (
-/obj/structure/closet/crate/bin,
-/obj/effect/spawner/lootdrop/maintenance/two,
-/obj/effect/turf_decal/siding/wood,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"MG" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/carpet/royalblack,
-/area/ruin/unpowered)
-"MR" = (
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"MW" = (
-/obj/structure/railing{
- color = "#BA8C63"
- },
-/obj/structure/railing/corner{
- color = "#BA8C63"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/siding/wood,
-/obj/effect/turf_decal/siding/wood{
- dir = 1
- },
-/turf/open/floor/wood,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"Na" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/siding/wood{
- dir = 8
- },
-/obj/effect/turf_decal/siding/wood{
- dir = 4
- },
-/turf/open/floor/plasteel/grimy,
-/area/ruin/unpowered)
-"Nc" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/siding/wood{
- dir = 1
- },
-/obj/effect/turf_decal/siding/wood,
-/turf/open/floor/wood{
- icon_state = "wood-broken2"
- },
-/area/ruin/unpowered)
-"Nz" = (
-/obj/item/shard{
- icon_state = "small"
- },
-/obj/effect/decal/cleanable/glass,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"NI" = (
-/turf/open/floor/wood{
- icon_state = "wood-broken7"
- },
-/area/ruin/unpowered)
-"NM" = (
-/obj/structure/toilet{
- dir = 1
- },
-/obj/structure/curtain,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/freezer,
-/area/ruin/unpowered)
-"NS" = (
-/obj/item/chair/stool{
- dir = 8
- },
-/turf/open/floor/carpet/green,
-/area/ruin/unpowered)
-"OX" = (
-/obj/machinery/door/airlock/silver,
-/obj/effect/decal/cleanable/blood/old{
- icon_state = "floor4-old"
- },
-/turf/open/floor/plasteel/freezer,
-/area/ruin/unpowered)
-"Pe" = (
-/obj/structure/ore_box,
-/turf/open/floor/plating/asteroid/rockplanet/cracked/lit,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"Pn" = (
-/turf/closed/wall/mineral/wood,
-/area/ruin/unpowered)
-"Po" = (
-/obj/item/chair/stool/bar{
- dir = 8
- },
-/obj/effect/turf_decal/siding/wood/corner{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"PL" = (
-/obj/effect/decal/cleanable/generic,
-/obj/item/storage/box/papersack{
- pixel_x = -8;
- pixel_y = -3
- },
-/turf/open/floor/plating/asteroid/rockplanet/cracked/lit,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"PU" = (
-/obj/item/megaphone{
- pixel_x = 10;
- pixel_y = 16
- },
-/obj/item/candle/tribal_torch{
- pixel_x = 16
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/carpet/royalblack,
-/area/ruin/unpowered)
-"Qf" = (
-/obj/item/chair/wood{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/siding/wood{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"Qr" = (
-/turf/open/floor/carpet/royalblack,
-/area/ruin/unpowered)
-"Qx" = (
-/obj/item/chair/stool/bar,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"QB" = (
-/obj/structure/chair/wood{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"QC" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"QT" = (
-/obj/machinery/jukebox,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/siding/wood,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"QZ" = (
-/obj/structure/closet/crate/wooden,
-/obj/effect/spawner/lootdrop/maintenance/three,
-/turf/open/floor/plating/asteroid/rockplanet/cracked/lit,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"Ri" = (
-/turf/template_noop,
-/area/template_noop)
-"Sm" = (
-/obj/item/ammo_casing/shotgun/buckshot,
-/obj/item/ammo_casing/shotgun/buckshot{
- pixel_x = 5;
- pixel_y = -3
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"SR" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"To" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"Tr" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/siding/wood{
- dir = 1
- },
-/obj/effect/turf_decal/siding/wood,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"Tt" = (
-/obj/structure/table/wood,
-/obj/item/trash/plate{
- pixel_x = -5
- },
-/obj/item/candle{
- pixel_x = -4;
- pixel_y = 3
- },
-/obj/item/book{
- desc = "Retells the moments of a bartender in this saloon. Find out it's pages have been lost to time.";
- icon_state = "book4";
- name = "bartender's diary";
- pixel_x = 15;
- pixel_y = 4
- },
-/obj/effect/turf_decal/siding/wood{
- color = "#543C30";
- dir = 10
- },
-/turf/open/floor/wood/walnut,
-/area/ruin/unpowered)
-"Tv" = (
-/obj/structure/closet/cabinet,
-/obj/item/clothing/under/rank/civilian/bartender/purple,
-/obj/item/clothing/under/rank/civilian/bartender/skirt,
-/obj/item/toy/figure/bartender,
-/obj/item/clothing/head/collectable/tophat,
-/obj/effect/turf_decal/siding/wood{
- color = "#543C30";
- dir = 9
- },
-/turf/open/floor/wood/walnut,
-/area/ruin/unpowered)
-"TM" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/siding/wood/corner,
-/obj/effect/turf_decal/siding/wood/corner{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"Un" = (
-/obj/structure/table/wood,
-/obj/item/trash/plate{
- pixel_y = 2
- },
-/obj/item/candle{
- pixel_y = 6
- },
-/turf/open/floor/wood{
- icon_state = "wood-broken"
- },
-/area/ruin/unpowered)
-"UB" = (
-/obj/structure/table/wood/fancy/black,
-/obj/item/reagent_containers/food/drinks/bottle/vermouth{
- pixel_x = -6;
- pixel_y = 14
- },
-/obj/item/reagent_containers/food/drinks/bottle/rum{
- pixel_x = 6;
- pixel_y = 10
- },
-/obj/item/reagent_containers/food/drinks/bottle/wine{
- pixel_x = -6;
- pixel_y = 4
- },
-/obj/item/reagent_containers/food/drinks/bottle/kahlua{
- pixel_x = 6;
- pixel_y = 4
- },
-/obj/item/reagent_containers/food/drinks/bottle/grappa{
- pixel_x = -6
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/siding/wood{
- dir = 8
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"Ve" = (
-/turf/open/floor/carpet/green,
-/area/ruin/unpowered)
-"VE" = (
-/obj/structure/chair/stool/bar{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/siding/wood/corner{
- dir = 8
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"VG" = (
-/obj/item/shard{
- icon_state = "medium"
- },
-/obj/effect/decal/cleanable/glass,
-/obj/structure/barricade/wooden,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"VN" = (
-/obj/structure/table/wood/fancy/black,
-/obj/structure/sign/poster/official/high_class_martini{
- pixel_x = -32
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/siding/wood{
- dir = 10
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"Wj" = (
-/obj/structure/barricade/wooden,
-/obj/item/shard{
- icon_state = "small"
- },
-/obj/effect/decal/cleanable/glass,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"Wl" = (
-/obj/structure/barricade/wooden,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"Wu" = (
-/obj/structure/closet/crate/trashcart,
-/obj/item/cigbutt/cigarbutt{
- pixel_y = -6
- },
-/obj/item/broken_bottle{
- pixel_x = -6;
- pixel_y = -4
- },
-/obj/item/paper/crumpled{
- pixel_x = 8;
- pixel_y = -6
- },
-/obj/item/paper/crumpled{
- pixel_x = 1;
- pixel_y = 3
- },
-/obj/item/broken_bottle{
- pixel_x = 4;
- pixel_y = 1
- },
-/obj/effect/spawner/lootdrop/maintenance/two,
-/obj/effect/spawner/lootdrop/gloves,
-/obj/effect/spawner/lootdrop/glowstick,
-/obj/effect/decal/cleanable/wrapping,
-/turf/open/floor/plating/asteroid/rockplanet/cracked/lit,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"WS" = (
-/turf/open/floor/wood{
- icon_state = "wood-broken5"
- },
-/area/ruin/unpowered)
-"Xa" = (
-/obj/item/ammo_casing/caseless,
-/obj/effect/decal/cleanable/blood/old{
- icon_state = "floor6-old"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/siding/wood/corner{
- dir = 8
- },
-/obj/effect/turf_decal/siding/wood{
- dir = 1
- },
-/turf/open/floor/wood{
- icon_state = "wood-broken3"
- },
-/area/ruin/unpowered)
-"Xi" = (
-/obj/item/chair/wood{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/siding/wood/corner{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"Xn" = (
-/obj/item/stack/medical/gauze{
- amount = 2;
- pixel_x = 4;
- pixel_y = 13
- },
-/obj/item/stack/medical/suture{
- amount = 4;
- pixel_x = 7
- },
-/obj/item/stack/medical/suture{
- amount = 1;
- pixel_x = -2;
- pixel_y = 5
- },
-/obj/item/healthanalyzer{
- pixel_x = -4;
- pixel_y = -13
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/siding/wood{
- color = "#543C30";
- dir = 4
- },
-/turf/open/floor/wood/walnut{
- icon_state = "wood-broken5"
- },
-/area/ruin/unpowered)
-"XI" = (
-/obj/item/chair/stool/bar,
-/obj/effect/decal/cleanable/blood/old{
- icon_state = "floor7-old"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/siding/wood/corner,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"XZ" = (
-/obj/structure/closet/crate/bin,
-/obj/effect/spawner/lootdrop/maintenance/five,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/siding/wood,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"Yj" = (
-/obj/structure/barricade/wooden,
-/obj/item/shard{
- icon_state = "medium"
- },
-/obj/effect/decal/cleanable/glass,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"Ym" = (
-/obj/item/chair/stool/bar{
- dir = 1
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"Yo" = (
-/obj/effect/decal/cleanable/garbage,
-/turf/open/floor/plating/asteroid/rockplanet/lit,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"Yx" = (
-/obj/structure/table/wood/fancy/royalblack,
-/obj/machinery/chem_dispenser/drinks{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/siding/wood{
- dir = 8
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"YG" = (
-/obj/structure/chair/stool/bar{
- dir = 8
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"Zd" = (
-/turf/open/floor/plating/asteroid/rockplanet/lit,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"Zn" = (
-/obj/item/chair/stool/bar{
- dir = 8
- },
-/turf/open/floor/wood{
- icon_state = "wood-broken4"
- },
-/area/ruin/unpowered)
-"Zu" = (
-/obj/structure/chair/wood{
- pixel_x = 16;
- pixel_y = -4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/siding/wood{
- color = "#543C30";
- dir = 8
- },
-/turf/open/floor/wood/walnut{
- icon_state = "wood-broken3"
- },
-/area/ruin/unpowered)
-"ZA" = (
-/obj/item/chair/wood{
- dir = 8
- },
-/obj/effect/turf_decal/siding/wood{
- dir = 8
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"ZE" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/siding/wood{
- color = "#543C30";
- dir = 8
- },
-/turf/open/floor/wood/walnut{
- icon_state = "wood-broken"
- },
-/area/ruin/unpowered)
-"ZM" = (
-/obj/item/chair/wood,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"ZZ" = (
-/obj/item/chair/wood{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-
-(1,1,1) = {"
-Ri
-Ri
-Ri
-Ri
-Ri
-Ri
-Ri
-Ri
-Ri
-Ri
-Ri
-Ri
-Ri
-Ri
-Ri
-Ri
-Ri
-Ri
-Ri
-it
-"}
-(2,1,1) = {"
-Ri
-Ri
-Ri
-Ri
-Ri
-Ri
-Ri
-Ri
-it
-Zd
-Zd
-Ri
-Ri
-Ri
-Ri
-Ri
-Ri
-Ri
-it
-Zd
-"}
-(3,1,1) = {"
-Ri
-Ri
-Ri
-Ri
-Ri
-Zd
-it
-Zd
-Zd
-Zd
-it
-it
-Zd
-Zd
-Zd
-Zd
-it
-Zd
-Zd
-Ri
-"}
-(4,1,1) = {"
-Ri
-Ri
-Ri
-Ri
-Zd
-dP
-Zd
-Zd
-Zd
-it
-Zd
-Zd
-Zd
-it
-Zd
-it
-Zd
-Zd
-it
-Ri
-"}
-(5,1,1) = {"
-Ri
-Ri
-Ri
-Ri
-it
-Zd
-Zd
-Pn
-Pn
-Wj
-ou
-Pn
-Pn
-Pn
-Yj
-uS
-Pn
-AR
-Zd
-Zd
-"}
-(6,1,1) = {"
-Ri
-Ri
-Ri
-Zd
-Zd
-Zd
-it
-Pn
-va
-Ad
-hj
-tO
-Pn
-Tv
-ZE
-Zu
-Tt
-Pn
-Zd
-it
-"}
-(7,1,1) = {"
-Ri
-Ri
-Zd
-it
-Zd
-Zd
-Zd
-AR
-Jj
-wQ
-kq
-Dt
-kb
-ve
-im
-zC
-Ih
-Pn
-it
-Zd
-"}
-(8,1,1) = {"
-Ri
-Zd
-Zd
-Zd
-it
-Zd
-jQ
-Wl
-to
-lM
-bC
-dF
-Pn
-Aa
-lW
-Xn
-rB
-AR
-it
-Ri
-"}
-(9,1,1) = {"
-Zd
-it
-Pn
-Pn
-AR
-Pn
-Pn
-Pn
-Pn
-Wl
-Pn
-qd
-Pn
-Pn
-Pn
-Pn
-Pn
-Pn
-Zd
-Zd
-"}
-(10,1,1) = {"
-it
-Zd
-Pn
-CG
-gq
-fO
-ZA
-pM
-fO
-FW
-xc
-Hu
-mh
-UB
-Yx
-tR
-VN
-Pn
-Zd
-it
-"}
-(11,1,1) = {"
-it
-Zd
-Gr
-eM
-QC
-QC
-QC
-cf
-MR
-Qx
-iS
-Mp
-tL
-Na
-Na
-dw
-fN
-lI
-it
-Zd
-"}
-(12,1,1) = {"
-Zd
-dS
-Nz
-CC
-ib
-pO
-MR
-pY
-sF
-ci
-QC
-yp
-QC
-Sm
-QC
-ci
-Ms
-Yj
-it
-Zd
-"}
-(13,1,1) = {"
-Zd
-it
-Pn
-fZ
-fZ
-fZ
-fo
-lH
-BI
-MR
-cr
-xl
-an
-bi
-bK
-dW
-yn
-Pn
-pp
-Dj
-"}
-(14,1,1) = {"
-Ri
-Yo
-Pn
-Ve
-la
-fZ
-wJ
-Xi
-QC
-QC
-YG
-Zn
-zG
-XI
-Dw
-Po
-aa
-Pn
-mC
-it
-"}
-(15,1,1) = {"
-Zd
-Wu
-Pn
-NS
-Ve
-fZ
-fZ
-eM
-mE
-MR
-QC
-MR
-pY
-IJ
-kh
-GT
-tK
-Pn
-MW
-Ku
-"}
-(16,1,1) = {"
-Zd
-PL
-Pn
-ul
-Gw
-PU
-fZ
-fo
-ZM
-QC
-mE
-fs
-lH
-jz
-pV
-lT
-Xa
-jW
-zm
-LY
-"}
-(17,1,1) = {"
-Ri
-Zd
-Pn
-AY
-la
-MG
-fZ
-pz
-lH
-QB
-Bz
-MR
-ZZ
-pe
-MG
-Qr
-ud
-wu
-sj
-xE
-"}
-(18,1,1) = {"
-Zd
-QZ
-Pn
-Hz
-la
-fZ
-wD
-fo
-IB
-QC
-cf
-QC
-Mp
-fN
-MG
-eJ
-mZ
-Pn
-gL
-GZ
-"}
-(19,1,1) = {"
-Zd
-Pe
-Pn
-la
-la
-wD
-eJ
-qy
-BI
-QC
-pY
-QC
-MR
-VE
-rh
-qy
-QT
-Pn
-dZ
-Zd
-"}
-(20,1,1) = {"
-it
-Iz
-Pn
-fZ
-wD
-fZ
-fo
-MR
-QC
-ZZ
-Un
-QB
-Im
-aJ
-DT
-cf
-pe
-Pn
-Gd
-it
-"}
-(21,1,1) = {"
-Zd
-Zd
-FN
-eJ
-ch
-cH
-sF
-QC
-MR
-QC
-IB
-QC
-NI
-xH
-fu
-QC
-fN
-VG
-it
-Zd
-"}
-(22,1,1) = {"
-it
-it
-tZ
-fL
-QC
-QC
-MR
-cf
-QC
-MR
-WS
-QC
-QC
-Ym
-zG
-MR
-XZ
-ou
-Zd
-it
-"}
-(23,1,1) = {"
-Zd
-it
-Pn
-HY
-oN
-Qf
-eS
-eF
-DW
-ib
-ib
-TM
-ib
-ib
-kd
-SR
-DX
-Pn
-Zd
-it
-"}
-(24,1,1) = {"
-Zd
-Zd
-Pn
-Wl
-AR
-AR
-Pn
-Pn
-Pn
-Wl
-Pn
-Nc
-Pn
-AR
-To
-Pn
-Pn
-Pn
-Zd
-Zd
-"}
-(25,1,1) = {"
-Ri
-it
-Zd
-Zd
-Zd
-it
-Pn
-Ab
-AO
-hp
-Pn
-Tr
-Pn
-CH
-yQ
-NM
-AR
-it
-Zd
-Ri
-"}
-(26,1,1) = {"
-Ri
-Ri
-Zd
-it
-Zd
-Zd
-Pn
-Pn
-Pn
-rT
-Pn
-ei
-Pn
-lV
-Pn
-Pn
-Pn
-Zd
-Zd
-Ri
-"}
-(27,1,1) = {"
-Ri
-Ri
-Ri
-Zd
-it
-it
-AR
-KX
-yQ
-Ls
-wZ
-Kd
-qh
-GG
-OX
-eX
-Pn
-Zd
-Ri
-Ri
-"}
-(28,1,1) = {"
-Ri
-Ri
-Ri
-Ri
-Zd
-it
-Pn
-Pn
-Pn
-Pn
-Pn
-al
-Pn
-Pn
-Pn
-Pn
-Pn
-Zd
-it
-Ri
-"}
-(29,1,1) = {"
-Ri
-Ri
-Ri
-Ri
-Ri
-Zd
-it
-it
-Zd
-Zd
-it
-it
-Zd
-it
-Zd
-Zd
-it
-Zd
-it
-Ri
-"}
-(30,1,1) = {"
-Ri
-Ri
-Ri
-Ri
-Ri
-Ri
-Zd
-Zd
-it
-Dj
-Zd
-Zd
-it
-Zd
-it
-Zd
-Zd
-Ri
-Zd
-it
-"}
diff --git a/_maps/RandomRuins/RockRuins/rockplanet_shippingdock.dmm b/_maps/RandomRuins/RockRuins/rockplanet_shippingdock.dmm
new file mode 100644
index 00000000000..f4307cf7a84
--- /dev/null
+++ b/_maps/RandomRuins/RockRuins/rockplanet_shippingdock.dmm
@@ -0,0 +1,12672 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"ah" = (
+/obj/effect/turf_decal/road,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"aj" = (
+/obj/effect/turf_decal/road/line/edge/opaque/yellow,
+/obj/effect/decal/cleanable/plasma,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"al" = (
+/obj/structure/railing{
+ dir = 9
+ },
+/turf/open/floor/concrete/slab_1{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"aq" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark,
+/area/ruin/rockplanet/shippingdockoffice)
+"au" = (
+/obj/machinery/door/airlock/external,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/plasteel/dark,
+/area/ruin/rockplanet/shippingdockoffice)
+"aA" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/grille,
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/tech/grid,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"aC" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/restraints/legcuffs/beartrap{
+ armed = 1
+ },
+/turf/open/floor/carpet/nanoweave/beige,
+/area/ruin/rockplanet/shippingdockoffice)
+"aH" = (
+/obj/effect/turf_decal/road/line/opaque/yellow,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"aR" = (
+/obj/effect/turf_decal/road{
+ dir = 1
+ },
+/obj/machinery/door/poddoor/shutters{
+ id = "shippingdockwarehouse"
+ },
+/obj/effect/turf_decal/trimline/opaque/neutral/filled/warning,
+/turf/open/floor/concrete/pavement,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"aV" = (
+/obj/effect/turf_decal/road/slow{
+ dir = 4
+ },
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"aW" = (
+/obj/item/mine/pressure/explosive/live,
+/turf/open/floor/plasteel/tech/grid,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"aY" = (
+/obj/effect/turf_decal/road/stripes{
+ dir = 4
+ },
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"bb" = (
+/obj/effect/turf_decal/industrial/warning/dust{
+ dir = 5
+ },
+/obj/item/stack/cable_coil/cut/random,
+/turf/open/floor/plasteel/dark,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"bj" = (
+/obj/effect/turf_decal/industrial/outline/red,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/hangar/plasteel/white,
+/area/ruin/rockplanet/shippingdock)
+"bo" = (
+/obj/effect/turf_decal/road{
+ dir = 8
+ },
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"bv" = (
+/obj/machinery/power/terminal{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plating,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"bA" = (
+/obj/effect/turf_decal/road{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/opaque/neutral/warning{
+ dir = 1
+ },
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"bH" = (
+/obj/structure/toilet{
+ dir = 4
+ },
+/obj/item/newspaper,
+/obj/machinery/light/small/directional/west,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/showroomfloor,
+/area/ruin/rockplanet/shippingdockoffice)
+"bN" = (
+/obj/effect/turf_decal/trimline/opaque/neutral/filled/warning{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/opaque/neutral/filled/warning{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/opaque/neutral/filled/warning{
+ dir = 8
+ },
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"bT" = (
+/obj/structure/table/wood,
+/obj/item/modular_computer/laptop/preset/civilian,
+/turf/open/floor/wood,
+/area/ruin/rockplanet/shippingdockoffice)
+"bV" = (
+/turf/closed/wall/r_wall,
+/area/ruin/rockplanet/shippingdocksecure)
+"bY" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-9"
+ },
+/obj/effect/decal/cleanable/glass,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"bZ" = (
+/obj/effect/turf_decal/road/line/opaque/yellow{
+ dir = 8
+ },
+/turf/open/floor/concrete/pavement,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"ca" = (
+/obj/effect/turf_decal/industrial/outline,
+/turf/open/floor/hangar/plasteel/dark,
+/area/ruin/rockplanet/shippingdock)
+"cb" = (
+/obj/structure/railing{
+ max_integrity = 70
+ },
+/obj/structure/table,
+/obj/item/binoculars,
+/turf/open/floor/plating,
+/area/ruin/rockplanet/shippingdock)
+"cd" = (
+/obj/effect/decal/cleanable/robot_debris/gib,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"ce" = (
+/obj/structure/cable/yellow,
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/concrete/reinforced{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"cf" = (
+/obj/effect/turf_decal/road/slow,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"ch" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/concrete/slab_2{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"ci" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/item/gun/ballistic/automatic/zip_pistol{
+ pixel_x = 15
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"cl" = (
+/obj/machinery/light/broken/directional/west,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/tech/grid,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"cm" = (
+/obj/effect/decal/cleanable/oil/slippery,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"cn" = (
+/obj/machinery/power/solar,
+/obj/structure/cable/yellow{
+ icon_state = "0-6"
+ },
+/turf/open/floor/concrete/reinforced{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"ct" = (
+/obj/structure/table,
+/obj/item/storage/toolbox/mechanical,
+/obj/effect/turf_decal/industrial/warning/dust{
+ dir = 8
+ },
+/obj/machinery/light/dim/directional/west,
+/turf/open/floor/plasteel/dark,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"cv" = (
+/obj/structure/fence/door{
+ dir = 1
+ },
+/obj/structure/barricade/wooden/crude,
+/turf/open/floor/concrete/slab_1{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"cw" = (
+/obj/machinery/light/small/directional/east,
+/obj/item/reagent_containers/food/drinks/trophy/gold_cup{
+ pixel_y = 6
+ },
+/obj/structure/table/wood,
+/turf/open/floor/wood,
+/area/ruin/rockplanet/shippingdockoffice)
+"cz" = (
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/ruin/rockplanet/shippingdock)
+"cB" = (
+/obj/effect/decal/cleanable/robot_debris/old,
+/obj/effect/decal/cleanable/plasma,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"cI" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/toy/snappop,
+/turf/open/floor/plasteel/tech/grid,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"cS" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/rockplanet/shippingdockoffice)
+"cT" = (
+/obj/effect/turf_decal/road{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/opaque/white/filled/line,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"cX" = (
+/obj/effect/turf_decal/road,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/concrete/pavement,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"cZ" = (
+/turf/open/floor/hangar/plasteel/dark,
+/area/ruin/rockplanet/shippingdock)
+"db" = (
+/obj/machinery/atmospherics/components/unary/tank/air{
+ piping_layer = 2
+ },
+/turf/open/floor/plating,
+/area/ruin/rockplanet/shippingdockoffice)
+"di" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
+ },
+/turf/open/floor/concrete/slab_4{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"dv" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/carpet/nanoweave/beige,
+/area/ruin/rockplanet/shippingdockoffice)
+"dw" = (
+/obj/structure/girder/reinforced,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/ruin/rockplanet/shippingdock)
+"dE" = (
+/obj/effect/turf_decal/industrial/warning/dust{
+ dir = 1
+ },
+/obj/item/emptysandbag,
+/turf/open/floor/plasteel/dark,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"dI" = (
+/obj/structure/table/wood,
+/obj/item/folder,
+/obj/item/pen/fountain,
+/turf/open/floor/wood,
+/area/ruin/rockplanet/shippingdockoffice)
+"dL" = (
+/obj/item/trash/syndi_cakes,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/carpet/nanoweave/beige,
+/area/ruin/rockplanet/shippingdockoffice)
+"dR" = (
+/obj/machinery/door/airlock/external,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/plasteel/dark,
+/area/ruin/rockplanet/shippingdockoffice)
+"dS" = (
+/obj/effect/turf_decal/road/line/edge/opaque/yellow,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"ea" = (
+/obj/effect/turf_decal/road{
+ dir = 6
+ },
+/obj/effect/turf_decal/trimline/opaque/neutral/filled/warning{
+ dir = 6
+ },
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"eb" = (
+/obj/structure/frame/computer/retro{
+ dir = 8
+ },
+/obj/item/stack/ore/salvage/scrapgold,
+/obj/effect/turf_decal/corner/opaque/brown/border{
+ dir = 5
+ },
+/turf/open/floor/mineral/titanium/tiled/white,
+/area/ruin/rockplanet/shippingdock)
+"ee" = (
+/obj/effect/turf_decal/road{
+ dir = 1
+ },
+/obj/item/ammo_casing/spent{
+ pixel_x = 3;
+ pixel_y = -5
+ },
+/turf/open/floor/concrete/pavement,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"en" = (
+/turf/closed/wall/r_wall,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"ep" = (
+/obj/effect/turf_decal/box/white/corners{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/mono/dark,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"es" = (
+/obj/effect/turf_decal/road/line/opaque/yellow{
+ dir = 4
+ },
+/obj/structure/grille,
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"ey" = (
+/obj/effect/turf_decal/industrial/warning/dust,
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"eJ" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/carpet/nanoweave/beige,
+/area/ruin/rockplanet/shippingdockoffice)
+"eL" = (
+/obj/effect/turf_decal/box/white/corners,
+/turf/open/floor/plasteel/mono/dark,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"eP" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/tech/grid,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"eR" = (
+/obj/effect/turf_decal/road,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"eY" = (
+/obj/effect/turf_decal/road,
+/obj/effect/turf_decal/trimline/opaque/white/corner,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"fb" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/mine/pressure/explosive/live,
+/turf/open/floor/wood,
+/area/ruin/rockplanet/shippingdockoffice)
+"fd" = (
+/obj/structure/barricade/wooden,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"fk" = (
+/obj/effect/turf_decal/siding/white,
+/obj/effect/decal/cleanable/wrapping,
+/turf/open/floor/plasteel/mono/dark,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"fn" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/turf/open/floor/concrete/slab_4{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"fr" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovgold,
+/turf/open/floor/plasteel/mono/white,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"fx" = (
+/obj/effect/turf_decal/road{
+ dir = 6
+ },
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"fz" = (
+/obj/effect/turf_decal/industrial/warning/dust{
+ dir = 4
+ },
+/obj/item/emptysandbag,
+/turf/open/floor/plasteel/dark,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"fB" = (
+/obj/machinery/light/dim/directional/north,
+/turf/open/floor/plasteel/mono/dark,
+/area/ruin/rockplanet/shippingdocksecure)
+"fG" = (
+/obj/item/stack/ore/salvage/scraptitanium,
+/obj/effect/turf_decal/industrial/outline,
+/obj/item/wallframe/apc{
+ pixel_y = 19
+ },
+/turf/open/floor/hangar/plasteel/dark,
+/area/ruin/rockplanet/shippingdock)
+"fH" = (
+/mob/living/simple_animal/hostile/netherworld/asteroid,
+/turf/open/floor/plating/asteroid/rockplanet/wet/cracked/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"fM" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"fN" = (
+/obj/structure/railing/corner/wood{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/crayon,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"fS" = (
+/obj/structure/railing,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/slab_1{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"fT" = (
+/obj/structure/flora/ausbushes/brflowers,
+/turf/open/floor/plating/dirt/rockplanet{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"fV" = (
+/obj/effect/turf_decal/road/line/opaque/yellow{
+ dir = 4
+ },
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"gb" = (
+/obj/machinery/suit_storage_unit/industrial,
+/obj/item/clothing/head/helmet/space/eva,
+/obj/item/clothing/under/pants/jeans,
+/turf/open/floor/plasteel/tech,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"gc" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/turf/open/floor/concrete/slab_4{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"gh" = (
+/obj/machinery/button/door{
+ pixel_y = 24;
+ id = "shippingdockwarehousesouth"
+ },
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/ruin/rockplanet/shippingdockwarehouse)
+"gj" = (
+/obj/effect/decal/cleanable/shreds{
+ pixel_y = 10
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating/rockplanet{
+ icon_state = "platingdmg1";
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"gm" = (
+/obj/machinery/power/floodlight{
+ anchored = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/mono/dark,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"gr" = (
+/obj/effect/turf_decal/trimline/opaque/white/corner{
+ dir = 8
+ },
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"gv" = (
+/obj/effect/turf_decal/road{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/sign/warning/firingrange{
+ pixel_x = 32
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"gD" = (
+/obj/structure/frame/machine,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/item/stack/cable_coil/cut/red,
+/obj/item/stack/ore/salvage/scrapgold,
+/turf/open/floor/plating,
+/area/ruin/rockplanet/shippingdock)
+"gF" = (
+/obj/effect/turf_decal/road{
+ dir = 1
+ },
+/obj/structure/barricade/sandbags,
+/turf/open/floor/concrete/pavement,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"gG" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/slab_1{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"gH" = (
+/obj/structure/closet/crate/grave/loot,
+/turf/open/floor/plating/asteroid/rockplanet/wet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"gN" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/confetti,
+/obj/item/mine/pressure/explosive/rusty/live,
+/turf/open/floor/plasteel/dark,
+/area/ruin/rockplanet/shippingdockoffice)
+"gO" = (
+/obj/structure/girder/displaced,
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"gR" = (
+/mob/living/simple_animal/hostile/netherworld/migo/asteroid,
+/turf/open/floor/plating/asteroid/rockplanet/cracked/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"hb" = (
+/obj/effect/turf_decal/road{
+ dir = 10
+ },
+/obj/effect/turf_decal/road,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"he" = (
+/obj/structure/chair/pew/right{
+ dir = 4
+ },
+/turf/open/floor/concrete/slab_4{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"hf" = (
+/obj/effect/decal/cleanable/crayon,
+/turf/open/floor/concrete/slab_1{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"hh" = (
+/obj/machinery/door/airlock/external{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/rockplanet/shippingdockoffice)
+"hi" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/chair/comfy/grey/old/directional/north,
+/turf/open/floor/wood,
+/area/ruin/rockplanet/shippingdockoffice)
+"hm" = (
+/obj/effect/turf_decal/road/stop{
+ dir = 4
+ },
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"hp" = (
+/obj/item/candle{
+ pixel_x = -12
+ },
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"hr" = (
+/obj/effect/turf_decal/road/line/opaque/yellow{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"ht" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"hB" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/carpet/nanoweave/beige,
+/area/ruin/rockplanet/shippingdockoffice)
+"hD" = (
+/obj/structure/table,
+/obj/item/radio,
+/obj/machinery/airalarm/directional/east,
+/turf/open/floor/plasteel/dark,
+/area/ruin/rockplanet/shippingdockcustoms)
+"hE" = (
+/obj/effect/turf_decal/industrial/outline,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/mono/dark,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"hG" = (
+/turf/open/floor/plasteel/tech,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"hL" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/concrete/pavement,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"hN" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/slab_3{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"hT" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/barricade/sandbags,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"hU" = (
+/obj/effect/decal/cleanable/shreds{
+ pixel_y = 6;
+ pixel_x = -7
+ },
+/turf/open/floor/plating/rockplanet{
+ icon_state = "platingdmg1";
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"hW" = (
+/obj/item/mine/pressure/explosive/live,
+/turf/open/floor/concrete/pavement,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"hY" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/slab_3{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"ib" = (
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"ic" = (
+/obj/item/stack/ore/salvage/scrapmetal,
+/obj/effect/turf_decal/industrial/outline,
+/turf/open/floor/hangar/plasteel/dark,
+/area/ruin/rockplanet/shippingdock)
+"if" = (
+/obj/structure/safe,
+/obj/item/spacecash/bundle/mediumrand,
+/obj/machinery/light/dim/directional/south,
+/turf/open/floor/plasteel/patterned/brushed,
+/area/ruin/rockplanet/shippingdocksecure)
+"il" = (
+/obj/structure/table,
+/obj/machinery/computer/secure_data/laptop{
+ dir = 8;
+ pixel_x = 1
+ },
+/obj/machinery/button/door{
+ pixel_y = 24;
+ id = "shippingdockcustoms"
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/rockplanet/shippingdockcustoms)
+"im" = (
+/obj/effect/turf_decal/road{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/opaque/white/filled/line{
+ dir = 1
+ },
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"ir" = (
+/obj/effect/turf_decal/trimline/opaque/white/filled/line{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"iv" = (
+/obj/structure/sign/warning/gasmask{
+ pixel_x = -32
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 4
+ },
+/obj/item/mine/pressure/explosive/shrapnel/live,
+/turf/open/floor/plasteel/dark,
+/area/ruin/rockplanet/shippingdockoffice)
+"iB" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/components/unary/passive_vent,
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"iH" = (
+/obj/structure/chair/pew{
+ dir = 8
+ },
+/turf/open/floor/concrete/slab_4{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"iK" = (
+/obj/effect/turf_decal/road/line/edge/opaque/yellow{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/barricade/sandbags,
+/turf/open/floor/concrete/pavement,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"iL" = (
+/obj/effect/turf_decal/road{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/grille,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"iQ" = (
+/obj/machinery/atmospherics/components/unary/tank/air{
+ piping_layer = 2
+ },
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/turf/open/floor/plating/rust{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/ruin/rockplanet/shippingdockoffice)
+"jk" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-6"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-10"
+ },
+/obj/effect/decal/cleanable/glass,
+/obj/item/shard,
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"ju" = (
+/obj/effect/turf_decal/road/line/edge/opaque/yellow{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"jv" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/turf/open/floor/concrete/slab_2{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"jB" = (
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/west,
+/obj/structure/window/reinforced,
+/turf/open/floor/plasteel/mono/dark,
+/area/ruin/rockplanet/shippingdocksecure)
+"jC" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"jD" = (
+/obj/structure/fence{
+ dir = 4
+ },
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"jE" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/tech/grid,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"jK" = (
+/obj/structure/railing/wood{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/oil/slippery,
+/mob/living/simple_animal/bot/mulebot,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"jQ" = (
+/obj/effect/decal/remains/human,
+/obj/item/ammo_casing/spent{
+ pixel_x = 10;
+ pixel_y = 12
+ },
+/obj/item/ammo_casing/spent{
+ pixel_x = -14;
+ pixel_y = 1
+ },
+/obj/item/clothing/suit/hazardvest,
+/obj/item/clothing/head/beret/cargo{
+ pixel_y = 17
+ },
+/turf/open/floor/concrete/pavement,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"jR" = (
+/obj/machinery/power/shuttle/engine/electric/bad{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/ruin/rockplanet/shippingdock)
+"jT" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/item/mine/pressure/explosive/fire/live,
+/turf/open/floor/plasteel/dark,
+/area/ruin/rockplanet/shippingdockcustoms)
+"jU" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/item/restraints/legcuffs/beartrap{
+ armed = 1
+ },
+/turf/open/floor/concrete/slab_4{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"jZ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/slab_4{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"kb" = (
+/obj/effect/turf_decal/road/line/edge/opaque/yellow,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/concrete/pavement,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"kf" = (
+/obj/structure/salvageable/machine,
+/obj/structure/sign/departments/cargo{
+ pixel_y = 32
+ },
+/turf/open/floor/plating,
+/area/ruin/rockplanet/shippingdock)
+"ko" = (
+/obj/effect/turf_decal/road{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/opaque/neutral/filled/warning{
+ dir = 1
+ },
+/obj/machinery/door/poddoor/shutters{
+ id = "shippingdockwarehousesouth"
+ },
+/turf/open/floor/concrete/pavement,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"kp" = (
+/obj/structure/railing/corner{
+ dir = 4
+ },
+/turf/open/floor/concrete/slab_1{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"ku" = (
+/obj/structure/door_assembly/door_assembly_public{
+ dir = 8
+ },
+/turf/open/floor/hangar/plasteel/dark,
+/area/ruin/rockplanet/shippingdock)
+"kv" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"kw" = (
+/obj/effect/turf_decal/road/edge{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"ky" = (
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 4;
+ id = "shippingdockcustoms"
+ },
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"kI" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp/green,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/ruin/rockplanet/shippingdockoffice)
+"kJ" = (
+/obj/effect/turf_decal/industrial/loading{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/white/corner{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/mono/dark,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"kV" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/turf/open/floor/plating/dirt/rockplanet{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"kX" = (
+/obj/structure/window/reinforced,
+/turf/open/floor/plasteel/mono/dark,
+/area/ruin/rockplanet/shippingdocksecure)
+"lc" = (
+/obj/effect/turf_decal/road{
+ dir = 4
+ },
+/obj/effect/turf_decal/road{
+ dir = 9
+ },
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"le" = (
+/obj/structure/table/wood,
+/obj/item/storage/bag/tray/cafeteria,
+/obj/item/storage/bag/tray/cafeteria{
+ pixel_y = 1
+ },
+/obj/item/storage/bag/tray/cafeteria{
+ pixel_y = 2
+ },
+/obj/item/storage/bag/tray/cafeteria{
+ pixel_y = 3
+ },
+/obj/machinery/light/broken/directional/west,
+/turf/open/floor/plasteel/dark,
+/area/ruin/rockplanet/shippingdockoffice)
+"lf" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-6"
+ },
+/obj/machinery/power/tracker,
+/turf/open/floor/concrete/reinforced{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"lg" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 9
+ },
+/turf/open/floor/concrete/slab_4{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"lj" = (
+/obj/effect/turf_decal/industrial/outline/red,
+/turf/open/floor/plasteel/mono/dark,
+/area/ruin/rockplanet/shippingdocksecure)
+"ll" = (
+/obj/structure/fence,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"lo" = (
+/obj/structure/fence/post{
+ dir = 4
+ },
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"lp" = (
+/obj/item/stack/ore/salvage/scraptitanium,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"lr" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/open/floor/concrete/slab_2{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"lu" = (
+/obj/structure/rack,
+/obj/structure/window/reinforced,
+/obj/item/storage/ration/battered_fish_sticks,
+/obj/item/storage/ration/cheese_pizza_slice,
+/turf/open/floor/plasteel/mono/white,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"lw" = (
+/obj/effect/turf_decal/box/white/corners{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/wrapping,
+/turf/open/floor/plasteel/mono/dark,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"lB" = (
+/turf/open/floor/plating/asteroid/rockplanet/wet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"lC" = (
+/obj/effect/turf_decal/corner/opaque/brown/border,
+/obj/item/wallframe/airalarm{
+ pixel_y = -27
+ },
+/turf/open/floor/hangar/plasteel/white,
+/area/ruin/rockplanet/shippingdock)
+"lM" = (
+/obj/effect/turf_decal/road/line/edge/opaque/yellow{
+ dir = 4
+ },
+/obj/item/ammo_casing/spent{
+ pixel_x = 10;
+ pixel_y = 12
+ },
+/obj/item/ammo_casing/spent,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"lQ" = (
+/obj/item/stack/ore/salvage/scraptitanium,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"lR" = (
+/obj/effect/turf_decal/industrial/hatch/red,
+/turf/open/floor/plasteel/mono/dark,
+/area/ruin/rockplanet/shippingdocksecure)
+"lT" = (
+/obj/structure/table,
+/obj/item/modular_computer/laptop/preset/civilian,
+/turf/open/floor/carpet/nanoweave/purple,
+/area/ruin/rockplanet/shippingdockoffice)
+"lU" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/mine/pressure/explosive/live,
+/turf/open/floor/plasteel/mono/dark,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"lZ" = (
+/turf/open/floor/concrete/pavement,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"mb" = (
+/obj/structure/fence/corner{
+ dir = 8
+ },
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"mc" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/open/floor/concrete/slab_1{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"md" = (
+/obj/effect/turf_decal/road/line/opaque/yellow{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"mi" = (
+/obj/effect/turf_decal/trimline/opaque/neutral/filled/warning{
+ dir = 8
+ },
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"ml" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/rockplanet/shippingdockcustoms)
+"ms" = (
+/obj/effect/turf_decal/trimline/opaque/neutral/filled/warning{
+ dir = 1
+ },
+/obj/machinery/door/poddoor/shutters{
+ id = "shippingdockwarehousesouth"
+ },
+/turf/open/floor/concrete/pavement,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"mu" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/mono/dark,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"mx" = (
+/obj/item/stack/cable_coil/cut/red,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/ruin/rockplanet/shippingdock)
+"mC" = (
+/obj/structure/chair/plastic{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/ruin/rockplanet/shippingdock)
+"mE" = (
+/obj/effect/turf_decal/trimline/opaque/neutral/filled/warning{
+ dir = 4
+ },
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"mF" = (
+/obj/effect/turf_decal/industrial/warning/dust{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"mI" = (
+/obj/structure/poddoor_assembly,
+/turf/open/floor/plating,
+/area/ruin/rockplanet/shippingdock)
+"mP" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/concrete/slab_2{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"mU" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"mV" = (
+/obj/effect/decal/cleanable/wrapping,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/tech/grid,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"mY" = (
+/obj/structure/cable{
+ 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/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/slab_4{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"nh" = (
+/obj/effect/decal/cleanable/vomit/old,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/showroomfloor,
+/area/ruin/rockplanet/shippingdockoffice)
+"nj" = (
+/obj/machinery/door/airlock/grunge{
+ name = "Break Room";
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark,
+/area/ruin/rockplanet/shippingdockoffice)
+"nr" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/door/airlock/public/glass{
+ dir = 4;
+ req_one_access_txt = "52"
+ },
+/turf/open/floor/hangar/plasteel/dark,
+/area/ruin/rockplanet/shippingdock)
+"ns" = (
+/obj/structure/chair/comfy/shuttle{
+ dir = 4
+ },
+/obj/item/stack/ore/salvage/scrapsilver,
+/turf/open/floor/plating,
+/area/ruin/rockplanet/shippingdock)
+"ny" = (
+/obj/structure/flora/rock/pile/rockplanet,
+/turf/open/floor/plating/asteroid/rockplanet/wet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"nB" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
+ },
+/turf/open/floor/concrete/slab_4{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"nJ" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/turf/open/floor/plasteel/mono/dark,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"nK" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/grille,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"nO" = (
+/obj/structure/table,
+/obj/item/clothing/head/welding,
+/obj/effect/turf_decal/industrial/warning/dust{
+ dir = 8
+ },
+/turf/open/floor/plasteel/mono/dark,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"nP" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/rockplanet/shippingdockcustoms)
+"nR" = (
+/obj/effect/decal/cleanable/crayon,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"nT" = (
+/obj/effect/turf_decal/number/right_zero,
+/obj/effect/turf_decal/number/left_zero,
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"nV" = (
+/obj/effect/turf_decal/box/white/corners{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/mono/dark,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"nW" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/robot_debris/limb,
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"nY" = (
+/obj/effect/turf_decal/road{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/light/broken/directional/east,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"nZ" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/chair/sofa/brown/old/directional,
+/turf/open/floor/carpet/nanoweave,
+/area/ruin/rockplanet/shippingdockoffice)
+"ob" = (
+/obj/effect/decal/cleanable/oil/streak,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"of" = (
+/obj/structure/railing/corner{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/slab_1{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"og" = (
+/obj/effect/turf_decal/road/line/edge/opaque/yellow{
+ dir = 8
+ },
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"oi" = (
+/obj/effect/turf_decal/trimline/opaque/white/arrow_cw{
+ dir = 1
+ },
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"oj" = (
+/obj/effect/turf_decal/box/corners{
+ dir = 4
+ },
+/turf/open/floor/plasteel/mono/dark,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"on" = (
+/obj/structure/fence{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "4-9"
+ },
+/obj/structure/cable{
+ icon_state = "4-10"
+ },
+/turf/open/floor/concrete/slab_2{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"op" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"ou" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/item/ammo_casing/spent{
+ pixel_x = 10;
+ pixel_y = 12
+ },
+/obj/item/ammo_casing/spent{
+ pixel_x = 3;
+ pixel_y = -5
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"oz" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/slab_4{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"oC" = (
+/obj/effect/turf_decal/road{
+ dir = 1
+ },
+/turf/open/floor/concrete/pavement,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"pe" = (
+/obj/machinery/light/broken/directional/east,
+/turf/open/floor/plasteel/mono/dark,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"pi" = (
+/obj/structure/flora/grass/rockplanet,
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"pl" = (
+/obj/effect/turf_decal/industrial/stand_clear/white,
+/turf/open/floor/plasteel/tech,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"pm" = (
+/obj/effect/turf_decal/industrial/hatch,
+/obj/structure/reagent_dispensers/foamtank,
+/turf/open/floor/plasteel/mono/dark,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"po" = (
+/obj/machinery/light/dim/directional/south,
+/obj/structure/safe,
+/obj/item/organ/cyberimp/arm/gun/taser,
+/turf/open/floor/plasteel/patterned/brushed,
+/area/ruin/rockplanet/shippingdocksecure)
+"pp" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/mine/proximity/explosive/sting/live,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"pv" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/solar_control{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/turf/open/floor/concrete/slab_4{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/ruin/rockplanet/shippingdockoffice)
+"pw" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/open/floor/plating/dirt/rockplanet{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"px" = (
+/obj/item/stack/ore/salvage/scraptitanium,
+/turf/open/floor/hangar/plasteel/dark,
+/area/ruin/rockplanet/shippingdock)
+"py" = (
+/turf/closed/wall/rust,
+/area/ruin/rockplanet/shippingdock)
+"pz" = (
+/obj/effect/turf_decal/road/line/edge/opaque/yellow{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"pB" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-9"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"pD" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/turf/open/floor/concrete/slab_3{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"pI" = (
+/obj/machinery/door/poddoor{
+ dir = 4;
+ id = "shippingdocksecure"
+ },
+/turf/open/floor/plasteel/tech/grid,
+/area/ruin/rockplanet/shippingdocksecure)
+"pS" = (
+/obj/structure/flora/grass/rockplanet,
+/turf/open/floor/plating/asteroid/rockplanet/cracked/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"pT" = (
+/obj/effect/turf_decal/trimline/opaque/neutral/filled/warning{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"pV" = (
+/obj/structure/flora/ausbushes/ppflowers,
+/turf/open/floor/plating/dirt/rockplanet{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"pX" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/glass,
+/obj/machinery/light/small/broken/directional/south,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/mine/pressure/gas/live,
+/turf/open/floor/plasteel/dark,
+/area/ruin/rockplanet/shippingdockoffice)
+"pY" = (
+/obj/structure/cable,
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/power/apc/auto_name/directional/west,
+/turf/open/floor/plasteel/mono/dark,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"qc" = (
+/obj/machinery/mech_bay_recharge_port,
+/obj/effect/turf_decal/industrial/warning/dust{
+ dir = 10
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"qi" = (
+/obj/effect/turf_decal/industrial/stand_clear{
+ dir = 8
+ },
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"qn" = (
+/turf/closed/wall/rust,
+/area/ruin/rockplanet/shippingdockoffice)
+"qo" = (
+/obj/effect/turf_decal/road/line/edge/opaque/yellow,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"qB" = (
+/turf/open/water/rockplanet{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"qG" = (
+/obj/structure/table,
+/obj/machinery/door/window/brigdoor/eastright{
+ dir = 2
+ },
+/obj/machinery/door/window/northright,
+/turf/open/floor/plasteel/dark,
+/area/ruin/rockplanet/shippingdockcustoms)
+"qH" = (
+/obj/effect/turf_decal/road/slow{
+ dir = 1
+ },
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"qL" = (
+/obj/structure/cable/yellow,
+/obj/item/solar_assembly,
+/turf/open/floor/concrete/reinforced{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"qM" = (
+/obj/structure/flora/rock/rockplanet,
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"qN" = (
+/obj/structure/closet/cardboard,
+/obj/item/stack/circuit_stack/full,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/tech/grid,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"qR" = (
+/obj/effect/turf_decal/road{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/plasma,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"qU" = (
+/obj/structure/railing{
+ max_integrity = 70;
+ dir = 4
+ },
+/obj/structure/barricade/sandbags,
+/turf/open/floor/plating/rust{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/ruin/rockplanet/shippingdock)
+"qW" = (
+/obj/effect/decal/fakelattice,
+/obj/item/stack/ore/salvage/scrapmetal,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"ra" = (
+/obj/structure/fence{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"re" = (
+/obj/structure/cable{
+ 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/concrete/slab_2{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"rl" = (
+/obj/effect/decal/cleanable/plasma,
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"rC" = (
+/obj/item/stack/cable_coil/cut/random,
+/turf/open/floor/plasteel/dark,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"rD" = (
+/obj/effect/turf_decal/industrial/hatch/red,
+/obj/structure/closet/crate/secure/gear{
+ req_one_access_txt = "53"
+ },
+/obj/item/ammo_box/magazine/tec9,
+/obj/item/ammo_box/magazine/tec9,
+/obj/item/gun/ballistic/automatic/pistol/tec9,
+/turf/open/floor/plasteel/mono/dark,
+/area/ruin/rockplanet/shippingdocksecure)
+"rK" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/structure/sign/warning/gasmask{
+ pixel_y = 32
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/restraints/legcuffs/beartrap{
+ armed = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/rockplanet/shippingdockoffice)
+"rN" = (
+/obj/effect/turf_decal/trimline/opaque/white/arrow_ccw,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"rO" = (
+/obj/machinery/door/airlock/grunge{
+ name = "Manager's Office"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/ruin/rockplanet/shippingdockoffice)
+"rS" = (
+/obj/machinery/light/broken/directional/west,
+/turf/open/floor/plasteel/tech/grid,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"rV" = (
+/obj/effect/turf_decal/road/line/edge/opaque/yellow,
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/item/restraints/legcuffs/beartrap{
+ armed = 1
+ },
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"rY" = (
+/obj/machinery/door/airlock/grunge{
+ name = "Cargo Checkpoint"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/rockplanet/shippingdockcustoms)
+"sa" = (
+/obj/effect/turf_decal/rechargefloor,
+/obj/effect/turf_decal/industrial/warning/dust,
+/obj/effect/spawner/lootdrop/whiteship_cere_ripley,
+/turf/open/floor/plasteel/mono/dark,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"sc" = (
+/obj/effect/turf_decal/industrial/warning/fulltile,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"se" = (
+/obj/effect/turf_decal/trimline/opaque/white/arrow_cw{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"sf" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/mine/proximity/explosive/sting/live,
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"sl" = (
+/obj/structure/railing/wood{
+ dir = 1
+ },
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"sp" = (
+/obj/item/stack/rods,
+/turf/open/floor/plating/asteroid/rockplanet/wet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"sq" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"st" = (
+/mob/living/simple_animal/hostile/netherworld/migo/asteroid,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/slab_4{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"su" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"sx" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/plasteel/tech/grid,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"sz" = (
+/obj/machinery/door/airlock/external{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark,
+/area/ruin/rockplanet/shippingdockoffice)
+"sC" = (
+/obj/effect/turf_decal/road{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/wrapping,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"sL" = (
+/obj/machinery/button/door{
+ dir = 4;
+ pixel_x = -24;
+ id = "shippingdocksecure"
+ },
+/turf/open/floor/plasteel/mono/dark,
+/area/ruin/rockplanet/shippingdocksecure)
+"sO" = (
+/obj/structure/table/wood,
+/obj/item/reagent_containers/food/snacks/donut/choco,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/carpet/nanoweave,
+/area/ruin/rockplanet/shippingdockoffice)
+"sP" = (
+/obj/structure/rack,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/item/key,
+/turf/open/floor/plasteel/tech,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"sS" = (
+/obj/effect/turf_decal/number/left_zero,
+/obj/effect/turf_decal/number/right_one,
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"sU" = (
+/obj/effect/turf_decal/trimline/opaque/white/warning{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"sX" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/item/shard,
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"sY" = (
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/slab_4{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"tb" = (
+/obj/effect/turf_decal/road/slow,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"tg" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-9"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"ti" = (
+/obj/effect/decal/cleanable/shreds,
+/obj/effect/decal/cleanable/plasma,
+/turf/open/floor/plating/rockplanet{
+ icon_state = "platingdmg2";
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"tn" = (
+/obj/effect/turf_decal/industrial/hatch/yellow,
+/obj/structure/closet/crate/solarpanel_small,
+/obj/item/clothing/gloves/color/fyellow,
+/obj/item/clothing/gloves/color/fyellow,
+/obj/item/clothing/gloves/color/yellow,
+/obj/item/clothing/gloves/color/fyellow/old,
+/turf/open/floor/plasteel/mono/dark,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"to" = (
+/obj/effect/turf_decal/road/edge{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/robot_debris/down,
+/obj/effect/decal/cleanable/plasma,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"tp" = (
+/obj/item/pipe{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/ruin/rockplanet/shippingdock)
+"tq" = (
+/obj/effect/turf_decal/road{
+ dir = 10
+ },
+/obj/structure/railing{
+ dir = 10
+ },
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"tr" = (
+/obj/effect/turf_decal/industrial/warning/dust/corner{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"tv" = (
+/obj/effect/turf_decal/industrial/loading{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/white/corner{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/mono/dark,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"tx" = (
+/turf/open/floor/plasteel/stairs/right{
+ dir = 1
+ },
+/area/ruin/rockplanet/shippingdock)
+"tz" = (
+/obj/structure/closet/crate/large,
+/obj/item/stack/sheet/mineral/sandstone/thirty,
+/obj/item/storage/box/emptysandbags,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/tech,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"tC" = (
+/obj/effect/turf_decal/road/line/opaque/yellow{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"tL" = (
+/obj/item/mine/pressure/explosive/rusty/live,
+/turf/open/floor/concrete/slab_4{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"tM" = (
+/obj/item/stack/ore/salvage/scraptitanium,
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"tN" = (
+/obj/structure/girder/reinforced,
+/turf/open/floor/plating,
+/area/ruin/rockplanet/shippingdock)
+"tQ" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/hangar/plasteel/white,
+/area/ruin/rockplanet/shippingdock)
+"tR" = (
+/obj/structure/barricade/sandbags,
+/turf/open/floor/concrete/pavement,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"tX" = (
+/obj/structure/cable{
+ icon_state = "2-5"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/slab_3{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"tY" = (
+/obj/effect/decal/cleanable/glass,
+/obj/item/shard,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"ud" = (
+/obj/effect/turf_decal/road{
+ dir = 10
+ },
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"ue" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
+/obj/machinery/airalarm/directional/north,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/ruin/rockplanet/shippingdockoffice)
+"ui" = (
+/obj/effect/turf_decal/road{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"ul" = (
+/obj/structure/rack,
+/obj/structure/window/reinforced,
+/obj/item/toy/plush/moth/firewatch,
+/obj/item/toy/plush/lizardplushie,
+/obj/item/toy/plush/knight,
+/obj/item/toy/prize/mauler,
+/obj/item/toy/talking/AI,
+/turf/open/floor/plasteel/mono/white,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"um" = (
+/turf/closed/wall,
+/area/ruin/rockplanet/shippingdockoffice)
+"uo" = (
+/obj/structure/closet/crate/trashcart,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/item/trash/can,
+/obj/item/trash/can/food/peaches,
+/obj/item/trash/tray,
+/obj/item/storage/bag/trash,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"uq" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-9"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 5
+ },
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"ut" = (
+/turf/open/floor/plasteel/mono/dark,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"ux" = (
+/obj/machinery/door/airlock/external,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/turf/open/floor/plasteel/dark,
+/area/ruin/rockplanet/shippingdockoffice)
+"uF" = (
+/obj/effect/decal/cleanable/shreds,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/carpet/nanoweave,
+/area/ruin/rockplanet/shippingdockoffice)
+"uP" = (
+/obj/item/wirecutters{
+ pixel_y = 17
+ },
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"uQ" = (
+/obj/structure/marker_beacon,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"uT" = (
+/obj/structure/sign/warning/nosmoking/circle{
+ pixel_y = 24
+ },
+/turf/open/floor/concrete/slab_4{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"uW" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-9"
+ },
+/obj/machinery/power/solar,
+/turf/open/floor/concrete/reinforced{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"uZ" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-6"
+ },
+/obj/item/solar_assembly,
+/turf/open/floor/concrete/reinforced{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"va" = (
+/obj/effect/turf_decal/road{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/garbage,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"ve" = (
+/obj/effect/turf_decal/road/line/opaque/yellow{
+ dir = 8
+ },
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"vi" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
+/obj/effect/decal/cleanable/glass,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark,
+/area/ruin/rockplanet/shippingdockoffice)
+"vj" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/turf/open/floor/carpet/nanoweave/beige,
+/area/ruin/rockplanet/shippingdockoffice)
+"vs" = (
+/obj/effect/turf_decal/corner/opaque/brown/border,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/hangar/plasteel/white,
+/area/ruin/rockplanet/shippingdock)
+"vt" = (
+/obj/effect/turf_decal/road{
+ dir = 5
+ },
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"vz" = (
+/turf/closed/wall,
+/area/ruin/rockplanet/shippingdockcustoms)
+"vD" = (
+/obj/item/ammo_box/magazine/zip_ammo_9mm{
+ pixel_x = 5;
+ pixel_y = 12
+ },
+/obj/item/ammo_casing/spent{
+ pixel_x = 3;
+ pixel_y = -5
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"vG" = (
+/obj/effect/turf_decal/industrial/stand_clear/white,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/tech,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"vM" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/slab_2{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"vP" = (
+/obj/machinery/door/airlock/security{
+ name = "Secure Storage";
+ req_one_access_txt = "53"
+ },
+/obj/effect/mapping_helpers/airlock/locked,
+/turf/open/floor/plasteel/mono/dark,
+/area/ruin/rockplanet/shippingdocksecure)
+"vR" = (
+/obj/structure/fence{
+ dir = 1
+ },
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"vS" = (
+/obj/structure/chair/pew/left{
+ dir = 4
+ },
+/turf/open/floor/concrete/slab_4{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"vV" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"wb" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/mono/dark,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"wf" = (
+/mob/living/simple_animal/hostile/netherworld/asteroid,
+/turf/open/floor/plating/asteroid/rockplanet/cracked/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"wj" = (
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "shippingdockfront"
+ },
+/turf/open/floor/plating,
+/area/ruin/rockplanet/shippingdockcustoms)
+"wo" = (
+/obj/structure/girder,
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"wp" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/open/floor/concrete/slab_3{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"wq" = (
+/obj/effect/turf_decal/road/line/edge/opaque/yellow{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"ws" = (
+/obj/effect/decal/cleanable/food/flour,
+/turf/open/floor/plasteel/dark,
+/area/ruin/rockplanet/shippingdockoffice)
+"wu" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/concrete/pavement,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"wv" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/slab_4{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"wy" = (
+/obj/effect/turf_decal/road/line/edge/opaque/yellow{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"wB" = (
+/obj/effect/turf_decal/road{
+ dir = 10
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"wE" = (
+/obj/effect/turf_decal/trimline/opaque/white/corner{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"wH" = (
+/obj/structure/cable/yellow,
+/obj/machinery/power/tracker,
+/turf/open/floor/concrete/reinforced{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"wM" = (
+/obj/effect/turf_decal/road/line/edge/opaque/yellow{
+ dir = 4
+ },
+/turf/open/floor/concrete/pavement,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"wN" = (
+/obj/effect/turf_decal/road{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/opaque/neutral/warning,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"wO" = (
+/obj/effect/turf_decal/number/left_one,
+/obj/effect/turf_decal/number/right_zero,
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"wP" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark,
+/area/ruin/rockplanet/shippingdockoffice)
+"wX" = (
+/obj/effect/turf_decal/trimline/opaque/white/arrow_ccw,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"wY" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"xc" = (
+/obj/effect/turf_decal/trimline/opaque/white/warning,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"xd" = (
+/obj/effect/turf_decal/corner/opaque/brown/border{
+ dir = 1
+ },
+/turf/open/floor/hangar/plasteel/white,
+/area/ruin/rockplanet/shippingdock)
+"xe" = (
+/obj/item/trash/semki,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/carpet/nanoweave/purple,
+/area/ruin/rockplanet/shippingdockoffice)
+"xf" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 9
+ },
+/turf/open/floor/concrete/slab_4{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"xh" = (
+/obj/structure/sign/warning/electricshock{
+ pixel_y = 26
+ },
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"xi" = (
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"xl" = (
+/obj/effect/turf_decal/industrial/stand_clear/red,
+/mob/living/simple_animal/bot/secbot/ed209/rockplanet,
+/turf/open/floor/plasteel/mono/dark,
+/area/ruin/rockplanet/shippingdocksecure)
+"xn" = (
+/obj/effect/turf_decal/road,
+/turf/open/floor/concrete/pavement,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"xo" = (
+/obj/effect/turf_decal/road{
+ dir = 5
+ },
+/obj/effect/turf_decal/trimline/opaque/neutral/filled/warning{
+ dir = 5
+ },
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"xv" = (
+/obj/item/toy/crayon/spraycan,
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"xx" = (
+/obj/item/stack/ore/salvage/scrapmetal,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/hangar/plasteel/white,
+/area/ruin/rockplanet/shippingdock)
+"xy" = (
+/turf/open/floor/plasteel/dark,
+/area/ruin/rockplanet/shippingdockcustoms)
+"xC" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/carpet/nanoweave/purple,
+/area/ruin/rockplanet/shippingdockoffice)
+"xF" = (
+/obj/effect/turf_decal/road/edge{
+ dir = 8
+ },
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"xQ" = (
+/obj/effect/turf_decal/road/line/edge/opaque/yellow{
+ dir = 1
+ },
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"xR" = (
+/obj/effect/turf_decal/industrial/loading{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/white/corner{
+ dir = 8
+ },
+/turf/open/floor/plasteel/mono/dark,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"xS" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/concrete/slab_4{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"xT" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/open/floor/concrete/slab_4{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"xY" = (
+/obj/structure/barricade/wooden,
+/obj/effect/decal/cleanable/oil/streak,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"xZ" = (
+/obj/structure/flora/rock/rockplanet,
+/turf/open/floor/plating/asteroid/rockplanet/wet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"yc" = (
+/obj/structure/chair/pew/right{
+ dir = 8
+ },
+/turf/open/floor/concrete/slab_4{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"yf" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"yj" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-9"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"yl" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-9"
+ },
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"ys" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/concrete/slab_4{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"yx" = (
+/obj/effect/decal/cleanable/robot_debris/old,
+/turf/open/floor/plasteel/tech,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"yH" = (
+/obj/effect/turf_decal/industrial/hatch/yellow,
+/obj/structure/reagent_dispensers/watertank/high,
+/turf/open/floor/plasteel/mono/dark,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"yJ" = (
+/obj/effect/turf_decal/industrial/warning/dust/corner,
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"yN" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/ruin/rockplanet/shippingdockoffice)
+"yO" = (
+/obj/structure/frame/machine,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/item/stack/ore/salvage/scrapgold,
+/obj/item/stock_parts/cell/empty,
+/turf/open/floor/plating,
+/area/ruin/rockplanet/shippingdock)
+"yT" = (
+/obj/effect/turf_decal/road/line/opaque/yellow{
+ dir = 1
+ },
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"yV" = (
+/obj/effect/turf_decal/road/edge{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"yW" = (
+/obj/structure/railing{
+ dir = 6
+ },
+/turf/open/floor/concrete/slab_1{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"yX" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-5"
+ },
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/concrete/reinforced{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"zd" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/carpet/nanoweave,
+/area/ruin/rockplanet/shippingdockoffice)
+"zf" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-6"
+ },
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/concrete/reinforced{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"zg" = (
+/obj/machinery/door/airlock/public/glass{
+ dir = 4
+ },
+/turf/open/floor/hangar/plasteel/dark,
+/area/ruin/rockplanet/shippingdock)
+"zm" = (
+/obj/effect/turf_decal/industrial/warning/fulltile,
+/obj/effect/supplypod_rubble,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"zv" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 5
+ },
+/obj/effect/decal/cleanable/garbage,
+/turf/open/floor/plating/rust{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/ruin/rockplanet/shippingdockoffice)
+"zy" = (
+/obj/machinery/door/airlock/freezer{
+ dir = 4;
+ name = "Bathroom"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/showroomfloor,
+/area/ruin/rockplanet/shippingdockoffice)
+"zz" = (
+/obj/effect/decal/cleanable/wrapping,
+/turf/open/floor/plasteel/mono/dark,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"zD" = (
+/obj/structure/fence,
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"zE" = (
+/obj/item/stack/ore/salvage/scrapmetal,
+/obj/effect/turf_decal/industrial/stand_clear{
+ dir = 1
+ },
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"zH" = (
+/obj/effect/turf_decal/road{
+ dir = 4
+ },
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"zK" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/slab_2{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"zL" = (
+/obj/structure/frame/machine,
+/obj/item/stack/ore/salvage/scrapmetal,
+/obj/item/stack/ore/salvage/scrapplasma,
+/turf/open/floor/plating,
+/area/ruin/rockplanet/shippingdock)
+"zM" = (
+/turf/closed/wall/rust,
+/area/ruin/rockplanet/shippingdockcustoms)
+"zS" = (
+/obj/effect/turf_decal/industrial/outline,
+/obj/structure/closet/cardboard,
+/obj/item/tank/internals/oxygen/yellow,
+/obj/item/tank/internals/oxygen/yellow,
+/obj/item/clothing/mask/gas/atmos,
+/obj/item/clothing/mask/gas/atmos,
+/turf/open/floor/plasteel/mono/dark,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"zT" = (
+/obj/structure/chair/comfy/shuttle{
+ dir = 4
+ },
+/obj/effect/turf_decal/corner/opaque/brown/border,
+/obj/effect/decal/cleanable/dirt/dust,
+/mob/living/simple_animal/pet/mothroach,
+/turf/open/floor/mineral/titanium/tiled/white,
+/area/ruin/rockplanet/shippingdock)
+"zU" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/slab_4{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"zV" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/carpet/nanoweave/beige,
+/area/ruin/rockplanet/shippingdockoffice)
+"zX" = (
+/obj/structure/flora/tree/cactus,
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Aa" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/robot_debris/limb,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Ai" = (
+/obj/item/stack/ore/salvage/scrapmetal,
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Aq" = (
+/obj/effect/turf_decal/road{
+ dir = 5
+ },
+/obj/structure/railing{
+ dir = 5
+ },
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Av" = (
+/obj/effect/turf_decal/industrial/warning/dust{
+ dir = 1
+ },
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"AE" = (
+/obj/structure/rack,
+/obj/structure/window/reinforced,
+/obj/item/toy/plush/blahaj,
+/obj/item/toy/plush/goatplushie,
+/obj/item/toy/plush/nukeplushie,
+/obj/item/toy/prize/phazon,
+/obj/item/toy/windupToolbox,
+/turf/open/floor/plasteel/mono/white,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"AG" = (
+/obj/effect/turf_decal/road{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/opaque/white/filled/line,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"AI" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"AJ" = (
+/obj/effect/decal/cleanable/glass,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"AL" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
+/turf/open/floor/carpet/nanoweave/beige,
+/area/ruin/rockplanet/shippingdockoffice)
+"AQ" = (
+/obj/effect/turf_decal/road/stripes{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"AW" = (
+/turf/open/floor/plating,
+/area/ruin/rockplanet/shippingdock)
+"Bi" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-6"
+ },
+/obj/item/solar_assembly,
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/concrete/reinforced{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Bl" = (
+/obj/structure/fence/corner{
+ dir = 1
+ },
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Bm" = (
+/obj/structure/sign/warning/nosmoking/circle{
+ pixel_y = 24
+ },
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Br" = (
+/obj/effect/turf_decal/road/edge{
+ dir = 4
+ },
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Bx" = (
+/obj/structure/window/reinforced,
+/obj/effect/turf_decal/trimline/opaque/ntblue,
+/turf/open/floor/plasteel/mono/white,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"By" = (
+/obj/effect/turf_decal/number/left_zero,
+/obj/effect/turf_decal/number/right_zero,
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Bz" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/structure/barricade/sandbags,
+/turf/open/floor/plating/rust{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/ruin/rockplanet/shippingdock)
+"BA" = (
+/obj/effect/turf_decal/road/line/opaque/yellow,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"BG" = (
+/obj/effect/turf_decal/road{
+ dir = 1
+ },
+/obj/item/ammo_casing/spent{
+ pixel_x = -14;
+ pixel_y = 1
+ },
+/obj/item/ammo_casing/spent{
+ pixel_x = 3;
+ pixel_y = -5
+ },
+/turf/open/floor/concrete/pavement,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"BH" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/slab_4{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"BI" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/mono/dark,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"BJ" = (
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/chair/sofa/brown/old/left,
+/turf/open/floor/carpet/nanoweave,
+/area/ruin/rockplanet/shippingdockoffice)
+"BN" = (
+/obj/effect/turf_decal/road/stop{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"BO" = (
+/obj/effect/turf_decal/road/slow{
+ dir = 8
+ },
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Ce" = (
+/obj/structure/chair/office{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/carpet/nanoweave/purple,
+/area/ruin/rockplanet/shippingdockoffice)
+"Ch" = (
+/obj/structure/flora/tree/cactus,
+/turf/open/floor/plating/asteroid/rockplanet/wet/cracked/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Cm" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/wrapping,
+/turf/open/floor/plasteel/mono/dark,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"Cu" = (
+/obj/structure/closet/crate/large,
+/obj/item/bot_assembly/secbot,
+/obj/item/bot_assembly/secbot,
+/turf/open/floor/plasteel/mono/dark,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"Cx" = (
+/obj/structure/railing/corner,
+/turf/open/floor/concrete/slab_1{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Cy" = (
+/obj/effect/turf_decal/road{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"CE" = (
+/obj/structure/railing/corner/wood{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/garbage,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"CF" = (
+/obj/item/toy/snappop,
+/turf/open/floor/plasteel/tech/grid,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"CH" = (
+/obj/structure/fence/post{
+ dir = 8
+ },
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"CM" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/candle{
+ pixel_x = 11
+ },
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"CN" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark,
+/area/ruin/rockplanet/shippingdockoffice)
+"CO" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/sign/warning/electricshock{
+ pixel_y = 26
+ },
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"CT" = (
+/obj/structure/table,
+/obj/item/flashlight/lamp,
+/turf/open/floor/carpet/nanoweave/purple,
+/area/ruin/rockplanet/shippingdockoffice)
+"CV" = (
+/obj/structure/closet/crate/large,
+/obj/item/bot_assembly/floorbot,
+/obj/item/bot_assembly/floorbot,
+/obj/item/bot_assembly/firebot,
+/obj/item/bot_assembly/firebot,
+/turf/open/floor/plasteel/tech,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"CW" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/slab_2{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Dv" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/concrete/slab_4{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Dz" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/open/floor/concrete/slab_1{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"DE" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/item/solar_assembly,
+/turf/open/floor/concrete/reinforced{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"DF" = (
+/obj/machinery/light/small/directional/west,
+/obj/structure/rack,
+/obj/item/camera,
+/turf/open/floor/plasteel/dark,
+/area/ruin/rockplanet/shippingdockcustoms)
+"DI" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/stack/ore/salvage/scrapmetal,
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"DP" = (
+/obj/machinery/light/small/directional/south,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 5
+ },
+/obj/effect/decal/cleanable/confetti,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark,
+/area/ruin/rockplanet/shippingdockoffice)
+"DR" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/mine/pressure/explosive/rusty/live,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"DV" = (
+/obj/effect/turf_decal/road,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/mine/pressure/explosive/rusty/live,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Eg" = (
+/obj/machinery/door/window/brigdoor{
+ req_one_access_txt = "53"
+ },
+/turf/open/floor/plasteel/mono/dark,
+/area/ruin/rockplanet/shippingdocksecure)
+"Eh" = (
+/obj/structure/railing,
+/turf/open/floor/concrete/slab_1{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Ei" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Ej" = (
+/obj/effect/turf_decal/trimline/opaque/neutral/filled/warning{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/opaque/neutral/filled/warning{
+ dir = 8
+ },
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Ev" = (
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Ew" = (
+/obj/item/stack/ore/salvage/scrapplasma,
+/turf/open/floor/plating,
+/area/ruin/rockplanet/shippingdock)
+"EC" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"ED" = (
+/obj/effect/turf_decal/road{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"EE" = (
+/obj/effect/turf_decal/industrial/outline/yellow,
+/obj/structure/closet/crate/large,
+/obj/machinery/smoke_machine,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/mono/dark,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"EG" = (
+/obj/structure/closet/secure_closet/freezer,
+/obj/item/storage/cans/sixbeer,
+/obj/item/storage/ration/beef_strips,
+/obj/item/storage/ration/pork_spaghetti,
+/obj/item/storage/ration/beef_goulash,
+/obj/effect/decal/cleanable/cobweb,
+/turf/open/floor/plasteel/dark,
+/area/ruin/rockplanet/shippingdockoffice)
+"EL" = (
+/obj/machinery/door/window/eastleft,
+/obj/effect/decal/cleanable/oil/slippery,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/tech,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"EP" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/slab_4{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"ER" = (
+/obj/structure/closet/crate,
+/turf/open/floor/hangar/plasteel/dark,
+/area/ruin/rockplanet/shippingdock)
+"EZ" = (
+/obj/effect/decal/fakelattice,
+/obj/item/stack/ore/salvage/scraptitanium,
+/obj/item/crowbar/large,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Fb" = (
+/obj/structure/sign/warning/nosmoking/circle{
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel/mono/dark,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"Fc" = (
+/obj/effect/turf_decal/industrial/outline,
+/turf/open/floor/plasteel/mono/dark,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"Fg" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/slab_2{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Fj" = (
+/obj/structure/railing{
+ dir = 5
+ },
+/turf/open/floor/concrete/slab_1{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Fn" = (
+/obj/effect/turf_decal/road{
+ dir = 9
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Fs" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/grille,
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Ft" = (
+/obj/structure/cable/yellow,
+/obj/effect/decal/cleanable/glass,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/reinforced{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Fv" = (
+/obj/machinery/airalarm/directional/west,
+/obj/effect/decal/cleanable/garbage,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/carpet/nanoweave,
+/area/ruin/rockplanet/shippingdockoffice)
+"Fx" = (
+/obj/item/mine/proximity/explosive/sting/live,
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"FB" = (
+/obj/effect/turf_decal/industrial/hatch/red,
+/obj/item/reagent_containers/glass/bottle/coniine{
+ name = "bottle";
+ desc = "A small bottle. Contains an unknown liquid."
+ },
+/obj/item/reagent_containers/glass/bottle/chloralhydrate{
+ desc = "A small bottle. Contains an unknown liquid.";
+ name = "bottle"
+ },
+/obj/item/reagent_containers/glass/bottle/atropine{
+ desc = "A small bottle. Contains an unknown liquid.";
+ name = "bottle"
+ },
+/obj/structure/closet/crate/secure/science{
+ req_one_access_txt = "53"
+ },
+/obj/item/reagent_containers/glass/bottle/amanitin{
+ desc = "A small bottle. Contains an unknown liquid.";
+ name = "bottle"
+ },
+/turf/open/floor/plasteel/mono/dark,
+/area/ruin/rockplanet/shippingdocksecure)
+"FD" = (
+/obj/effect/turf_decal/road/edge,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"FH" = (
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/mono/dark,
+/area/ruin/rockplanet/shippingdocksecure)
+"FK" = (
+/obj/effect/turf_decal/road{
+ dir = 9
+ },
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"FM" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/glass,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"FN" = (
+/obj/machinery/power/terminal{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-9"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/mono/dark,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"FP" = (
+/obj/effect/turf_decal/road{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"FQ" = (
+/obj/structure/table,
+/obj/item/paper_bin,
+/obj/item/pen/fourcolor,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc/auto_name/directional/west,
+/turf/open/floor/plasteel/dark,
+/area/ruin/rockplanet/shippingdockcustoms)
+"FU" = (
+/obj/structure/table/wood,
+/obj/machinery/microwave,
+/turf/open/floor/plasteel/dark,
+/area/ruin/rockplanet/shippingdockoffice)
+"FV" = (
+/obj/structure/flora/rock/pile/rockplanet,
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"FX" = (
+/obj/effect/decal/cleanable/crayon,
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"FZ" = (
+/obj/effect/decal/cleanable/confetti,
+/obj/machinery/light/broken/directional/east,
+/turf/open/floor/carpet/nanoweave,
+/area/ruin/rockplanet/shippingdockoffice)
+"Gg" = (
+/obj/structure/cable/yellow,
+/obj/machinery/power/solar,
+/turf/open/floor/concrete/reinforced{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Gj" = (
+/obj/structure/safe,
+/obj/item/spacecash/bundle/pocketchange,
+/obj/item/spacecash/bundle/c10,
+/turf/open/floor/plasteel/patterned/brushed,
+/area/ruin/rockplanet/shippingdocksecure)
+"Gk" = (
+/obj/structure/railing/corner{
+ dir = 8
+ },
+/turf/open/floor/concrete/slab_1{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Gr" = (
+/obj/effect/turf_decal/industrial/warning/dust{
+ dir = 9
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"Gs" = (
+/obj/effect/turf_decal/road{
+ dir = 1
+ },
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Gy" = (
+/obj/effect/turf_decal/road{
+ dir = 6
+ },
+/obj/effect/turf_decal/road/edge{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Gz" = (
+/obj/structure/table/wood,
+/obj/item/storage/fancy/donut_box,
+/turf/open/floor/carpet/nanoweave,
+/area/ruin/rockplanet/shippingdockoffice)
+"GB" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/poddoor{
+ dir = 4;
+ id = "shippingdocksecure"
+ },
+/turf/open/floor/plasteel/tech/grid,
+/area/ruin/rockplanet/shippingdocksecure)
+"GM" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/opaque/bottlegreen,
+/turf/open/floor/plasteel/mono/white,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"GN" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"GO" = (
+/obj/effect/turf_decal/road/line/edge/opaque/yellow{
+ dir = 4
+ },
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"GP" = (
+/turf/template_noop,
+/area/template_noop)
+"GW" = (
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plating,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"GZ" = (
+/obj/structure/table,
+/obj/machinery/door/window/brigdoor,
+/obj/machinery/door/window/northleft,
+/obj/item/clipboard,
+/turf/open/floor/plasteel/dark,
+/area/ruin/rockplanet/shippingdockcustoms)
+"Hd" = (
+/obj/structure/chair/pew/left{
+ dir = 8
+ },
+/turf/open/floor/concrete/slab_4{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Hk" = (
+/turf/open/floor/plasteel/stairs/left{
+ dir = 1
+ },
+/area/ruin/rockplanet/shippingdock)
+"Ho" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
+ },
+/obj/effect/decal/remains/human,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/ruin/rockplanet/shippingdockoffice)
+"Hx" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/trimline/opaque/neutral/filled/warning{
+ dir = 1
+ },
+/obj/machinery/door/poddoor/shutters{
+ id = "shippingdockwarehousesouth"
+ },
+/turf/open/floor/concrete/pavement,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"HA" = (
+/obj/structure/fence/corner,
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"HB" = (
+/obj/machinery/light/broken/directional/south,
+/turf/open/floor/plasteel/tech/grid,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"HI" = (
+/obj/item/weldingtool/old,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/hangar/plasteel/dark,
+/area/ruin/rockplanet/shippingdock)
+"HK" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/slab_3{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"HL" = (
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"HM" = (
+/obj/effect/turf_decal/road/line/edge/opaque/yellow{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"HN" = (
+/obj/effect/turf_decal/industrial/warning/dust{
+ dir = 8
+ },
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"HP" = (
+/mob/living/simple_animal/hostile/netherworld/asteroid,
+/turf/open/floor/plating/asteroid/rockplanet/wet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"HV" = (
+/obj/item/mine/pressure/explosive/rusty/live,
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"HW" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/concrete/slab_3{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"HY" = (
+/obj/structure/curtain,
+/obj/machinery/shower{
+ pixel_y = 19
+ },
+/obj/structure/window/reinforced/survival_pod,
+/obj/machinery/door/window/survival_pod{
+ dir = 4
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/ruin/rockplanet/shippingdockoffice)
+"Ic" = (
+/obj/effect/turf_decal/industrial/stand_clear{
+ dir = 1
+ },
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Id" = (
+/obj/effect/turf_decal/road/line/edge/opaque/yellow,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Ig" = (
+/obj/effect/turf_decal/road{
+ dir = 8
+ },
+/obj/item/mine/pressure/explosive/rusty/live,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Il" = (
+/obj/structure/closet/crate,
+/turf/open/floor/plating,
+/area/ruin/rockplanet/shippingdock)
+"Io" = (
+/obj/effect/turf_decal/road{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"Iu" = (
+/obj/structure/flora/ash/garden/arid,
+/turf/open/floor/plating/asteroid/rockplanet/cracked/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Iv" = (
+/obj/structure/railing{
+ dir = 9
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/slab_1{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"IE" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/carpet/nanoweave/beige,
+/area/ruin/rockplanet/shippingdockoffice)
+"IH" = (
+/obj/effect/decal/cleanable/food/tomato_smudge,
+/turf/open/floor/plasteel/dark,
+/area/ruin/rockplanet/shippingdockoffice)
+"IK" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/layer_manifold,
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"IS" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/tech/grid,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"IU" = (
+/obj/item/kirbyplants/random,
+/turf/open/floor/carpet/nanoweave/purple,
+/area/ruin/rockplanet/shippingdockoffice)
+"IV" = (
+/obj/effect/turf_decal/road,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"IY" = (
+/turf/closed/wall/rust,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Jd" = (
+/obj/structure/railing,
+/obj/structure/table,
+/obj/item/radio,
+/turf/open/floor/plating,
+/area/ruin/rockplanet/shippingdock)
+"Jq" = (
+/obj/effect/turf_decal/road{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"Ju" = (
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/ruin/rockplanet/shippingdock)
+"Jz" = (
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/rockplanet/shippingdockcustoms)
+"JD" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/plasteel/dark,
+/area/ruin/rockplanet/shippingdockcustoms)
+"JE" = (
+/obj/effect/decal/fakelattice,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"JF" = (
+/obj/item/stack/cable_coil/cut/red,
+/obj/item/stack/ore/salvage/scraptitanium,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/ruin/rockplanet/shippingdock)
+"JG" = (
+/obj/effect/turf_decal/industrial/hatch,
+/obj/structure/closet/cardboard/metal,
+/obj/item/stack/sheet/metal/fifty,
+/obj/item/stack/sheet/plasteel/twenty,
+/turf/open/floor/plasteel/mono/dark,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"JI" = (
+/obj/structure/chair/plastic,
+/turf/open/floor/plating,
+/area/ruin/rockplanet/shippingdock)
+"JL" = (
+/obj/effect/turf_decal/road/line/edge/opaque/yellow{
+ dir = 8
+ },
+/obj/machinery/door/poddoor/shutters{
+ id = "shippingdockwarehouse"
+ },
+/obj/effect/turf_decal/trimline/opaque/neutral/filled/warning,
+/turf/open/floor/concrete/pavement,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"JO" = (
+/obj/item/clothing/shoes/magboots{
+ name = "charred magboots"
+ },
+/obj/effect/decal/cleanable/shreds{
+ pixel_x = -8;
+ pixel_y = 17
+ },
+/obj/effect/decal/cleanable/shreds{
+ pixel_y = -9;
+ pixel_x = 15
+ },
+/obj/effect/decal/cleanable/plasma,
+/turf/open/floor/plating/rockplanet{
+ icon_state = "platingdmg3";
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"JQ" = (
+/obj/effect/decal/cleanable/garbage,
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"JU" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/carpet/nanoweave/beige,
+/area/ruin/rockplanet/shippingdockoffice)
+"JZ" = (
+/obj/effect/turf_decal/industrial/warning/dust/corner{
+ dir = 8
+ },
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Kc" = (
+/obj/effect/decal/cleanable/shreds{
+ pixel_x = 7;
+ pixel_y = -8
+ },
+/obj/effect/decal/cleanable/shreds{
+ pixel_y = 7
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating/rockplanet{
+ icon_state = "platingdmg2";
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Ke" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/carpet/nanoweave/beige,
+/area/ruin/rockplanet/shippingdockoffice)
+"Kh" = (
+/obj/structure/flora/ash/garden,
+/turf/open/floor/plating/dirt/rockplanet{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Km" = (
+/obj/structure/fence/cut/medium{
+ dir = 4
+ },
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Kq" = (
+/obj/structure/marker_beacon,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Kr" = (
+/obj/effect/turf_decal/industrial/stand_clear,
+/turf/open/floor/plasteel/dark,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"Ks" = (
+/obj/structure/rack,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/effect/spawner/bundle/costume/marisawizard,
+/turf/open/floor/plasteel/mono/white,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"Kt" = (
+/obj/structure/cable{
+ icon_state = "1-6"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/slab_2{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Kx" = (
+/obj/machinery/door/airlock/external,
+/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/plasteel/dark,
+/area/ruin/rockplanet/shippingdockcustoms)
+"Kz" = (
+/obj/item/mecha_parts/mecha_equipment/hydraulic_clamp,
+/obj/structure/table,
+/obj/effect/turf_decal/industrial/warning/dust{
+ dir = 10
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"KA" = (
+/turf/open/floor/concrete/slab_3{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"KG" = (
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/open/floor/concrete/slab_4{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"KJ" = (
+/obj/item/shard,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"KQ" = (
+/obj/effect/turf_decal/road/line/edge/opaque/yellow{
+ dir = 1
+ },
+/obj/item/toy/snappop,
+/turf/open/floor/concrete/pavement,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"KR" = (
+/obj/effect/turf_decal/siding/white,
+/turf/open/floor/plasteel/mono/dark,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"KS" = (
+/obj/structure/filingcabinet/double,
+/turf/open/floor/wood,
+/area/ruin/rockplanet/shippingdockoffice)
+"Lb" = (
+/obj/item/stack/ore/salvage/scraptitanium,
+/turf/open/floor/plating/asteroid/rockplanet/cracked/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Lf" = (
+/obj/item/restraints/legcuffs/beartrap{
+ armed = 1
+ },
+/turf/open/floor/plating,
+/area/ruin/rockplanet/shippingdock)
+"Lh" = (
+/obj/structure/fence/corner{
+ dir = 4
+ },
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Ln" = (
+/obj/effect/turf_decal/number/left_one,
+/obj/effect/turf_decal/number/right_one,
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Lq" = (
+/obj/machinery/door/airlock/grunge{
+ name = "Break Room";
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/rockplanet/shippingdockoffice)
+"Lr" = (
+/obj/effect/turf_decal/industrial/stand_clear,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/tech,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"Ls" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/rockplanet/shippingdockoffice)
+"Lu" = (
+/obj/effect/turf_decal/road{
+ dir = 1
+ },
+/obj/machinery/button/door{
+ id = "shippingdockwarehousesouth";
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/open/floor/concrete/pavement,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"Ly" = (
+/turf/open/floor/plating/rust{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/ruin/rockplanet/shippingdock)
+"LB" = (
+/obj/effect/turf_decal/road{
+ dir = 1
+ },
+/obj/structure/barricade/sandbags,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"LE" = (
+/obj/structure/sign/departments/drop{
+ pixel_x = 32
+ },
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"LL" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"LS" = (
+/turf/open/floor/plasteel/tech/grid,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"LW" = (
+/obj/item/stack/ore/salvage/scrapmetal,
+/obj/effect/turf_decal/corner/opaque/brown/border{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/hangar/plasteel/white,
+/area/ruin/rockplanet/shippingdock)
+"LY" = (
+/obj/machinery/door/airlock/external,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/rockplanet/shippingdockcustoms)
+"Mg" = (
+/turf/open/floor/plasteel/mono/dark,
+/area/ruin/rockplanet/shippingdocksecure)
+"Mj" = (
+/obj/effect/turf_decal/siding/white,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/mono/dark,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"Mm" = (
+/obj/structure/flora/tree/cactus,
+/turf/open/floor/plating/asteroid/rockplanet/cracked/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Mt" = (
+/obj/effect/turf_decal/trimline/opaque/white/filled/line{
+ dir = 4
+ },
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Mv" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/confetti,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/carpet/nanoweave,
+/area/ruin/rockplanet/shippingdockoffice)
+"Mw" = (
+/obj/item/kirbyplants/random,
+/obj/effect/decal/cleanable/cobweb,
+/turf/open/floor/carpet/nanoweave/beige,
+/area/ruin/rockplanet/shippingdockoffice)
+"My" = (
+/obj/item/paper/crumpled/muddy{
+ default_raw_text = "# 01010100 01001000 01001001 01010011 00100000 01010011 01010000 01000001 01000011 01000101 00100000 01001001 01001110 01010100 01000101 01001110 01010100 01001001 01001111 01001110 01000001 01001100 01001100 01011001 00100000 01001100 01000101 01000110 01010100 00100000 01000010 01001100 01000001 01001110 01001011"
+ },
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Mz" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/carpet/nanoweave/beige,
+/area/ruin/rockplanet/shippingdockoffice)
+"MA" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"MG" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/light/small/broken/directional/east,
+/turf/open/floor/plasteel/dark,
+/area/ruin/rockplanet/shippingdockoffice)
+"MM" = (
+/obj/effect/turf_decal/industrial/loading{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/white/corner{
+ dir = 1
+ },
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/plasteel/mono/dark,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"MO" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
+/obj/machinery/light/small/directional/south,
+/obj/effect/decal/cleanable/glass,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating/rust{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/ruin/rockplanet/shippingdockoffice)
+"MQ" = (
+/turf/closed/wall,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"MX" = (
+/obj/effect/turf_decal/road{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Nb" = (
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/smes/engineering,
+/turf/open/floor/plasteel/mono/dark,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"Nh" = (
+/obj/item/stack/ore/salvage/scraptitanium,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Ni" = (
+/obj/structure/fence/post{
+ dir = 1
+ },
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Nj" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/carpet/nanoweave/beige,
+/area/ruin/rockplanet/shippingdockoffice)
+"Np" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile/shuttle,
+/turf/open/floor/plating,
+/area/ruin/rockplanet/shippingdock)
+"Nq" = (
+/turf/closed/wall/mineral/titanium,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Ns" = (
+/obj/effect/turf_decal/road/line/edge/opaque/yellow{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"Ny" = (
+/obj/structure/girder/reinforced,
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"NB" = (
+/obj/machinery/light/dim/directional/north,
+/turf/open/floor/plasteel/tech/grid,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"NE" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/plasteel/dark,
+/area/ruin/rockplanet/shippingdockcustoms)
+"NH" = (
+/obj/structure/flora/rock/rockplanet,
+/turf/open/floor/plating/asteroid/rockplanet/cracked/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"NK" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/open/floor/concrete/slab_2{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"NL" = (
+/obj/structure/chair/pew{
+ dir = 4
+ },
+/turf/open/floor/concrete/slab_4{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"NP" = (
+/obj/effect/turf_decal/road{
+ dir = 8
+ },
+/obj/effect/turf_decal/road{
+ dir = 6
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"NQ" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/mine/pressure/explosive/live,
+/turf/open/floor/concrete/pavement,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"NR" = (
+/turf/open/floor/concrete/slab_2{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"NT" = (
+/obj/effect/turf_decal/industrial/outline/yellow,
+/turf/open/floor/plasteel/mono/dark,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"NU" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/item/restraints/legcuffs/beartrap{
+ armed = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/rockplanet/shippingdockoffice)
+"NY" = (
+/obj/effect/turf_decal/industrial/warning/dust{
+ dir = 4
+ },
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Oa" = (
+/obj/effect/turf_decal/road,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Ob" = (
+/obj/effect/turf_decal/road/line/opaque/yellow{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"Od" = (
+/obj/effect/turf_decal/industrial/warning{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned/brushed,
+/area/ruin/rockplanet/shippingdocksecure)
+"Oe" = (
+/obj/effect/turf_decal/road/stripes{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Om" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/grille,
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"Ov" = (
+/turf/open/floor/concrete/slab_4{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Oz" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark,
+/area/ruin/rockplanet/shippingdockoffice)
+"OG" = (
+/obj/item/pipe{
+ dir = 8
+ },
+/obj/item/wrench/old,
+/turf/open/floor/plating,
+/area/ruin/rockplanet/shippingdock)
+"OI" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/slab_1{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"OO" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/machinery/door/airlock/grunge{
+ name = "Cargo Checkpoint"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/plasteel/dark,
+/area/ruin/rockplanet/shippingdockcustoms)
+"OQ" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/tech,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"OT" = (
+/obj/effect/turf_decal/industrial/stand_clear,
+/turf/open/floor/plasteel/tech,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"Pb" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Pc" = (
+/obj/effect/turf_decal/trimline/opaque/white/warning,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Pf" = (
+/obj/machinery/door/airlock/external{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/rockplanet/shippingdockoffice)
+"Pi" = (
+/obj/item/pickaxe,
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Pn" = (
+/obj/structure/fence/cut/large{
+ dir = 8
+ },
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Po" = (
+/obj/item/mine/pressure/explosive/rusty/live,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Pp" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/turf/open/floor/concrete/reinforced{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Pr" = (
+/obj/item/stack/ore/salvage/scrapmetal,
+/turf/open/floor/hangar/plasteel/dark,
+/area/ruin/rockplanet/shippingdock)
+"Ps" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/machinery/button/door{
+ pixel_y = 24;
+ id = "shippingdockwarehousesouth"
+ },
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/ruin/rockplanet/shippingdockwarehouse)
+"Pw" = (
+/obj/machinery/light/dim/directional/east,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/carpet/nanoweave/purple,
+/area/ruin/rockplanet/shippingdockoffice)
+"Px" = (
+/obj/effect/turf_decal/road,
+/obj/structure/barricade/sandbags,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"Py" = (
+/obj/effect/decal/cleanable/generic,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"PA" = (
+/obj/effect/turf_decal/road/line/edge/opaque/yellow{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"PE" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"PM" = (
+/obj/effect/turf_decal/road/line/edge/opaque/yellow{
+ dir = 1
+ },
+/obj/item/restraints/legcuffs/beartrap{
+ armed = 1
+ },
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"PP" = (
+/turf/closed/wall/r_wall/rust,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"PZ" = (
+/obj/effect/turf_decal/road,
+/obj/effect/turf_decal/trimline/opaque/white/corner{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Qg" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/ruin/rockplanet/shippingdockoffice)
+"Qi" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/carpet/nanoweave,
+/area/ruin/rockplanet/shippingdockoffice)
+"Qn" = (
+/obj/structure/table,
+/obj/item/flashlight/lamp,
+/obj/machinery/button/door{
+ pixel_y = 24;
+ id = "shippingdockfront"
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/rockplanet/shippingdockcustoms)
+"Qq" = (
+/turf/open/floor/plasteel/dark,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"Qr" = (
+/obj/effect/turf_decal/road{
+ dir = 9
+ },
+/obj/effect/turf_decal/road,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Qv" = (
+/obj/machinery/door/airlock/external{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/rockplanet/shippingdockoffice)
+"Qy" = (
+/obj/effect/turf_decal/industrial/warning/dust{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"QB" = (
+/obj/structure/safe/floor,
+/obj/effect/turf_decal/siding/wood/end{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/wood,
+/obj/item/spacecash/bundle/c500,
+/obj/item/spacecash/bundle/mediumrand,
+/obj/machinery/light/broken/directional/west,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/ruin/rockplanet/shippingdockoffice)
+"QC" = (
+/obj/structure/closet/cabinet,
+/obj/item/clothing/under/suit/charcoal,
+/obj/item/clothing/suit/toggle/lawyer/charcoal,
+/obj/item/clothing/glasses/sunglasses/big,
+/obj/item/clothing/shoes/laceup,
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/ruin/rockplanet/shippingdockoffice)
+"QD" = (
+/obj/effect/turf_decal/road,
+/obj/structure/barricade/sandbags,
+/turf/open/floor/concrete/pavement,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"QI" = (
+/obj/effect/turf_decal/industrial/outline/red,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/mine/pressure/explosive/rusty/live,
+/turf/open/floor/hangar/plasteel/white,
+/area/ruin/rockplanet/shippingdock)
+"QQ" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/concrete/slab_1{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Rd" = (
+/obj/effect/turf_decal/industrial/stand_clear/red,
+/turf/open/floor/plasteel/mono/dark,
+/area/ruin/rockplanet/shippingdocksecure)
+"Ri" = (
+/obj/structure/flora/grass/rockplanet/dead,
+/turf/open/floor/plating/asteroid/rockplanet/wet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Rl" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/machinery/button/door{
+ pixel_y = 24;
+ id = "shippingdockwarehouse"
+ },
+/turf/open/floor/plasteel/tech/grid,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"Ro" = (
+/obj/item/stack/rods,
+/turf/open/floor/concrete/slab_1{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Rp" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/carpet/nanoweave/beige,
+/area/ruin/rockplanet/shippingdockoffice)
+"Rq" = (
+/obj/machinery/light/small/directional/west,
+/obj/structure/chair/sofa/brown/old/right,
+/turf/open/floor/carpet/nanoweave,
+/area/ruin/rockplanet/shippingdockoffice)
+"Rw" = (
+/obj/effect/turf_decal/road,
+/obj/effect/decal/cleanable/plasma,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Rz" = (
+/obj/effect/turf_decal/road/line/edge/opaque/yellow{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"RT" = (
+/obj/machinery/computer/mech_bay_power_console{
+ dir = 1
+ },
+/obj/effect/turf_decal/industrial/warning/dust{
+ dir = 6
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"RV" = (
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/garbage,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/carpet/nanoweave/beige,
+/area/ruin/rockplanet/shippingdockoffice)
+"RW" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/door/airlock/maintenance_hatch,
+/turf/open/floor/plating,
+/area/ruin/rockplanet/shippingdockoffice)
+"Sd" = (
+/obj/effect/turf_decal/road{
+ dir = 6
+ },
+/obj/structure/railing{
+ dir = 6
+ },
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Si" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/ruin/rockplanet/shippingdockoffice)
+"So" = (
+/obj/effect/turf_decal/trimline/opaque/white/warning{
+ dir = 1
+ },
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Sq" = (
+/obj/structure/railing/corner{
+ dir = 1
+ },
+/turf/open/floor/concrete/slab_1{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Sr" = (
+/obj/effect/turf_decal/road{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Ss" = (
+/obj/effect/turf_decal/road/line/edge/opaque/yellow{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"Su" = (
+/obj/structure/table,
+/obj/item/folder,
+/obj/machinery/light/broken/directional/south,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/carpet/nanoweave/purple,
+/area/ruin/rockplanet/shippingdockoffice)
+"SB" = (
+/mob/living/simple_animal/hostile/netherworld/asteroid,
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"SF" = (
+/obj/effect/turf_decal/road{
+ dir = 5
+ },
+/obj/effect/turf_decal/road/edge{
+ dir = 8
+ },
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"SI" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/structure/barricade/sandbags,
+/turf/open/floor/plating,
+/area/ruin/rockplanet/shippingdock)
+"SJ" = (
+/obj/structure/rack,
+/obj/structure/window/reinforced,
+/obj/effect/spawner/lootdrop/donkpockets,
+/obj/effect/spawner/lootdrop/donkpockets,
+/obj/effect/spawner/lootdrop/donkpockets,
+/turf/open/floor/plasteel/mono/white,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"SM" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/concrete/slab_3{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"SO" = (
+/turf/closed/wall/mineral/titanium,
+/area/ruin/rockplanet/shippingdock)
+"SV" = (
+/obj/item/pipe{
+ dir = 8
+ },
+/obj/item/stack/ore/salvage/scrapplasma,
+/turf/open/floor/plating,
+/area/ruin/rockplanet/shippingdock)
+"SX" = (
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/item/mine/proximity/explosive/sting/live,
+/turf/open/floor/concrete/slab_2{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"SY" = (
+/obj/structure/flora/grass/rockplanet/dead,
+/turf/open/floor/plating/asteroid/rockplanet/wet/cracked/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"SZ" = (
+/obj/item/stack/ore/salvage/scrapmetal,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/ruin/rockplanet/shippingdock)
+"Tc" = (
+/obj/structure/cable{
+ 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/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/slab_3{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Td" = (
+/obj/effect/turf_decal/industrial/stand_clear{
+ dir = 4
+ },
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Th" = (
+/obj/machinery/door/poddoor/shutters{
+ id = "shippingdockwarehouse"
+ },
+/obj/effect/turf_decal/road,
+/obj/effect/turf_decal/trimline/opaque/neutral/filled/warning,
+/turf/open/floor/concrete/pavement,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"Ti" = (
+/obj/effect/turf_decal/industrial/stand_clear,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Tl" = (
+/obj/item/stack/cable_coil/cut/red,
+/obj/item/stock_parts/cell/empty,
+/turf/open/floor/plating,
+/area/ruin/rockplanet/shippingdock)
+"Tv" = (
+/obj/effect/turf_decal/box/corners,
+/turf/open/floor/plasteel/mono/dark,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"Tw" = (
+/obj/effect/turf_decal/road{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Tx" = (
+/obj/structure/chair/office{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/rockplanet/shippingdockcustoms)
+"Ty" = (
+/obj/effect/turf_decal/road/line/opaque/yellow{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"TA" = (
+/obj/effect/turf_decal/road/edge{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"TE" = (
+/obj/machinery/button/door{
+ dir = 1;
+ pixel_y = -24;
+ id = "shippingdockwarehouse"
+ },
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/ruin/rockplanet/shippingdockwarehouse)
+"TH" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/slab_4{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"TW" = (
+/obj/machinery/door/airlock/public/glass{
+ dir = 4;
+ req_one_access_txt = "52"
+ },
+/turf/open/floor/hangar/plasteel/dark,
+/area/ruin/rockplanet/shippingdock)
+"TY" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-9"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Ub" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/slab_1{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Ue" = (
+/obj/structure/cable/yellow,
+/obj/machinery/power/solar,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/reinforced{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Uf" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/carpet/nanoweave/beige,
+/area/ruin/rockplanet/shippingdockoffice)
+"Ug" = (
+/obj/effect/turf_decal/industrial/warning/dust{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/oil/slippery,
+/turf/open/floor/plasteel/dark,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"Ui" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-6"
+ },
+/obj/machinery/power/solar_control{
+ dir = 4
+ },
+/turf/open/floor/plasteel/mono/dark,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"Uj" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-9"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/item/shard,
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Uk" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/ruin/rockplanet/shippingdock)
+"Ul" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-9"
+ },
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Un" = (
+/obj/structure/flora/ash/garden/arid,
+/turf/open/floor/plating/asteroid/rockplanet/wet/cracked/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Ur" = (
+/obj/structure/sign/warning/docking{
+ pixel_y = 28
+ },
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Uy" = (
+/obj/effect/turf_decal/industrial/stand_clear{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"UA" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/plastic,
+/turf/open/floor/concrete/slab_3{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"UD" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/mine/pressure/explosive/rusty/live,
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"UG" = (
+/obj/structure/cable,
+/obj/machinery/power/smes/engineering,
+/turf/open/floor/plating,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"UK" = (
+/obj/structure/fence/post{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"UN" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/slab_3{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"UT" = (
+/obj/effect/turf_decal/box/corners{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/wrapping,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/mono/dark,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"UV" = (
+/obj/structure/salvageable/computer{
+ dir = 8
+ },
+/obj/effect/turf_decal/corner/opaque/brown/border{
+ dir = 6
+ },
+/turf/open/floor/mineral/titanium/tiled/white,
+/area/ruin/rockplanet/shippingdock)
+"UW" = (
+/obj/structure/reagent_dispensers/water_cooler,
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/plasteel/dark,
+/area/ruin/rockplanet/shippingdockcustoms)
+"UX" = (
+/obj/effect/turf_decal/road/line/edge/opaque/yellow{
+ dir = 1
+ },
+/obj/machinery/door/poddoor/shutters{
+ id = "shippingdockwarehouse"
+ },
+/obj/effect/turf_decal/trimline/opaque/neutral/filled/warning,
+/turf/open/floor/concrete/pavement,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"UY" = (
+/obj/effect/turf_decal/road/line/edge/opaque/yellow{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Vf" = (
+/obj/structure/poddoor_assembly,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/ruin/rockplanet/shippingdock)
+"Vg" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/hangar/plasteel/dark,
+/area/ruin/rockplanet/shippingdock)
+"Vh" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/slab_1{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Vn" = (
+/obj/structure/railing{
+ max_integrity = 70;
+ dir = 4
+ },
+/obj/structure/barricade/sandbags,
+/turf/open/floor/plating,
+/area/ruin/rockplanet/shippingdock)
+"Vt" = (
+/obj/effect/turf_decal/industrial/outline/yellow,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/mono/dark,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"Vu" = (
+/obj/structure/railing/corner,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/slab_1{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"VE" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/carpet/nanoweave/beige,
+/area/ruin/rockplanet/shippingdockoffice)
+"VJ" = (
+/obj/item/trash/waffles,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/carpet/nanoweave,
+/area/ruin/rockplanet/shippingdockoffice)
+"VK" = (
+/obj/structure/cable/yellow,
+/obj/effect/decal/cleanable/glass,
+/obj/item/shard,
+/turf/open/floor/concrete/reinforced{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"VW" = (
+/obj/effect/turf_decal/road{
+ dir = 8
+ },
+/obj/effect/turf_decal/road{
+ dir = 10
+ },
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"VX" = (
+/obj/effect/turf_decal/industrial/warning/dust/corner{
+ dir = 1
+ },
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Wb" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"Wc" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/slab_3{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"We" = (
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Wh" = (
+/obj/machinery/door/poddoor,
+/turf/open/floor/plating,
+/area/ruin/rockplanet/shippingdock)
+"Wj" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/slab_4{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Wk" = (
+/obj/structure/mirror{
+ pixel_y = 28
+ },
+/obj/structure/sink{
+ pixel_y = 17
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/showroomfloor,
+/area/ruin/rockplanet/shippingdockoffice)
+"Wl" = (
+/obj/effect/turf_decal/industrial/outline/yellow,
+/obj/structure/reagent_dispensers/fueltank,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/mono/dark,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"Wn" = (
+/turf/open/floor/plating/asteroid/rockplanet/cracked/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Wp" = (
+/obj/effect/decal/cleanable/garbage,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Wv" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
+ },
+/turf/open/floor/concrete/slab_4{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Ww" = (
+/obj/structure/railing{
+ dir = 10
+ },
+/turf/open/floor/concrete/slab_1{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"WE" = (
+/obj/structure/rack,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/item/storage/box/maid,
+/turf/open/floor/plasteel/mono/white,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"WH" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-6"
+ },
+/turf/open/floor/concrete/reinforced{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"WJ" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/open/floor/concrete/slab_3{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"WO" = (
+/obj/machinery/light/broken/directional/north,
+/turf/open/floor/plasteel/tech/grid,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"WS" = (
+/obj/structure/window/reinforced,
+/obj/effect/turf_decal/trimline/opaque/syndiered,
+/turf/open/floor/plasteel/mono/white,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"WT" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/turf/open/floor/concrete/slab_4{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"WX" = (
+/obj/effect/turf_decal/industrial/warning/dust/corner{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/ash/large,
+/turf/open/floor/plasteel/dark,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"Xe" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/item/shard,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Xg" = (
+/obj/item/stack/ore/salvage/scraptitanium,
+/turf/open/floor/plating/asteroid/rockplanet/wet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Xh" = (
+/obj/structure/fence{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Xi" = (
+/obj/structure/table,
+/obj/item/paper_bin,
+/obj/item/pen/fourcolor,
+/turf/open/floor/carpet/nanoweave/purple,
+/area/ruin/rockplanet/shippingdockoffice)
+"Xj" = (
+/obj/effect/turf_decal/road{
+ dir = 10
+ },
+/obj/effect/turf_decal/trimline/opaque/neutral/filled/warning{
+ dir = 10
+ },
+/obj/item/toy/snappop,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Xk" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/slab_2{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Xm" = (
+/obj/effect/turf_decal/road{
+ dir = 9
+ },
+/obj/effect/turf_decal/trimline/opaque/neutral/filled/warning{
+ dir = 9
+ },
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Xr" = (
+/obj/structure/flora/rock/rockplanet,
+/turf/open/floor/plating/asteroid/rockplanet/wet/cracked/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Xu" = (
+/obj/effect/turf_decal/industrial/warning/fulltile,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/mono/dark,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"Xx" = (
+/obj/effect/turf_decal/road/edge{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/plasma,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"XB" = (
+/mob/living/simple_animal/hostile/netherworld/asteroid,
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"XD" = (
+/obj/effect/turf_decal/road{
+ dir = 9
+ },
+/obj/structure/railing{
+ dir = 9
+ },
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"XG" = (
+/turf/closed/wall/r_wall/rust,
+/area/ruin/rockplanet/shippingdocksecure)
+"XH" = (
+/obj/effect/decal/cleanable/robot_debris/old,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/tech,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"XI" = (
+/obj/item/stack/ore/salvage/scrapmetal,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"XO" = (
+/turf/open/floor/plasteel/dark,
+/area/ruin/rockplanet/shippingdockoffice)
+"XP" = (
+/obj/structure/rack,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/effect/spawner/lootdrop/maintenance/eight,
+/turf/open/floor/plasteel/mono/white,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"XU" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/girder/displaced,
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"XY" = (
+/obj/effect/turf_decal/road,
+/obj/machinery/door/poddoor/shutters{
+ id = "shippingdockwarehousesouth"
+ },
+/obj/effect/turf_decal/trimline/opaque/neutral/filled/warning{
+ dir = 1
+ },
+/turf/open/floor/concrete/pavement,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"XZ" = (
+/obj/effect/turf_decal/road{
+ dir = 5
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Yc" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-6"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Yf" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Yk" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/ruin/rockplanet/shippingdockoffice)
+"Yn" = (
+/obj/effect/turf_decal/industrial/outline,
+/obj/structure/closet/cardboard,
+/obj/item/modular_computer/laptop/preset/civilian,
+/obj/item/modular_computer/laptop/preset/civilian,
+/obj/item/modular_computer/laptop/preset/civilian,
+/obj/item/modular_computer/laptop/preset/civilian,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/mono/dark,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"Yr" = (
+/obj/effect/turf_decal/road{
+ dir = 4
+ },
+/obj/effect/turf_decal/road{
+ dir = 5
+ },
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Ys" = (
+/obj/effect/decal/cleanable/garbage,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Yt" = (
+/obj/structure/fence/cut/large{
+ dir = 1
+ },
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Yu" = (
+/obj/effect/decal/cleanable/wrapping,
+/turf/open/floor/plasteel/tech,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"Yx" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/item/assembly/mousetrap/armed,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark,
+/area/ruin/rockplanet/shippingdockoffice)
+"Yy" = (
+/obj/machinery/airalarm/directional/north,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/turf/open/floor/carpet/nanoweave/beige,
+/area/ruin/rockplanet/shippingdockoffice)
+"Yz" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"YA" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/turf/open/floor/concrete/slab_1{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"YD" = (
+/obj/effect/turf_decal/industrial/warning/fulltile,
+/obj/structure/sign/warning/electricshock{
+ pixel_y = 26
+ },
+/turf/open/floor/plasteel/mono/dark,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"YE" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/item/mine/pressure/explosive/rusty/live,
+/turf/open/floor/concrete/slab_1{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"YG" = (
+/obj/vehicle/ridden/atv{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/tech,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"YI" = (
+/obj/effect/turf_decal/road{
+ dir = 6
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"YO" = (
+/obj/structure/cable{
+ 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/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/slab_4{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"YZ" = (
+/obj/effect/turf_decal/industrial/outline/red,
+/obj/item/stack/sheet/mineral/gold/five,
+/obj/item/stack/sheet/mineral/diamond/five,
+/obj/structure/closet/crate/secure{
+ req_one_access_txt = "53"
+ },
+/turf/open/floor/plasteel/mono/dark,
+/area/ruin/rockplanet/shippingdocksecure)
+"Zd" = (
+/obj/effect/turf_decal/road,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"Zh" = (
+/obj/effect/turf_decal/road{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"Zn" = (
+/obj/machinery/door/airlock/external,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/rockplanet/shippingdockoffice)
+"Zo" = (
+/obj/structure/flora/rock/pile/rockplanet,
+/turf/open/floor/plating/asteroid/rockplanet/cracked/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Zq" = (
+/obj/structure/flora/ash/garden/arid,
+/turf/open/floor/plating/asteroid/rockplanet/wet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Zs" = (
+/turf/open/floor/plating/asteroid/rockplanet/wet/cracked/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Zz" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/girder,
+/turf/open/floor/concrete{
+ light_range = 2;
+ light_power = 0.6
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"ZA" = (
+/obj/effect/turf_decal/box/corners{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/mono/dark,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"ZB" = (
+/obj/structure/tank_dispenser,
+/turf/open/floor/plasteel/tech,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"ZD" = (
+/obj/structure/closet/crate/large,
+/obj/item/bot_assembly/ed209,
+/obj/item/bot_assembly/ed209,
+/turf/open/floor/plasteel/mono/dark,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"ZE" = (
+/obj/effect/turf_decal/road/line/edge/opaque/yellow,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/pavement,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"ZF" = (
+/obj/structure/flora/ash/garden/arid,
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"ZJ" = (
+/obj/item/stack/ore/salvage/scrapplasma,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/ruin/rockplanet/shippingdock)
+"ZK" = (
+/obj/structure/railing{
+ max_integrity = 70;
+ dir = 4
+ },
+/turf/open/floor/concrete/slab_1{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"ZL" = (
+/turf/open/floor/concrete/slab_1{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"ZM" = (
+/obj/effect/decal/fakelattice,
+/obj/item/stack/ore/salvage/scraptitanium,
+/turf/open/floor/concrete/pavement{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"ZR" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/concrete/slab_1{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"ZS" = (
+/obj/effect/turf_decal/road/line/opaque/yellow{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/concrete/pavement,
+/area/ruin/rockplanet/shippingdockwarehouse)
+"ZW" = (
+/obj/item/mine/pressure/explosive/rusty/live,
+/turf/open/floor/concrete/slab_2{
+ light_power = 0.6;
+ light_range = 2
+ },
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"ZZ" = (
+/obj/effect/turf_decal/industrial/warning/fulltile,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/mono/dark,
+/area/ruin/rockplanet/shippingdockwarehouse)
+
+(1,1,1) = {"
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+"}
+(2,1,1) = {"
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+"}
+(3,1,1) = {"
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+ib
+ib
+pi
+ib
+wf
+Wn
+ib
+pi
+ib
+Wn
+Wn
+ib
+Wn
+ib
+ib
+ib
+ib
+ib
+pi
+ib
+ib
+ib
+FV
+ib
+ib
+ib
+ib
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+"}
+(4,1,1) = {"
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+ib
+ib
+Wn
+Wn
+ib
+ib
+Zo
+Wn
+Wn
+Wn
+Wn
+Wn
+ib
+ib
+Zo
+Wn
+Wn
+ib
+Wn
+Wn
+ib
+zX
+ib
+ib
+ib
+ib
+ib
+ib
+ib
+ib
+ib
+ib
+ib
+ib
+ib
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+"}
+(5,1,1) = {"
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+ib
+Mm
+Wn
+Wn
+Wn
+ib
+Wn
+ib
+NH
+Wn
+Wn
+Wn
+Mm
+Wn
+Wn
+Wn
+Wn
+NH
+ib
+Wn
+ib
+ib
+ib
+ib
+FV
+ib
+pi
+ib
+ib
+zX
+ib
+ZF
+ib
+ib
+ib
+ib
+ib
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+"}
+(6,1,1) = {"
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+ib
+ib
+ib
+ib
+pS
+Wn
+Wn
+Wn
+Wn
+Wn
+pS
+Wn
+Wn
+Wn
+Wn
+Wn
+Wn
+ib
+ib
+pi
+Wn
+ib
+ib
+ib
+ib
+ib
+ib
+ib
+ib
+ib
+ib
+ib
+ib
+Zo
+Wn
+Wn
+Wn
+Wn
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+"}
+(7,1,1) = {"
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+ib
+FV
+ib
+ib
+IY
+IY
+zD
+zD
+zD
+zD
+zD
+zD
+zD
+zD
+zD
+zD
+zD
+zD
+zD
+Yt
+Yt
+zD
+zD
+zD
+zD
+zD
+zD
+zD
+zD
+zD
+zD
+IY
+IY
+Wn
+ib
+pS
+Wn
+ib
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+"}
+(8,1,1) = {"
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+ib
+ib
+ib
+ib
+IY
+Ev
+Ev
+Ev
+Ev
+Ev
+Ev
+Ev
+Ev
+Ev
+Ev
+Ev
+Ev
+MA
+MA
+MA
+MA
+MA
+MA
+MA
+MA
+Ev
+Ev
+Ev
+Ev
+Ev
+Ev
+Ev
+IY
+Wn
+ib
+Wn
+Wn
+Wn
+Wn
+ib
+ib
+ib
+ib
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+"}
+(9,1,1) = {"
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+ib
+ib
+ib
+ZF
+ib
+jD
+Ev
+FK
+IV
+IV
+IV
+IV
+IV
+IV
+IV
+IV
+hb
+PZ
+Oa
+IV
+IV
+eY
+Qr
+IV
+IV
+IV
+Oa
+Oa
+Oa
+IV
+IV
+ud
+Ev
+jD
+Wn
+ib
+Wn
+XB
+ib
+Wn
+Wn
+ib
+ib
+ib
+ib
+ib
+FV
+ib
+ib
+ib
+ib
+pi
+ib
+ib
+ib
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+"}
+(10,1,1) = {"
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+ib
+pi
+ib
+ib
+ib
+jD
+Ev
+zH
+uQ
+mU
+mU
+mU
+mU
+xi
+mU
+Kq
+ED
+sU
+xi
+xi
+Py
+xc
+zH
+Kq
+Py
+xi
+xi
+xi
+mU
+mU
+Kq
+bo
+Ev
+jD
+ib
+Wn
+Mm
+ib
+ib
+qM
+Wn
+Wn
+Wn
+pS
+Wn
+Wn
+Wn
+ib
+Wn
+Wn
+Mm
+Wn
+ib
+ib
+ib
+Wn
+Wn
+Wn
+Wn
+ib
+GP
+GP
+"}
+(11,1,1) = {"
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+ib
+ib
+ib
+zX
+ib
+jD
+Ev
+zH
+mU
+xi
+Py
+xi
+xi
+mU
+mU
+xi
+ED
+sU
+mU
+mU
+xi
+xc
+zH
+xi
+xi
+xi
+xi
+xi
+HL
+mU
+xi
+bo
+Ev
+jD
+ib
+Wn
+Wn
+ib
+ib
+ib
+ib
+Iu
+ib
+ib
+ib
+ib
+Wn
+Wn
+Wn
+ib
+ib
+Wn
+Wn
+NH
+Wn
+Wn
+ib
+ib
+Zo
+ib
+GP
+GP
+"}
+(12,1,1) = {"
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+ib
+ib
+ib
+ib
+ib
+jD
+Ev
+zH
+mU
+mU
+xi
+xi
+mU
+mU
+HL
+mU
+ED
+So
+xi
+xi
+mU
+Pc
+zH
+xi
+xi
+mU
+mU
+xi
+xi
+mU
+xi
+bo
+Ev
+jD
+ib
+Wn
+Wn
+NH
+Wn
+pS
+Wn
+Wn
+Wn
+Mm
+Wn
+Wn
+Wn
+pS
+Wn
+Wn
+Zo
+Wn
+Wn
+Wn
+ib
+ib
+ib
+pi
+Wn
+ib
+GP
+GP
+"}
+(13,1,1) = {"
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+qM
+ib
+ib
+ib
+ib
+jD
+Ev
+zH
+Kq
+mU
+mU
+su
+xi
+xi
+xi
+Kq
+va
+sU
+xi
+Ys
+xi
+Pc
+Cy
+uQ
+HL
+xi
+mU
+mU
+xi
+mU
+Kq
+bo
+Ev
+jD
+ib
+ib
+ib
+ib
+ib
+ib
+ib
+Wn
+Wn
+Wn
+Wn
+Wn
+Wn
+Wn
+Wn
+Wn
+ib
+ib
+Wn
+Wn
+Wn
+Wn
+Wn
+Wn
+Wn
+ib
+GP
+GP
+"}
+(14,1,1) = {"
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+ib
+ib
+pi
+FV
+ib
+jD
+Ev
+zH
+Po
+xi
+xi
+xi
+xi
+xi
+xi
+xi
+bo
+se
+uo
+xi
+xi
+wX
+zH
+mU
+mU
+xi
+xi
+mU
+mU
+Py
+xi
+ED
+Ev
+Lh
+zD
+zD
+zD
+zD
+zD
+zD
+zD
+Yt
+zD
+zD
+zD
+zD
+zD
+zD
+zD
+zD
+zD
+zD
+zD
+zD
+zD
+IY
+IY
+ib
+ib
+ib
+GP
+GP
+"}
+(15,1,1) = {"
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+ib
+ib
+ib
+ib
+ib
+jD
+Ev
+zH
+xi
+XI
+xi
+xi
+xi
+Nh
+xi
+xi
+bo
+So
+xi
+xi
+xi
+xc
+zH
+xi
+mU
+xi
+xi
+Py
+xi
+xi
+mU
+ED
+Ev
+Ev
+Ev
+MA
+MA
+MA
+MA
+MA
+MA
+MA
+MA
+MA
+MA
+MA
+MA
+MA
+MA
+MA
+wY
+MA
+Ev
+Ev
+Ev
+Ev
+IY
+ib
+ib
+ib
+GP
+GP
+"}
+(16,1,1) = {"
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+ib
+XB
+ib
+ib
+pi
+jD
+Ev
+zH
+xi
+SO
+jR
+xi
+Nh
+zL
+SO
+xi
+bo
+So
+Ys
+xi
+xi
+xc
+zH
+xi
+mU
+mU
+xi
+xi
+xi
+xi
+mU
+bo
+Ev
+Ev
+Wc
+CW
+hN
+zU
+gG
+hN
+NR
+KA
+ZW
+ZL
+NR
+KA
+hN
+gG
+CW
+zU
+Ub
+CW
+hN
+BH
+MA
+Ev
+jD
+ib
+zX
+ib
+ib
+GP
+"}
+(17,1,1) = {"
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+ib
+ib
+ib
+ib
+ib
+jD
+Ev
+zH
+zE
+SO
+gD
+SO
+SO
+yO
+SO
+Ti
+bo
+So
+xi
+xi
+xi
+Pc
+Cy
+Uy
+mU
+ht
+ht
+mU
+mU
+xi
+Ti
+ED
+MA
+zU
+Xk
+SM
+ch
+ZR
+SM
+xS
+hY
+Kt
+zU
+tX
+hY
+hY
+Fg
+ZR
+xS
+SM
+ZR
+EP
+ch
+SX
+zU
+Ev
+jD
+ib
+ib
+ib
+ib
+GP
+"}
+(18,1,1) = {"
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+ib
+ib
+ZF
+ib
+ib
+jD
+Ev
+zH
+xi
+SO
+Tl
+AW
+ZJ
+JF
+dw
+lp
+ED
+se
+Po
+xi
+su
+rN
+zH
+xi
+xi
+xi
+CM
+mU
+mU
+xi
+su
+ED
+Ev
+hN
+zK
+Ev
+Ev
+um
+um
+qn
+qn
+qn
+on
+vR
+vR
+MQ
+xh
+lf
+We
+cn
+Ev
+cn
+KJ
+HW
+gG
+Ev
+jD
+ib
+ib
+qM
+ib
+GP
+"}
+(19,1,1) = {"
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+Wn
+zX
+Wn
+qM
+ib
+jD
+Ev
+zH
+xi
+SO
+SO
+ku
+zg
+SO
+tN
+Nh
+ED
+So
+xi
+mU
+xi
+xc
+zH
+xi
+xi
+xi
+My
+mU
+xi
+mU
+mU
+bo
+Ev
+zU
+QQ
+qn
+qn
+um
+EG
+le
+FU
+qn
+GW
+UG
+bv
+ra
+LL
+zf
+Ul
+cn
+yl
+uZ
+bY
+QQ
+hN
+Ev
+jD
+ib
+XB
+ib
+ib
+GP
+"}
+(20,1,1) = {"
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+Wn
+Wn
+Wn
+ib
+ib
+jD
+Ev
+zH
+Ys
+JE
+SO
+tp
+lC
+SO
+JE
+xi
+ED
+So
+mU
+mU
+xi
+xc
+zH
+xi
+xi
+xi
+hp
+mU
+xi
+mU
+mU
+ED
+MA
+KA
+Dv
+qn
+Rq
+Fv
+Qi
+aq
+ws
+um
+um
+um
+qn
+qn
+Fs
+cn
+tg
+cn
+tg
+zf
+tg
+HK
+zU
+tM
+jD
+ib
+ib
+ib
+ib
+GP
+"}
+(21,1,1) = {"
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+ib
+ib
+Wn
+Wn
+ib
+jD
+Ev
+zH
+Ic
+Nh
+Np
+LW
+vs
+Np
+HL
+Ti
+ED
+So
+mU
+xi
+xi
+xc
+zH
+Ic
+xi
+xi
+xi
+mU
+xi
+mU
+Ti
+ED
+MA
+NR
+mP
+yN
+nZ
+Gz
+uF
+Mv
+aq
+IH
+um
+HY
+bH
+qn
+EC
+cn
+Uj
+Bi
+tg
+cn
+TY
+zK
+zU
+Ev
+Km
+uP
+ib
+ib
+pi
+GP
+"}
+(22,1,1) = {"
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+pi
+Wn
+Wn
+ib
+jD
+Ev
+zH
+xi
+EZ
+tN
+xd
+mx
+SO
+JE
+xi
+ED
+oi
+mU
+xi
+Py
+wX
+zH
+xi
+Py
+xi
+mU
+xi
+xi
+mU
+xi
+ui
+MA
+ZL
+Dv
+yN
+nZ
+sO
+VJ
+zd
+Oz
+DP
+um
+Wk
+nh
+qn
+EC
+cn
+TY
+WH
+Uj
+cn
+tg
+Vh
+gG
+MA
+jD
+ib
+ib
+ib
+ib
+GP
+"}
+(23,1,1) = {"
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+ib
+ib
+Wn
+Wn
+jD
+Ev
+zH
+Nh
+tN
+SO
+ER
+Vg
+SO
+SO
+XI
+ED
+So
+mU
+mU
+xi
+xc
+zH
+xi
+xi
+xi
+mU
+xi
+HL
+mU
+xi
+ED
+MA
+NR
+HW
+qn
+BJ
+Qi
+FZ
+uF
+gN
+Yx
+um
+um
+zy
+um
+iB
+IK
+yj
+yf
+uq
+Ei
+pB
+HK
+Ov
+MA
+jD
+ib
+FV
+ib
+ib
+GP
+"}
+(24,1,1) = {"
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+ib
+Wn
+Wn
+Lb
+Pn
+Ev
+zH
+xi
+SO
+kf
+OG
+tQ
+ca
+SO
+XI
+ED
+So
+xi
+mU
+xi
+Pc
+Cy
+mU
+mU
+xi
+mU
+xi
+xi
+mU
+xi
+ED
+MA
+ZL
+QQ
+qn
+qn
+qn
+um
+um
+Lq
+nj
+um
+Mw
+Uf
+um
+um
+um
+um
+qn
+pv
+Ov
+MA
+Vh
+ZL
+MA
+jD
+ib
+ib
+ib
+ib
+GP
+"}
+(25,1,1) = {"
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+ib
+Wn
+pS
+Wn
+CH
+Ev
+zH
+Uy
+Vf
+SZ
+Ew
+xx
+AW
+Wh
+Ti
+ED
+So
+xi
+mU
+mU
+Pc
+zH
+Ic
+mU
+Yf
+xi
+xi
+xi
+mU
+Ti
+ED
+MA
+ZW
+QQ
+yN
+KS
+Qg
+QB
+um
+vj
+VE
+dL
+JU
+Ke
+ux
+XO
+iv
+XO
+Zn
+gc
+NR
+zU
+Dv
+Ov
+MA
+jD
+ib
+ib
+zX
+ib
+GP
+"}
+(26,1,1) = {"
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+Wn
+ib
+Lb
+Wn
+Pn
+tM
+zH
+mU
+mI
+cZ
+bj
+cz
+px
+Wh
+xi
+ED
+oi
+HL
+xi
+xi
+wX
+zH
+xi
+xi
+mU
+xi
+Py
+xi
+mU
+xi
+ED
+Ev
+hN
+ys
+yN
+dI
+hi
+Si
+um
+RV
+Nj
+hB
+dv
+eJ
+au
+Ls
+MG
+NU
+dR
+di
+EP
+EP
+xT
+Ev
+MA
+jD
+ib
+ib
+ib
+ib
+GP
+"}
+(27,1,1) = {"
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+ib
+Wn
+Wn
+ib
+jD
+Ev
+zH
+xi
+Wh
+cZ
+mx
+QI
+px
+mI
+mU
+ED
+So
+xi
+xi
+xi
+xc
+zH
+xi
+xi
+mU
+xi
+xi
+mU
+xi
+xi
+ED
+Ev
+KA
+mP
+yN
+kI
+bT
+Yk
+um
+Yy
+aC
+CT
+Xi
+Su
+um
+um
+qn
+qn
+um
+NR
+CW
+Ev
+Ev
+Ev
+MA
+jD
+ib
+pi
+ib
+ib
+GP
+"}
+(28,1,1) = {"
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+FV
+Wn
+Wn
+ib
+jD
+Ev
+zH
+xi
+Wh
+Pr
+Uk
+bj
+HI
+Vf
+mU
+bo
+So
+xi
+xi
+xi
+xc
+Cy
+mU
+mU
+mU
+xi
+xi
+mU
+xi
+xi
+ED
+Ev
+KA
+HW
+um
+um
+ue
+fb
+rO
+Mz
+IE
+lT
+Ce
+xC
+yN
+Un
+Zs
+SY
+um
+uT
+zU
+MA
+Ev
+MA
+UD
+jD
+ib
+ib
+ib
+ib
+GP
+"}
+(29,1,1) = {"
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+ib
+Wn
+Wn
+pS
+jD
+Ev
+zH
+Ic
+Wh
+Il
+tQ
+SV
+ER
+Wh
+Ti
+bo
+So
+xi
+xi
+mU
+Pc
+zH
+Ic
+xi
+mU
+xi
+mU
+xi
+xi
+Ti
+ED
+MA
+ZL
+QQ
+KA
+um
+QC
+cw
+um
+Rp
+zV
+Pw
+xe
+IU
+yN
+Ri
+lB
+Zs
+WJ
+Ov
+CW
+MA
+Ev
+MA
+Ev
+CH
+ib
+ib
+pi
+ib
+GP
+"}
+(30,1,1) = {"
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+ib
+Wn
+Wn
+Wn
+jD
+Ev
+zH
+xi
+SO
+fG
+Ju
+tQ
+ic
+SO
+xi
+bo
+oi
+xi
+Py
+mU
+wX
+zH
+xi
+xi
+mU
+xi
+mU
+xi
+ob
+xi
+bo
+MA
+ZL
+mP
+ZL
+um
+qn
+qn
+um
+AL
+IE
+um
+yN
+yN
+yN
+lB
+Ri
+Zs
+Ro
+ZL
+zU
+MA
+MA
+Ev
+Ev
+jD
+qM
+ib
+ib
+ib
+GP
+"}
+(31,1,1) = {"
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+pS
+Wn
+Wn
+Wn
+jD
+Ev
+zH
+HL
+tN
+SO
+TW
+nr
+SO
+Nq
+XI
+bo
+So
+xi
+mU
+mU
+xc
+zH
+xi
+mU
+mU
+mU
+xi
+xi
+ob
+xi
+bo
+MA
+hN
+Dv
+NR
+um
+db
+zv
+qn
+Pf
+sz
+um
+Zs
+Un
+lB
+lB
+Zq
+lB
+WJ
+CW
+Ov
+MA
+wY
+Ev
+Ev
+jD
+ib
+ib
+qM
+ib
+GP
+"}
+(32,1,1) = {"
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+ib
+ib
+Wn
+ib
+jD
+Ev
+Cy
+xi
+ZM
+SO
+ns
+zT
+SO
+qW
+xi
+bo
+So
+xi
+mU
+xi
+xc
+zH
+xi
+mU
+xi
+mU
+Py
+cd
+xY
+fN
+bo
+Ev
+CW
+QQ
+KA
+um
+iQ
+MO
+qn
+cS
+wP
+qn
+SY
+Zs
+SY
+lB
+gH
+Zs
+mc
+zU
+NR
+Ev
+wY
+Ev
+Ev
+jD
+ib
+ib
+ib
+ib
+GP
+"}
+(33,1,1) = {"
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+ib
+ib
+Wn
+Mm
+ib
+jD
+Ev
+Cy
+xi
+Nh
+Np
+eb
+UV
+Np
+xi
+xi
+bo
+So
+mU
+xi
+xi
+xc
+zH
+mU
+mU
+mU
+mU
+xi
+xi
+jK
+sl
+bo
+Ev
+gG
+QQ
+ZL
+um
+um
+Ho
+RW
+CN
+pX
+qn
+lB
+Zs
+lB
+Un
+Zs
+SY
+lr
+zU
+Ov
+Ev
+wY
+MA
+Ev
+IY
+Ov
+ib
+ib
+ib
+GP
+"}
+(34,1,1) = {"
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+Wn
+Wn
+Wn
+ib
+ib
+jD
+Ev
+Sr
+Py
+xi
+Np
+Np
+Np
+Np
+xi
+Ys
+ED
+se
+mU
+xi
+HL
+wX
+zH
+mU
+xi
+mU
+xi
+xi
+nR
+fd
+CE
+bo
+Ev
+Wc
+HK
+NR
+KA
+um
+um
+um
+rK
+vi
+qn
+Zs
+SY
+sp
+Zs
+lB
+lB
+WJ
+gG
+ZL
+CW
+hN
+CW
+KA
+cv
+Ov
+ib
+ib
+ib
+GP
+"}
+(35,1,1) = {"
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+Wn
+pS
+ib
+ib
+ib
+jD
+Ev
+Sr
+mU
+xi
+xi
+xi
+xi
+Po
+mU
+mU
+ED
+So
+xi
+xi
+xi
+Pc
+zH
+xi
+xi
+mU
+xi
+xi
+xi
+xi
+xi
+bo
+Ev
+Ev
+sY
+KG
+ZL
+NR
+KA
+um
+hh
+Qv
+qn
+um
+UA
+ZL
+NK
+wp
+wp
+Sq
+zU
+NR
+hN
+zU
+zU
+Ov
+cv
+Ov
+ib
+ib
+ib
+GP
+"}
+(36,1,1) = {"
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+ib
+ib
+ib
+ib
+ib
+jD
+Ev
+Cy
+xi
+mU
+mU
+xi
+mU
+mU
+mU
+xi
+bo
+So
+xi
+Py
+mU
+Pc
+zH
+xi
+xi
+mU
+mU
+xi
+xi
+xi
+xi
+bo
+Ev
+Ev
+zU
+Dv
+Ov
+Ov
+Ov
+hf
+WT
+Wj
+zU
+zU
+ZL
+Ov
+Ov
+NR
+NR
+Ov
+CW
+KA
+Ev
+MA
+MA
+Ev
+IY
+Ov
+ib
+ib
+ib
+GP
+"}
+(37,1,1) = {"
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+ib
+ib
+ib
+ib
+FV
+jD
+Ev
+cT
+Mt
+hm
+AQ
+AQ
+AQ
+aY
+hm
+Mt
+im
+So
+xi
+mU
+DR
+xc
+AG
+ir
+BN
+AQ
+Oe
+AQ
+AQ
+hm
+Mt
+im
+Ev
+Ev
+MA
+wv
+fn
+fn
+YA
+TH
+oz
+Wv
+Ov
+NR
+zU
+zU
+gG
+tL
+ZL
+NR
+zU
+CW
+Ev
+MA
+MA
+Ev
+jD
+ib
+ib
+ib
+zX
+GP
+"}
+(38,1,1) = {"
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+ib
+ib
+ZF
+ib
+ib
+jD
+Ev
+Cy
+Kq
+xi
+mU
+mU
+mU
+mU
+mU
+uQ
+bo
+oi
+mU
+xi
+xi
+rN
+Cy
+uQ
+xi
+xi
+mU
+xi
+mU
+mU
+uQ
+bo
+Ev
+Ev
+Ev
+Tc
+NR
+MA
+MA
+Ev
+Ev
+Ev
+Ev
+Ev
+Ev
+Ev
+MA
+MA
+Ev
+Ev
+KA
+CW
+Ev
+MA
+Ev
+MA
+jD
+pi
+ib
+ib
+ib
+GP
+"}
+(39,1,1) = {"
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+ib
+ib
+ib
+pi
+ib
+jD
+Ev
+Cy
+xi
+mU
+Py
+xi
+xi
+xi
+xi
+mU
+tb
+sU
+xi
+xi
+xi
+Pc
+qH
+xi
+xi
+xi
+mU
+mU
+xi
+Py
+mU
+ED
+Ev
+Ev
+Ov
+Tc
+CW
+MA
+Ev
+Ov
+Ov
+he
+NL
+vS
+Ov
+Ov
+Ev
+Ev
+MA
+Ov
+Ov
+hN
+UD
+Ev
+MA
+MA
+jD
+ib
+ib
+ib
+FV
+GP
+"}
+(40,1,1) = {"
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+ib
+zX
+ib
+ib
+ib
+jD
+Ev
+zH
+mU
+mU
+Po
+xi
+xi
+xi
+xi
+xi
+cf
+So
+xi
+xi
+mU
+Pc
+qH
+Py
+xi
+xi
+xi
+mU
+xi
+xi
+xi
+ED
+Ev
+Ev
+Ov
+mY
+zU
+Ev
+Ov
+Ov
+Cx
+ZK
+ZK
+ZK
+kp
+Ov
+zU
+KA
+hN
+zU
+NR
+Ov
+MA
+Ev
+MA
+Ev
+jD
+ib
+qM
+ib
+ib
+GP
+"}
+(41,1,1) = {"
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+ib
+FV
+ib
+ib
+ib
+XB
+ib
+ib
+jD
+Ev
+vt
+MX
+Gs
+Gs
+Gs
+Gs
+Gs
+Gs
+MX
+Gy
+wE
+xi
+xi
+mU
+gr
+SF
+Gs
+Gs
+Gs
+Gs
+MX
+MX
+MX
+Gs
+YI
+MA
+MA
+hN
+YO
+MA
+Ev
+Ov
+Cx
+yW
+kV
+Kh
+fT
+Fj
+kp
+st
+Ov
+NR
+KA
+zU
+Ev
+Ev
+Ev
+MA
+Ev
+jD
+ib
+ib
+ib
+ib
+GP
+"}
+(42,1,1) = {"
+GP
+GP
+GP
+GP
+GP
+GP
+ib
+ib
+ib
+ib
+ib
+ib
+ib
+ib
+qM
+ib
+jD
+MA
+Ev
+MA
+Ev
+Ev
+Ev
+Ev
+MA
+MA
+Ev
+zH
+mU
+xi
+xi
+mU
+mU
+bo
+Ev
+Ev
+Ev
+Ev
+Ev
+Ev
+Ev
+Ev
+MA
+MA
+Ev
+KA
+re
+MA
+Ev
+Ov
+Eh
+fT
+pw
+qB
+qB
+pw
+mc
+zU
+Ev
+Ev
+Ev
+Ev
+Ev
+Ev
+Ev
+Ev
+MA
+IY
+ib
+ib
+ib
+ib
+GP
+"}
+(43,1,1) = {"
+GP
+GP
+GP
+GP
+GP
+GP
+Wn
+Wn
+pi
+ib
+ib
+ib
+pi
+ib
+ib
+ib
+jD
+Ev
+MA
+MA
+Ev
+Ev
+Ev
+MA
+Ev
+Ev
+Ev
+zH
+mU
+xi
+xi
+xi
+mU
+bo
+wo
+gO
+Ev
+Ev
+Ev
+Ev
+Ev
+JQ
+MA
+wY
+Ev
+tL
+Tc
+Ev
+Ev
+Ov
+Eh
+Kh
+qB
+qB
+qB
+kV
+mc
+zU
+Ev
+mb
+zD
+zD
+zD
+zD
+zD
+zD
+IY
+IY
+ib
+ib
+ib
+GP
+GP
+"}
+(44,1,1) = {"
+GP
+GP
+GP
+GP
+GP
+GP
+Wn
+Wn
+ib
+ib
+ib
+ib
+ib
+ib
+ib
+ib
+jD
+Ev
+MA
+wY
+MA
+Ev
+Ev
+Ev
+Ev
+Ev
+Ev
+xo
+hm
+pT
+mE
+mE
+BN
+ea
+zM
+zM
+vz
+vz
+vz
+Ev
+Ev
+Ev
+Ev
+wY
+Ev
+Ov
+YO
+Ev
+Ev
+Ov
+Ro
+pV
+qB
+qB
+qB
+pw
+mc
+zU
+Ev
+jD
+ib
+Wn
+Wn
+ib
+ib
+Wn
+ib
+ib
+ib
+zX
+ib
+GP
+GP
+"}
+(45,1,1) = {"
+GP
+GP
+GP
+GP
+GP
+GP
+ib
+NH
+Wn
+IY
+IY
+zD
+zD
+zD
+zD
+zD
+HA
+Ev
+MA
+MA
+MA
+Ev
+py
+Bz
+Bz
+Bz
+SI
+py
+Ur
+mU
+xi
+xi
+Wp
+zM
+zM
+Qn
+FQ
+DF
+zM
+zM
+zM
+FX
+Ev
+wY
+Ov
+KA
+Tc
+Ev
+Ev
+Ov
+Eh
+pw
+qB
+qB
+Kh
+fT
+mc
+zU
+tM
+jD
+Wn
+Zo
+Wn
+zX
+Wn
+Wn
+ib
+ib
+ib
+ib
+ib
+GP
+GP
+"}
+(46,1,1) = {"
+GP
+GP
+GP
+GP
+GP
+GP
+pi
+ib
+Wn
+IY
+Ev
+MA
+MA
+MA
+MA
+MA
+MA
+MA
+hN
+Ov
+hN
+Ov
+Hk
+Lf
+mC
+Ly
+Ly
+Jd
+xi
+mU
+pp
+mU
+xi
+wj
+GZ
+xy
+Jz
+nP
+rY
+jT
+LY
+ch
+SM
+UN
+xS
+nB
+lg
+MA
+Ev
+tL
+Gk
+Ww
+Kh
+pV
+pw
+al
+Sq
+zU
+Ev
+Pn
+Wn
+Wn
+ib
+Wn
+ib
+qM
+ib
+pi
+ib
+ib
+ib
+GP
+GP
+"}
+(47,1,1) = {"
+GP
+GP
+GP
+GP
+GP
+GP
+Wn
+Wn
+Wn
+jD
+Ev
+sf
+Cx
+ZK
+ZK
+kp
+ZL
+KA
+NR
+Ov
+zU
+ZW
+tx
+Ly
+Ly
+Ly
+JI
+cb
+xi
+xi
+xi
+xi
+xi
+wj
+qG
+Tx
+ml
+NE
+OO
+JD
+Kx
+jU
+jv
+jZ
+pD
+xf
+Ev
+MA
+MA
+Ov
+Ov
+Gk
+Dz
+Dz
+Dz
+Sq
+st
+zU
+Ev
+jD
+ib
+Lb
+Wn
+Wn
+Wn
+ib
+ib
+ib
+GP
+GP
+GP
+GP
+GP
+"}
+(48,1,1) = {"
+GP
+ib
+pi
+ib
+Wn
+ib
+Wn
+Zo
+Wn
+jD
+Ev
+Vu
+yW
+pS
+Mm
+Fj
+kp
+Ov
+KA
+Ev
+MA
+Ev
+py
+qU
+Vn
+Vn
+qU
+py
+ky
+ky
+ky
+ky
+ky
+vz
+vz
+il
+hD
+UW
+zM
+zM
+vz
+Bm
+Ov
+BH
+Ev
+Ev
+Ev
+Ev
+MA
+MA
+zU
+Ov
+Hd
+iH
+yc
+Ov
+zU
+Ev
+Ev
+jD
+ib
+Wn
+gR
+ib
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+"}
+(49,1,1) = {"
+GP
+ib
+ib
+Wn
+Wn
+ib
+Wn
+Wn
+ib
+jD
+MA
+fS
+pi
+ib
+Wn
+pS
+mc
+Ov
+Ov
+Ev
+MA
+Ev
+Ev
+Ev
+Ev
+Ev
+Ev
+Xm
+BO
+mi
+mi
+mi
+BO
+Xj
+zM
+zM
+zM
+vz
+zM
+gO
+Ev
+Ev
+CW
+Wc
+yJ
+NY
+NY
+NY
+NY
+NY
+tr
+MA
+MA
+MA
+MA
+MA
+Ev
+Ev
+Ev
+IY
+ib
+pS
+ib
+ib
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+"}
+(50,1,1) = {"
+GP
+ib
+ZF
+Wn
+NH
+Wn
+Wn
+Mm
+ib
+jD
+MA
+Eh
+ib
+Mm
+Wn
+ib
+mc
+KA
+KA
+MA
+MA
+Ev
+Ev
+Ev
+Ev
+Ev
+Ev
+Cy
+mU
+mU
+mU
+mU
+mU
+bo
+Ev
+Ev
+Ev
+wo
+wo
+Ev
+Ev
+MA
+Wc
+zU
+ey
+XD
+IV
+IV
+IV
+tq
+Av
+Ev
+mb
+zD
+zD
+zD
+zD
+zD
+IY
+IY
+ib
+Wn
+ib
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+"}
+(51,1,1) = {"
+GP
+ib
+ib
+ib
+ib
+pi
+ib
+Wn
+Wn
+jD
+MA
+Ro
+Wn
+XB
+pi
+Wn
+YE
+NR
+Ov
+MA
+Ev
+Ev
+MA
+MA
+MA
+Ev
+MA
+zH
+xi
+xi
+xi
+xi
+mU
+bo
+Ev
+Ev
+Ev
+Ev
+Ev
+Ev
+MA
+MA
+zU
+NR
+ey
+zH
+xi
+qi
+xi
+bo
+Av
+Ev
+jD
+ib
+ib
+ib
+ib
+ib
+ib
+Wn
+Wn
+Wn
+FV
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+"}
+(52,1,1) = {"
+ib
+ib
+IY
+IY
+zD
+zD
+zD
+zD
+zD
+HA
+Ev
+Eh
+pS
+Wn
+ib
+Mm
+mc
+zU
+zU
+Ev
+MA
+MA
+Ev
+Ev
+Ev
+MA
+Ev
+zH
+xi
+xi
+xi
+xi
+mU
+ui
+MA
+MA
+wY
+PE
+wY
+MA
+MA
+MA
+Ov
+Ov
+ey
+zH
+zm
+sc
+sc
+bo
+Av
+Ev
+jD
+ib
+NH
+Wn
+Iu
+Wn
+Wn
+Mm
+ib
+Wn
+ib
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+"}
+(53,1,1) = {"
+pi
+ib
+IY
+Ev
+Ev
+sS
+sS
+sS
+Ev
+Ev
+Ev
+Gk
+Ww
+Wn
+pi
+Iv
+of
+zU
+NR
+zU
+zU
+KA
+Ov
+Ov
+zU
+Ov
+KA
+Yr
+aV
+Gs
+Gs
+Gs
+aV
+NP
+zU
+hN
+zU
+vM
+zU
+Wc
+zU
+tL
+NR
+KA
+ey
+zH
+sc
+sc
+zm
+bo
+Av
+Ev
+jD
+ib
+Wn
+ib
+Wn
+ib
+Wn
+Wn
+Wn
+Wn
+ib
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+"}
+(54,1,1) = {"
+XB
+ib
+jD
+MA
+xv
+sS
+By
+sS
+MA
+FX
+Ev
+Ev
+Gk
+Dz
+OI
+of
+ZL
+Ov
+hN
+CW
+KA
+Ov
+ZW
+Ov
+hN
+KA
+KA
+wN
+Ej
+Ej
+bN
+Ej
+Ej
+bA
+Ov
+KA
+NR
+KA
+Ov
+NR
+hN
+Ov
+Ov
+Ov
+ey
+zH
+Po
+Td
+xi
+bo
+Av
+Ev
+jD
+Wn
+Wn
+ib
+Zo
+Wn
+ib
+ib
+ib
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+"}
+(55,1,1) = {"
+ib
+ib
+jD
+MA
+Ev
+By
+Ln
+sS
+MA
+Ev
+Ev
+Ev
+Ev
+Ev
+MA
+Ev
+Ev
+Ev
+zU
+KA
+Ov
+NR
+Ov
+hN
+KA
+Ov
+Ov
+lc
+BO
+IV
+IV
+IV
+BO
+VW
+KA
+Ov
+KA
+KA
+Ov
+NR
+zU
+KA
+Ov
+Ev
+ey
+Aq
+Gs
+Gs
+Gs
+Sd
+Av
+Ev
+jD
+Wn
+Mm
+ib
+ib
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+"}
+(56,1,1) = {"
+ib
+ib
+jD
+MA
+FX
+wO
+Ln
+nT
+MA
+MA
+Ev
+Ev
+Ev
+MA
+Ev
+Ev
+MA
+MA
+MA
+Ev
+Ev
+Ev
+MA
+MA
+MA
+Ev
+Ev
+zH
+xi
+xi
+mU
+mU
+mU
+ED
+Ev
+Ev
+Ev
+Ev
+Ev
+MA
+wY
+wY
+MA
+Ev
+JZ
+HN
+HN
+HN
+HN
+HN
+VX
+LE
+IY
+Wn
+Wn
+ib
+ib
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+"}
+(57,1,1) = {"
+ib
+FV
+jD
+MA
+Ev
+Ev
+Ev
+xv
+MA
+MA
+MA
+Ev
+Ev
+MA
+Ev
+MA
+MA
+Ev
+Ev
+Ev
+Ev
+MA
+Ev
+Ev
+MA
+Ev
+FK
+FD
+xi
+mU
+mU
+xi
+xi
+Br
+wB
+MA
+MA
+Pi
+nW
+MA
+Ev
+MA
+Ev
+MA
+Ev
+mb
+zD
+zD
+zD
+zD
+zD
+IY
+IY
+Wn
+Wn
+ib
+ib
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+"}
+(58,1,1) = {"
+ib
+ib
+jD
+Ev
+MA
+Fn
+IV
+Oa
+IV
+IV
+Oa
+Oa
+Oa
+eR
+DV
+Oa
+IV
+IV
+IV
+Oa
+Oa
+IV
+IV
+IV
+Oa
+IV
+FD
+xi
+xi
+mU
+xi
+xi
+Po
+xi
+Br
+IV
+Oa
+Rw
+Oa
+Rw
+ud
+rl
+MA
+Ev
+Ev
+jD
+ib
+ib
+ib
+ib
+ib
+Wn
+Wn
+Wn
+pi
+ib
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+"}
+(59,1,1) = {"
+ib
+ib
+CH
+Ev
+FK
+FD
+mU
+mU
+xi
+xi
+Id
+fV
+og
+xi
+xi
+mU
+qo
+Ty
+HM
+xi
+xi
+xi
+Id
+fV
+HM
+xi
+xi
+xi
+mU
+mU
+mU
+mU
+mU
+mU
+mU
+qo
+Ty
+wq
+mU
+Kc
+to
+ud
+MA
+Ev
+Ev
+jD
+Wn
+ZF
+Wn
+Wn
+pS
+Wn
+ib
+Wn
+Wn
+ib
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+"}
+(60,1,1) = {"
+ib
+ib
+jD
+Ev
+zH
+mU
+mU
+Po
+xi
+xi
+GO
+ve
+xQ
+xi
+xi
+xi
+GO
+ve
+xQ
+xi
+xi
+xi
+GO
+ve
+xQ
+DR
+mU
+mU
+mU
+xi
+xi
+xi
+xi
+xi
+xi
+GO
+hr
+ju
+ti
+JO
+gj
+qR
+MA
+HV
+Ev
+jD
+Wn
+Wn
+zX
+ib
+Wn
+Wn
+ib
+ib
+Wn
+Wn
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+"}
+(61,1,1) = {"
+GP
+ib
+jD
+Ev
+zH
+mU
+xi
+xi
+xF
+Gs
+MX
+MX
+MX
+MX
+Gs
+Gs
+Gs
+Gs
+Gs
+Gs
+Gs
+Gs
+Gs
+Gs
+Gs
+MX
+MX
+Gs
+Gs
+Gs
+Gs
+Gs
+Gs
+Gs
+Gs
+Gs
+MX
+Xx
+cB
+hU
+Aa
+qR
+Ev
+MA
+Ev
+jD
+ib
+pS
+Wn
+Wn
+NH
+Wn
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+"}
+(62,1,1) = {"
+GP
+pi
+jD
+Ev
+zH
+qo
+og
+xF
+fx
+Ev
+MA
+Ev
+Ev
+MA
+Ev
+Ev
+Ev
+Ev
+Ev
+Ev
+Ev
+Ev
+Ev
+Ev
+Ev
+Ev
+Ev
+Ev
+Ev
+Ev
+Ev
+Ev
+Ev
+Ev
+Ev
+Ev
+MA
+vt
+kw
+aj
+HM
+ED
+MA
+MA
+MA
+Xh
+ib
+Wn
+Wn
+Wn
+Wn
+Wn
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+"}
+(63,1,1) = {"
+GP
+ib
+jD
+Ev
+zH
+BA
+yT
+bo
+gO
+Ai
+Ev
+gO
+Ev
+MA
+PP
+PP
+en
+en
+en
+en
+en
+en
+en
+en
+en
+en
+en
+en
+en
+en
+en
+en
+en
+en
+Ev
+SB
+MA
+MA
+Cy
+aH
+yT
+ED
+Ev
+Ev
+Ev
+Xh
+ib
+ib
+pS
+Wn
+Wn
+ib
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+"}
+(64,1,1) = {"
+GP
+ib
+jD
+Ev
+zH
+UY
+ju
+ED
+Ev
+Ev
+Ev
+SB
+DI
+XU
+PP
+ZB
+hG
+YG
+Ks
+wb
+KR
+SJ
+Ui
+Nb
+pY
+XP
+nJ
+fk
+ul
+Gr
+nO
+ct
+Kz
+en
+en
+Ev
+Ev
+Ev
+Sr
+UY
+xQ
+bo
+Ev
+Ev
+Ev
+jD
+ib
+Wn
+Wn
+Wn
+Mm
+ib
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+"}
+(65,1,1) = {"
+GP
+ib
+Pn
+Fx
+zH
+xi
+xi
+bo
+Ev
+gO
+Ai
+Ev
+Zz
+Ny
+PP
+gb
+XH
+OQ
+fr
+Cm
+Mj
+Bx
+mu
+FN
+BI
+GM
+Cm
+KR
+WS
+dE
+rC
+op
+WX
+qc
+en
+Ev
+Ev
+Ev
+Cy
+mU
+mU
+bo
+Ev
+Ev
+Ev
+jD
+ib
+FV
+Wn
+ib
+ib
+ib
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+"}
+(66,1,1) = {"
+GP
+ib
+jD
+Ev
+zH
+Id
+og
+bo
+Ai
+Ev
+SB
+Ai
+PP
+PP
+PP
+PP
+OQ
+yx
+WE
+nJ
+Mj
+lu
+ut
+gm
+BI
+XP
+nJ
+KR
+AE
+mF
+cm
+Qq
+Kr
+sa
+en
+Ev
+MA
+MA
+zH
+Id
+og
+ED
+MA
+Ev
+Ev
+lo
+ib
+ib
+Wn
+Wn
+Wn
+Wn
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+"}
+(67,1,1) = {"
+GP
+ib
+jD
+MA
+Cy
+BA
+md
+ED
+Ev
+Ev
+Ev
+PP
+PP
+Rl
+sx
+en
+EL
+sP
+en
+tv
+kJ
+en
+YD
+Xu
+ZZ
+en
+MM
+xR
+en
+bb
+Qy
+fz
+Ug
+RT
+en
+Bm
+MA
+Ev
+zH
+aH
+yT
+bo
+MA
+MA
+Ev
+jD
+ib
+Wn
+Wn
+ib
+ib
+ib
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+"}
+(68,1,1) = {"
+GP
+ib
+jD
+MA
+zH
+GO
+xQ
+Br
+ud
+Ev
+TE
+PP
+NB
+LS
+CF
+LS
+jE
+IS
+cl
+IS
+IS
+LS
+LS
+aA
+eP
+aW
+LS
+LS
+rS
+cI
+jE
+jE
+LS
+HB
+en
+gh
+Ev
+FK
+FD
+GO
+xQ
+bo
+SB
+MA
+Ev
+jD
+ib
+Wn
+Wn
+Wn
+Wn
+ib
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+"}
+(69,1,1) = {"
+GP
+ib
+CH
+MA
+zH
+Po
+xi
+xi
+TA
+Oa
+IV
+Th
+xn
+xn
+xn
+ah
+ah
+xn
+QD
+QD
+Px
+Px
+ah
+Zd
+cX
+xn
+xn
+xn
+ah
+ah
+ah
+Px
+xn
+xn
+XY
+IV
+IV
+FD
+xi
+xi
+xi
+Ig
+MA
+MA
+Ev
+jD
+ib
+Mm
+pi
+qM
+Wn
+ib
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+"}
+(70,1,1) = {"
+GP
+ib
+jD
+Ev
+Cy
+xi
+mU
+mU
+qo
+Ty
+og
+JL
+hW
+lZ
+ZE
+es
+Ss
+Wb
+hT
+ci
+ou
+dS
+tC
+PA
+hL
+Wb
+Wb
+Wb
+Om
+kb
+ZS
+iK
+wu
+Wb
+Hx
+rV
+fV
+og
+xi
+xi
+mU
+ED
+MA
+Ev
+Ev
+jD
+ib
+Wn
+ib
+ib
+wf
+ib
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+"}
+(71,1,1) = {"
+GP
+ib
+jD
+Ev
+XZ
+kw
+mU
+xi
+GO
+hr
+PM
+UX
+lZ
+Yz
+Ns
+bZ
+KQ
+lZ
+tR
+jQ
+vD
+lM
+Ob
+wy
+nK
+Yz
+lZ
+lZ
+lZ
+wM
+bZ
+pz
+Yz
+NQ
+ms
+Rz
+ve
+xQ
+mU
+mU
+yV
+fx
+Ev
+yX
+Ev
+jD
+ib
+Wn
+Wn
+ib
+Wn
+Wn
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+"}
+(72,1,1) = {"
+ib
+ib
+jD
+Ev
+Ev
+vt
+Gs
+Gs
+Gs
+MX
+Gs
+aR
+FP
+sC
+oC
+oC
+oC
+oC
+gF
+ee
+BG
+FP
+FP
+FP
+Io
+nY
+gv
+iL
+Jq
+Jq
+Zh
+LB
+oC
+Lu
+ko
+Tw
+Gs
+MX
+MX
+Gs
+fx
+vV
+jk
+Gg
+Ev
+jD
+Wn
+Zo
+Wn
+FV
+Wn
+Wn
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+"}
+(73,1,1) = {"
+pi
+ib
+jD
+Ev
+Ev
+Ev
+Ev
+Ev
+MA
+MA
+TE
+PP
+WO
+LS
+IS
+qN
+IS
+IS
+LS
+IS
+IS
+cI
+aW
+mV
+bV
+bV
+XG
+XG
+pI
+pI
+GB
+XG
+XG
+XG
+bV
+Ps
+GN
+AI
+Ei
+Ei
+kv
+Yc
+wH
+uW
+Ev
+jD
+ib
+ib
+Wn
+ib
+Wn
+ib
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+"}
+(74,1,1) = {"
+ib
+Wn
+jD
+Ev
+MA
+MA
+MA
+MA
+Ev
+Ev
+Ev
+PP
+CV
+Lr
+OQ
+OT
+Yu
+OQ
+vG
+tz
+pl
+hG
+OQ
+OQ
+XG
+fB
+Mg
+sL
+Mg
+Mg
+FH
+jB
+Od
+po
+XG
+CO
+Ue
+Pb
+Gg
+Ev
+DE
+Pp
+uW
+Ev
+Ev
+jD
+ib
+NH
+Wn
+ZF
+Wn
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+"}
+(75,1,1) = {"
+Wn
+Wn
+IY
+Ev
+MA
+MA
+MA
+MA
+UD
+Ev
+Ev
+en
+Fb
+Wl
+lU
+Vt
+UT
+ZA
+zS
+zz
+Fc
+nV
+ep
+ut
+vP
+Mg
+Rd
+Mg
+xl
+Mg
+Rd
+Eg
+Od
+Gj
+XG
+Pb
+Gg
+jC
+ce
+AJ
+wY
+We
+Ev
+Ev
+Ev
+IY
+Wn
+Wn
+Wn
+Wn
+ib
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+"}
+(76,1,1) = {"
+Wn
+pi
+IY
+IY
+zD
+zD
+zD
+Bl
+MA
+MA
+Ev
+en
+zz
+NT
+mu
+EE
+ut
+mu
+hE
+mu
+Yn
+ut
+ZD
+mu
+vP
+Mg
+lj
+Mg
+YZ
+Mg
+lj
+kX
+Od
+if
+XG
+sq
+VK
+FM
+Ue
+MA
+mb
+zD
+zD
+zD
+IY
+IY
+Wn
+ib
+zX
+Wn
+Wn
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+"}
+(77,1,1) = {"
+Wn
+Wn
+ib
+Zo
+Wn
+ib
+ib
+jD
+Ev
+Ev
+MA
+PP
+PP
+yH
+Cu
+tn
+oj
+Tv
+pm
+pe
+JG
+lw
+eL
+ut
+bV
+fB
+rD
+Mg
+lR
+Mg
+FB
+bV
+bV
+bV
+bV
+sX
+Gg
+Pb
+Ue
+tY
+jD
+Zs
+lB
+lB
+lB
+lB
+ib
+ib
+ib
+Wn
+ib
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+"}
+(78,1,1) = {"
+ib
+Wn
+Wn
+Wn
+Wn
+pS
+Wn
+jD
+Ev
+Ev
+MA
+Ev
+PP
+PP
+PP
+PP
+en
+en
+en
+PP
+PP
+PP
+en
+en
+XG
+bV
+bV
+bV
+XG
+XG
+XG
+bV
+Ny
+gO
+Ai
+Pb
+qL
+FM
+Ft
+Ev
+jD
+Zs
+Zs
+lB
+lB
+Ri
+lB
+ib
+ib
+Wn
+ib
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+"}
+(79,1,1) = {"
+GP
+ib
+ib
+ib
+pS
+XB
+Wn
+jD
+Ev
+Ev
+MA
+MA
+Ev
+Ev
+Ev
+Ev
+Ev
+MA
+MA
+MA
+MA
+MA
+MA
+Ev
+Ev
+HV
+Ev
+Ev
+Ev
+Ev
+DI
+MA
+MA
+MA
+gO
+fM
+Ue
+Xe
+Gg
+Ev
+jD
+lB
+Zs
+Ch
+Zs
+lB
+lB
+Wn
+Wn
+Wn
+ib
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+"}
+(80,1,1) = {"
+GP
+GP
+GP
+GP
+ib
+Wn
+Wn
+IY
+Ev
+Ev
+Ev
+Ev
+Ev
+MA
+MA
+MA
+MA
+HV
+MA
+Ev
+Ev
+Ev
+MA
+MA
+MA
+MA
+MA
+MA
+MA
+Ev
+Ev
+Ev
+Ai
+MA
+DI
+MA
+lQ
+Ev
+Ev
+Ev
+IY
+lB
+Zs
+lB
+Zs
+lB
+lB
+ib
+Wn
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+"}
+(81,1,1) = {"
+GP
+GP
+GP
+GP
+Zo
+Wn
+ZF
+IY
+IY
+zD
+zD
+zD
+zD
+ll
+Ni
+zD
+zD
+zD
+ll
+ll
+ll
+ll
+UK
+ll
+ll
+ll
+ll
+ll
+ll
+ll
+ll
+UK
+zD
+zD
+zD
+Yt
+zD
+zD
+zD
+IY
+IY
+lB
+Zs
+SY
+Zs
+lB
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+"}
+(82,1,1) = {"
+GP
+GP
+GP
+GP
+Wn
+Wn
+Wn
+ib
+ib
+ib
+Wn
+Wn
+FV
+ib
+ib
+ib
+ib
+ib
+pi
+ib
+ib
+ib
+ib
+FV
+ib
+lB
+Zs
+lB
+Ri
+lB
+Zs
+lB
+xZ
+lB
+Xg
+Zs
+Zs
+SY
+Zs
+lB
+lB
+lB
+Zs
+Zs
+Xr
+lB
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+"}
+(83,1,1) = {"
+GP
+GP
+GP
+GP
+ib
+ib
+pS
+Wn
+Wn
+NH
+ib
+Wn
+Wn
+ib
+ib
+ib
+zX
+ib
+qM
+ib
+zX
+ib
+ib
+ib
+ib
+lB
+Zs
+Zs
+lB
+Zs
+SY
+Zs
+Zs
+lB
+lB
+fH
+lB
+lB
+Zs
+lB
+ny
+lB
+lB
+lB
+Zs
+lB
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+"}
+(84,1,1) = {"
+GP
+GP
+GP
+GP
+ib
+ib
+Wn
+Wn
+pS
+ib
+ib
+ib
+Wn
+Wn
+zX
+Wn
+ib
+ib
+ib
+ib
+pi
+ib
+ib
+ib
+ib
+lB
+lB
+xZ
+Zs
+lB
+lB
+lB
+Zs
+Ch
+Zs
+Zs
+lB
+lB
+Ch
+Zs
+lB
+lB
+HP
+Zs
+lB
+Ri
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+"}
+(85,1,1) = {"
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+ib
+ib
+Wn
+Wn
+pi
+ib
+ib
+ib
+ib
+qM
+ib
+ib
+GP
+GP
+GP
+GP
+GP
+GP
+lB
+Zs
+Zs
+Zs
+SY
+ny
+lB
+lB
+lB
+Zs
+Xr
+lB
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+GP
+"}
diff --git a/_maps/RandomRuins/SandRuins/whitesands_surface_assaultpodcrash.dmm b/_maps/RandomRuins/SandRuins/whitesands_surface_assaultpodcrash.dmm
deleted file mode 100644
index 6d1971794b5..00000000000
--- a/_maps/RandomRuins/SandRuins/whitesands_surface_assaultpodcrash.dmm
+++ /dev/null
@@ -1,382 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"c" = (
-/obj/structure/chair/comfy/shuttle{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin)
-"d" = (
-/obj/item/ammo_casing/spent,
-/turf/closed/wall/mineral/plastitanium,
-/area/ruin)
-"e" = (
-/obj/structure/barricade/wooden,
-/obj/machinery/door/airlock/centcom{
- aiControlDisabled = 1;
- name = "Assault Pod";
- req_access_txt = "150"
- },
-/turf/open/floor/plating,
-/area/ruin)
-"f" = (
-/mob/living/simple_animal/hostile/asteroid/goliath/beast,
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin)
-"h" = (
-/turf/closed/wall/mineral/plastitanium,
-/area/ruin)
-"i" = (
-/obj/item/ammo_casing/c10mm{
- pixel_x = -1
- },
-/obj/item/ammo_casing/c10mm{
- pixel_x = 7;
- pixel_y = -7
- },
-/obj/item/ammo_casing/c10mm{
- pixel_x = -2;
- pixel_y = -10
- },
-/obj/item/ammo_casing/c10mm{
- pixel_x = -6;
- pixel_y = -5
- },
-/obj/item/ammo_casing/c10mm{
- pixel_x = -6;
- pixel_y = 4
- },
-/turf/open/floor/plating/asteroid/whitesands/dried/lit,
-/area/overmap_encounter/planetoid/sand/explored)
-"j" = (
-/obj/effect/decal/cleanable/blood/gibs,
-/turf/open/floor/plating/asteroid/whitesands/dried/lit,
-/area/overmap_encounter/planetoid/sand/explored)
-"k" = (
-/obj/structure/chair/comfy/shuttle{
- dir = 4
- },
-/turf/closed/mineral/random/whitesands,
-/area/overmap_encounter/planetoid/sand/explored)
-"l" = (
-/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin)
-"o" = (
-/obj/item/ammo_casing/spent,
-/obj/item/ammo_casing/spent{
- dir = 5;
- pixel_x = -8;
- pixel_y = 4
- },
-/obj/item/ammo_casing/spent{
- dir = 1;
- pixel_x = 7;
- pixel_y = 4
- },
-/turf/open/floor/plating/asteroid/whitesands/lit,
-/area/overmap_encounter/planetoid/sand/explored)
-"p" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin)
-"q" = (
-/obj/structure/chair/comfy/shuttle{
- dir = 4
- },
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin)
-"r" = (
-/obj/effect/decal/cleanable/blood/gibs/core,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin)
-"t" = (
-/obj/machinery/door/airlock/centcom{
- aiControlDisabled = 1;
- name = "Assault Pod";
- req_access_txt = "150";
- dir = 4
- },
-/obj/item/ammo_casing/spent,
-/turf/open/space/basic,
-/area/ruin)
-"u" = (
-/obj/item/reagent_containers/food/drinks/waterbottle/large{
- pixel_x = -8;
- pixel_y = 2
- },
-/obj/item/reagent_containers/food/snacks/canned/beans{
- pixel_x = 6;
- pixel_y = 1
- },
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin)
-"v" = (
-/obj/item/ammo_casing/spent,
-/turf/closed/mineral/random/whitesands,
-/area/overmap_encounter/planetoid/sand/explored)
-"w" = (
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin)
-"z" = (
-/obj/structure/barricade/sandbags,
-/turf/open/floor/plating/asteroid/whitesands/lit,
-/area/overmap_encounter/planetoid/sand/explored)
-"A" = (
-/obj/effect/decal/cleanable/blood{
- icon_state = "floor7"
- },
-/turf/open/floor/plating/asteroid/whitesands/dried/lit,
-/area/overmap_encounter/planetoid/sand/explored)
-"B" = (
-/turf/open/floor/plating/asteroid/whitesands/lit,
-/area/overmap_encounter/planetoid/sand/explored)
-"D" = (
-/obj/machinery/light/broken/directional/north,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin)
-"E" = (
-/turf/open/floor/plating/asteroid/whitesands/dried/lit,
-/area/overmap_encounter/planetoid/sand/explored)
-"F" = (
-/obj/effect/decal/cleanable/blood/gibs/up,
-/obj/effect/decal/cleanable/blood,
-/obj/item/clothing/under/syndicate/intern{
- pixel_x = 1;
- pixel_y = -6
- },
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin)
-"H" = (
-/obj/structure/chair/comfy/shuttle{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin)
-"J" = (
-/obj/structure/bed,
-/obj/effect/decal/cleanable/blood{
- icon_state = "floor2"
- },
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin)
-"K" = (
-/mob/living/simple_animal/hostile/asteroid/goliath/beast{
- dir = 4
- },
-/turf/open/floor/plating/asteroid/whitesands/dried/lit,
-/area/overmap_encounter/planetoid/sand/explored)
-"L" = (
-/obj/machinery/light/directional/south,
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin)
-"O" = (
-/turf/template_noop,
-/area/template_noop)
-"P" = (
-/obj/structure/closet/crate/secure/weapon,
-/obj/item/gun/ballistic/automatic/ebr,
-/obj/item/ammo_box/magazine/ebr,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin)
-"R" = (
-/obj/machinery/door/airlock/centcom{
- name = "Assault Pod";
- req_access_txt = "150"
- },
-/turf/open/floor/plating,
-/area/ruin)
-"S" = (
-/obj/effect/decal/cleanable/blood,
-/obj/effect/mob_spawn/human/corpse/syndicatesoldier,
-/turf/open/floor/plating/asteroid/whitesands/lit,
-/area/overmap_encounter/planetoid/sand/explored)
-"T" = (
-/obj/effect/decal/cleanable/blood/gibs/limb{
- icon_state = "gibarm";
- pixel_x = -14;
- pixel_y = 3
- },
-/obj/effect/decal/cleanable/blood{
- icon_state = "floor5";
- pixel_x = -2
- },
-/turf/open/floor/plating,
-/area/ruin)
-"V" = (
-/turf/closed/mineral/random/whitesands,
-/area/overmap_encounter/planetoid/sand/explored)
-"X" = (
-/obj/item/ammo_casing/spent{
- dir = 1;
- pixel_x = -3;
- pixel_y = -2
- },
-/obj/item/ammo_casing/spent{
- dir = 9;
- pixel_x = 7;
- pixel_y = 7
- },
-/mob/living/simple_animal/hostile/asteroid/goliath/beast{
- dir = 8
- },
-/turf/open/floor/plating/asteroid/whitesands/lit,
-/area/overmap_encounter/planetoid/sand/explored)
-"Y" = (
-/obj/structure/barricade/sandbags,
-/turf/open/floor/plating/asteroid/whitesands/dried/lit,
-/area/overmap_encounter/planetoid/sand/explored)
-"Z" = (
-/mob/living/simple_animal/hostile/asteroid/goliath/beast{
- dir = 8
- },
-/turf/open/floor/plating/asteroid/whitesands/lit,
-/area/overmap_encounter/planetoid/sand/explored)
-
-(1,1,1) = {"
-O
-O
-O
-V
-v
-v
-v
-t
-d
-h
-B
-"}
-(2,1,1) = {"
-O
-O
-z
-S
-h
-V
-k
-p
-u
-h
-h
-"}
-(3,1,1) = {"
-O
-O
-z
-X
-h
-c
-F
-f
-r
-P
-h
-"}
-(4,1,1) = {"
-O
-O
-z
-B
-R
-p
-L
-h
-D
-p
-e
-"}
-(5,1,1) = {"
-O
-O
-B
-o
-h
-H
-p
-q
-w
-J
-h
-"}
-(6,1,1) = {"
-O
-O
-B
-z
-h
-h
-H
-p
-l
-h
-h
-"}
-(7,1,1) = {"
-O
-B
-B
-B
-B
-h
-h
-T
-h
-h
-E
-"}
-(8,1,1) = {"
-O
-B
-B
-B
-B
-z
-i
-E
-j
-Y
-O
-"}
-(9,1,1) = {"
-O
-Z
-B
-B
-B
-z
-Y
-A
-K
-B
-O
-"}
-(10,1,1) = {"
-O
-O
-O
-O
-O
-B
-B
-B
-B
-O
-O
-"}
-(11,1,1) = {"
-O
-O
-O
-O
-O
-O
-O
-O
-O
-O
-O
-"}
diff --git a/_maps/RandomRuins/SandRuins/whitesands_surface_camp_combination.dmm b/_maps/RandomRuins/SandRuins/whitesands_surface_camp_combination.dmm
index f8b569cebdf..f59cff023b4 100644
--- a/_maps/RandomRuins/SandRuins/whitesands_surface_camp_combination.dmm
+++ b/_maps/RandomRuins/SandRuins/whitesands_surface_camp_combination.dmm
@@ -89,7 +89,7 @@
},
/area/overmap_encounter/planetoid/sand/explored)
"eq" = (
-/mob/living/simple_animal/hostile/asteroid/whitesands/survivor,
+/mob/living/simple_animal/hostile/human/hermit/survivor,
/turf/open/floor/plating/asteroid/whitesands{
light_range = 2
},
@@ -157,7 +157,7 @@
/area/ruin)
"fO" = (
/obj/structure/chair/plastic,
-/mob/living/simple_animal/hostile/asteroid/whitesands/survivor{
+/mob/living/simple_animal/hostile/human/hermit/survivor{
faction = list("adobe")
},
/turf/open/floor/plating/asteroid/whitesands{
@@ -360,7 +360,7 @@
},
/area/overmap_encounter/planetoid/sand/explored)
"nx" = (
-/mob/living/simple_animal/hostile/asteroid/whitesands/survivor{
+/mob/living/simple_animal/hostile/human/hermit/survivor{
dir = 4;
faction = list("adobe")
},
@@ -425,7 +425,7 @@
"oB" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/blood/old,
-/mob/living/simple_animal/hostile/asteroid/whitesands/ranged/hunter{
+/mob/living/simple_animal/hostile/human/hermit/ranged/hunter{
faction = list("saloon");
name = "Whitesands Bartender"
},
@@ -592,7 +592,7 @@
/turf/open/floor/concrete,
/area/ruin)
"we" = (
-/mob/living/simple_animal/hostile/asteroid/whitesands/survivor,
+/mob/living/simple_animal/hostile/human/hermit/survivor,
/turf/open/floor/plating/asteroid/whitesands/dried{
light_range = 2
},
@@ -678,14 +678,14 @@
},
/area/overmap_encounter/planetoid/sand/explored)
"zB" = (
-/mob/living/simple_animal/hostile/asteroid/whitesands/survivor{
+/mob/living/simple_animal/hostile/human/hermit/survivor{
dir = 1;
faction = list("adobe")
},
/turf/open/floor/concrete,
/area/ruin)
"AC" = (
-/mob/living/simple_animal/hostile/asteroid/whitesands/ranged/gunslinger{
+/mob/living/simple_animal/hostile/human/hermit/ranged/gunslinger{
dir = 4;
faction = list("adobe")
},
@@ -704,7 +704,7 @@
/turf/open/floor/wood,
/area/ruin)
"AR" = (
-/mob/living/simple_animal/hostile/asteroid/whitesands/ranged/hunter,
+/mob/living/simple_animal/hostile/human/hermit/ranged/hunter,
/turf/open/floor/plating/asteroid/whitesands{
light_range = 2
},
@@ -782,14 +782,14 @@
/area/ruin)
"Ed" = (
/obj/item/chair/stool/bar,
-/mob/living/simple_animal/hostile/asteroid/whitesands/survivor{
+/mob/living/simple_animal/hostile/human/hermit/survivor{
dir = 1;
faction = list("saloon")
},
/turf/open/floor/wood,
/area/ruin)
"Ef" = (
-/mob/living/simple_animal/hostile/asteroid/whitesands/ranged/hunter{
+/mob/living/simple_animal/hostile/human/hermit/ranged/hunter{
dir = 4;
faction = list("adobe")
},
@@ -939,7 +939,7 @@
/obj/structure/chair/plastic{
dir = 4
},
-/mob/living/simple_animal/hostile/asteroid/whitesands/survivor{
+/mob/living/simple_animal/hostile/human/hermit/survivor{
dir = 4;
faction = list("adobe")
},
@@ -1189,7 +1189,7 @@
/turf/open/floor/concrete,
/area/ruin)
"TH" = (
-/mob/living/simple_animal/hostile/asteroid/whitesands/ranged/hunter{
+/mob/living/simple_animal/hostile/human/hermit/ranged/hunter{
faction = list("adobe")
},
/turf/open/floor/concrete,
@@ -1200,7 +1200,7 @@
/area/ruin)
"UT" = (
/obj/structure/chair/stool/bar,
-/mob/living/simple_animal/hostile/asteroid/whitesands/survivor{
+/mob/living/simple_animal/hostile/human/hermit/survivor{
dir = 1;
faction = list("saloon")
},
@@ -1209,7 +1209,7 @@
"Vq" = (
/obj/structure/chair/stool/bar,
/obj/effect/decal/cleanable/dirt,
-/mob/living/simple_animal/hostile/asteroid/whitesands/survivor{
+/mob/living/simple_animal/hostile/human/hermit/survivor{
dir = 8;
faction = list("saloon")
},
@@ -1253,7 +1253,7 @@
/area/overmap_encounter/planetoid/sand/explored)
"Ws" = (
/obj/structure/chair/stool/bar,
-/mob/living/simple_animal/hostile/asteroid/whitesands/survivor{
+/mob/living/simple_animal/hostile/human/hermit/survivor{
dir = 8;
faction = list("saloon")
},
diff --git a/_maps/RandomRuins/SandRuins/whitesands_surface_camp_drugstore.dmm b/_maps/RandomRuins/SandRuins/whitesands_surface_camp_drugstore.dmm
deleted file mode 100644
index 4bf53b73863..00000000000
--- a/_maps/RandomRuins/SandRuins/whitesands_surface_camp_drugstore.dmm
+++ /dev/null
@@ -1,430 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"a" = (
-/turf/closed/wall/mineral/wood,
-/area/ruin/unpowered)
-"b" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood{
- icon_state = "wood-broken5"
- },
-/area/ruin/unpowered)
-"c" = (
-/obj/structure/table/reinforced,
-/obj/item/pda/clear{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"d" = (
-/obj/structure/barricade/wooden,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"e" = (
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/donkpockets,
-/obj/effect/spawner/lootdrop/donkpockets,
-/obj/effect/spawner/lootdrop/donkpockets,
-/obj/effect/spawner/lootdrop/donkpockets,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"f" = (
-/obj/structure/rack,
-/obj/item/reagent_containers/food/snacks/cornchips,
-/obj/item/reagent_containers/food/snacks/butterdog,
-/obj/item/reagent_containers/food/snacks/candy,
-/obj/item/reagent_containers/food/snacks/canned/peaches,
-/obj/item/reagent_containers/food/drinks/bottle/sarsaparilla,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"g" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood{
- icon_state = "wood-broken4"
- },
-/area/ruin/unpowered)
-"h" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/barricade/wooden,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"j" = (
-/obj/structure/closet/cabinet,
-/obj/item/spacecash/bundle/c100,
-/obj/item/spacecash/bundle/c10,
-/obj/item/spacecash/bundle/c1,
-/obj/item/spacecash/bundle/c1,
-/obj/item/spacecash/bundle/c1,
-/obj/item/spacecash/bundle/c1,
-/obj/item/spacecash/bundle/c1,
-/obj/item/spacecash/bundle/c20,
-/obj/item/spacecash/bundle/c200,
-/obj/item/spacecash/bundle/c50,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"k" = (
-/obj/structure/rack,
-/obj/item/reagent_containers/food/snacks/cheesyfries,
-/obj/item/reagent_containers/food/snacks/chips,
-/obj/item/reagent_containers/food/snacks/cheesewedge,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"l" = (
-/obj/structure/dresser,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"m" = (
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"n" = (
-/mob/living/simple_animal/hostile/asteroid/whitesands/survivor{
- dir = 4
- },
-/turf/open/floor/wood{
- icon_state = "wood-broken7"
- },
-/area/ruin/unpowered)
-"o" = (
-/turf/open/floor/wood{
- icon_state = "wood-broken3"
- },
-/area/ruin/unpowered)
-"p" = (
-/obj/structure/table/reinforced,
-/obj/item/paper_bin,
-/obj/item/pen,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood{
- icon_state = "wood-broken7"
- },
-/area/ruin/unpowered)
-"q" = (
-/obj/machinery/door/window/northleft{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"r" = (
-/obj/structure/rack,
-/obj/item/gun/energy/kinetic_accelerator{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/item/gun/energy/kinetic_accelerator{
- pixel_x = -3;
- pixel_y = 3
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"s" = (
-/obj/structure/sign/poster/official/pda_ad,
-/turf/closed/wall/mineral/wood,
-/area/ruin/unpowered)
-"t" = (
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/minor/kittyears_or_rabbitears,
-/obj/effect/spawner/lootdrop/minor/kittyears_or_rabbitears,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"u" = (
-/obj/structure/table/reinforced,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"w" = (
-/obj/structure/window,
-/obj/structure/rack,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"x" = (
-/obj/structure/mineral_door/wood,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"y" = (
-/obj/structure/rack,
-/obj/item/grenade/smokebomb{
- pixel_x = 5
- },
-/obj/item/grenade/smokebomb{
- pixel_x = -6
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"z" = (
-/turf/open/floor/wood{
- icon_state = "wood-broken5"
- },
-/area/ruin/unpowered)
-"B" = (
-/turf/open/floor/wood{
- icon_state = "wood-broken4"
- },
-/area/ruin/unpowered)
-"C" = (
-/obj/structure/mineral_door/wood,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"D" = (
-/turf/open/floor/wood{
- icon_state = "wood-broken"
- },
-/area/ruin/unpowered)
-"E" = (
-/obj/effect/spawner/lootdrop/costume,
-/obj/effect/spawner/lootdrop/gloves,
-/obj/structure/window,
-/obj/structure/rack,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"F" = (
-/obj/structure/rack,
-/obj/item/borg/upgrade/modkit/cooldown{
- pixel_x = 7;
- pixel_y = 5
- },
-/obj/item/borg/upgrade/modkit/damage,
-/obj/item/borg/upgrade/modkit/range{
- pixel_x = -7
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"G" = (
-/obj/effect/spawner/lootdrop/costume,
-/obj/structure/window,
-/obj/structure/rack,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"H" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood{
- icon_state = "wood-broken7"
- },
-/area/ruin/unpowered)
-"I" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood{
- icon_state = "wood-broken2"
- },
-/area/ruin/unpowered)
-"J" = (
-/obj/structure/rack,
-/obj/item/reagent_containers/food/snacks/chewable/bubblegum/nicotine,
-/obj/item/reagent_containers/food/snacks/burger/fivealarm,
-/obj/item/reagent_containers/food/snacks/cherrycupcake,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"K" = (
-/obj/structure/rack,
-/obj/item/reagent_containers/food/snacks/chococornet,
-/obj/item/reagent_containers/food/snacks/candy,
-/obj/item/reagent_containers/food/snacks/canned/peaches,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"L" = (
-/obj/machinery/light/directional/north,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"M" = (
-/obj/effect/spawner/lootdrop/costume,
-/obj/effect/spawner/lootdrop/gloves,
-/obj/item/shard{
- icon_state = "tiny"
- },
-/obj/item/shard{
- icon_state = "medium"
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"N" = (
-/obj/structure/bed,
-/obj/item/bedsheet/dorms,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"O" = (
-/obj/structure/rack,
-/obj/item/reagent_containers/food/snacks/chewable/bubblegum/happiness,
-/obj/item/reagent_containers/food/snacks/candy_corn,
-/obj/item/reagent_containers/food/snacks/chocolatebar,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"P" = (
-/obj/structure/rack,
-/obj/item/reagent_containers/food/snacks/chocolatebunny,
-/obj/item/reagent_containers/food/snacks/candy,
-/obj/item/reagent_containers/food/snacks/canned/beans,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/directional/north,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"R" = (
-/obj/structure/rack,
-/obj/item/reagent_containers/food/snacks/cheesynachos,
-/obj/item/reagent_containers/food/snacks/branrequests,
-/obj/item/reagent_containers/food/snacks/canned/beans,
-/obj/item/reagent_containers/food/drinks/bottle/sarsaparilla,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"S" = (
-/turf/template_noop,
-/area/template_noop)
-"T" = (
-/obj/machinery/vending/cola/random,
-/obj/machinery/light/directional/west,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"U" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"V" = (
-/obj/structure/table/reinforced,
-/obj/item/pen/red,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"W" = (
-/obj/structure/rack,
-/obj/item/construction/rcd{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/rcd_ammo,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"Z" = (
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-
-(1,1,1) = {"
-a
-d
-Z
-Z
-d
-a
-a
-"}
-(2,1,1) = {"
-Z
-R
-H
-k
-K
-T
-h
-"}
-(3,1,1) = {"
-a
-O
-n
-H
-b
-o
-E
-"}
-(4,1,1) = {"
-a
-P
-D
-f
-J
-H
-w
-"}
-(5,1,1) = {"
-d
-c
-q
-u
-U
-z
-M
-"}
-(6,1,1) = {"
-d
-r
-o
-p
-B
-U
-G
-"}
-(7,1,1) = {"
-s
-F
-H
-V
-b
-e
-a
-"}
-(8,1,1) = {"
-a
-W
-g
-u
-I
-m
-C
-"}
-(9,1,1) = {"
-d
-y
-U
-u
-U
-t
-d
-"}
-(10,1,1) = {"
-a
-a
-x
-a
-a
-d
-a
-"}
-(11,1,1) = {"
-a
-m
-m
-m
-a
-S
-S
-"}
-(12,1,1) = {"
-a
-L
-m
-m
-a
-S
-S
-"}
-(13,1,1) = {"
-a
-N
-j
-l
-a
-S
-S
-"}
-(14,1,1) = {"
-a
-a
-a
-a
-a
-S
-S
-"}
diff --git a/_maps/RandomRuins/SandRuins/whitesands_surface_camp_saloon.dmm b/_maps/RandomRuins/SandRuins/whitesands_surface_camp_saloon.dmm
index b17207b7502..d4c307df25d 100644
--- a/_maps/RandomRuins/SandRuins/whitesands_surface_camp_saloon.dmm
+++ b/_maps/RandomRuins/SandRuins/whitesands_surface_camp_saloon.dmm
@@ -243,7 +243,7 @@
},
/obj/effect/turf_decal/siding/wood,
/obj/structure/chair/stool/bar,
-/mob/living/simple_animal/hostile/asteroid/whitesands/survivor,
+/mob/living/simple_animal/hostile/human/hermit/survivor,
/turf/open/floor/wood,
/area/ruin/whitesands/saloon)
"gC" = (
@@ -328,7 +328,7 @@
"ih" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/blood/old,
-/mob/living/simple_animal/hostile/asteroid/whitesands/ranged/hunter{
+/mob/living/simple_animal/hostile/human/hermit/ranged/hunter{
name = "Hermit Bartender"
},
/turf/open/floor/wood{
@@ -499,7 +499,7 @@
/obj/effect/turf_decal/siding/wood{
dir = 1
},
-/mob/living/simple_animal/hostile/asteroid/whitesands/survivor{
+/mob/living/simple_animal/hostile/human/hermit/survivor{
dir = 1
},
/turf/open/floor/wood,
@@ -615,7 +615,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 6
},
-/mob/living/simple_animal/hostile/asteroid/whitesands/survivor{
+/mob/living/simple_animal/hostile/human/hermit/survivor{
dir = 1
},
/turf/open/floor/wood,
@@ -654,7 +654,7 @@
/obj/structure/chair/stool/bar{
dir = 1
},
-/mob/living/simple_animal/hostile/asteroid/whitesands/survivor{
+/mob/living/simple_animal/hostile/human/hermit/survivor{
dir = 1
},
/turf/open/floor/wood{
@@ -666,7 +666,7 @@
dir = 8
},
/obj/item/chair/stool/bar,
-/mob/living/simple_animal/hostile/asteroid/whitesands/survivor{
+/mob/living/simple_animal/hostile/human/hermit/survivor{
dir = 8
},
/turf/open/floor/wood,
@@ -744,7 +744,7 @@
/obj/effect/turf_decal/siding/wood{
dir = 8
},
-/mob/living/simple_animal/hostile/asteroid/whitesands/ranged/hunter{
+/mob/living/simple_animal/hostile/human/hermit/ranged/hunter{
dir = 8
},
/turf/open/floor/wood{
@@ -756,7 +756,7 @@
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/mob/living/simple_animal/hostile/asteroid/whitesands/survivor{
+/mob/living/simple_animal/hostile/human/hermit/survivor{
dir = 1
},
/turf/open/floor/wood{
@@ -981,7 +981,7 @@
/area/ruin/whitesands/saloon)
"DT" = (
/obj/structure/chair/wood,
-/mob/living/simple_animal/hostile/asteroid/whitesands/survivor{
+/mob/living/simple_animal/hostile/human/hermit/survivor{
name = "Robert";
desc = "This fellow seems relatively sane and normal";
faction = list("neutral")
@@ -1026,7 +1026,7 @@
/obj/effect/spawner/lootdrop/maintenance/two,
/obj/effect/decal/cleanable/dirt,
/obj/item/gun/energy/plasmacutter{
- icon_state = "pulse";
+ icon_state = "pulse_carbine";
name = "pulse rifle";
desc = "A supposedly heavy-duty, multifaceted energy rifle. The barrel looks off and the casing seems to be made of plastic";
item_state = "pulse"
@@ -1114,7 +1114,7 @@
/obj/structure/chair/stool/bar{
dir = 8
},
-/mob/living/simple_animal/hostile/asteroid/whitesands/survivor{
+/mob/living/simple_animal/hostile/human/hermit/survivor{
dir = 8
},
/turf/open/floor/wood,
@@ -1148,7 +1148,7 @@
},
/area/ruin/whitesands/saloon)
"Ie" = (
-/mob/living/simple_animal/hostile/asteroid/whitesands/survivor{
+/mob/living/simple_animal/hostile/human/hermit/survivor{
dir = 1
},
/turf/open/floor/plating/asteroid/whitesands/lit,
@@ -1389,7 +1389,7 @@
/obj/structure/chair/stool/bar{
dir = 8
},
-/mob/living/simple_animal/hostile/asteroid/whitesands/survivor{
+/mob/living/simple_animal/hostile/human/hermit/survivor{
dir = 8
},
/turf/open/floor/wood,
@@ -1421,7 +1421,7 @@
/turf/open/floor/wood,
/area/ruin/whitesands/saloon)
"QV" = (
-/mob/living/simple_animal/hostile/asteroid/whitesands/ranged/hunter{
+/mob/living/simple_animal/hostile/human/hermit/ranged/hunter{
name = "Hermit Bartender";
dir = 4
},
@@ -1497,7 +1497,7 @@
/area/ruin/whitesands/saloon)
"Ua" = (
/obj/structure/chair/stool/bar,
-/mob/living/simple_animal/hostile/asteroid/whitesands/survivor{
+/mob/living/simple_animal/hostile/human/hermit/survivor{
dir = 8
},
/turf/open/floor/wood{
@@ -1525,7 +1525,7 @@
/obj/structure/sign/poster/official/cohiba_robusto_ad{
pixel_y = 32
},
-/mob/living/simple_animal/hostile/asteroid/whitesands/survivor,
+/mob/living/simple_animal/hostile/human/hermit/survivor,
/turf/open/floor/wood{
icon_state = "wood-broken7"
},
@@ -1641,7 +1641,7 @@
/obj/structure/chair/stool/bar{
dir = 1
},
-/mob/living/simple_animal/hostile/asteroid/whitesands/survivor{
+/mob/living/simple_animal/hostile/human/hermit/survivor{
dir = 1
},
/turf/open/floor/wood,
diff --git a/_maps/RandomRuins/SandRuins/whitesands_surface_chokepoint.dmm b/_maps/RandomRuins/SandRuins/whitesands_surface_chokepoint.dmm
deleted file mode 100644
index 5d63a30bf22..00000000000
--- a/_maps/RandomRuins/SandRuins/whitesands_surface_chokepoint.dmm
+++ /dev/null
@@ -1,435 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"a" = (
-/turf/template_noop,
-/area/template_noop)
-"b" = (
-/obj/structure/barricade/sandbags,
-/turf/open/floor/plating/asteroid/whitesands/dried,
-/area/ruin)
-"d" = (
-/obj/structure/closet/secure_closet{
- icon_state = "sec"
- },
-/obj/item/gun/ballistic/automatic/pistol/commander,
-/obj/item/ammo_box/magazine/co9mm,
-/obj/item/ammo_box/magazine/co9mm,
-/turf/open/floor/plating/asteroid/whitesands,
-/area/ruin)
-"e" = (
-/obj/structure/sign/poster/official/here_for_your_safety,
-/turf/closed/wall/mineral/sandstone,
-/area/ruin)
-"f" = (
-/obj/item/banner/security/mundane,
-/turf/open/floor/plating/asteroid/whitesands/dried,
-/area/overmap_encounter/planetoid/sand/explored)
-"g" = (
-/obj/structure/bed,
-/obj/item/bedsheet/hos,
-/mob/living/simple_animal/hostile/nanotrasen/ranged{
- atmos_requirements = list("min_oxy"=5,"max_oxy"=0,"min_tox"=0,"max_tox"=0,"min_co2"=0,"max_co2"=999,"min_n2"=0,"max_n2"=0);
- damage_coeff = list("brute"=1,"fire"=1,"toxin"=1,"clone"=1,"stamina"=0,"oxygen"=0);
- name = "\improper Nanotrasen Stranded Security Officer"
- },
-/turf/open/floor/plating/asteroid/whitesands/dried,
-/area/ruin)
-"h" = (
-/mob/living/simple_animal/hostile/nanotrasen/ranged{
- atmos_requirements = list("min_oxy"=5,"max_oxy"=0,"min_tox"=0,"max_tox"=0,"min_co2"=0,"max_co2"=999,"min_n2"=0,"max_n2"=0);
- damage_coeff = list("brute"=1,"fire"=1,"toxin"=1,"clone"=1,"stamina"=0,"oxygen"=0);
- dir = 4;
- name = "\improper Nanotrasen Stranded Security Officer"
- },
-/turf/open/floor/plating/asteroid/whitesands/dried,
-/area/ruin)
-"i" = (
-/obj/structure/chair/wood{
- dir = 8
- },
-/mob/living/simple_animal/hostile/nanotrasen/ranged{
- atmos_requirements = list("min_oxy"=5,"max_oxy"=0,"min_tox"=0,"max_tox"=0,"min_co2"=0,"max_co2"=999,"min_n2"=0,"max_n2"=0);
- damage_coeff = list("brute"=1,"fire"=1,"toxin"=1,"clone"=1,"stamina"=0,"oxygen"=0);
- dir = 8;
- name = "\improper Nanotrasen Stranded Security Officer"
- },
-/turf/open/floor/plating/asteroid/whitesands/dried,
-/area/ruin)
-"j" = (
-/obj/item/banner/security,
-/turf/open/floor/plating/asteroid/whitesands/dried,
-/area/ruin)
-"k" = (
-/obj/effect/mob_spawn/human/corpse/damaged/whitesands/survivor,
-/obj/effect/decal/cleanable/blood,
-/turf/open/floor/plating/asteroid/whitesands/lit,
-/area/overmap_encounter/planetoid/sand/explored)
-"m" = (
-/turf/open/floor/plating/asteroid/whitesands,
-/area/overmap_encounter/planetoid/sand/explored)
-"n" = (
-/obj/structure/sign/poster/official/ion_carbine,
-/turf/closed/wall/mineral/sandstone,
-/area/ruin)
-"o" = (
-/obj/item/banner/security/mundane,
-/turf/open/floor/plating/asteroid/whitesands/dried,
-/area/ruin)
-"p" = (
-/obj/structure/sign/poster/official/safety_report,
-/turf/closed/wall/mineral/sandstone,
-/area/ruin)
-"q" = (
-/turf/open/floor/plating/asteroid/whitesands/lit,
-/area/overmap_encounter/planetoid/sand/explored)
-"r" = (
-/obj/structure/closet/cabinet,
-/obj/item/clothing/head/helmet/knight/blue,
-/obj/item/clothing/suit/armor/riot/knight/blue,
-/obj/item/spear,
-/obj/item/shield/riot/buckler,
-/turf/open/floor/plating/asteroid/whitesands,
-/area/ruin)
-"u" = (
-/turf/open/floor/plating/asteroid/whitesands,
-/area/ruin)
-"v" = (
-/mob/living/simple_animal/hostile/nanotrasen/ranged{
- atmos_requirements = list("min_oxy"=5,"max_oxy"=0,"min_tox"=0,"max_tox"=0,"min_co2"=0,"max_co2"=999,"min_n2"=0,"max_n2"=0);
- damage_coeff = list("brute"=1,"fire"=1,"toxin"=1,"clone"=1,"stamina"=0,"oxygen"=0);
- dir = 8;
- name = "\improper Nanotrasen Stranded Security Officer"
- },
-/turf/open/floor/plating/asteroid/whitesands/dried,
-/area/ruin)
-"x" = (
-/obj/structure/sign/poster/contraband/space_cops,
-/turf/closed/wall/mineral/sandstone,
-/area/ruin)
-"z" = (
-/turf/open/floor/plating/asteroid/whitesands/dried,
-/area/ruin)
-"E" = (
-/obj/item/banner/security/mundane,
-/turf/open/floor/plating/asteroid/whitesands,
-/area/overmap_encounter/planetoid/sand/explored)
-"H" = (
-/obj/structure/sign/poster/official/report_crimes,
-/turf/closed/wall/mineral/sandstone,
-/area/ruin)
-"I" = (
-/obj/structure/sign/poster/contraband/twelve_gauge,
-/turf/closed/wall/mineral/sandstone,
-/area/ruin)
-"J" = (
-/obj/item/cigbutt,
-/obj/item/cigbutt{
- pixel_x = 7;
- pixel_y = -5
- },
-/turf/open/floor/plating/asteroid/whitesands/dried,
-/area/ruin)
-"K" = (
-/obj/structure/barricade/sandbags,
-/turf/open/floor/plating/asteroid/whitesands/dried,
-/area/overmap_encounter/planetoid/sand/explored)
-"L" = (
-/obj/structure/sign/poster/official/love_ian,
-/turf/closed/wall/mineral/sandstone,
-/area/ruin)
-"M" = (
-/obj/structure/mineral_door/sandstone,
-/turf/open/floor/plating/asteroid/whitesands/dried,
-/area/ruin)
-"N" = (
-/obj/structure/sign/poster/official/work_for_a_future,
-/turf/closed/wall/mineral/sandstone,
-/area/ruin)
-"P" = (
-/obj/structure/sign/poster/official/do_not_question,
-/turf/closed/wall/mineral/sandstone,
-/area/ruin)
-"Q" = (
-/turf/closed/mineral/random/whitesands,
-/area/overmap_encounter/planetoid/sand/explored)
-"S" = (
-/obj/effect/mob_spawn/human/corpse/damaged/whitesands/survivor,
-/obj/effect/decal/cleanable/blood{
- icon_state = "floor3"
- },
-/turf/open/floor/plating/asteroid/whitesands/lit,
-/area/overmap_encounter/planetoid/sand/explored)
-"T" = (
-/obj/structure/table/wood,
-/obj/item/reagent_containers/food/drinks/bottle/whiskey{
- pixel_x = -5;
- pixel_y = 6
- },
-/obj/item/clothing/mask/gas/sechailer/swat{
- pixel_x = 7;
- pixel_y = 2
- },
-/turf/open/floor/plating/asteroid/whitesands/dried,
-/area/ruin)
-"U" = (
-/obj/structure/table/wood,
-/obj/item/holosign_creator/security,
-/turf/open/floor/plating/asteroid/whitesands/dried,
-/area/ruin)
-"V" = (
-/turf/closed/mineral/random/whitesands,
-/area/ruin)
-"W" = (
-/obj/structure/sign/poster/official/obey,
-/turf/closed/wall/mineral/sandstone,
-/area/ruin)
-"X" = (
-/turf/closed/wall/mineral/sandstone,
-/area/ruin)
-"Y" = (
-/obj/structure/sign/poster/official/nanotrasen_logo,
-/turf/closed/wall/mineral/sandstone,
-/area/ruin)
-"Z" = (
-/turf/open/floor/plating/asteroid/whitesands/dried,
-/area/overmap_encounter/planetoid/sand/explored)
-
-(1,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(2,1,1) = {"
-a
-a
-a
-a
-q
-q
-S
-a
-a
-a
-a
-a
-a
-"}
-(3,1,1) = {"
-a
-a
-q
-q
-q
-q
-Z
-Z
-a
-a
-a
-a
-a
-"}
-(4,1,1) = {"
-V
-o
-q
-k
-q
-q
-E
-K
-Q
-Q
-Q
-Q
-Q
-"}
-(5,1,1) = {"
-V
-V
-b
-b
-z
-b
-b
-X
-n
-H
-X
-Q
-Q
-"}
-(6,1,1) = {"
-V
-V
-z
-z
-z
-v
-z
-e
-r
-d
-I
-Q
-Q
-"}
-(7,1,1) = {"
-V
-U
-z
-z
-z
-z
-z
-X
-u
-z
-Y
-Q
-Q
-"}
-(8,1,1) = {"
-V
-i
-z
-z
-z
-z
-z
-M
-u
-z
-N
-X
-Q
-"}
-(9,1,1) = {"
-V
-V
-z
-z
-z
-z
-z
-W
-u
-u
-T
-p
-Q
-"}
-(10,1,1) = {"
-V
-V
-J
-z
-z
-z
-h
-x
-j
-u
-g
-P
-Q
-"}
-(11,1,1) = {"
-V
-V
-b
-b
-z
-b
-b
-X
-X
-L
-X
-X
-Q
-"}
-(12,1,1) = {"
-V
-V
-f
-m
-m
-m
-m
-E
-Q
-Q
-Q
-Q
-Q
-"}
-(13,1,1) = {"
-a
-a
-q
-q
-q
-q
-q
-q
-a
-a
-a
-a
-a
-"}
-(14,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(15,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(16,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
diff --git a/_maps/RandomRuins/SandRuins/whitesands_surface_conveniencestore.dmm b/_maps/RandomRuins/SandRuins/whitesands_surface_conveniencestore.dmm
deleted file mode 100644
index 9d32745de14..00000000000
--- a/_maps/RandomRuins/SandRuins/whitesands_surface_conveniencestore.dmm
+++ /dev/null
@@ -1,592 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"aX" = (
-/obj/structure/rack,
-/obj/item/instrument/guitar{
- pixel_x = 2;
- pixel_y = 4
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-"bd" = (
-/obj/machinery/door/airlock/public{
- dir = 4
- },
-/obj/structure/fans/tiny,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-"by" = (
-/obj/item/cigbutt{
- pixel_x = -9;
- pixel_y = -2
- },
-/turf/open/floor/plating/asteroid/whitesands,
-/area/overmap_encounter/planetoid/sand/explored)
-"cD" = (
-/obj/item/chair{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-"cJ" = (
-/obj/item/trash/can{
- pixel_x = -3;
- pixel_y = -6
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-"fd" = (
-/obj/structure/sign/poster/official/bless_this_spess,
-/turf/closed/wall/material,
-/area/ruin/unpowered)
-"ff" = (
-/turf/open/floor/plating/asteroid/whitesands,
-/area/overmap_encounter/planetoid/sand/explored)
-"fo" = (
-/obj/structure/rack,
-/obj/item/toy/plush/moth{
- pixel_x = -4
- },
-/obj/item/toy/plush/lizardplushie{
- pixel_x = 8;
- pixel_y = -1
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-"kN" = (
-/obj/structure/rack,
-/obj/machinery/light/broken/directional/north,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-"lu" = (
-/obj/structure/sign/poster/contraband/donut_corp,
-/turf/closed/wall/material,
-/area/ruin/unpowered)
-"lS" = (
-/turf/closed/wall/material,
-/area/ruin/unpowered)
-"mF" = (
-/obj/structure/table,
-/obj/structure/window{
- dir = 8
- },
-/obj/item/reagent_containers/food/drinks/bottle/sarsaparilla,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-"nB" = (
-/mob/living/simple_animal/hostile/cockroach,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-"pd" = (
-/obj/item/kitchen/knife{
- pixel_x = 6;
- pixel_y = 1
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-"rk" = (
-/obj/item/cigbutt,
-/obj/item/cigbutt{
- pixel_x = -8;
- pixel_y = 8
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/mob/living/simple_animal/hostile/cockroach,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-"sP" = (
-/obj/structure/rack,
-/obj/item/kitchen/knife/plastic{
- pixel_x = -5
- },
-/obj/item/kitchen/spoon/plastic{
- pixel_x = 15
- },
-/obj/item/kitchen/fork/plastic{
- pixel_x = 1
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-"sQ" = (
-/obj/item/trash/popcorn{
- pixel_x = 8
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-"tJ" = (
-/obj/structure/rack,
-/obj/item/cane,
-/obj/item/clothing/head/bowler{
- pixel_x = -5;
- pixel_y = 4
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-"ut" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/toy/plush/slimeplushie{
- pixel_x = -5;
- pixel_y = -2
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-"ux" = (
-/turf/template_noop,
-/area/template_noop)
-"uM" = (
-/obj/machinery/vending/snack/random,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-"wd" = (
-/obj/structure/table,
-/obj/machinery/light/small/directional/north,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/spacecash/bundle/c100{
- pixel_x = 1;
- pixel_y = 10
- },
-/obj/item/spacecash/bundle/c100{
- pixel_x = 1
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-"wp" = (
-/obj/structure/sign/poster/contraband/energy_swords,
-/turf/closed/wall/material,
-/area/ruin/unpowered)
-"xo" = (
-/obj/item/cigbutt{
- pixel_x = -11;
- pixel_y = -2
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-"xv" = (
-/obj/structure/rack,
-/obj/item/paicard{
- pixel_y = 2
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-"yQ" = (
-/obj/structure/rack,
-/obj/item/reagent_containers/food/snacks/syndicake{
- pixel_x = -1;
- pixel_y = 4
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-"yX" = (
-/obj/structure/rack,
-/obj/item/poster/random_retro,
-/obj/item/poster/random_retro{
- pixel_x = 1;
- pixel_y = 8
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-"zP" = (
-/obj/machinery/door/airlock,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-"BK" = (
-/obj/item/trash/can{
- icon_state = "shamblers";
- pixel_x = -6;
- pixel_y = 4
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-"Cy" = (
-/obj/structure/table,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-"FT" = (
-/turf/closed/wall,
-/area/ruin/unpowered)
-"FX" = (
-/obj/machinery/vending/cola/random,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-"Gr" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/trash/candy{
- pixel_x = 1;
- pixel_y = 5
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-"GO" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/light/broken/directional/west,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-"IJ" = (
-/obj/effect/decal/remains/human{
- pixel_x = 1
- },
-/obj/effect/decal/cleanable/blood/old,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-"Kr" = (
-/obj/structure/rack,
-/obj/item/toy/plush/hornet/gay,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-"KZ" = (
-/obj/structure/sign/poster/contraband/starkist,
-/turf/closed/wall/material,
-/area/ruin/unpowered)
-"LZ" = (
-/obj/structure/rack,
-/obj/item/clothing/mask/gas/clown_hat{
- pixel_y = 6
- },
-/obj/item/clothing/mask/gas/clown_hat,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-"Mu" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/barricade/wooden/crude,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"MZ" = (
-/obj/structure/rack,
-/obj/item/clothing/under/pants/khaki{
- pixel_y = 2
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-"Qd" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/vomit/old,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-"Tr" = (
-/obj/structure/table,
-/obj/structure/window,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-"Uk" = (
-/obj/structure/rack,
-/obj/item/bikehorn{
- pixel_x = -6;
- pixel_y = 6
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-"UZ" = (
-/obj/structure/table,
-/obj/structure/window,
-/obj/structure/window{
- dir = 8
- },
-/obj/item/reagent_containers/food/snacks/pizzaslice/custom{
- pixel_x = -1;
- pixel_y = 3
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-"VD" = (
-/obj/item/cigbutt{
- pixel_x = -7;
- pixel_y = 10
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/light/directional/north,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-"We" = (
-/obj/item/trash/chips{
- pixel_x = 1
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-"Wp" = (
-/obj/structure/sign/poster/contraband/clown,
-/turf/closed/wall,
-/area/ruin/unpowered)
-"Wr" = (
-/obj/structure/rack,
-/obj/item/toy/sword{
- pixel_x = 4;
- pixel_y = 6
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-"Wt" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-"WJ" = (
-/obj/machinery/door/window/southright,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-"WU" = (
-/obj/item/trash/pistachios,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-"Xd" = (
-/obj/structure/rack,
-/obj/item/reagent_containers/food/snacks/canned/beans{
- pixel_x = 1;
- pixel_y = 9
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-"XR" = (
-/obj/structure/rack,
-/obj/effect/decal/cleanable/cobweb,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-"Yd" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/mob/living/simple_animal/hostile/cockroach,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-"Yf" = (
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-"YE" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/closet/crate/bin,
-/obj/machinery/light/broken/directional/south,
-/obj/item/toy/plush/among,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-"Zu" = (
-/obj/structure/rack,
-/obj/item/reagent_containers/food/drinks/waterbottle{
- pixel_x = 9;
- pixel_y = 4
- },
-/obj/item/reagent_containers/food/drinks/waterbottle{
- pixel_x = -9;
- pixel_y = 4
- },
-/obj/item/reagent_containers/food/drinks/waterbottle{
- pixel_y = 4
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-"ZA" = (
-/obj/structure/rack,
-/obj/item/lighter/greyscale{
- pixel_x = -4
- },
-/obj/item/lighter/greyscale{
- pixel_x = 5
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-
-(1,1,1) = {"
-ux
-ux
-ux
-ux
-ux
-ux
-ux
-ux
-ux
-ux
-ux
-ux
-ux
-"}
-(2,1,1) = {"
-ux
-ux
-ux
-ux
-ff
-ff
-ff
-by
-ff
-ux
-ux
-ux
-ux
-"}
-(3,1,1) = {"
-ux
-lS
-lS
-lS
-Mu
-Mu
-bd
-Mu
-Mu
-lS
-lS
-FT
-ux
-"}
-(4,1,1) = {"
-ux
-fd
-XR
-Yf
-WU
-Wt
-Yf
-Wt
-Yf
-GO
-fo
-Wp
-ux
-"}
-(5,1,1) = {"
-ux
-lS
-yX
-Wt
-aX
-nB
-Wt
-sQ
-Xd
-ut
-Kr
-lS
-ux
-"}
-(6,1,1) = {"
-ux
-lS
-kN
-Wt
-xv
-Qd
-MZ
-Wt
-yQ
-Yf
-Wr
-wp
-ux
-"}
-(7,1,1) = {"
-ux
-lS
-ZA
-Gr
-tJ
-Yf
-cJ
-Wt
-Zu
-Wt
-Uk
-FT
-ux
-"}
-(8,1,1) = {"
-ux
-lS
-sP
-Yd
-Wt
-Wt
-Wt
-Yf
-Wt
-Yd
-LZ
-FT
-ux
-"}
-(9,1,1) = {"
-ux
-lS
-lS
-lS
-lu
-mF
-Cy
-UZ
-Yf
-We
-YE
-lS
-ux
-"}
-(10,1,1) = {"
-ux
-lS
-wd
-pd
-lS
-VD
-rk
-Tr
-Wt
-Yf
-uM
-lS
-ux
-"}
-(11,1,1) = {"
-ux
-lS
-cD
-IJ
-zP
-xo
-Yf
-WJ
-BK
-Wt
-FX
-FT
-ux
-"}
-(12,1,1) = {"
-ux
-lS
-lS
-lS
-lS
-lS
-lS
-lS
-lS
-KZ
-lS
-lS
-ux
-"}
-(13,1,1) = {"
-ux
-ux
-ux
-ux
-ux
-ux
-ux
-ux
-ux
-ux
-ux
-ux
-ux
-"}
diff --git a/_maps/RandomRuins/SandRuins/whitesands_surface_medipen_plant.dmm b/_maps/RandomRuins/SandRuins/whitesands_surface_medipen_plant.dmm
index e9d9c42c302..7ae333dcd54 100644
--- a/_maps/RandomRuins/SandRuins/whitesands_surface_medipen_plant.dmm
+++ b/_maps/RandomRuins/SandRuins/whitesands_surface_medipen_plant.dmm
@@ -238,7 +238,6 @@
/obj/item/shard{
icon_state = "small"
},
-/obj/item/construction/plumbing,
/obj/item/wrench,
/obj/effect/turf_decal/industrial/warning{
dir = 8
@@ -353,11 +352,8 @@
/turf/open/floor/plating,
/area/ruin/powered)
"iq" = (
-/obj/machinery/chem_dispenser,
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
+/obj/effect/turf_decal/box,
+/turf/open/floor/engine,
/area/ruin/powered)
"ir" = (
/obj/effect/decal/cleanable/dirt,
@@ -486,7 +482,7 @@
/area/ruin/powered)
"lM" = (
/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/machinery/quantumpad,
+/obj/machinery/ltsrbt,
/turf/open/floor/engine,
/area/ruin/powered)
"lO" = (
@@ -634,18 +630,14 @@
/turf/open/floor/plasteel/white,
/area/ruin/powered)
"qI" = (
-/obj/machinery/chem_dispenser,
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
+/obj/effect/turf_decal/box,
+/obj/machinery/chem_heater,
+/turf/open/floor/engine,
/area/ruin/powered)
"qK" = (
-/obj/machinery/chem_master,
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/plumbing/synthesizer,
+/turf/open/floor/plating,
/area/ruin/powered)
"qL" = (
/obj/structure/rack,
@@ -681,13 +673,8 @@
/turf/open/floor/plating,
/area/ruin/powered)
"rH" = (
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/corner/transparent/neutral,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/vending/mining_equipment,
-/turf/open/floor/plasteel/dark,
+/obj/machinery/plumbing/output,
+/turf/open/floor/plasteel/white,
/area/ruin/powered)
"rN" = (
/turf/open/floor/plating{
@@ -856,12 +843,12 @@
/turf/open/floor/plasteel/dark,
/area/ruin/powered)
"wW" = (
-/obj/machinery/vending/boozeomat,
/obj/effect/turf_decal/corner/transparent/neutral{
dir = 1
},
/obj/effect/turf_decal/corner/transparent/neutral,
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/vending/snack/random,
/turf/open/floor/plasteel/dark,
/area/ruin/powered)
"xd" = (
@@ -888,12 +875,10 @@
/turf/open/floor/plasteel/dark,
/area/ruin/powered)
"xW" = (
-/obj/machinery/chem_master,
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
+/obj/machinery/plumbing/synthesizer,
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
},
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/white,
/area/ruin/powered)
"yc" = (
/obj/structure/door_assembly/door_assembly_research{
@@ -905,13 +890,12 @@
},
/area/ruin/powered)
"yg" = (
-/obj/machinery/vending/snack/random,
-/obj/effect/turf_decal/corner/transparent/neutral{
+/obj/structure/closet/secure_closet/chemical,
+/obj/effect/turf_decal/industrial/warning{
dir = 1
},
-/obj/effect/turf_decal/corner/transparent/neutral,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/dark,
+/obj/item/construction/plumbing,
+/turf/open/floor/plasteel/white,
/area/ruin/powered)
"yx" = (
/obj/effect/turf_decal/corner/transparent/neutral{
@@ -1053,7 +1037,6 @@
/turf/open/floor/plating,
/area/ruin/powered)
"Dt" = (
-/obj/machinery/chem_heater,
/obj/effect/turf_decal/industrial/warning{
dir = 6
},
@@ -1127,7 +1110,6 @@
icon_state = "small"
},
/obj/item/shard,
-/obj/item/construction/plumbing,
/obj/item/wrench,
/obj/effect/turf_decal/industrial/warning{
dir = 4
@@ -1180,6 +1162,13 @@
"Jb" = (
/turf/closed/wall,
/area/ruin/powered)
+"Jd" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/plumbing/synthesizer,
+/turf/open/floor/plating{
+ icon_state = "platingdmg1"
+ },
+/area/ruin/powered)
"Jm" = (
/obj/machinery/light/directional/south,
/obj/structure/cable{
@@ -1623,12 +1612,9 @@
/turf/open/floor/plating,
/area/ruin/powered)
"WR" = (
-/obj/machinery/vending/cola/random,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/corner/transparent/neutral,
-/turf/open/floor/plasteel/dark,
+/obj/effect/turf_decal/box,
+/obj/machinery/chem_master,
+/turf/open/floor/engine,
/area/ruin/powered)
"WS" = (
/obj/structure/table,
@@ -1659,7 +1645,6 @@
/turf/open/floor/plasteel/dark,
/area/ruin/powered)
"Yp" = (
-/obj/machinery/chem_heater,
/obj/effect/turf_decal/industrial/warning{
dir = 10
},
@@ -1667,13 +1652,14 @@
/turf/open/floor/plasteel/white,
/area/ruin/powered)
"YA" = (
-/obj/machinery/vending/medical,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/corner/transparent/neutral,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/dark,
+/obj/machinery/plumbing/pill_press,
+/turf/open/floor/plasteel/white,
+/area/ruin/powered)
+"YE" = (
+/obj/effect/turf_decal/box,
+/obj/machinery/chem_dispenser,
+/turf/open/floor/engine,
/area/ruin/powered)
"YH" = (
/obj/effect/spawner/structure/window,
@@ -1846,8 +1832,8 @@ mK
fg
Gz
sO
-iq
-xW
+Gz
+sO
Yp
Jb
Mb
@@ -1901,7 +1887,7 @@ fO
Go
UH
oH
-Bb
+Jd
Eh
eI
BH
@@ -1909,7 +1895,7 @@ eI
Tb
UH
oH
-oH
+YA
UH
Go
Mb
@@ -1971,12 +1957,12 @@ Nb
WE
Db
oH
-ad
+rH
Dr
az
Ci
Zx
-Ci
+YE
Fd
hK
az
@@ -2007,7 +1993,7 @@ Te
az
Zt
Fd
-Ci
+WR
Fd
ef
az
@@ -2038,7 +2024,7 @@ Te
az
cG
Fd
-hK
+qI
Fd
Ci
az
@@ -2054,7 +2040,7 @@ WS
KQ
qE
Go
-hn
+yg
oH
WE
nQ
@@ -2201,9 +2187,9 @@ az
(15,1,1) = {"
Mb
Jb
-rH
sE
-YA
+sE
+sE
OO
OO
uP
@@ -2232,9 +2218,9 @@ az
(16,1,1) = {"
Mb
Go
-yg
sE
-WR
+sE
+bu
OO
ZM
cZ
@@ -2255,7 +2241,7 @@ np
az
hK
Fd
-hK
+iq
Fd
hK
az
@@ -2281,12 +2267,12 @@ Mq
zk
Lc
Bb
-ir
+qK
np
az
Zt
Fd
-Ci
+iq
Zx
hL
az
@@ -2317,7 +2303,7 @@ cl
az
pw
Fd
-Ci
+iq
Fd
cM
az
@@ -2334,7 +2320,7 @@ Go
Go
Go
rN
-rN
+xW
UH
ad
Nb
@@ -2405,7 +2391,7 @@ ir
ad
zk
ad
-ad
+lO
Te
Go
Mb
@@ -2435,8 +2421,8 @@ hX
zQ
UH
vI
-qI
-qK
+vI
+vI
Dt
Jb
Mb
diff --git a/_maps/RandomRuins/SandRuins/whitesands_surface_onlyaspoonful.dmm b/_maps/RandomRuins/SandRuins/whitesands_surface_onlyaspoonful.dmm
deleted file mode 100644
index f74a8895976..00000000000
--- a/_maps/RandomRuins/SandRuins/whitesands_surface_onlyaspoonful.dmm
+++ /dev/null
@@ -1,1062 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"aa" = (
-/obj/item/kitchen/spoon/plastic{
- pixel_x = 10
- },
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"aU" = (
-/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"aW" = (
-/obj/item/stack/medical/bruise_pack,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"bd" = (
-/turf/open/floor/plating/asteroid/whitesands,
-/area/overmap_encounter/planetoid/sand/explored)
-"bf" = (
-/obj/structure/chair/office{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"bh" = (
-/obj/structure/filingcabinet/security,
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"bo" = (
-/obj/effect/decal/cleanable/blood/gibs/core,
-/obj/item/kitchen/knife/combat,
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"bz" = (
-/obj/item/ammo_casing/spent{
- dir = 8;
- pixel_x = -9;
- pixel_y = -9
- },
-/obj/item/ammo_casing/spent{
- dir = 8;
- pixel_x = 3;
- pixel_y = -5
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"ct" = (
-/turf/template_noop,
-/area/template_noop)
-"dk" = (
-/obj/effect/decal/cleanable/blood/gibs,
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"dl" = (
-/turf/closed/wall/r_wall,
-/area/ruin/powered)
-"dw" = (
-/obj/effect/decal/cleanable/blood/gibs/torso{
- dir = 1
- },
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"ew" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/mob/living/simple_animal/hostile/asteroid/whitesands/survivor,
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"eH" = (
-/obj/item/ammo_casing/spent{
- dir = 1;
- pixel_x = -3;
- pixel_y = -2
- },
-/obj/item/ammo_casing/spent{
- pixel_x = -8;
- pixel_y = -7
- },
-/obj/item/ammo_casing/spent{
- dir = 8;
- pixel_x = 10;
- pixel_y = 3
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"eU" = (
-/obj/machinery/computer/security,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"eZ" = (
-/obj/item/stack/sheet/plastic/fifty,
-/obj/structure/rack,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"fm" = (
-/obj/effect/decal/cleanable/blood{
- icon_state = "floor3"
- },
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"ga" = (
-/obj/effect/decal/cleanable/blood/splatter,
-/obj/effect/decal/cleanable/blood/tracks,
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"gy" = (
-/obj/structure/rack,
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"gF" = (
-/obj/effect/mob_spawn/human/corpse/syndicatesoldier,
-/obj/effect/decal/cleanable/blood{
- icon_state = "floor2"
- },
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"gG" = (
-/obj/item/kitchen/spoon/plastic{
- pixel_x = 13;
- pixel_y = 1
- },
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"gK" = (
-/obj/structure/closet/crate/secure,
-/obj/item/kitchen/spoon/plastic,
-/obj/item/kitchen/spoon/plastic,
-/obj/item/kitchen/spoon/plastic,
-/obj/item/kitchen/spoon/plastic,
-/obj/item/kitchen/spoon/plastic,
-/obj/item/kitchen/spoon/plastic,
-/obj/item/kitchen/spoon/plastic,
-/obj/item/kitchen/spoon/plastic,
-/obj/item/kitchen/spoon/plastic,
-/obj/item/kitchen/spoon/plastic,
-/obj/item/kitchen/spoon/plastic,
-/obj/machinery/light/broken/directional/north,
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"hs" = (
-/obj/structure/closet/crate/secure,
-/obj/item/kitchen/spoon/plastic,
-/obj/item/kitchen/spoon/plastic,
-/obj/item/kitchen/spoon/plastic,
-/obj/item/kitchen/spoon/plastic,
-/obj/item/kitchen/spoon/plastic,
-/obj/item/kitchen/spoon/plastic,
-/obj/item/kitchen/spoon/plastic,
-/obj/item/kitchen/spoon/plastic,
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"hw" = (
-/mob/living/simple_animal/hostile/asteroid/whitesands/ranged/hunter,
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"hA" = (
-/obj/item/ammo_casing/spent{
- pixel_y = 3
- },
-/obj/item/ammo_casing/spent{
- dir = 8;
- pixel_x = -8;
- pixel_y = -4
- },
-/obj/item/ammo_casing/spent{
- dir = 5;
- pixel_x = 6;
- pixel_y = 8
- },
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"ia" = (
-/obj/structure/fans/tiny,
-/obj/machinery/door/poddoor{
- id = "SPOON"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"jw" = (
-/obj/item/ammo_casing/spent{
- dir = 1;
- pixel_x = 7;
- pixel_y = 6
- },
-/obj/effect/decal/cleanable/blood,
-/obj/item/ammo_box/magazine/co9mm,
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"ka" = (
-/obj/structure/closet/crate/secure,
-/obj/item/kitchen/spoon/plastic,
-/obj/item/kitchen/spoon/plastic,
-/obj/item/kitchen/spoon/plastic,
-/obj/item/kitchen/spoon/plastic,
-/obj/item/kitchen/spoon/plastic,
-/obj/item/kitchen/spoon/plastic,
-/obj/item/kitchen/spoon/plastic,
-/obj/item/kitchen/spoon/plastic,
-/obj/item/kitchen/spoon/plastic,
-/obj/item/kitchen/spoon/plastic,
-/obj/item/kitchen/spoon/plastic,
-/obj/item/kitchen/spoon/plastic,
-/obj/item/kitchen/spoon/plastic,
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"km" = (
-/obj/structure/rack,
-/obj/item/stack/sheet/plastic/fifty,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"os" = (
-/obj/structure/closet/crate/secure,
-/obj/item/kitchen/spoon/plastic,
-/obj/item/kitchen/spoon/plastic,
-/obj/item/kitchen/spoon/plastic,
-/obj/item/kitchen/spoon/plastic,
-/obj/item/kitchen/spoon/plastic,
-/obj/item/kitchen/spoon/plastic,
-/obj/item/kitchen/spoon/plastic,
-/obj/item/kitchen/spoon/plastic,
-/obj/item/kitchen/spoon/plastic,
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"oN" = (
-/obj/structure/closet/crate/secure,
-/obj/item/kitchen/spoon/plastic,
-/obj/item/kitchen/spoon/plastic,
-/obj/item/kitchen/spoon/plastic,
-/obj/item/kitchen/spoon/plastic,
-/obj/item/kitchen/spoon/plastic,
-/obj/item/kitchen/spoon/plastic,
-/obj/item/kitchen/spoon/plastic,
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"pl" = (
-/obj/structure/closet/crate/secure,
-/obj/item/kitchen/spoon/plastic,
-/obj/item/kitchen/spoon/plastic,
-/obj/item/kitchen/spoon/plastic,
-/obj/item/kitchen/spoon/plastic,
-/obj/item/kitchen/spoon/plastic,
-/obj/item/kitchen/spoon/plastic,
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"pZ" = (
-/obj/effect/mob_spawn/human/corpse/syndicatesoldier,
-/obj/effect/decal/cleanable/blood,
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"qa" = (
-/obj/machinery/icecream_vat,
-/obj/item/shovel/spoon,
-/turf/open/floor/plating/asteroid/whitesands/dried,
-/area/overmap_encounter/planetoid/sand/explored)
-"sl" = (
-/obj/item/kitchen/spoon/plastic{
- pixel_x = 11
- },
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"sv" = (
-/obj/item/kitchen/spoon/plastic{
- pixel_x = 5;
- pixel_y = -4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"tl" = (
-/obj/effect/decal/cleanable/blood{
- icon_state = "floor2"
- },
-/obj/item/bodypart/r_arm,
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"ud" = (
-/obj/machinery/door/airlock/engineering,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"uE" = (
-/turf/open/floor/plating/asteroid/whitesands/dried,
-/area/overmap_encounter/planetoid/sand/explored)
-"vO" = (
-/obj/item/ammo_casing/spent{
- dir = 9;
- pixel_x = 4;
- pixel_y = -3
- },
-/obj/item/ammo_casing/spent{
- dir = 5;
- pixel_x = -6;
- pixel_y = 8
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"vV" = (
-/obj/effect/decal/cleanable/blood/gibs/up,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"vZ" = (
-/obj/item/ammo_casing/spent{
- dir = 5;
- pixel_x = -5;
- pixel_y = -6
- },
-/obj/item/ammo_casing/spent{
- dir = 4;
- pixel_x = 8;
- pixel_y = 9
- },
-/obj/effect/decal/cleanable/blood/tracks,
-/mob/living/simple_animal/hostile/asteroid/whitesands/ranged/gunslinger,
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"wr" = (
-/obj/structure/rack,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"xd" = (
-/obj/item/grenade/syndieminibomb,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"ys" = (
-/obj/structure/rack,
-/obj/item/stack/sheet/plastic/five,
-/obj/machinery/light/broken/directional/north,
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"zb" = (
-/obj/item/ammo_casing/spent{
- dir = 4;
- pixel_x = 6;
- pixel_y = 5
- },
-/obj/item/ammo_casing/spent{
- dir = 5;
- pixel_x = -7;
- pixel_y = -7
- },
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"zM" = (
-/obj/effect/mob_spawn/human/corpse/syndicatesoldier,
-/obj/effect/decal/cleanable/blood,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"Az" = (
-/obj/effect/decal/remains/human,
-/obj/item/clothing/head/helmet,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"AE" = (
-/obj/structure/table,
-/obj/item/reagent_containers/food/snacks/donut/meat{
- pixel_x = 2;
- pixel_y = 5
- },
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"Bl" = (
-/obj/structure/closet/crate/secure,
-/obj/item/kitchen/spoon/plastic,
-/obj/item/kitchen/spoon/plastic,
-/obj/item/kitchen/spoon/plastic,
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"BR" = (
-/obj/structure/rack,
-/obj/item/stack/sheet/plastic/fifty,
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"Cb" = (
-/obj/structure/rack,
-/obj/item/stack/sheet/plastic,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"Cq" = (
-/obj/item/ammo_casing/spent{
- dir = 5;
- pixel_x = -9;
- pixel_y = 1
- },
-/obj/item/ammo_casing/spent{
- dir = 5;
- pixel_x = 8;
- pixel_y = 8
- },
-/obj/item/ammo_casing/spent{
- dir = 5;
- pixel_x = -8;
- pixel_y = -8
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"CD" = (
-/obj/item/ammo_casing/spent{
- dir = 6;
- pixel_x = 2;
- pixel_y = 4
- },
-/obj/item/ammo_casing/spent{
- dir = 4;
- pixel_x = -10;
- pixel_y = 8
- },
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"CU" = (
-/obj/structure/table,
-/obj/machinery/button/door{
- id = "SPOON"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"DM" = (
-/obj/structure/chair/office{
- dir = 4
- },
-/obj/effect/decal/remains/human,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/clothing/glasses/regular,
-/obj/machinery/light/broken/directional/west,
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"EC" = (
-/mob/living/simple_animal/hostile/asteroid/whitesands/ranged/hunter,
-/turf/open/floor/plating/asteroid/whitesands,
-/area/overmap_encounter/planetoid/sand/explored)
-"Fi" = (
-/obj/machinery/autolathe,
-/obj/machinery/camera{
- dir = 5
- },
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"FB" = (
-/turf/closed/wall/material,
-/area/ruin/powered)
-"Hi" = (
-/obj/machinery/door/airlock/security,
-/obj/effect/decal/cleanable/blood/tracks,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"Hl" = (
-/obj/effect/mob_spawn/human/corpse/nanotrasensoldier,
-/obj/effect/decal/cleanable/blood{
- icon_state = "floor6"
- },
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"HA" = (
-/obj/item/stack/sheet/plastic,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"HS" = (
-/obj/structure/closet/crate/secure,
-/obj/item/kitchen/spoon/plastic,
-/obj/item/kitchen/spoon/plastic,
-/obj/item/kitchen/spoon/plastic,
-/obj/item/kitchen/spoon/plastic,
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"Ij" = (
-/obj/item/kitchen/spoon/plastic{
- pixel_x = 13
- },
-/obj/effect/decal/cleanable/blood{
- icon_state = "floor7"
- },
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"Iy" = (
-/obj/effect/mob_spawn/human/corpse/syndicatesoldier,
-/obj/effect/decal/cleanable/blood{
- icon_state = "floor6"
- },
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"IH" = (
-/turf/closed/wall/rust,
-/area/ruin/powered)
-"Jb" = (
-/obj/machinery/light/broken/directional/south,
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"Jm" = (
-/obj/machinery/camera,
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"Jt" = (
-/obj/effect/decal/cleanable/blood{
- icon_state = "floor5"
- },
-/obj/item/bodypart/head,
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"Ke" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/light/broken/directional/east,
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"KY" = (
-/obj/effect/mob_spawn/human/corpse/nanotrasensoldier,
-/obj/effect/decal/cleanable/blood,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"Lm" = (
-/obj/item/gun/ballistic/automatic/pistol,
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 5
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"Lz" = (
-/turf/closed/mineral/random/whitesands,
-/area/overmap_encounter/planetoid/sand/explored)
-"Me" = (
-/obj/item/ammo_casing/spent{
- dir = 8;
- pixel_x = -6;
- pixel_y = 5
- },
-/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"Mu" = (
-/obj/effect/decal/cleanable/blood/tracks,
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"MG" = (
-/turf/closed/wall/r_wall/rust,
-/area/ruin/powered)
-"Nd" = (
-/obj/effect/decal/cleanable/blood/gibs/limb{
- dir = 8
- },
-/obj/effect/decal/cleanable/blood/gibs/limb{
- dir = 1;
- pixel_x = 18;
- pixel_y = 5
- },
-/obj/effect/decal/cleanable/blood,
-/obj/item/ammo_box/magazine/m10mm,
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"NP" = (
-/obj/item/paper_bin,
-/obj/structure/table,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"Oo" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/light/broken/directional/west,
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"OJ" = (
-/obj/item/ammo_casing/spent{
- dir = 5;
- pixel_y = -6
- },
-/obj/item/ammo_casing/spent{
- pixel_x = -11;
- pixel_y = 1
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"Pi" = (
-/obj/effect/decal/cleanable/blood/splatter{
- icon_state = "gibbl5"
- },
-/obj/item/ammo_box/magazine/wt550m9,
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"Qm" = (
-/obj/item/ammo_casing/spent{
- dir = 8;
- pixel_x = -7;
- pixel_y = 7
- },
-/obj/item/ammo_casing/spent{
- dir = 6;
- pixel_x = 8;
- pixel_y = -3
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"Qp" = (
-/obj/structure/closet/crate/secure,
-/obj/item/kitchen/spoon/plastic,
-/obj/item/kitchen/spoon/plastic,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"Ro" = (
-/obj/machinery/door/airlock/glass,
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"Rz" = (
-/obj/machinery/door/airlock/highsecurity,
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"RG" = (
-/obj/item/ammo_casing/spent{
- dir = 10;
- pixel_x = -4;
- pixel_y = 5
- },
-/obj/item/ammo_casing/spent{
- dir = 5;
- pixel_x = -10;
- pixel_y = -10
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"RN" = (
-/obj/machinery/camera,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"Sr" = (
-/obj/item/ammo_casing/spent{
- dir = 1;
- pixel_x = 12;
- pixel_y = -3
- },
-/obj/item/ammo_casing/spent{
- dir = 5;
- pixel_x = 6;
- pixel_y = -9
- },
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"Sw" = (
-/obj/effect/decal/remains/human,
-/obj/item/clothing/head/hardhat/weldhat/orange,
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"ST" = (
-/obj/item/ammo_casing/spent{
- dir = 5;
- pixel_x = 4;
- pixel_y = 7
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"Tt" = (
-/obj/item/gun/ballistic/automatic/pistol/commander,
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"TA" = (
-/obj/structure/fluff/paper/stack{
- dir = 4;
- pixel_y = -1
- },
-/obj/structure/table,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"TD" = (
-/obj/effect/decal/cleanable/blood/tracks,
-/turf/closed/wall/r_wall/rust,
-/area/ruin/powered)
-"TM" = (
-/obj/item/kitchen/spoon/plastic{
- pixel_x = 7;
- pixel_y = 4
- },
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"VR" = (
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"WA" = (
-/obj/machinery/camera{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"XL" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/light/broken/directional/north,
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"Ze" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plastic,
-/area/ruin/powered)
-"Zr" = (
-/obj/effect/mob_spawn/human/corpse/nanotrasensoldier,
-/obj/effect/decal/cleanable/blood{
- icon_state = "floor4"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plastic,
-/area/ruin/powered)
-
-(1,1,1) = {"
-ct
-ct
-ct
-ct
-ct
-ct
-ct
-Lz
-Lz
-Lz
-ct
-ct
-ct
-ct
-ct
-ct
-ct
-ct
-"}
-(2,1,1) = {"
-ct
-ct
-ct
-ct
-ct
-ct
-ct
-Lz
-qa
-Lz
-ct
-ct
-FB
-IH
-FB
-IH
-FB
-ct
-"}
-(3,1,1) = {"
-ct
-ct
-ct
-ct
-ct
-ct
-ct
-Lz
-Lz
-Lz
-ct
-ct
-FB
-Ze
-DM
-Ze
-IH
-ct
-"}
-(4,1,1) = {"
-ct
-dl
-MG
-dl
-dl
-MG
-MG
-dl
-dl
-dl
-MG
-dl
-MG
-ew
-TA
-NP
-FB
-bd
-"}
-(5,1,1) = {"
-ct
-MG
-BR
-ew
-Fi
-dl
-Ze
-VR
-Oo
-VR
-jw
-zb
-Rz
-Ze
-Ze
-Ze
-Ro
-bd
-"}
-(6,1,1) = {"
-ct
-MG
-wr
-Ze
-Ze
-MG
-eH
-Ze
-Zr
-dk
-sv
-WA
-MG
-RN
-Ze
-Ze
-IH
-bd
-"}
-(7,1,1) = {"
-ct
-dl
-ys
-Ze
-HA
-ud
-Pi
-hs
-Tt
-Me
-Ze
-KY
-MG
-MG
-IH
-FB
-IH
-bd
-"}
-(8,1,1) = {"
-ct
-dl
-Cb
-Sw
-Ze
-dl
-Hl
-Ze
-Ze
-hs
-HS
-VR
-Ze
-Jt
-MG
-Lz
-uE
-uE
-"}
-(9,1,1) = {"
-ct
-TD
-eZ
-gy
-km
-MG
-sl
-Cq
-os
-vV
-Ze
-Ze
-ka
-Ze
-dl
-uE
-uE
-ct
-"}
-(10,1,1) = {"
-ct
-dl
-MG
-dl
-MG
-MG
-gK
-Ze
-tl
-VR
-TM
-fm
-Nd
-Jb
-MG
-bd
-bd
-ct
-"}
-(11,1,1) = {"
-ct
-MG
-bh
-xd
-aW
-MG
-Ze
-aU
-RG
-Ze
-vO
-VR
-VR
-hA
-ia
-bd
-EC
-ct
-"}
-(12,1,1) = {"
-ct
-dl
-AE
-zM
-aU
-MG
-Ij
-bz
-pl
-OJ
-bo
-HS
-VR
-dk
-ia
-bd
-bd
-ct
-"}
-(13,1,1) = {"
-ct
-dl
-XL
-Lm
-Mu
-Hi
-ga
-vZ
-Mu
-pZ
-gG
-Sr
-gF
-VR
-ia
-bd
-bd
-ct
-"}
-(14,1,1) = {"
-ct
-MG
-eU
-bf
-Az
-dl
-Jm
-Iy
-Ze
-Qm
-ST
-Ze
-Ze
-Bl
-MG
-bd
-bd
-ct
-"}
-(15,1,1) = {"
-ct
-dl
-CU
-hw
-Ze
-dl
-Qp
-Ze
-CD
-Ke
-oN
-dw
-aa
-Ze
-dl
-ct
-ct
-ct
-"}
-(16,1,1) = {"
-ct
-dl
-MG
-MG
-dl
-MG
-MG
-dl
-MG
-dl
-MG
-MG
-dl
-MG
-dl
-ct
-ct
-ct
-"}
-(17,1,1) = {"
-ct
-ct
-ct
-ct
-ct
-ct
-ct
-ct
-ct
-ct
-ct
-ct
-ct
-ct
-ct
-ct
-ct
-ct
-"}
diff --git a/_maps/RandomRuins/SandRuins/whitesands_surface_pubbyslopcrash.dmm b/_maps/RandomRuins/SandRuins/whitesands_surface_pubbyslopcrash.dmm
index 209709f2599..e664dfec8d9 100644
--- a/_maps/RandomRuins/SandRuins/whitesands_surface_pubbyslopcrash.dmm
+++ b/_maps/RandomRuins/SandRuins/whitesands_surface_pubbyslopcrash.dmm
@@ -804,7 +804,7 @@
/obj/effect/decal/fakelattice{
icon_state = "lattice-2"
},
-/mob/living/simple_animal/hostile/asteroid/whitesands/survivor{
+/mob/living/simple_animal/hostile/human/hermit/survivor{
dir = 1;
faction = list("adobe");
desc = " A wild-eyed figure, wearing tattered mining equipment and boasting a malformed body, twisted by the heavy metals and high background radiation of the sandworlds. Their helmet also seems to be filled with vomit"
@@ -1003,7 +1003,7 @@
/turf/open/floor/plasteel/tech,
/area/ruin/whitesands/pubbycrash/engine_room)
"xc" = (
-/mob/living/simple_animal/hostile/asteroid/whitesands/survivor{
+/mob/living/simple_animal/hostile/human/hermit/survivor{
dir = 4
},
/turf/open/floor/plating/asteroid/whitesands/lit,
@@ -1145,7 +1145,7 @@
},
/obj/effect/decal/cleanable/dirt/dust,
/obj/machinery/light/directional/west,
-/mob/living/simple_animal/hostile/asteroid/whitesands/survivor{
+/mob/living/simple_animal/hostile/human/hermit/survivor{
dir = 1;
faction = list("saloon")
},
@@ -1744,7 +1744,7 @@
/obj/effect/turf_decal/spline/fancy/opaque/black{
dir = 1
},
-/mob/living/simple_animal/hostile/asteroid/whitesands/survivor{
+/mob/living/simple_animal/hostile/human/hermit/survivor{
faction = list("saloon")
},
/turf/open/floor/plasteel/dark,
@@ -1777,7 +1777,7 @@
/obj/effect/turf_decal/ntspaceworks_small/left{
dir = 4
},
-/mob/living/simple_animal/hostile/asteroid/whitesands/survivor{
+/mob/living/simple_animal/hostile/human/hermit/survivor{
dir = 4;
faction = list("saloon")
},
@@ -1946,7 +1946,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/decal/cleanable/vomit/old,
-/mob/living/simple_animal/hostile/asteroid/whitesands/survivor{
+/mob/living/simple_animal/hostile/human/hermit/survivor{
dir = 1;
faction = list("saloon")
},
@@ -1969,7 +1969,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 1
},
-/mob/living/simple_animal/hostile/asteroid/whitesands/survivor{
+/mob/living/simple_animal/hostile/human/hermit/survivor{
dir = 4;
faction = list("adobe");
desc = " A wild-eyed figure, wearing tattered mining equipment and boasting a malformed body, twisted by the heavy metals and high background radiation of the sandworlds. Their helmet also seems to be filled with vomit"
@@ -2060,7 +2060,7 @@
/turf/open/floor/plating/asteroid/whitesands/dried,
/area/overmap_encounter/planetoid/cave/explored)
"Qo" = (
-/mob/living/simple_animal/hostile/asteroid/whitesands/ranged,
+/mob/living/simple_animal/hostile/human/hermit/ranged,
/turf/open/floor/plating/asteroid/whitesands/dried,
/area/overmap_encounter/planetoid/cave/explored)
"Qu" = (
diff --git a/_maps/RandomRuins/SandRuins/whitesands_surface_starfurycrash.dmm b/_maps/RandomRuins/SandRuins/whitesands_surface_starfurycrash.dmm
deleted file mode 100644
index bc861602805..00000000000
--- a/_maps/RandomRuins/SandRuins/whitesands_surface_starfurycrash.dmm
+++ /dev/null
@@ -1,1557 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"ad" = (
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/machinery/portable_atmospherics/canister/toxins,
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/overmap_encounter/planetoid/cave/explored)
-"aE" = (
-/obj/effect/turf_decal/corner/opaque/yellow{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/overmap_encounter/planetoid/cave/explored)
-"ba" = (
-/obj/machinery/atmospherics/pipe/manifold/cyan/visible,
-/turf/open/floor/engine{
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"bJ" = (
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/machinery/portable_atmospherics/canister/toxins,
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/overmap_encounter/planetoid/cave/explored)
-"cS" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible,
-/turf/open/floor/plating{
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"dX" = (
-/obj/item/gun/ballistic/automatic/pistol{
- spawnwithmagazine = 0
- },
-/turf/open/floor/plating/asteroid/whitesands,
-/area/overmap_encounter/planetoid/cave/explored)
-"eg" = (
-/obj/effect/turf_decal/industrial/traffic{
- dir = 4
- },
-/turf/open/floor/engine{
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"eO" = (
-/obj/item/clothing/gloves/combat,
-/turf/open/floor/plating/asteroid/whitesands,
-/area/overmap_encounter/planetoid/cave/explored)
-"eS" = (
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/overmap_encounter/planetoid/cave/explored)
-"fw" = (
-/obj/structure/frame/machine,
-/obj/item/stack/cable_coil/cut/blue,
-/turf/open/floor/mineral/plastitanium/red{
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"fA" = (
-/obj/effect/turf_decal/industrial/traffic{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 5
- },
-/turf/open/floor/engine{
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"fH" = (
-/obj/effect/turf_decal/industrial/traffic{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 8
- },
-/turf/open/floor/engine{
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"fM" = (
-/turf/closed/wall/r_wall/syndicate,
-/area/overmap_encounter/planetoid/cave/explored)
-"fU" = (
-/obj/item/stack/sheet/metal,
-/obj/item/stack/sheet/metal,
-/obj/item/stack/sheet/metal,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 8
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg1";
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"fW" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
- dir = 1
- },
-/turf/open/floor/plating/asteroid/whitesands,
-/area/overmap_encounter/planetoid/cave/explored)
-"gt" = (
-/obj/machinery/atmospherics/components/binary/pump,
-/turf/open/floor/plating{
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"ho" = (
-/obj/effect/turf_decal/industrial/traffic{
- dir = 1
- },
-/turf/open/floor/engine{
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"hz" = (
-/obj/item/storage/toolbox/syndicate,
-/turf/open/floor/engine{
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"hG" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 4
- },
-/turf/open/floor/plating{
- icon_state = "panelscorched";
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"hQ" = (
-/obj/structure/chair/comfy,
-/turf/open/floor/plating{
- icon_state = "panelscorched";
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"ih" = (
-/obj/effect/turf_decal/industrial/traffic{
- dir = 4
- },
-/mob/living/simple_animal/hostile/syndicate/ranged/smg/space,
-/turf/open/floor/engine{
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"il" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers,
-/turf/open/floor/plating{
- icon_state = "panelscorched";
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"iq" = (
-/obj/effect/turf_decal/industrial/traffic{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers,
-/turf/open/floor/engine{
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"jd" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 10
- },
-/turf/open/floor/plating{
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"jf" = (
-/turf/open/floor/mineral/plastitanium/red{
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"jI" = (
-/turf/closed/mineral/random/whitesands,
-/area/overmap_encounter/planetoid/cave/explored)
-"kN" = (
-/obj/item/stack/sheet/metal,
-/turf/open/floor/plating{
- icon_state = "platingdmg1";
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"kW" = (
-/obj/effect/decal/cleanable/ash/large,
-/turf/open/floor/plating{
- icon_state = "panelscorched";
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"kZ" = (
-/turf/open/floor/plating{
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"lx" = (
-/obj/effect/turf_decal/corner/opaque/blue,
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/overmap_encounter/planetoid/cave/explored)
-"lN" = (
-/obj/item/clothing/head/hardhat/red{
- desc = "A piece of headgear used in dangerous working conditions to protect the head. On closer inspection it apears to be a regular hardhat painted red.";
- name = "syndicate hardhat"
- },
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 8
- },
-/turf/open/floor/plating{
- icon_state = "panelscorched";
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"mv" = (
-/mob/living/simple_animal/hostile/syndicate/ranged/space,
-/turf/open/floor/plating/asteroid/whitesands,
-/area/overmap_encounter/planetoid/cave/explored)
-"mP" = (
-/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
- dir = 8
- },
-/turf/open/floor/engine{
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"nn" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
- dir = 4
- },
-/turf/open/floor/engine{
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"ns" = (
-/obj/structure/frame/machine,
-/obj/item/circuitboard/machine/smes,
-/obj/item/stock_parts/capacitor,
-/obj/item/stack/cable_coil/cut/blue,
-/obj/item/stock_parts/cell/empty,
-/turf/open/floor/plating{
- icon_state = "platingdmg2"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"nA" = (
-/obj/item/storage/firstaid/ancient,
-/turf/open/floor/plating/asteroid/whitesands,
-/area/overmap_encounter/planetoid/cave/explored)
-"nM" = (
-/obj/machinery/atmospherics/pipe/simple/dark/visible{
- dir = 8
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg1";
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"ox" = (
-/obj/machinery/atmospherics/components/binary/pump,
-/turf/open/floor/engine{
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"oT" = (
-/turf/open/floor/plating/asteroid/whitesands,
-/area/overmap_encounter/planetoid/cave/explored)
-"pK" = (
-/obj/item/stack/cable_coil/cut/blue,
-/obj/item/stack/tile/plasteel,
-/turf/open/floor/plating/asteroid/whitesands/dried,
-/area/overmap_encounter/planetoid/cave/explored)
-"pL" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers{
- dir = 5
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg1";
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"qe" = (
-/obj/machinery/atmospherics/components/binary/circulator{
- dir = 4
- },
-/turf/open/floor/engine{
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"qk" = (
-/turf/open/floor/plating{
- icon_state = "platingdmg2";
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"rp" = (
-/obj/machinery/suit_storage_unit,
-/turf/open/floor/plating{
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"rE" = (
-/obj/machinery/power/smes,
-/turf/open/floor/plating{
- icon_state = "platingdmg2"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"sa" = (
-/obj/item/toy/plush/lizardplushie{
- desc = "An adorable stuffed toy that resembles nothing like a tegu.";
- name = "tegu plushie"
- },
-/turf/open/floor/plating/asteroid/whitesands,
-/area/overmap_encounter/planetoid/cave/explored)
-"ss" = (
-/obj/structure/window/plasma/reinforced/plastitanium/unanchored,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"sB" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible,
-/obj/machinery/portable_atmospherics/canister/toxins,
-/turf/open/floor/plating{
- icon_state = "panelscorched";
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"tc" = (
-/obj/effect/turf_decal/industrial/traffic{
- dir = 8
- },
-/turf/open/floor/plating{
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"tp" = (
-/obj/machinery/atmospherics/pipe/simple/dark/visible{
- dir = 10
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg1";
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"uN" = (
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers{
- dir = 6
- },
-/turf/open/floor/engine{
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"wh" = (
-/obj/item/clothing/shoes/jackboots,
-/turf/open/floor/plating/asteroid/whitesands,
-/area/overmap_encounter/planetoid/cave/explored)
-"wp" = (
-/obj/structure/frame/machine,
-/turf/open/floor/plating{
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"wy" = (
-/obj/item/stock_parts/cell/empty,
-/obj/item/stock_parts/cell/empty{
- pixel_x = -8;
- pixel_y = -7
- },
-/obj/item/stock_parts/cell/empty{
- pixel_x = 6;
- pixel_y = -10
- },
-/turf/open/floor/plating/asteroid/whitesands,
-/area/overmap_encounter/planetoid/cave/explored)
-"wH" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible,
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/turf/open/floor/plating{
- icon_state = "platingdmg1";
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"wS" = (
-/mob/living/simple_animal/hostile/syndicate/ranged/smg/space,
-/turf/open/floor/plating{
- icon_state = "platingdmg2";
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"xr" = (
-/mob/living/simple_animal/hostile/syndicate/ranged/smg/space,
-/mob/living/simple_animal/hostile/syndicate/ranged/space,
-/turf/open/floor/plating{
- icon_state = "platingdmg2";
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"yj" = (
-/obj/machinery/door/airlock/hatch,
-/turf/open/floor/plasteel/dark,
-/area/overmap_encounter/planetoid/cave/explored)
-"yD" = (
-/obj/machinery/door/airlock/engineering{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/overmap_encounter/planetoid/cave/explored)
-"zt" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 4
- },
-/obj/effect/turf_decal/industrial/outline/yellow,
-/turf/open/floor/plasteel/dark,
-/area/overmap_encounter/planetoid/cave/explored)
-"zA" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 8
- },
-/turf/open/floor/plating{
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"zB" = (
-/obj/effect/decal/remains/human,
-/obj/effect/decal/cleanable/blood/old,
-/obj/item/clothing/under/syndicate{
- pixel_y = -11
- },
-/turf/open/floor/plating/asteroid/whitesands,
-/area/overmap_encounter/planetoid/cave/explored)
-"zY" = (
-/obj/effect/turf_decal/corner/opaque/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/corner/opaque/yellow{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/overmap_encounter/planetoid/cave/explored)
-"AB" = (
-/obj/structure/frame/machine,
-/obj/item/circuitboard/machine/sleeper,
-/turf/open/floor/plating{
- icon_state = "panelscorched";
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"Be" = (
-/obj/structure/window/plasma/reinforced/plastitanium/unanchored,
-/obj/machinery/atmospherics/pipe/simple/scrubbers,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"Bt" = (
-/mob/living/simple_animal/hostile/syndicate/ranged/shotgun/space,
-/turf/open/floor/plating{
- icon_state = "platingdmg1";
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"BW" = (
-/turf/open/floor/plasteel/dark,
-/area/overmap_encounter/planetoid/cave/explored)
-"BY" = (
-/obj/effect/turf_decal/radiation,
-/turf/open/floor/plasteel/dark,
-/area/overmap_encounter/planetoid/cave/explored)
-"CM" = (
-/obj/machinery/atmospherics/pipe/simple/dark/visible,
-/turf/closed/wall/r_wall/syndicate,
-/area/overmap_encounter/planetoid/cave/explored)
-"CX" = (
-/obj/effect/turf_decal/industrial/hatch/yellow,
-/obj/machinery/portable_atmospherics/canister/toxins,
-/turf/open/floor/plasteel/dark,
-/area/overmap_encounter/planetoid/cave/explored)
-"Dz" = (
-/obj/machinery/atmospherics/components/binary/circulator/cold{
- dir = 8
- },
-/turf/open/floor/engine{
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"DF" = (
-/obj/effect/turf_decal/industrial/traffic{
- dir = 1
- },
-/obj/machinery/atmospherics/components/binary/pump,
-/obj/machinery/atmospherics/pipe/simple/dark/visible{
- dir = 8
- },
-/turf/open/floor/engine{
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"DL" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers,
-/turf/open/floor/plating{
- icon_state = "platingdmg1";
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"Eg" = (
-/obj/item/stock_parts/cell/empty{
- pixel_x = 5;
- pixel_y = -6
- },
-/obj/machinery/power/terminal{
- dir = 1
- },
-/turf/open/floor/plating/asteroid/whitesands/dried,
-/area/overmap_encounter/planetoid/cave/explored)
-"Ej" = (
-/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
- dir = 8
- },
-/turf/open/floor/engine{
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"Ek" = (
-/obj/effect/turf_decal/industrial/traffic{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/dark/visible{
- dir = 5
- },
-/turf/open/floor/engine{
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"Eu" = (
-/mob/living/simple_animal/hostile/syndicate/ranged/space/stormtrooper,
-/turf/open/floor/plating{
- icon_state = "panelscorched";
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"FM" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 6
- },
-/turf/open/floor/engine{
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"Gd" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers{
- dir = 8
- },
-/turf/open/floor/plating{
- icon_state = "panelscorched";
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"Gg" = (
-/obj/machinery/atmospherics/pipe/manifold/dark/visible{
- dir = 4
- },
-/turf/open/floor/engine{
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"GD" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible,
-/turf/open/floor/engine{
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"GO" = (
-/obj/item/circuitboard/machine/sleeper,
-/turf/open/floor/plating{
- icon_state = "platingdmg1";
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"Ha" = (
-/obj/machinery/portable_atmospherics/canister/toxins,
-/turf/open/floor/plating{
- icon_state = "panelscorched";
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"Hy" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible,
-/turf/open/floor/plating{
- icon_state = "platingdmg1";
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"Iz" = (
-/turf/open/floor/plating{
- icon_state = "panelscorched";
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"IK" = (
-/obj/item/stack/sheet/metal,
-/turf/open/floor/engine{
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"IY" = (
-/obj/machinery/power/smes,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"Jn" = (
-/turf/open/floor/pod/dark,
-/area/overmap_encounter/planetoid/cave/explored)
-"KN" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers,
-/turf/open/floor/engine{
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"KR" = (
-/mob/living/simple_animal/hostile/syndicate/ranged/shotgun/space,
-/turf/open/floor/plating/asteroid/whitesands,
-/area/overmap_encounter/planetoid/cave/explored)
-"KT" = (
-/obj/structure/safe/floor,
-/obj/item/clothing/suit/space/hardsuit/syndi/ramzi,
-/obj/item/documents/syndicate,
-/turf/open/floor/plating{
- icon_state = "panelscorched";
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"Md" = (
-/mob/living/simple_animal/hostile/syndicate/ranged/space,
-/turf/open/floor/plating{
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"NA" = (
-/obj/structure/frame/machine,
-/turf/open/floor/engine{
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"NH" = (
-/obj/machinery/atmospherics/pipe/simple/dark/visible{
- dir = 5
- },
-/turf/open/floor/plating/asteroid/whitesands{
- dir = 8
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"NQ" = (
-/turf/open/floor/plating,
-/area/overmap_encounter/planetoid/cave/explored)
-"Oj" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers{
- dir = 10
- },
-/turf/open/floor/engine{
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"Or" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 1
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg1";
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"OY" = (
-/obj/effect/turf_decal/corner/opaque/blue,
-/turf/open/floor/plasteel/dark,
-/area/overmap_encounter/planetoid/cave/explored)
-"Pr" = (
-/obj/machinery/door/airlock/engineering,
-/turf/open/floor/plating{
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"PQ" = (
-/obj/effect/turf_decal/industrial/traffic{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/dark/visible{
- dir = 8
- },
-/turf/open/floor/engine{
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"Qk" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 9
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg1";
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"QG" = (
-/obj/effect/turf_decal/industrial/loading/red,
-/turf/open/floor/plasteel/dark,
-/area/overmap_encounter/planetoid/cave/explored)
-"QP" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers{
- dir = 8
- },
-/turf/open/floor/plating/asteroid/whitesands,
-/area/overmap_encounter/planetoid/cave/explored)
-"Ri" = (
-/obj/item/pickaxe/improvised,
-/turf/open/floor/plating/asteroid/whitesands,
-/area/overmap_encounter/planetoid/cave/explored)
-"Rn" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers{
- dir = 8
- },
-/turf/open/floor/plating{
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"Rq" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers{
- dir = 8
- },
-/turf/open/floor/engine{
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"RJ" = (
-/turf/template_noop,
-/area/template_noop)
-"Sp" = (
-/obj/effect/decal/cleanable/ash,
-/obj/item/paper{
- desc = null;
- default_raw_text = "Well, we failed. The undoable has been done. We were taken out. The great Starfury is stuck in orbit, and many of our systems are damaged. There is no other choice but to evacuate. However, me and a group of talented indviduals will go with me. I will activate the hyperdrive, one last time to scuttle the ship before Nanotrasen can get their grubby little hands on it, on the planet of our greatest victory. If you are worried about me, I have my tegu plushie and all i need to survive for a year. Men and women, its been a honour.";
- name = "Starfury Status Report - January 15th, 2501"
- },
-/turf/open/floor/plating{
- icon_state = "panelscorched";
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"Sx" = (
-/turf/open/floor/plating/asteroid/whitesands/dried,
-/area/overmap_encounter/planetoid/cave/explored)
-"SM" = (
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"SS" = (
-/obj/effect/turf_decal/industrial/traffic{
- dir = 8
- },
-/turf/open/floor/engine{
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"Ts" = (
-/obj/effect/decal/cleanable/ash,
-/obj/effect/decal/cleanable/ash{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/effect/decal/cleanable/ash{
- pixel_x = 2;
- pixel_y = -2
- },
-/turf/open/floor/plating{
- icon_state = "panelscorched";
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"TF" = (
-/obj/effect/turf_decal/industrial/traffic{
- dir = 5
- },
-/turf/open/floor/engine{
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"TT" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible,
-/obj/item/pipe_dispenser,
-/turf/open/floor/plating{
- icon_state = "panelscorched";
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"TZ" = (
-/obj/item/stack/sheet/metal,
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 1
- },
-/turf/open/floor/plating/asteroid/whitesands,
-/area/overmap_encounter/planetoid/cave/explored)
-"Uw" = (
-/obj/structure/door_assembly/door_assembly_hatch,
-/turf/open/floor/plating{
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"UD" = (
-/obj/machinery/portable_atmospherics/scrubber,
-/turf/open/floor/plating{
- icon_state = "platingdmg1";
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"UV" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
- dir = 4
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg1";
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"Vl" = (
-/obj/machinery/power/terminal{
- dir = 1
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"Wh" = (
-/obj/item/clothing/neck/stethoscope,
-/turf/open/floor/plating{
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"Ws" = (
-/turf/open/floor/plating{
- icon_state = "platingdmg1";
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"Wz" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers{
- dir = 10
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg1";
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"WB" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 8
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg1";
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"WX" = (
-/turf/open/floor/engine{
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"Xh" = (
-/obj/item/stack/tile/plasteel,
-/mob/living/simple_animal/hostile/syndicate/ranged/space,
-/turf/open/floor/plating/asteroid/whitesands/dried,
-/area/overmap_encounter/planetoid/cave/explored)
-"XR" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible,
-/turf/open/floor/plating{
- icon_state = "platingdmg1";
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"Yo" = (
-/obj/machinery/portable_atmospherics/scrubber,
-/turf/open/floor/plating/asteroid/whitesands,
-/area/overmap_encounter/planetoid/cave/explored)
-"Yw" = (
-/obj/item/stack/sheet/metal,
-/turf/open/floor/plating/asteroid/whitesands,
-/area/overmap_encounter/planetoid/cave/explored)
-"YE" = (
-/obj/item/stack/sheet/metal,
-/obj/item/stack/sheet/metal,
-/turf/open/floor/plating/asteroid/whitesands,
-/area/overmap_encounter/planetoid/cave/explored)
-"YM" = (
-/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
- dir = 8
- },
-/turf/open/floor/plating{
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"Zl" = (
-/obj/machinery/door/airlock/hatch{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/overmap_encounter/planetoid/cave/explored)
-"Zy" = (
-/obj/structure/frame/machine,
-/obj/item/stack/cable_coil/cut/blue,
-/turf/open/floor/engine{
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-"ZX" = (
-/obj/machinery/suit_storage_unit{
- mask_type = /obj/item/clothing/mask/gas/syndicate;
- storage_type = null
- },
-/turf/open/floor/mineral/plastitanium/red{
- initial_gas_mix = "ws_atmos"
- },
-/area/overmap_encounter/planetoid/cave/explored)
-
-(1,1,1) = {"
-RJ
-RJ
-RJ
-jI
-jI
-jI
-jI
-jI
-jI
-jI
-jI
-jI
-IY
-Eg
-jI
-jI
-jI
-RJ
-jI
-jI
-jI
-jI
-jI
-RJ
-RJ
-"}
-(2,1,1) = {"
-RJ
-RJ
-jI
-jI
-jI
-jI
-jI
-jI
-jI
-jI
-jI
-fM
-ns
-wy
-Xh
-Yo
-jI
-RJ
-fM
-fM
-fM
-fM
-jI
-jI
-RJ
-"}
-(3,1,1) = {"
-RJ
-RJ
-jI
-jI
-jI
-jI
-oT
-Ws
-fM
-jI
-jI
-fM
-rE
-Vl
-pK
-jI
-fM
-ss
-fM
-oT
-oT
-oT
-jI
-jI
-RJ
-"}
-(4,1,1) = {"
-RJ
-jI
-jI
-jI
-jI
-oT
-kZ
-oT
-fM
-fM
-fM
-fM
-fM
-fM
-yD
-fM
-fM
-Ws
-oT
-Iz
-mv
-oT
-jI
-jI
-jI
-"}
-(5,1,1) = {"
-RJ
-jI
-jI
-jI
-jI
-Iz
-Iz
-Bt
-BW
-BY
-QG
-Pr
-Iz
-oT
-Iz
-oT
-Iz
-tc
-SS
-sB
-NH
-qk
-jI
-jI
-jI
-"}
-(6,1,1) = {"
-RJ
-jI
-jI
-jI
-jI
-jI
-qk
-oT
-Iz
-BY
-QG
-Pr
-ho
-IK
-KR
-Ws
-WX
-Iz
-Ws
-wH
-Gg
-Ek
-jI
-jI
-jI
-"}
-(7,1,1) = {"
-jI
-jI
-fM
-jI
-fM
-fM
-BW
-oT
-fM
-fM
-fM
-fM
-TF
-uN
-KN
-kN
-KN
-KN
-KN
-DL
-pL
-PQ
-jI
-jI
-jI
-"}
-(8,1,1) = {"
-jI
-jI
-jI
-nA
-GO
-fM
-oT
-kZ
-fM
-Iz
-kW
-fM
-fM
-QP
-Ws
-YE
-Iz
-Ha
-Ws
-WX
-Rq
-nM
-fM
-jI
-jI
-"}
-(9,1,1) = {"
-jI
-fM
-fM
-qk
-oT
-fM
-aE
-OY
-fM
-hQ
-Sp
-fM
-fM
-Gd
-UD
-Iz
-Ws
-ad
-zt
-Ws
-fW
-DF
-jI
-jI
-jI
-"}
-(10,1,1) = {"
-jI
-jI
-jI
-oT
-wS
-Uw
-zY
-lx
-yj
-Eu
-Ts
-fM
-fM
-Rn
-kZ
-kZ
-oT
-Wz
-Hy
-WX
-hG
-tp
-CM
-jI
-jI
-"}
-(11,1,1) = {"
-jI
-jI
-jI
-Wh
-kZ
-fM
-qk
-eS
-fM
-Iz
-Iz
-fM
-fM
-Oj
-KN
-TZ
-qe
-Or
-nn
-il
-UV
-iq
-Be
-jI
-jI
-"}
-(12,1,1) = {"
-RJ
-jI
-jI
-jI
-wp
-fM
-BW
-BW
-fM
-KT
-AB
-fM
-fM
-Iz
-WX
-WX
-Zy
-WX
-kZ
-WX
-WX
-WX
-ss
-jI
-jI
-"}
-(13,1,1) = {"
-RJ
-jI
-jI
-fM
-fM
-fM
-Zl
-Zl
-fM
-fM
-fM
-fM
-fM
-FM
-XR
-ox
-Dz
-gt
-YM
-TT
-cS
-fA
-ss
-jI
-jI
-"}
-(14,1,1) = {"
-RJ
-jI
-jI
-jI
-jI
-jI
-Iz
-Ws
-ZX
-rp
-fw
-fM
-fM
-zA
-kZ
-Md
-WX
-FM
-ba
-WX
-Iz
-WB
-fM
-jI
-jI
-"}
-(15,1,1) = {"
-RJ
-jI
-jI
-jI
-jI
-jI
-oT
-oT
-Ws
-xr
-Jn
-fM
-fM
-fU
-Yw
-oT
-hz
-bJ
-lN
-WX
-Ws
-fH
-jI
-jI
-jI
-"}
-(16,1,1) = {"
-RJ
-jI
-jI
-jI
-jI
-jI
-oT
-oT
-jf
-qk
-NQ
-fM
-fM
-zA
-Yw
-Ws
-WX
-Ws
-CX
-Iz
-Ws
-WB
-fM
-jI
-jI
-"}
-(17,1,1) = {"
-RJ
-RJ
-jI
-jI
-jI
-jI
-oT
-oT
-oT
-oT
-oT
-fM
-jI
-jd
-cS
-cS
-GD
-mP
-mP
-mP
-YM
-Qk
-oT
-jI
-jI
-"}
-(18,1,1) = {"
-RJ
-RJ
-jI
-jI
-jI
-oT
-dX
-oT
-oT
-oT
-oT
-jI
-jI
-jI
-jI
-jI
-jI
-Ej
-NA
-NA
-NA
-ho
-oT
-jI
-jI
-"}
-(19,1,1) = {"
-RJ
-RJ
-jI
-jI
-oT
-oT
-zB
-wh
-oT
-oT
-jI
-jI
-jI
-jI
-jI
-jI
-jI
-eg
-ih
-eg
-eg
-Sx
-jI
-jI
-jI
-"}
-(20,1,1) = {"
-RJ
-jI
-jI
-oT
-oT
-Ri
-eO
-oT
-oT
-jI
-jI
-RJ
-RJ
-RJ
-jI
-jI
-jI
-BW
-SM
-Sx
-Sx
-jI
-jI
-jI
-jI
-"}
-(21,1,1) = {"
-RJ
-jI
-jI
-sa
-oT
-oT
-jI
-jI
-jI
-jI
-RJ
-RJ
-RJ
-RJ
-RJ
-jI
-jI
-fM
-fM
-BW
-BW
-BW
-jI
-jI
-RJ
-"}
-(22,1,1) = {"
-RJ
-jI
-jI
-jI
-jI
-jI
-jI
-jI
-RJ
-RJ
-RJ
-RJ
-RJ
-RJ
-RJ
-RJ
-jI
-jI
-fM
-ss
-fM
-jI
-jI
-RJ
-RJ
-"}
-(23,1,1) = {"
-RJ
-RJ
-jI
-jI
-jI
-jI
-RJ
-RJ
-RJ
-RJ
-RJ
-RJ
-RJ
-RJ
-RJ
-RJ
-RJ
-RJ
-RJ
-RJ
-RJ
-RJ
-RJ
-RJ
-RJ
-"}
diff --git a/_maps/RandomRuins/SandRuins/whitesands_surface_waterplant.dmm b/_maps/RandomRuins/SandRuins/whitesands_surface_waterplant.dmm
deleted file mode 100644
index ae51575ef49..00000000000
--- a/_maps/RandomRuins/SandRuins/whitesands_surface_waterplant.dmm
+++ /dev/null
@@ -1,3145 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"ab" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"ao" = (
-/obj/effect/gibspawner,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/turf/open/floor/plasteel/white/airless,
-/area/ruin/powered)
-"au" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"aF" = (
-/obj/structure/bed,
-/obj/item/bedsheet/brown,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"aU" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"aX" = (
-/obj/structure/bed,
-/obj/item/bedsheet/brown,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"aY" = (
-/obj/machinery/door/airlock/public/glass,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"bn" = (
-/obj/machinery/door/airlock/vault,
-/obj/structure/fans/tiny,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"bt" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"bx" = (
-/obj/structure/table,
-/obj/effect/turf_decal/corner/opaque/red,
-/obj/effect/turf_decal/corner/opaque/red{
- dir = 4
- },
-/obj/effect/turf_decal/corner/opaque/red{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/red{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/item/storage/fancy/donut_box,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"bE" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/turf/closed/wall/r_wall/rust,
-/area/ruin/powered)
-"bQ" = (
-/obj/machinery/door/airlock/vault,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"cl" = (
-/turf/closed/wall/r_wall/rust,
-/area/ruin/powered)
-"ct" = (
-/obj/structure/rack,
-/obj/item/storage/toolbox/mechanical/old,
-/obj/item/storage/toolbox/electrical{
- icon_state = "toolbox_blue_old";
- name = "rusty old electrical toolbox";
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/item/multitool/old,
-/obj/item/screwdriver/old,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"cU" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"cV" = (
-/obj/effect/turf_decal/corner/opaque/red,
-/obj/effect/turf_decal/corner/opaque/red{
- dir = 8
- },
-/turf/open/floor/plasteel/white/airless,
-/area/ruin/powered)
-"dc" = (
-/obj/structure/table,
-/obj/effect/turf_decal/corner/opaque/red,
-/obj/effect/turf_decal/corner/opaque/red{
- dir = 4
- },
-/obj/effect/turf_decal/corner/opaque/red{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/red{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/item/assembly/flash/handheld,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"dd" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/turf/closed/wall/r_wall/rust,
-/area/ruin/powered)
-"dx" = (
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"dD" = (
-/obj/structure/chair/office,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"eh" = (
-/turf/open/floor/plating/asteroid/whitesands,
-/area/ruin/powered)
-"et" = (
-/obj/item/chair/stool,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"eC" = (
-/obj/structure/grille,
-/turf/closed/wall/r_wall,
-/area/ruin/powered)
-"eV" = (
-/obj/effect/turf_decal/corner/opaque/red{
- dir = 1
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"ff" = (
-/obj/item/kirbyplants/random,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"fn" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"fo" = (
-/obj/effect/turf_decal/corner/opaque/red{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/red{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"fv" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 8
- },
-/obj/machinery/portable_atmospherics/canister,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"fH" = (
-/obj/structure/frame/computer,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"gm" = (
-/obj/machinery/hydroponics/constructable,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"gr" = (
-/obj/effect/turf_decal/industrial/loading{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"gW" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 8
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"ha" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"hk" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"hs" = (
-/obj/structure/reagent_dispensers/water_cooler,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"hy" = (
-/obj/structure/statue/gold/hos,
-/turf/open/floor/wood,
-/area/ruin/powered)
-"hC" = (
-/obj/machinery/computer/crew,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"hI" = (
-/obj/structure/table,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"ih" = (
-/obj/effect/turf_decal/corner/opaque/red{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/red,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/chair/office{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"il" = (
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/machinery/portable_atmospherics/canister/water_vapor,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"io" = (
-/obj/effect/turf_decal/number/zero,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"iY" = (
-/obj/structure/table,
-/obj/item/paper_bin,
-/obj/item/pen,
-/obj/effect/turf_decal/corner/opaque/green,
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"jc" = (
-/obj/structure/table,
-/obj/item/pen/red{
- pixel_x = -4;
- pixel_y = -3
- },
-/obj/item/pen/blue,
-/obj/item/pen/fountain/solgov{
- pixel_x = 1;
- pixel_y = 4
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"ji" = (
-/obj/machinery/atmospherics/pipe/manifold/general{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/ruin/powered)
-"jo" = (
-/obj/effect/overlay/palmtree_l,
-/mob/living/simple_animal/parrot,
-/turf/open/floor/plating/asteroid/whitesands,
-/area/ruin/powered)
-"jt" = (
-/obj/structure/sign/poster/official/safety_report{
- pixel_y = 32
- },
-/obj/effect/turf_decal/corner/opaque/red{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/red,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"jw" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 5
- },
-/turf/closed/wall/r_wall/rust,
-/area/ruin/powered)
-"jz" = (
-/obj/structure/chair/stool,
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"jR" = (
-/obj/structure/table,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"kr" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 8
- },
-/obj/machinery/portable_atmospherics/canister/water_vapor,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"kD" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 10
- },
-/turf/closed/wall,
-/area/ruin/powered)
-"kG" = (
-/turf/closed/wall/rust,
-/area/ruin/powered)
-"kZ" = (
-/obj/structure/chair/comfy/beige,
-/turf/open/floor/carpet,
-/area/ruin/powered)
-"le" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"ll" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"ln" = (
-/obj/structure/fluff/paper/stack{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"lu" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/turf/closed/wall/rust,
-/area/ruin/powered)
-"ly" = (
-/obj/machinery/power/compressor{
- comp_id = "incineratorturbine";
- dir = 1;
- luminosity = 2
- },
-/turf/open/floor/engine/vacuum,
-/area/ruin/powered)
-"lA" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"lF" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall/rust,
-/area/ruin/powered)
-"lN" = (
-/obj/structure/table/wood/fancy,
-/obj/item/reagent_containers/food/snacks/cakeslice/lime,
-/turf/open/floor/carpet,
-/area/ruin/powered)
-"lQ" = (
-/obj/effect/turf_decal/industrial/loading{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"mc" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"mi" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"mj" = (
-/obj/machinery/door/airlock/security/glass{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"mr" = (
-/obj/effect/turf_decal/corner/opaque/red{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"mP" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"mQ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"ne" = (
-/obj/item/reagent_containers/glass/bucket{
- pixel_x = -2;
- pixel_y = 3
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"nh" = (
-/obj/effect/turf_decal/corner/opaque/red,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"ni" = (
-/obj/item/reagent_containers/food/drinks/bottle/sarsaparilla,
-/turf/open/floor/plating/asteroid/whitesands,
-/area/ruin/powered)
-"np" = (
-/obj/structure/table,
-/obj/item/storage/firstaid{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/storage/firstaid/brute,
-/obj/item/storage/firstaid/fire{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/effect/turf_decal/corner/opaque/red,
-/obj/effect/turf_decal/corner/opaque/red{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/white/airless,
-/area/ruin/powered)
-"nE" = (
-/obj/effect/turf_decal/corner/opaque/red{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/red,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"nJ" = (
-/obj/effect/turf_decal/industrial/loading{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"nZ" = (
-/obj/effect/turf_decal/corner/opaque/red{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"oo" = (
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"op" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/door/airlock/security/glass{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"oq" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"oy" = (
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"oB" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"oE" = (
-/obj/effect/turf_decal/corner/opaque/red,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"oK" = (
-/obj/structure/table,
-/obj/item/healthanalyzer,
-/obj/effect/turf_decal/corner/opaque/red,
-/obj/effect/turf_decal/corner/opaque/red{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/red{
- dir = 4
- },
-/turf/open/floor/plasteel/white/airless,
-/area/ruin/powered)
-"oT" = (
-/obj/structure/reagent_dispensers/watertank,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"pf" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"pl" = (
-/obj/structure/bed,
-/obj/machinery/iv_drip,
-/obj/effect/decal/cleanable/blood/old,
-/obj/effect/turf_decal/corner/opaque/red{
- dir = 4
- },
-/obj/effect/turf_decal/corner/opaque/red{
- dir = 1
- },
-/turf/open/floor/plasteel/white/airless,
-/area/ruin/powered)
-"pI" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/reagent_dispensers/water_cooler,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"qi" = (
-/obj/machinery/atmospherics/components/binary/volume_pump,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"qn" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 8
- },
-/turf/closed/wall/r_wall/rust,
-/area/ruin/powered)
-"qo" = (
-/obj/machinery/atmospherics/components/unary/tank/air{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"qs" = (
-/obj/machinery/door/airlock/security/glass{
- name = "Break Room";
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"qv" = (
-/obj/structure/table/wood/fancy,
-/obj/item/reagent_containers/food/snacks/cakeslice/chocolate,
-/turf/open/floor/carpet,
-/area/ruin/powered)
-"qC" = (
-/obj/structure/rack,
-/obj/effect/turf_decal/corner/opaque/red{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/red,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/white/airless,
-/area/ruin/powered)
-"qD" = (
-/obj/structure/table/reinforced,
-/obj/item/paper_bin,
-/obj/item/pen,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"qI" = (
-/obj/structure/closet/crate/bin,
-/obj/structure/sign/poster/official/random{
- pixel_x = 32
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"qK" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall/rust,
-/area/ruin/powered)
-"qL" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"re" = (
-/obj/structure/chair/stool,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"rh" = (
-/obj/effect/turf_decal/corner/opaque/red{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"ri" = (
-/obj/structure/sink/puddle,
-/turf/open/floor/plating/asteroid/whitesands,
-/area/ruin/powered)
-"rr" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"rK" = (
-/obj/effect/turf_decal/corner/opaque/red{
- dir = 4
- },
-/obj/effect/turf_decal/corner/opaque/red,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 8
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"rX" = (
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"sf" = (
-/obj/machinery/atmospherics/components/trinary/filter/on{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"sD" = (
-/obj/machinery/door/airlock/public/glass/incinerator/atmos_exterior,
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/turf/open/floor/engine,
-/area/ruin/powered)
-"sE" = (
-/obj/structure/table,
-/obj/item/flashlight/lamp,
-/obj/effect/turf_decal/corner/opaque/green,
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"sK" = (
-/obj/effect/turf_decal/corner/opaque/red,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"sR" = (
-/obj/effect/turf_decal/industrial/loading{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"ti" = (
-/obj/machinery/atmospherics/pipe/layer_manifold/visible,
-/turf/closed/wall,
-/area/ruin/powered)
-"tk" = (
-/obj/effect/turf_decal/dept{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"to" = (
-/obj/structure/rack,
-/obj/item/paper/pamphlet/centcom,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"tu" = (
-/obj/structure/chair/stool,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"tF" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/window/brigdoor/northright{
- dir = 4;
- name = "Warden's Desk";
- req_access_txt = "3"
- },
-/obj/machinery/door/window/westleft{
- name = "Warden's Desk"
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"tI" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/turf/closed/wall/r_wall,
-/area/ruin/powered)
-"tL" = (
-/obj/machinery/door/airlock/vault,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating/asteroid/whitesands,
-/area/ruin/powered)
-"tY" = (
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"ue" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"ul" = (
-/obj/item/plant_analyzer,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"ux" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/open/floor/carpet,
-/area/ruin/powered)
-"uL" = (
-/obj/machinery/door/airlock/public/glass{
- dir = 4
- },
-/obj/structure/fans/tiny,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"uO" = (
-/obj/effect/turf_decal/arrows,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"uZ" = (
-/obj/machinery/door/airlock/public/glass{
- dir = 8
- },
-/obj/structure/fans/tiny,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"vW" = (
-/obj/effect/turf_decal/corner/opaque/red{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"wh" = (
-/obj/effect/turf_decal/corner/opaque/red{
- dir = 1
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"wk" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 6
- },
-/turf/closed/wall,
-/area/ruin/powered)
-"wo" = (
-/obj/structure/table,
-/obj/item/paper,
-/obj/item/pen,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"wt" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"wx" = (
-/obj/effect/turf_decal/arrows,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"wD" = (
-/obj/item/reagent_containers/food/drinks/waterbottle/large/empty,
-/obj/item/reagent_containers/food/drinks/waterbottle/large/empty,
-/obj/item/reagent_containers/food/drinks/waterbottle/large/empty,
-/obj/item/reagent_containers/food/drinks/waterbottle/large/empty,
-/obj/item/reagent_containers/food/drinks/waterbottle/large/empty,
-/obj/item/reagent_containers/food/drinks/waterbottle/large/empty,
-/obj/item/reagent_containers/food/drinks/waterbottle/large/empty,
-/obj/item/reagent_containers/food/drinks/waterbottle/large/empty,
-/obj/item/reagent_containers/food/drinks/waterbottle/large/empty,
-/obj/item/reagent_containers/food/drinks/waterbottle/large/empty,
-/obj/item/reagent_containers/food/drinks/waterbottle/large/empty,
-/obj/item/reagent_containers/food/drinks/waterbottle/large/empty,
-/obj/item/reagent_containers/food/drinks/waterbottle/large/empty,
-/obj/item/reagent_containers/food/drinks/waterbottle/large/empty,
-/obj/item/reagent_containers/food/drinks/waterbottle/large/empty,
-/obj/item/reagent_containers/food/drinks/waterbottle/large/empty,
-/obj/item/reagent_containers/food/drinks/waterbottle/large/empty,
-/obj/item/reagent_containers/food/drinks/waterbottle/large/empty,
-/obj/item/reagent_containers/food/drinks/waterbottle/large/empty,
-/obj/structure/closet/crate,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"wJ" = (
-/obj/machinery/door/airlock/security/glass,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"wR" = (
-/obj/effect/gibspawner,
-/obj/effect/turf_decal/corner/opaque/red,
-/obj/effect/turf_decal/corner/opaque/red{
- dir = 8
- },
-/turf/open/floor/plasteel/white/airless,
-/area/ruin/powered)
-"wW" = (
-/obj/machinery/hydroponics/constructable,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"xc" = (
-/obj/item/reagent_containers/glass/bucket{
- pixel_x = -2;
- pixel_y = 3
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"xe" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"xh" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"xv" = (
-/obj/effect/turf_decal/number/two,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"xG" = (
-/obj/machinery/door/window/westleft,
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"xN" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible,
-/obj/machinery/portable_atmospherics/canister/toxins,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"xV" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"yH" = (
-/obj/structure/geyser{
- reagent_id = /datum/reagent/water
- },
-/obj/machinery/plumbing/liquid_pump,
-/turf/open/floor/plating/asteroid/whitesands,
-/area/ruin/powered)
-"yQ" = (
-/obj/item/chair/stool,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"zq" = (
-/obj/machinery/door/airlock/engineering{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"zA" = (
-/obj/structure/sign/poster/official/random{
- pixel_x = 32
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"zJ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Aj" = (
-/obj/structure/table/wood/fancy,
-/obj/item/reagent_containers/food/snacks/cakeslice/cheese,
-/turf/open/floor/carpet,
-/area/ruin/powered)
-"AC" = (
-/obj/structure/closet/secure_closet/brig,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"AE" = (
-/obj/item/reagent_containers/glass/bucket{
- pixel_x = -2;
- pixel_y = 3
- },
-/turf/open/floor/plating/asteroid/whitesands,
-/area/ruin/powered)
-"AM" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/ruin/powered)
-"AT" = (
-/obj/effect/turf_decal/corner/opaque/red,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Bb" = (
-/obj/structure/chair/comfy/orange/directional/south,
-/turf/open/floor/carpet,
-/area/ruin/powered)
-"Bs" = (
-/obj/item/toy/beach_ball,
-/obj/structure/geyser{
- reagent_id = /datum/reagent/water
- },
-/obj/machinery/plumbing/liquid_pump,
-/turf/open/floor/plating/asteroid/whitesands,
-/area/ruin/powered)
-"Bx" = (
-/obj/machinery/door/airlock/public/glass,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Bz" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 8
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/turf/open/floor/carpet,
-/area/ruin/powered)
-"BQ" = (
-/obj/effect/turf_decal/industrial/loading{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"BV" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Ci" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Cm" = (
-/obj/structure/sign/poster/official/work_for_a_future,
-/turf/closed/wall/r_wall,
-/area/ruin/powered)
-"Cq" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/turf/open/floor/engine,
-/area/ruin/powered)
-"Ct" = (
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Cu" = (
-/obj/effect/turf_decal/industrial/loading{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Cw" = (
-/obj/structure/sign/warning/securearea,
-/turf/closed/wall/r_wall,
-/area/ruin/powered)
-"Dd" = (
-/obj/effect/turf_decal/industrial/loading{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Do" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Dp" = (
-/obj/structure/table,
-/obj/effect/turf_decal/corner/opaque/red,
-/obj/effect/turf_decal/corner/opaque/red{
- dir = 4
- },
-/obj/effect/turf_decal/corner/opaque/red{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/red{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/item/restraints/handcuffs,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Dz" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"DT" = (
-/obj/structure/chair/comfy/blue/directional/south,
-/turf/open/floor/carpet,
-/area/ruin/powered)
-"DU" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Eb" = (
-/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"En" = (
-/obj/structure/rack,
-/obj/item/reagent_containers/food/drinks/waterbottle/large{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/reagent_containers/food/drinks/waterbottle/large,
-/obj/item/reagent_containers/food/drinks/waterbottle/large{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/structure/sign/poster/official/random{
- pixel_x = 32
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"EW" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 9
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Fg" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Fn" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Fw" = (
-/obj/structure/sign/poster/official/random{
- pixel_x = -32
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"FF" = (
-/obj/machinery/door/airlock/public/glass/incinerator/atmos_interior,
-/turf/open/floor/engine,
-/area/ruin/powered)
-"FT" = (
-/obj/effect/decal/cleanable/blood/gibs/limb,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white/airless,
-/area/ruin/powered)
-"FW" = (
-/obj/structure/fluff/paper/stack{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Gu" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"GA" = (
-/obj/structure/chair,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"GL" = (
-/obj/machinery/door/poddoor/shutters{
- dir = 4
- },
-/obj/structure/fans/tiny,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Hc" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Hm" = (
-/obj/machinery/door/airlock/security/glass{
- name = "Cell 2";
- req_access_txt = "2";
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Hs" = (
-/obj/structure/chair,
-/obj/structure/sign/poster/official/random{
- pixel_x = 32
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"HH" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"HJ" = (
-/obj/machinery/atmospherics/pipe/manifold/general{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"HL" = (
-/obj/structure/table/reinforced,
-/obj/item/organ/tongue,
-/obj/item/organ/tongue{
- pixel_y = 5
- },
-/obj/item/organ/tongue/lizard{
- pixel_x = -4
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"HQ" = (
-/obj/effect/turf_decal/arrows,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Ij" = (
-/obj/structure/sign/warning/securearea,
-/turf/closed/wall/r_wall/rust,
-/area/ruin/powered)
-"It" = (
-/turf/closed/wall/r_wall,
-/area/ruin/powered)
-"Iy" = (
-/obj/structure/sign/poster/official/work_for_a_future,
-/turf/closed/wall,
-/area/ruin/powered)
-"IB" = (
-/obj/structure/table,
-/obj/item/folder/blue,
-/obj/item/folder/red,
-/obj/item/folder/yellow,
-/obj/effect/turf_decal/corner/opaque/green,
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"IL" = (
-/obj/structure/chair/office{
- dir = 8
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"IO" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/turf/closed/wall,
-/area/ruin/powered)
-"IR" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/carpet,
-/area/ruin/powered)
-"Ja" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible,
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Jb" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Jv" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"JK" = (
-/obj/effect/turf_decal/radiation,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"JT" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Kd" = (
-/obj/structure/bed,
-/obj/machinery/iv_drip,
-/obj/effect/decal/cleanable/blood/old,
-/obj/effect/turf_decal/corner/opaque/red{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/red{
- dir = 4
- },
-/turf/open/floor/plasteel/white/airless,
-/area/ruin/powered)
-"KB" = (
-/obj/machinery/door/airlock/security/glass,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Li" = (
-/obj/structure/sign/poster/official/random{
- pixel_x = 32
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"LE" = (
-/obj/structure/table/reinforced,
-/obj/machinery/recharger,
-/obj/item/clothing/glasses/hud/health,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"LK" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/shutters{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"LM" = (
-/obj/machinery/power/shuttle/engine/turbine,
-/turf/open/floor/plating/asteroid/whitesands,
-/area/overmap_encounter/planetoid/sand/explored)
-"LN" = (
-/obj/structure/rack,
-/obj/item/reagent_containers/food/drinks/waterbottle/large{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/reagent_containers/food/drinks/waterbottle/large,
-/obj/item/reagent_containers/food/drinks/waterbottle/large{
- pixel_x = 3;
- pixel_y = -3
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"LS" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Me" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"My" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/chair/office,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"MQ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"MR" = (
-/obj/structure/chair/stool,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"MW" = (
-/obj/item/reagent_containers/glass/bucket,
-/obj/effect/decal/remains/human,
-/obj/structure/fluff/beach_umbrella,
-/turf/open/floor/plating/asteroid/whitesands,
-/area/ruin/powered)
-"MZ" = (
-/obj/structure/sign/poster/official/nanotrasen_logo{
- pixel_x = 32
- },
-/turf/template_noop,
-/area/template_noop)
-"Nk" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Nn" = (
-/obj/structure/reagent_dispensers/watertank,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"NM" = (
-/obj/effect/turf_decal/box,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"NP" = (
-/obj/effect/decal/cleanable/blood/gibs/limb,
-/turf/open/floor/plasteel/white/airless,
-/area/ruin/powered)
-"NS" = (
-/obj/effect/turf_decal/arrows,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"NT" = (
-/turf/closed/wall,
-/area/ruin/powered)
-"NX" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/engine_waste{
- dir = 8
- },
-/turf/open/floor/plating/asteroid/whitesands,
-/area/overmap_encounter/planetoid/sand/explored)
-"NZ" = (
-/obj/structure/reagent_dispensers/water_cooler,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Ok" = (
-/obj/structure/sign/poster/official/work_for_a_future,
-/turf/closed/wall/r_wall/rust,
-/area/ruin/powered)
-"Oo" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Ow" = (
-/obj/item/storage/bottles/sandblast,
-/turf/open/floor/wood{
- icon_state = "wood-broken2"
- },
-/area/ruin/powered)
-"Oz" = (
-/obj/machinery/hydroponics/constructable,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"OC" = (
-/obj/effect/turf_decal/dept{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Pc" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Pk" = (
-/obj/effect/turf_decal/corner/opaque/red,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Pm" = (
-/obj/machinery/door/airlock/security/glass{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Ps" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Pu" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Py" = (
-/obj/structure/grille,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"PF" = (
-/obj/machinery/atmospherics/components/trinary/filter/on{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Qh" = (
-/obj/machinery/door/airlock/security/glass{
- name = "Cell 1";
- req_access_txt = "2";
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Qq" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/open/floor/engine/vacuum,
-/area/ruin/powered)
-"Qr" = (
-/obj/structure/table,
-/obj/item/storage/backpack/duffelbag/sec/surgery,
-/obj/item/bodypart/leg/left{
- pixel_y = 5
- },
-/obj/effect/turf_decal/corner/opaque/red{
- dir = 4
- },
-/obj/effect/turf_decal/corner/opaque/red{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/red,
-/turf/open/floor/plasteel/white/airless,
-/area/ruin/powered)
-"Qw" = (
-/obj/item/kirbyplants/random,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Qy" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"QK" = (
-/obj/machinery/door/airlock/security/glass{
- name = "Cell 3";
- req_access_txt = "2";
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"QO" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"QU" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/white/airless,
-/area/ruin/powered)
-"QY" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Re" = (
-/obj/structure/table,
-/obj/effect/turf_decal/corner/opaque/red,
-/obj/effect/turf_decal/corner/opaque/red{
- dir = 4
- },
-/obj/effect/turf_decal/corner/opaque/red{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/red{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/recharger,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Ru" = (
-/mob/living/simple_animal/crab,
-/turf/open/floor/plating/asteroid/whitesands,
-/area/ruin/powered)
-"RH" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"RR" = (
-/obj/effect/turf_decal/corner/opaque/red{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"RU" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/ruin/powered)
-"RW" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 8
- },
-/turf/closed/wall/r_wall,
-/area/ruin/powered)
-"RX" = (
-/obj/machinery/computer/arcade,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Su" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"SE" = (
-/turf/open/floor/plating,
-/area/ruin/powered)
-"SW" = (
-/obj/effect/turf_decal/corner/opaque/red{
- dir = 4
- },
-/obj/effect/turf_decal/corner/opaque/red{
- dir = 1
- },
-/turf/open/floor/plasteel/white/airless,
-/area/ruin/powered)
-"SZ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Ta" = (
-/obj/machinery/biogenerator,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Tc" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Te" = (
-/obj/machinery/door/airlock/security/glass{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Ty" = (
-/obj/structure/chair{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Tz" = (
-/obj/effect/turf_decal/corner/opaque/red{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"TB" = (
-/obj/item/cultivator,
-/obj/item/shovel/spade{
- pixel_x = -5;
- pixel_y = -11
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"TG" = (
-/obj/machinery/door/airlock/security/glass{
- req_access_txt = "3";
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"TH" = (
-/obj/machinery/igniter/incinerator_atmos,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/open/floor/engine/vacuum,
-/area/ruin/powered)
-"TO" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 8
- },
-/obj/machinery/door/airlock/security/glass{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Ug" = (
-/obj/effect/turf_decal/corner/opaque/red,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Up" = (
-/obj/structure/table,
-/obj/machinery/microwave,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Uu" = (
-/obj/structure/reagent_dispensers/water_cooler,
-/turf/open/floor/wood,
-/area/ruin/powered)
-"UG" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Va" = (
-/turf/template_noop,
-/area/template_noop)
-"Vc" = (
-/obj/machinery/seed_extractor,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Vr" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Vs" = (
-/obj/effect/turf_decal/corner/opaque/red,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Vv" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/incinerator_input{
- dir = 1
- },
-/turf/open/floor/engine/vacuum,
-/area/ruin/powered)
-"VF" = (
-/obj/effect/turf_decal/number/one,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"VG" = (
-/obj/structure/closet/crate/large,
-/obj/structure/reagent_dispensers/watertank/high,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"VP" = (
-/obj/structure/fans/tiny,
-/obj/machinery/door/poddoor/shutters{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"VS" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/shutters{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"VT" = (
-/obj/structure/table,
-/obj/item/paper,
-/obj/item/pen,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Wa" = (
-/obj/effect/turf_decal/corner/opaque/red{
- dir = 4
- },
-/obj/effect/turf_decal/corner/opaque/red{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/chair/office{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Ww" = (
-/obj/item/reagent_containers/glass/bucket{
- pixel_x = -4;
- pixel_y = -6
- },
-/turf/open/floor/plating/asteroid/whitesands,
-/area/ruin/powered)
-"WD" = (
-/obj/structure/sign/poster/official/random{
- pixel_x = 32
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/closed/wall,
-/area/ruin/powered)
-"WF" = (
-/obj/machinery/door/airlock/public/glass,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"WV" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"WY" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 6
- },
-/turf/open/floor/engine,
-/area/ruin/powered)
-"Xg" = (
-/obj/effect/turf_decal/box,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Xy" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"XA" = (
-/obj/machinery/door/airlock/security/glass{
- dir = 4
- },
-/obj/effect/turf_decal/corner/opaque/red{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/red{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/corner/opaque/white,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 4
- },
-/turf/open/floor/plasteel/airless,
-/area/ruin/powered)
-"XR" = (
-/obj/structure/table,
-/obj/item/paper,
-/obj/item/pen,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"XY" = (
-/obj/structure/chair/office{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Yt" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"YC" = (
-/obj/structure/table,
-/obj/item/mmi,
-/obj/effect/turf_decal/corner/opaque/red,
-/obj/effect/turf_decal/corner/opaque/red{
- dir = 4
- },
-/turf/open/floor/plasteel/white/airless,
-/area/ruin/powered)
-"YV" = (
-/obj/effect/turf_decal/corner/opaque/red{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/red{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"YW" = (
-/obj/structure/table,
-/obj/item/storage/box/cups,
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"YY" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/white/airless,
-/area/ruin/powered)
-"Zh" = (
-/obj/effect/turf_decal/corner/opaque/red,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Zs" = (
-/obj/structure/table,
-/obj/item/reagent_containers/food/drinks/britcup,
-/obj/effect/turf_decal/corner/opaque/green,
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Zt" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Zv" = (
-/obj/effect/turf_decal/number/zero,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"ZE" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"ZH" = (
-/obj/effect/overlay/palmtree_r,
-/turf/open/floor/plating/asteroid/whitesands,
-/area/ruin/powered)
-"ZJ" = (
-/obj/effect/turf_decal/number/three,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"ZV" = (
-/obj/structure/sign/poster/official/random{
- pixel_x = 32
- },
-/obj/structure/reagent_dispensers/water_cooler,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-
-(1,1,1) = {"
-Va
-Va
-Va
-Va
-Va
-Va
-Va
-Va
-Va
-Va
-Va
-Va
-Va
-Va
-Va
-Va
-Va
-Va
-Va
-Va
-Va
-Va
-Va
-Va
-Va
-Va
-Va
-Va
-Va
-Va
-"}
-(2,1,1) = {"
-Va
-Va
-Va
-Va
-Va
-Va
-Va
-Va
-Va
-Va
-Va
-Va
-Va
-Va
-MZ
-Va
-Va
-Va
-Va
-MZ
-cl
-It
-cl
-cl
-It
-cl
-It
-It
-cl
-Va
-"}
-(3,1,1) = {"
-Va
-Va
-Va
-Va
-Va
-Va
-Va
-Va
-Va
-Va
-Va
-NT
-NT
-NT
-kG
-ha
-uL
-uZ
-ha
-kG
-NT
-xN
-HJ
-qi
-tI
-Cq
-bE
-Vv
-cl
-Va
-"}
-(4,1,1) = {"
-Va
-Va
-Va
-kG
-GL
-VP
-VP
-VP
-VP
-VP
-VP
-NT
-GA
-lA
-Ty
-to
-SE
-ZE
-to
-Ty
-kG
-Ja
-EW
-Jb
-FF
-WY
-sD
-TH
-ly
-LM
-"}
-(5,1,1) = {"
-Va
-Va
-Va
-kG
-SE
-Jb
-OC
-Jb
-SE
-tk
-il
-kG
-Hs
-ZE
-SE
-FW
-ZE
-ZE
-ln
-SE
-wk
-JT
-sf
-PF
-tI
-ji
-tI
-Qq
-cl
-Va
-"}
-(6,1,1) = {"
-Va
-Va
-Va
-kG
-Jb
-Jb
-tk
-SE
-Jb
-Jb
-il
-kG
-NT
-NT
-Zs
-jc
-iY
-sE
-IB
-xG
-lu
-qo
-fv
-kr
-cl
-cl
-cl
-It
-It
-Va
-"}
-(7,1,1) = {"
-Va
-Va
-Va
-kG
-Jb
-SE
-SE
-SE
-SE
-tk
-oo
-kG
-oy
-Jb
-YW
-dx
-XY
-tY
-Jb
-Ct
-lu
-wD
-aU
-MQ
-oq
-Nk
-rX
-SE
-cl
-Va
-"}
-(8,1,1) = {"
-Va
-Va
-Va
-kG
-NM
-SE
-ZE
-Xg
-Xg
-SE
-oo
-kG
-SE
-rX
-ll
-rr
-SZ
-xV
-rX
-SE
-kD
-qK
-IO
-IO
-DU
-zq
-xh
-ti
-jw
-Va
-"}
-(9,1,1) = {"
-Va
-Va
-Va
-kG
-lQ
-sR
-mQ
-BQ
-nJ
-Dz
-Dz
-Bx
-Me
-Me
-QO
-Do
-Ci
-Dz
-Me
-Dz
-WF
-Fg
-Fw
-mP
-Ps
-gr
-ZE
-SE
-AM
-Va
-"}
-(10,1,1) = {"
-Va
-Va
-Va
-kG
-Jb
-Jb
-bt
-ue
-SE
-VG
-rX
-aY
-ZE
-SE
-SE
-rX
-rX
-SE
-rX
-zA
-aY
-Jb
-ZE
-bt
-ue
-JK
-rX
-rX
-AM
-Va
-"}
-(11,1,1) = {"
-kG
-kG
-kG
-NT
-ZE
-SE
-ZE
-SE
-Jb
-ZE
-SE
-kG
-SE
-qI
-Eb
-En
-LN
-En
-hs
-NT
-kG
-ZV
-WD
-NT
-ha
-Pm
-ha
-NT
-AM
-Va
-"}
-(12,1,1) = {"
-It
-It
-It
-It
-cl
-cl
-It
-cl
-cl
-It
-It
-It
-cl
-cl
-It
-It
-cl
-It
-It
-It
-It
-cl
-cl
-Fn
-Me
-Zt
-Jb
-ZE
-dd
-Va
-"}
-(13,1,1) = {"
-cl
-SE
-Ug
-Su
-sK
-Vs
-QO
-Me
-BV
-mc
-sK
-UG
-AT
-Jv
-sK
-nh
-QO
-Pk
-sK
-xe
-oE
-Vs
-wJ
-Zh
-Jb
-rK
-rh
-SE
-AM
-Va
-"}
-(14,1,1) = {"
-It
-Tz
-vW
-eV
-Jb
-RR
-Jb
-Jb
-au
-bt
-SE
-le
-vW
-mr
-Tz
-ab
-Tz
-Vr
-nZ
-wh
-mr
-Hc
-KB
-ih
-dc
-Re
-Wa
-rX
-dd
-Va
-"}
-(15,1,1) = {"
-cl
-ha
-XA
-WV
-NT
-NT
-fo
-ZE
-Oo
-nE
-cl
-lF
-Qh
-RW
-cl
-lF
-Hm
-RW
-cl
-RU
-QK
-qn
-It
-jt
-Dp
-bx
-Jb
-ZE
-dd
-Va
-"}
-(16,1,1) = {"
-It
-Kd
-FT
-YY
-qC
-ha
-SE
-SE
-RH
-Jb
-It
-mi
-ab
-yQ
-cl
-LS
-et
-QY
-cl
-bt
-Pc
-MR
-cl
-wt
-YV
-IL
-ZE
-rX
-AM
-Va
-"}
-(17,1,1) = {"
-It
-SW
-ao
-QY
-cV
-ha
-ha
-tF
-TG
-ha
-cl
-aF
-Gu
-XR
-Cm
-aX
-rX
-VT
-Cm
-aX
-pf
-XR
-It
-pI
-Li
-zJ
-My
-ZE
-AM
-Va
-"}
-(18,1,1) = {"
-It
-pl
-NP
-QU
-wR
-ha
-ct
-ZE
-gW
-qD
-It
-It
-op
-It
-It
-It
-Te
-It
-cl
-cl
-TO
-It
-It
-cl
-NT
-qs
-kG
-NT
-AM
-Va
-"}
-(19,1,1) = {"
-cl
-Qr
-YC
-np
-oK
-ha
-hC
-SE
-dD
-HL
-ha
-Qw
-Cu
-oB
-Jb
-ZE
-lQ
-rX
-Jb
-oB
-Dd
-SE
-ff
-It
-hy
-Bz
-DT
-qv
-AM
-Va
-"}
-(20,1,1) = {"
-cl
-It
-cl
-cl
-It
-cl
-fH
-ZE
-Qy
-LE
-ha
-ZE
-io
-NS
-HQ
-HQ
-Zv
-HQ
-uO
-wx
-Tc
-ZE
-ZE
-ha
-Ow
-IR
-Bb
-Aj
-dd
-Va
-"}
-(21,1,1) = {"
-Va
-cl
-Py
-Py
-Py
-cl
-NZ
-SE
-Xy
-AC
-ha
-ff
-VF
-QY
-ZE
-Jb
-xv
-SE
-ZE
-HH
-ZJ
-Jb
-Qw
-It
-Uu
-ux
-kZ
-lN
-dd
-Va
-"}
-(22,1,1) = {"
-cl
-Py
-It
-cl
-It
-It
-VS
-LK
-It
-It
-cl
-It
-Ok
-It
-cl
-cl
-Iy
-NT
-NT
-NT
-mj
-NT
-NT
-cl
-cl
-cl
-It
-It
-AM
-Va
-"}
-(23,1,1) = {"
-It
-Py
-cl
-yH
-eh
-ni
-eh
-yH
-cl
-Py
-cl
-Nn
-Nn
-Nn
-Nn
-Nn
-It
-RX
-jR
-Up
-Yt
-rX
-rX
-It
-Va
-Va
-Va
-Va
-NX
-Va
-"}
-(24,1,1) = {"
-It
-Py
-It
-Ru
-eh
-jo
-MW
-eh
-cl
-It
-Cw
-xc
-ne
-xc
-ZE
-xc
-Cw
-Nn
-ZE
-fn
-re
-hI
-tu
-It
-Va
-Va
-Va
-Va
-Va
-Va
-"}
-(25,1,1) = {"
-cl
-Py
-cl
-eh
-eh
-ri
-eh
-eh
-bn
-SE
-bQ
-ZE
-qL
-cU
-hk
-Me
-tL
-Dz
-Me
-Pu
-jz
-wo
-QY
-cl
-Va
-Va
-Va
-Va
-Va
-Va
-"}
-(26,1,1) = {"
-cl
-Py
-cl
-eh
-ZH
-Ww
-AE
-eh
-cl
-It
-Ij
-ne
-ZE
-xc
-xc
-Jb
-Cw
-gm
-ul
-Oz
-ZE
-yQ
-rX
-It
-Va
-Va
-Va
-Va
-Va
-Va
-"}
-(27,1,1) = {"
-It
-Py
-cl
-Bs
-eh
-Ru
-eh
-yH
-It
-Py
-It
-Nn
-oT
-Nn
-Eb
-Nn
-It
-Oz
-TB
-wW
-Vc
-Ta
-ff
-cl
-Va
-Va
-Va
-Va
-Va
-Va
-"}
-(28,1,1) = {"
-cl
-Py
-It
-cl
-cl
-It
-cl
-cl
-It
-eC
-It
-It
-cl
-cl
-It
-cl
-It
-It
-cl
-It
-It
-cl
-It
-cl
-Va
-Va
-Va
-Va
-Va
-Va
-"}
-(29,1,1) = {"
-Va
-cl
-eC
-Py
-Py
-Py
-Py
-Py
-Py
-cl
-Va
-Va
-Va
-Va
-Va
-Va
-Va
-Va
-Va
-Va
-Va
-Va
-Va
-Va
-Va
-Va
-Va
-Va
-Va
-Va
-"}
-(30,1,1) = {"
-Va
-Va
-cl
-It
-It
-cl
-cl
-It
-It
-Va
-Va
-Va
-Va
-Va
-Va
-Va
-Va
-Va
-Va
-Va
-Va
-Va
-Va
-Va
-Va
-Va
-Va
-Va
-Va
-Va
-"}
diff --git a/_maps/RandomRuins/SpaceRuins/DJstation.dmm b/_maps/RandomRuins/SpaceRuins/DJstation.dmm
deleted file mode 100644
index 63659db9441..00000000000
--- a/_maps/RandomRuins/SpaceRuins/DJstation.dmm
+++ /dev/null
@@ -1,932 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"aa" = (
-/turf/template_noop,
-/area/template_noop)
-"ab" = (
-/obj/structure/grille,
-/turf/open/floor/plating/airless,
-/area/ruin/space/djstation/solars)
-"ac" = (
-/obj/machinery/power/solar/fake,
-/obj/effect/turf_decal/solarpanel,
-/turf/open/floor/plasteel/airless,
-/area/ruin/space/djstation/solars)
-"ad" = (
-/turf/open/floor/plating/airless,
-/area/ruin/space/djstation/solars)
-"ae" = (
-/obj/structure/lattice,
-/turf/template_noop,
-/area/space/nearstation)
-"af" = (
-/turf/closed/wall,
-/area/ruin/space/djstation)
-"ag" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/ruin/space/djstation)
-"ah" = (
-/turf/open/floor/plating,
-/area/ruin/space/djstation)
-"ai" = (
-/obj/machinery/telecomms/relay/preset/ruskie,
-/obj/machinery/light/directional/north,
-/turf/open/floor/plating,
-/area/ruin/space/djstation)
-"aj" = (
-/obj/machinery/power/terminal,
-/turf/open/floor/plating,
-/area/ruin/space/djstation)
-"ak" = (
-/obj/item/multitool,
-/turf/open/floor/plating,
-/area/ruin/space/djstation)
-"al" = (
-/obj/item/storage/toolbox/mechanical{
- pixel_x = -2;
- pixel_y = -1
- },
-/turf/open/floor/plating,
-/area/ruin/space/djstation)
-"am" = (
-/obj/item/extinguisher,
-/turf/open/floor/plating,
-/area/ruin/space/djstation)
-"as" = (
-/obj/structure/rack,
-/obj/item/clothing/suit/space/syndicate/orange,
-/obj/item/clothing/head/helmet/space/syndicate/orange,
-/obj/item/clothing/mask/breath,
-/turf/open/floor/plating,
-/area/ruin/space/djstation)
-"at" = (
-/obj/machinery/door/airlock/maintenance_hatch,
-/turf/open/floor/plating,
-/area/ruin/space/djstation)
-"au" = (
-/obj/structure/closet/emcloset,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/djstation)
-"av" = (
-/obj/machinery/vending/snack,
-/obj/machinery/light/small/directional/north,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/djstation)
-"aw" = (
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/djstation)
-"ax" = (
-/obj/machinery/light_switch{
- pixel_y = 28
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/djstation)
-"ay" = (
-/obj/machinery/newscaster/directional/north{
- pixel_y = 32
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/djstation)
-"az" = (
-/obj/structure/table,
-/obj/machinery/cell_charger,
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/djstation)
-"aA" = (
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/djstation)
-"aB" = (
-/obj/effect/spawner/lootdrop/crate_spawner,
-/turf/open/floor/plasteel/grimy,
-/area/ruin/space/djstation)
-"aC" = (
-/obj/machinery/light_switch{
- pixel_y = 28
- },
-/turf/open/floor/plasteel/grimy,
-/area/ruin/space/djstation)
-"aD" = (
-/obj/structure/bed,
-/obj/item/bedsheet,
-/turf/open/floor/plasteel/grimy,
-/area/ruin/space/djstation)
-"aE" = (
-/obj/structure/table,
-/obj/item/flashlight/lamp,
-/turf/open/floor/plasteel/grimy,
-/area/ruin/space/djstation)
-"aF" = (
-/obj/structure/table,
-/obj/machinery/microwave{
- pixel_y = 8
- },
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/djstation)
-"aG" = (
-/obj/machinery/door/airlock/public/glass{
- name = "Kitchen";
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/djstation)
-"aH" = (
-/obj/structure/table,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/obj/item/radio/intercom/table{
- dir = 8;
- freerange = 1
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/djstation)
-"aI" = (
-/obj/structure/chair/office/light,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/djstation)
-"aJ" = (
-/obj/machinery/door/airlock/public/glass{
- name = "Rest Room";
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/djstation)
-"aK" = (
-/turf/open/floor/plasteel/grimy,
-/area/ruin/space/djstation)
-"aL" = (
-/obj/machinery/sleeper{
- dir = 8
- },
-/turf/open/floor/plasteel/grimy,
-/area/ruin/space/djstation)
-"aM" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk,
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/djstation)
-"aN" = (
-/obj/machinery/light/small/directional/south,
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/djstation)
-"aO" = (
-/obj/structure/chair{
- dir = 1
- },
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/djstation)
-"aP" = (
-/obj/structure/table,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/djstation)
-"aQ" = (
-/obj/structure/table,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/obj/item/radio/intercom/table{
- freerange = 1
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/djstation)
-"aS" = (
-/obj/structure/frame/computer{
- anchored = 1
- },
-/turf/open/floor/plasteel/grimy,
-/area/ruin/space/djstation)
-"aT" = (
-/obj/structure/chair{
- dir = 8
- },
-/turf/open/floor/plasteel/grimy,
-/area/ruin/space/djstation)
-"aU" = (
-/obj/machinery/light/small/directional/south,
-/turf/open/floor/plasteel/grimy,
-/area/ruin/space/djstation)
-"aV" = (
-/obj/structure/closet,
-/turf/open/floor/plasteel/grimy,
-/area/ruin/space/djstation)
-"aW" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall,
-/area/ruin/space/djstation)
-"aX" = (
-/obj/machinery/door/airlock/hatch{
- name = "Washroom"
- },
-/turf/open/floor/plasteel/freezer,
-/area/ruin/space/djstation)
-"aY" = (
-/obj/machinery/light/directional/east,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/djstation)
-"aZ" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"ba" = (
-/turf/open/floor/plasteel/freezer,
-/area/ruin/space/djstation)
-"bb" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/djstation)
-"bc" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/space_heater,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/djstation)
-"bd" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/rack,
-/obj/item/clothing/under/costume/pirate,
-/obj/item/clothing/head/bandana,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/djstation)
-"be" = (
-/obj/structure/sink{
- dir = 4;
- pixel_x = -12;
- pixel_y = 2
- },
-/obj/machinery/light/small/directional/south,
-/turf/open/floor/plasteel/freezer,
-/area/ruin/space/djstation)
-"bf" = (
-/obj/structure/toilet{
- pixel_y = 8
- },
-/turf/open/floor/plasteel/freezer,
-/area/ruin/space/djstation)
-"bg" = (
-/obj/structure/table,
-/obj/item/paper_bin{
- pixel_x = 1;
- pixel_y = 9
- },
-/obj/item/pen,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/djstation)
-"bh" = (
-/obj/structure/sign/warning/vacuum/external{
- pixel_y = -32
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/djstation)
-"bi" = (
-/obj/machinery/door/airlock/external{
- name = "Ruskie DJ Station"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper,
-/turf/open/floor/plating,
-/area/ruin/space/djstation)
-"bj" = (
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/obj/structure/disposaloutlet,
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"hc" = (
-/obj/machinery/power/smes/magical{
- desc = "A high-capacity superconducting magnetic energy storage (SMES) unit.";
- name = "power storage unit"
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plating,
-/area/ruin/space/djstation)
-"lU" = (
-/obj/structure/table,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/obj/item/paper/fluff/ruins/djstation,
-/turf/open/floor/plasteel,
-/area/ruin/space/djstation)
-"nM" = (
-/obj/item/storage/box/lights/mixed,
-/obj/structure/sign/warning/electricshock{
- pixel_y = -32
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/ruin/space/djstation)
-"uK" = (
-/obj/machinery/power/apc{
- name = "Worn-out APC";
- pixel_y = -25
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/plating,
-/area/ruin/space/djstation)
-"zO" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plating,
-/area/ruin/space/djstation)
-"Co" = (
-/obj/machinery/door/airlock/external{
- name = "Ruskie DJ Station"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/ruin/space/djstation)
-"Gg" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/ruin/space/djstation)
-
-(1,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-af
-ag
-ag
-ag
-af
-aa
-ae
-aa
-aa
-aa
-"}
-(2,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-ab
-ac
-ad
-ac
-ad
-ac
-ab
-aa
-af
-az
-aF
-aM
-aW
-aZ
-aZ
-aZ
-bj
-aa
-"}
-(3,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-ab
-ac
-ad
-ac
-ad
-ac
-ab
-aa
-af
-aA
-aA
-aN
-af
-ae
-ae
-aa
-aa
-aa
-"}
-(4,1,1) = {"
-aa
-aa
-aa
-aa
-ae
-ab
-ac
-ad
-ac
-ad
-ac
-ab
-aa
-af
-aA
-aA
-aO
-af
-af
-af
-af
-aa
-aa
-"}
-(5,1,1) = {"
-aa
-aa
-aa
-ae
-ae
-ab
-ac
-ad
-ac
-ad
-ac
-ab
-aa
-af
-aA
-aA
-aA
-aX
-ba
-be
-af
-aa
-aa
-"}
-(6,1,1) = {"
-ab
-ab
-ab
-ab
-ab
-af
-ag
-ag
-af
-ag
-ag
-af
-af
-af
-ag
-aG
-ag
-af
-af
-bf
-af
-aa
-aa
-"}
-(7,1,1) = {"
-ab
-ac
-ac
-ac
-ac
-ag
-ah
-ah
-ah
-am
-ah
-uK
-af
-au
-aw
-aw
-aw
-aw
-af
-af
-af
-aa
-aa
-"}
-(8,1,1) = {"
-ab
-ad
-ad
-ad
-ad
-ag
-ah
-ah
-ah
-ah
-ah
-nM
-af
-av
-aw
-aH
-aP
-aw
-bb
-bg
-af
-aa
-aa
-"}
-(9,1,1) = {"
-ab
-ac
-ac
-ac
-ac
-af
-ai
-ah
-aj
-hc
-Gg
-zO
-at
-aw
-aw
-aI
-aQ
-aw
-aw
-aw
-af
-aa
-aa
-"}
-(10,1,1) = {"
-ab
-ad
-ad
-ad
-ad
-ag
-ah
-ah
-ak
-ah
-ah
-ah
-af
-ax
-aw
-lU
-aQ
-aw
-bc
-bh
-af
-af
-af
-"}
-(11,1,1) = {"
-ab
-ac
-ac
-ac
-ac
-ag
-ah
-ah
-al
-ah
-ah
-as
-af
-ay
-aw
-aw
-aw
-aY
-bd
-aw
-bi
-ah
-Co
-"}
-(12,1,1) = {"
-ab
-ab
-ab
-ab
-ab
-af
-ag
-ag
-af
-ag
-ag
-af
-af
-af
-ag
-aJ
-ag
-af
-af
-af
-af
-af
-af
-"}
-(13,1,1) = {"
-aa
-aa
-ae
-ae
-ae
-ab
-ac
-ad
-ac
-ad
-ac
-ab
-aa
-af
-aB
-aK
-aS
-af
-aa
-aa
-aa
-aa
-aa
-"}
-(14,1,1) = {"
-aa
-aa
-aa
-aa
-ae
-ab
-ac
-ad
-ac
-ad
-ac
-ab
-aa
-af
-aC
-aK
-aT
-af
-aa
-aa
-aa
-aa
-aa
-"}
-(15,1,1) = {"
-aa
-aa
-aa
-aa
-ae
-ab
-ac
-ad
-ac
-ad
-ac
-ab
-aa
-af
-aD
-aK
-aU
-af
-ae
-ae
-aa
-aa
-aa
-"}
-(16,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-ab
-ac
-ad
-ac
-ad
-ac
-ab
-aa
-af
-aE
-aL
-aV
-af
-aa
-aa
-aa
-aa
-aa
-"}
-(17,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-af
-ag
-ag
-ag
-af
-aa
-aa
-aa
-aa
-aa
-"}
-(18,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-ae
-aa
-ae
-aa
-aa
-ae
-aa
-aa
-aa
-aa
-aa
-aa
-"}
diff --git a/_maps/RandomRuins/SpaceRuins/Fast_Food.dmm b/_maps/RandomRuins/SpaceRuins/Fast_Food.dmm
deleted file mode 100644
index 559f4987dee..00000000000
--- a/_maps/RandomRuins/SpaceRuins/Fast_Food.dmm
+++ /dev/null
@@ -1,2536 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"aa" = (
-/turf/open/space,
-/area/space)
-"ac" = (
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/space/has_grav/powered)
-"ad" = (
-/turf/closed/mineral,
-/area/ruin/space/has_grav/powered)
-"ae" = (
-/turf/closed/wall,
-/area/ruin/space/has_grav/powered/macspace)
-"af" = (
-/obj/machinery/atmospherics/components/unary/tank/air,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"ag" = (
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"ah" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"ai" = (
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"aj" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"ak" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/ruin/space/has_grav/powered/macspace)
-"al" = (
-/obj/machinery/door/airlock/silver,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"am" = (
-/obj/machinery/space_heater,
-/obj/effect/decal/cleanable/cobweb,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"an" = (
-/obj/item/toy/figure/curator,
-/obj/structure/chair/wood/wings,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"ao" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"ap" = (
-/obj/machinery/jukebox,
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"aq" = (
-/obj/structure/closet/secure/loot,
-/obj/effect/decal/cleanable/cobweb,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"ar" = (
-/obj/structure/sink/kitchen{
- pixel_y = 20
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"as" = (
-/obj/machinery/processor,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"at" = (
-/obj/machinery/reagentgrinder{
- pixel_y = 5
- },
-/obj/structure/table,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"au" = (
-/obj/machinery/microwave{
- pixel_y = 5
- },
-/obj/structure/table,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"av" = (
-/obj/machinery/deepfryer,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"aw" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/vending/dinnerware,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"ax" = (
-/obj/machinery/vending/donksofttoyvendor,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"ay" = (
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"az" = (
-/obj/structure/closet/secure_closet/freezer/kitchen{
- locked = 0;
- req_access = null
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"aA" = (
-/obj/structure/closet/secure_closet/freezer/kitchen{
- req_access = null
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"aB" = (
-/obj/machinery/vending/cola,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"aC" = (
-/obj/effect/decal/cleanable/cobweb,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"aD" = (
-/obj/structure/closet/secure_closet/freezer/meat{
- req_access = null
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"aE" = (
-/obj/machinery/vending/wardrobe/chef_wardrobe,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"aF" = (
-/obj/item/toy/figure/chaplain,
-/obj/structure/chair/wood/wings{
- dir = 4;
- icon_state = "wooden_chair_wings"
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"aG" = (
-/obj/item/reagent_containers/food/snacks/burger/empoweredburger{
- pixel_x = 5;
- pixel_y = -6
- },
-/obj/structure/table/wood/fancy/blue,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"aH" = (
-/obj/item/toy/figure/assistant,
-/obj/structure/chair/wood/wings{
- dir = 8;
- icon_state = "wooden_chair_wings"
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"aI" = (
-/obj/structure/table/wood/fancy/blue,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"aJ" = (
-/obj/structure/chair/wood/wings{
- dir = 8;
- icon_state = "wooden_chair_wings"
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"aK" = (
-/obj/machinery/light/directional/south,
-/obj/item/kitchen/knife/butcher,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"aL" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"aM" = (
-/obj/machinery/light/directional/south,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"aN" = (
-/obj/effect/decal/cleanable/food/flour,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"aO" = (
-/obj/machinery/door/airlock/freezer{
- dir = 4
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"aP" = (
-/obj/effect/decal/cleanable/food/egg_smudge,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"aQ" = (
-/obj/structure/closet/crate/freezer/blood,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"aR" = (
-/obj/structure/chair/wood/wings{
- dir = 1;
- icon_state = "wooden_chair_wings"
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"aS" = (
-/obj/effect/decal/cleanable/generic,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"aT" = (
-/obj/machinery/door/airlock/gold/glass,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"aU" = (
-/obj/machinery/smartfridge/food,
-/turf/closed/wall,
-/area/ruin/space/has_grav/powered/macspace)
-"aV" = (
-/obj/item/bedsheet/patriot,
-/obj/item/bedsheet/patriot,
-/obj/item/bedsheet/patriot,
-/obj/machinery/vending/wardrobe/bar_wardrobe,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"aW" = (
-/obj/machinery/vending/boozeomat/all_access,
-/turf/closed/wall,
-/area/ruin/space/has_grav/powered/macspace)
-"aX" = (
-/obj/machinery/light/directional/west,
-/obj/structure/reagent_dispensers/beerkeg,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"aY" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/food/egg_smudge,
-/obj/effect/decal/cleanable/food/flour,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"aZ" = (
-/obj/structure/closet/secure_closet/bar{
- req_access = null
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"ba" = (
-/obj/machinery/light/directional/west,
-/obj/effect/decal/cleanable/dirt,
-/obj/item/toy/prize/honk,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"bb" = (
-/obj/machinery/light/directional/east,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"bc" = (
-/obj/structure/chair/stool/bar,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"bd" = (
-/obj/machinery/light/directional/north,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"be" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/obj/effect/decal/cleanable/food/egg_smudge,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"bf" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"bh" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"bi" = (
-/obj/item/gps{
- gpstag = "MacSpace"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"bj" = (
-/obj/item/toy/figure/clown,
-/obj/effect/decal/cleanable/food/tomato_smudge,
-/obj/structure/chair/wood/wings{
- dir = 4;
- icon_state = "wooden_chair_wings"
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"bk" = (
-/obj/item/reagent_containers/food/snacks/burger/clown,
-/obj/structure/table/wood/fancy/blue,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"bl" = (
-/obj/item/reagent_containers/food/snacks/burger/mime,
-/obj/structure/table/wood/fancy/blue,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"bm" = (
-/obj/item/toy/figure/mime,
-/obj/effect/decal/cleanable/food/salt,
-/obj/structure/chair/wood/wings{
- dir = 8;
- icon_state = "wooden_chair_wings"
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"bn" = (
-/obj/structure/closet/secure_closet/freezer/meat{
- req_access = null
- },
-/obj/item/aicard/aitater,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"bo" = (
-/obj/structure/table/wood/fancy/red,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"bp" = (
-/obj/item/toy/figure/bartender,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"bq" = (
-/obj/item/toy/figure/chef,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"br" = (
-/obj/item/toy/figure/chef,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"bs" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"bt" = (
-/obj/item/toy/figure/chef,
-/obj/effect/decal/cleanable/food/flour,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"bu" = (
-/obj/structure/reagent_dispensers/cooking_oil,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"bv" = (
-/obj/machinery/gibber,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"bw" = (
-/obj/structure/chair/wood/wings{
- dir = 4;
- icon_state = "wooden_chair_wings"
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"bx" = (
-/obj/item/reagent_containers/food/snacks/omelette,
-/obj/structure/table/wood/fancy/blue,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"by" = (
-/obj/item/reagent_containers/food/snacks/cubancarp,
-/obj/structure/table/wood/fancy/blue,
-/turf/open/floor/carpet,
-/area/ruin/space/has_grav/powered/macspace)
-"bz" = (
-/obj/structure/chair/wood/wings{
- dir = 8;
- icon_state = "wooden_chair_wings"
- },
-/turf/open/floor/carpet,
-/area/ruin/space/has_grav/powered/macspace)
-"bA" = (
-/obj/effect/decal/cleanable/generic,
-/turf/open/floor/carpet,
-/area/ruin/space/has_grav/powered/macspace)
-"bC" = (
-/obj/structure/table/wood/fancy/red,
-/obj/item/reagent_containers/food/snacks/burger/fish,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"bD" = (
-/obj/structure/table/wood/fancy/red,
-/obj/item/reagent_containers/food/snacks/fishfingers,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"bE" = (
-/obj/structure/table/wood/fancy/red,
-/obj/item/reagent_containers/food/snacks/burger/superbite,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"bG" = (
-/obj/structure/table/wood/fancy/red,
-/obj/item/reagent_containers/food/snacks/carrotfries,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"bH" = (
-/obj/structure/table/wood/fancy/red,
-/obj/item/reagent_containers/food/snacks/burger/superbite,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"bI" = (
-/obj/structure/table/wood/fancy/red,
-/obj/item/reagent_containers/food/snacks/friedegg,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"bJ" = (
-/obj/structure/table/wood/fancy/red,
-/obj/item/reagent_containers/food/snacks/fries,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"bK" = (
-/obj/structure/table/wood/fancy/red,
-/obj/item/reagent_containers/food/snacks/butter/on_a_stick,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"bL" = (
-/obj/machinery/light/directional/west,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"bM" = (
-/turf/open/floor/carpet,
-/area/ruin/space/has_grav/powered/macspace)
-"bN" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/carpet,
-/area/ruin/space/has_grav/powered/macspace)
-"bO" = (
-/obj/structure/chair/stool/bar,
-/obj/item/toy/figure/atmos,
-/obj/effect/decal/cleanable/vomit/old,
-/turf/open/floor/carpet,
-/area/ruin/space/has_grav/powered/macspace)
-"bP" = (
-/obj/structure/chair/stool/bar,
-/obj/item/toy/figure/ce,
-/turf/open/floor/carpet,
-/area/ruin/space/has_grav/powered/macspace)
-"bQ" = (
-/obj/structure/chair/stool/bar,
-/obj/item/toy/figure/captain,
-/turf/open/floor/carpet,
-/area/ruin/space/has_grav/powered/macspace)
-"bR" = (
-/obj/structure/chair/stool/bar,
-/obj/item/toy/figure/assistant,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/effect/decal/cleanable/food/tomato_smudge,
-/turf/open/floor/carpet,
-/area/ruin/space/has_grav/powered/macspace)
-"bS" = (
-/obj/structure/chair/stool/bar,
-/obj/item/toy/figure/assistant,
-/obj/effect/decal/cleanable/food/tomato_smudge,
-/turf/open/floor/carpet,
-/area/ruin/space/has_grav/powered/macspace)
-"bT" = (
-/obj/structure/chair/stool/bar,
-/turf/open/floor/carpet,
-/area/ruin/space/has_grav/powered/macspace)
-"bU" = (
-/obj/structure/chair/stool/bar,
-/obj/item/toy/figure/ian,
-/turf/open/floor/carpet,
-/area/ruin/space/has_grav/powered/macspace)
-"bV" = (
-/obj/machinery/light/directional/east,
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"bW" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/carpet,
-/area/ruin/space/has_grav/powered/macspace)
-"bX" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/carpet,
-/area/ruin/space/has_grav/powered/macspace)
-"bY" = (
-/obj/item/reagent_containers/food/snacks/burger/xeno,
-/obj/structure/table/wood/fancy/royalblue,
-/turf/open/floor/carpet,
-/area/ruin/space/has_grav/powered/macspace)
-"bZ" = (
-/obj/structure/table/wood/fancy/royalblue,
-/turf/open/floor/carpet,
-/area/ruin/space/has_grav/powered/macspace)
-"ca" = (
-/obj/structure/chair/wood/wings{
- dir = 4;
- icon_state = "wooden_chair_wings"
- },
-/turf/open/floor/carpet,
-/area/ruin/space/has_grav/powered/macspace)
-"cc" = (
-/obj/item/reagent_containers/food/snacks/honkdae,
-/obj/structure/table/wood/fancy/blue,
-/turf/open/floor/carpet,
-/area/ruin/space/has_grav/powered/macspace)
-"cd" = (
-/obj/item/reagent_containers/food/snacks/toastedsandwich,
-/obj/structure/table/wood/fancy/blue,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"ce" = (
-/obj/item/toy/figure/janitor,
-/obj/structure/chair/wood/wings{
- dir = 8;
- icon_state = "wooden_chair_wings"
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"cf" = (
-/obj/item/toy/figure/qm,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/chair/wood/wings{
- dir = 4;
- icon_state = "wooden_chair_wings"
- },
-/obj/effect/decal/cleanable/food/salt,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"cg" = (
-/obj/item/reagent_containers/food/snacks/burger/spell{
- pixel_x = -5;
- pixel_y = 2
- },
-/obj/structure/table/wood/fancy/blue,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"ch" = (
-/obj/item/reagent_containers/food/snacks/grilledcheese,
-/obj/structure/table/wood/fancy/blue,
-/turf/open/floor/carpet,
-/area/ruin/space/has_grav/powered/macspace)
-"ci" = (
-/obj/machinery/light/floor,
-/turf/open/floor/carpet,
-/area/ruin/space/has_grav/powered/macspace)
-"cl" = (
-/obj/structure/table/wood/fancy/royalblue,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/carpet,
-/area/ruin/space/has_grav/powered/macspace)
-"cm" = (
-/obj/item/gun/ballistic/shotgun,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"cn" = (
-/obj/item/reagent_containers/food/snacks/kebab/human,
-/obj/structure/table/wood/fancy/blue,
-/turf/open/floor/carpet,
-/area/ruin/space/has_grav/powered/macspace)
-"co" = (
-/obj/item/reagent_containers/food/snacks/pie/grapetart,
-/obj/structure/table/wood/fancy/blue,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"cp" = (
-/obj/item/toy/figure/botanist,
-/obj/structure/chair/wood/wings{
- dir = 8;
- icon_state = "wooden_chair_wings"
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"cq" = (
-/obj/item/reagent_containers/food/snacks/bearsteak,
-/obj/structure/table/wood/fancy/blue,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"cr" = (
-/obj/item/reagent_containers/food/snacks/crab_rangoon,
-/obj/structure/table/wood/fancy/blue,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/carpet,
-/area/ruin/space/has_grav/powered/macspace)
-"cs" = (
-/obj/item/toy/figure/wizard,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/food/pie_smudge,
-/obj/structure/chair/wood/wings{
- dir = 8;
- icon_state = "wooden_chair_wings"
- },
-/turf/open/floor/carpet,
-/area/ruin/space/has_grav/powered/macspace)
-"ct" = (
-/obj/machinery/light/floor,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/carpet,
-/area/ruin/space/has_grav/powered/macspace)
-"cu" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/carpet,
-/area/ruin/space/has_grav/powered/macspace)
-"cv" = (
-/obj/item/reagent_containers/food/snacks/burger/baseball,
-/obj/structure/table/wood/fancy/royalblue,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/carpet,
-/area/ruin/space/has_grav/powered/macspace)
-"cx" = (
-/obj/item/reagent_containers/food/snacks/burger/human,
-/obj/structure/table/wood/fancy/royalblue,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/carpet,
-/area/ruin/space/has_grav/powered/macspace)
-"cy" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/food/egg_smudge,
-/turf/open/floor/carpet,
-/area/ruin/space/has_grav/powered/macspace)
-"cz" = (
-/obj/structure/table/wood/fancy/blue,
-/turf/open/floor/carpet,
-/area/ruin/space/has_grav/powered/macspace)
-"cA" = (
-/obj/item/reagent_containers/food/snacks/pie/appletart,
-/obj/structure/table/wood/fancy/blue,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"cB" = (
-/obj/item/toy/figure/warden,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/food/salt,
-/obj/structure/chair/wood/wings,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"cC" = (
-/obj/item/toy/figure/hos,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/food/salt,
-/obj/structure/chair/wood/wings,
-/turf/open/floor/carpet,
-/area/ruin/space/has_grav/powered/macspace)
-"cD" = (
-/obj/item/toy/figure/detective,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/food/salt,
-/obj/structure/chair/wood/wings,
-/turf/open/floor/carpet,
-/area/ruin/space/has_grav/powered/macspace)
-"cE" = (
-/obj/structure/chair/wood/wings,
-/turf/open/floor/carpet,
-/area/ruin/space/has_grav/powered/macspace)
-"cF" = (
-/obj/item/toy/figure/miner,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/chair/wood/wings,
-/turf/open/floor/carpet,
-/area/ruin/space/has_grav/powered/macspace)
-"cG" = (
-/obj/structure/chair/wood/wings,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"cH" = (
-/obj/item/reagent_containers/food/snacks/kebab/rat/double,
-/obj/structure/table/wood/fancy/blue,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"cI" = (
-/obj/item/reagent_containers/food/snacks/salad/validsalad,
-/obj/structure/table/wood/fancy/blue,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"cJ" = (
-/obj/item/reagent_containers/food/snacks/burger/rat,
-/obj/structure/table/wood/fancy/blue,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"cK" = (
-/obj/item/reagent_containers/food/snacks/burrito,
-/obj/structure/table/wood/fancy/blue,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"cM" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/food/egg_smudge,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"cN" = (
-/obj/item/reagent_containers/food/snacks/fishfingers,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/table/wood/fancy/blue,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"cO" = (
-/obj/item/reagent_containers/food/snacks/carneburrito,
-/obj/structure/table/wood/fancy/blue,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"cP" = (
-/obj/item/reagent_containers/food/snacks/fishandchips,
-/obj/structure/table/wood/fancy/blue,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"cQ" = (
-/obj/item/reagent_containers/food/snacks/pizza/donkpocket,
-/obj/structure/table/wood/fancy/blue,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"cR" = (
-/obj/item/reagent_containers/food/snacks/pizza/dank,
-/obj/structure/table/wood/fancy/blue,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"cS" = (
-/obj/item/reagent_containers/food/snacks/pizza/mushroom{
- pixel_x = -5
- },
-/obj/structure/table/wood/fancy/blue,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"cT" = (
-/obj/item/reagent_containers/food/snacks/pizza/sassysage,
-/obj/structure/table/wood/fancy/blue,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"cU" = (
-/obj/item/reagent_containers/food/snacks/pizza/meat,
-/obj/structure/table/wood/fancy/blue,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"cV" = (
-/obj/item/reagent_containers/food/snacks/pizza/pineapple,
-/obj/structure/table/wood/fancy/blue,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"cW" = (
-/obj/item/toy/figure/lawyer,
-/obj/structure/chair/wood/wings{
- dir = 1;
- icon_state = "wooden_chair_wings"
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"cX" = (
-/obj/item/toy/figure/secofficer,
-/obj/structure/chair/wood/wings{
- dir = 1;
- icon_state = "wooden_chair_wings"
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"cY" = (
-/obj/machinery/light/directional/south,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"cZ" = (
-/obj/item/toy/figure/cargotech,
-/obj/structure/chair/wood/wings{
- dir = 1;
- icon_state = "wooden_chair_wings"
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"da" = (
-/obj/item/toy/figure/syndie,
-/obj/item/gun/ballistic/automatic/toy/pistol,
-/obj/item/toy/sword,
-/obj/effect/decal/cleanable/food/tomato_smudge,
-/obj/structure/chair/wood/wings{
- dir = 1;
- icon_state = "wooden_chair_wings"
- },
-/obj/effect/decal/cleanable/food/salt,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"db" = (
-/obj/structure/sign/poster/contraband/eat,
-/turf/closed/wall,
-/area/ruin/space/has_grav/powered/macspace)
-"dd" = (
-/obj/structure/sign/poster/contraband/eat,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/ruin/space/has_grav/powered/macspace)
-"de" = (
-/turf/open/floor/mineral/titanium,
-/area/ruin/space/has_grav/powered/macspace)
-"df" = (
-/obj/structure/statue/silver/sec,
-/turf/open/floor/mineral/titanium,
-/area/ruin/space/has_grav/powered/macspace)
-"dg" = (
-/turf/open/floor/plasteel/stairs,
-/area/ruin/space/has_grav/powered/macspace)
-"dh" = (
-/obj/machinery/mech_bay_recharge_port,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/mineral/titanium,
-/area/ruin/space/has_grav/powered/macspace)
-"di" = (
-/turf/open/floor/mech_bay_recharge_floor,
-/area/ruin/space/has_grav/powered/macspace)
-"dj" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/closed/wall,
-/area/ruin/space/has_grav/powered/macspace)
-"dk" = (
-/obj/machinery/atmospherics/components/unary/tank/oxygen,
-/turf/open/floor/mineral/titanium,
-/area/ruin/space/has_grav/powered/macspace)
-"dl" = (
-/obj/structure/tank_dispenser,
-/turf/open/floor/mineral/titanium,
-/area/ruin/space/has_grav/powered/macspace)
-"dm" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/mineral/titanium,
-/area/ruin/space/has_grav/powered/macspace)
-"dn" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/open/floor/mineral/titanium,
-/area/ruin/space/has_grav/powered/macspace)
-"do" = (
-/obj/machinery/atmospherics/pipe/manifold4w,
-/turf/closed/wall,
-/area/ruin/space/has_grav/powered/macspace)
-"dp" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 1
- },
-/obj/machinery/portable_atmospherics/pump,
-/turf/open/floor/mineral/titanium,
-/area/ruin/space/has_grav/powered/macspace)
-"dq" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/closed/wall,
-/area/ruin/space/has_grav/powered/macspace)
-"dx" = (
-/obj/structure/chair/wood/wings{
- dir = 4;
- icon_state = "wooden_chair_wings"
- },
-/obj/item/toy/toy_xeno,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/carpet,
-/area/ruin/space/has_grav/powered/macspace)
-"dy" = (
-/obj/structure/chair/wood/wings{
- dir = 8;
- icon_state = "wooden_chair_wings"
- },
-/obj/item/toy/plush/slimeplushie,
-/obj/item/toy/figure/rd,
-/turf/open/floor/carpet,
-/area/ruin/space/has_grav/powered/macspace)
-"dz" = (
-/obj/structure/chair/wood/wings{
- dir = 4;
- icon_state = "wooden_chair_wings"
- },
-/obj/item/toy/figure/scientist,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/carpet,
-/area/ruin/space/has_grav/powered/macspace)
-"dB" = (
-/obj/structure/chair/wood/wings{
- dir = 8;
- icon_state = "wooden_chair_wings"
- },
-/obj/item/toy/talking/AI,
-/turf/open/floor/carpet,
-/area/ruin/space/has_grav/powered/macspace)
-"dC" = (
-/obj/item/toy/figure/botanist,
-/obj/structure/chair/wood/wings{
- dir = 8;
- icon_state = "wooden_chair_wings"
- },
-/obj/item/toy/plush/beeplushie,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"dD" = (
-/obj/structure/chair/wood/wings{
- dir = 4;
- icon_state = "wooden_chair_wings"
- },
-/obj/item/toy/figure/roboticist,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/carpet,
-/area/ruin/space/has_grav/powered/macspace)
-"dF" = (
-/obj/structure/chair/wood/wings{
- dir = 1;
- icon_state = "wooden_chair_wings"
- },
-/obj/item/toy/plush/nukeplushie,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/powered/macspace)
-"dG" = (
-/obj/effect/decal/cleanable/food/flour,
-/turf/open/floor/carpet,
-/area/ruin/space/has_grav/powered/macspace)
-"dH" = (
-/obj/structure/chair/wood/wings,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/carpet,
-/area/ruin/space/has_grav/powered/macspace)
-"eB" = (
-/obj/machinery/light/floor,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/carpet,
-/area/ruin/space/has_grav/powered/macspace)
-"gO" = (
-/obj/machinery/door/airlock/silver,
-/obj/structure/fans/tiny,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 1
- },
-/turf/open/floor/mineral/titanium,
-/area/ruin/space/has_grav/powered/macspace)
-"jH" = (
-/obj/structure/table/wood/fancy/blue,
-/obj/item/reagent_containers/food/snacks/pizza/margherita,
-/turf/open/floor/carpet,
-/area/ruin/space/has_grav/powered/macspace)
-"yl" = (
-/obj/structure/table/wood/fancy/blue,
-/obj/item/reagent_containers/food/snacks/burger/brain,
-/turf/open/floor/carpet,
-/area/ruin/space/has_grav/powered/macspace)
-"Im" = (
-/obj/machinery/door/airlock/silver,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper,
-/turf/open/floor/mineral/gold,
-/area/ruin/space/has_grav/powered/macspace)
-"JK" = (
-/obj/vehicle/ridden/atv,
-/turf/open/floor/mineral/titanium/airless,
-/area/ruin/space/has_grav/powered/macspace)
-"LY" = (
-/obj/structure/table/wood/fancy/blue,
-/obj/item/reagent_containers/food/snacks/burger/jelly/slime,
-/turf/open/floor/carpet,
-/area/ruin/space/has_grav/powered/macspace)
-"OA" = (
-/obj/vehicle/ridden/janicart/upgraded,
-/turf/open/floor/mineral/titanium/airless,
-/area/ruin/space/has_grav/powered/macspace)
-"VM" = (
-/turf/open/floor/mineral/titanium/airless,
-/area/ruin/space/has_grav/powered/macspace)
-
-(1,1,1) = {"
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-ac
-ac
-aa
-aa
-aa
-aa
-ad
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(2,1,1) = {"
-aa
-aa
-aa
-ac
-ad
-ad
-ac
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-aa
-aa
-ad
-ad
-ad
-ad
-ac
-aa
-aa
-aa
-aa
-aa
-"}
-(3,1,1) = {"
-aa
-aa
-aa
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-aa
-aa
-aa
-aa
-"}
-(4,1,1) = {"
-aa
-ac
-ac
-ad
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ad
-ad
-ac
-aa
-aa
-aa
-aa
-"}
-(5,1,1) = {"
-aa
-ac
-ad
-ad
-ae
-am
-aF
-ag
-ba
-bj
-bw
-bL
-ag
-cf
-bw
-bL
-ag
-ag
-ae
-ad
-ad
-ad
-ac
-aa
-aa
-aa
-"}
-(6,1,1) = {"
-aa
-ac
-ad
-ad
-ae
-an
-aG
-aR
-ao
-bk
-bx
-ag
-aP
-cg
-cq
-cB
-cH
-cW
-ae
-ad
-ad
-ad
-ac
-aa
-aa
-aa
-"}
-(7,1,1) = {"
-aa
-ad
-ad
-ad
-ae
-ag
-aH
-aS
-ag
-bl
-by
-bM
-bW
-ch
-cr
-cC
-cI
-cX
-ae
-ad
-ad
-ad
-ad
-ac
-ac
-aa
-"}
-(8,1,1) = {"
-aa
-ad
-ad
-ad
-ae
-ao
-ao
-ao
-ao
-bm
-bz
-bN
-bX
-bz
-cs
-cD
-cJ
-cX
-ae
-ad
-ad
-ad
-ad
-ac
-ac
-ac
-"}
-(9,1,1) = {"
-aa
-ac
-ad
-ad
-ae
-ag
-aI
-aI
-ag
-ag
-bA
-bN
-bN
-ci
-bN
-bM
-aP
-aM
-ae
-ad
-ad
-ad
-ad
-ac
-ac
-ac
-"}
-(10,1,1) = {"
-ac
-ac
-ad
-ad
-ae
-ap
-aJ
-aJ
-bb
-bc
-bT
-bT
-bM
-bN
-bN
-cE
-cK
-aR
-ae
-ae
-ae
-ae
-ae
-VM
-VM
-ac
-"}
-(11,1,1) = {"
-ac
-ac
-ad
-ad
-ae
-ae
-ae
-ae
-ae
-bo
-bC
-bO
-bA
-bN
-cu
-cE
-aI
-aR
-ae
-de
-dl
-dl
-ae
-JK
-VM
-ac
-"}
-(12,1,1) = {"
-ac
-ac
-ad
-ad
-ae
-aq
-ag
-ae
-aZ
-bp
-bo
-bT
-bM
-bW
-cy
-cE
-cK
-aR
-db
-de
-de
-de
-db
-VM
-VM
-aa
-"}
-(13,1,1) = {"
-ac
-ac
-ad
-ad
-ae
-ar
-ag
-ae
-aZ
-bq
-bD
-bT
-bY
-cl
-cv
-bM
-ag
-aM
-ae
-df
-de
-de
-ae
-JK
-VM
-aa
-"}
-(14,1,1) = {"
-ac
-ac
-ad
-ad
-ae
-as
-ag
-aT
-ag
-aP
-bE
-bP
-bZ
-eB
-cl
-bM
-ao
-ag
-Im
-dg
-de
-de
-gO
-VM
-VM
-aa
-"}
-(15,1,1) = {"
-ac
-ad
-ad
-ad
-ae
-at
-aK
-ae
-bd
-ag
-bo
-bQ
-bY
-cl
-cx
-bM
-cM
-ao
-Im
-dg
-de
-de
-gO
-VM
-VM
-aa
-"}
-(16,1,1) = {"
-ac
-ae
-ae
-ae
-ae
-au
-ag
-aU
-ag
-ag
-bG
-bT
-bM
-bN
-bN
-bM
-ag
-cY
-ae
-df
-de
-de
-ae
-VM
-VM
-aa
-"}
-(17,1,1) = {"
-ac
-ae
-af
-ah
-ae
-av
-ag
-ae
-be
-br
-bH
-bR
-dx
-dz
-dD
-dH
-cN
-aR
-dd
-dh
-dm
-de
-db
-VM
-VM
-aa
-"}
-(18,1,1) = {"
-ac
-ae
-af
-ai
-ak
-aw
-aL
-ak
-bf
-bs
-bI
-bT
-yl
-jH
-LY
-cE
-cO
-aR
-ae
-di
-dn
-dp
-ae
-JK
-VM
-aa
-"}
-(19,1,1) = {"
-ad
-ae
-af
-aj
-al
-ag
-ag
-aW
-ag
-ag
-bJ
-bS
-dy
-dB
-dB
-cE
-cP
-aR
-ae
-dj
-do
-dq
-ae
-JK
-VM
-aa
-"}
-(20,1,1) = {"
-ad
-ae
-aE
-ag
-ae
-ag
-aM
-ae
-ag
-bt
-bE
-bS
-bM
-bM
-bM
-bW
-ag
-aM
-ae
-dk
-dk
-dk
-ae
-VM
-VM
-ac
-"}
-(21,1,1) = {"
-ac
-ae
-aV
-ag
-ae
-ag
-aN
-ae
-ag
-aN
-bo
-bT
-bN
-ct
-bN
-cE
-cQ
-cZ
-ae
-ae
-ae
-ae
-ae
-VM
-OA
-ac
-"}
-(22,1,1) = {"
-ad
-ae
-ae
-ae
-ae
-ag
-ag
-aT
-ag
-ag
-bK
-bU
-bM
-bM
-dG
-cE
-cR
-cZ
-ae
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-"}
-(23,1,1) = {"
-ad
-ad
-ad
-ad
-ae
-ax
-ag
-ae
-ag
-ag
-bo
-bT
-ca
-ca
-ca
-cF
-cS
-cZ
-ae
-ad
-ad
-ad
-ad
-ad
-ac
-ac
-"}
-(24,1,1) = {"
-ad
-ad
-ad
-ad
-ae
-aB
-ag
-ae
-ay
-bb
-ag
-bT
-cc
-cn
-cz
-bM
-ag
-aM
-ae
-ad
-ad
-ad
-ad
-ac
-ac
-aa
-"}
-(25,1,1) = {"
-aa
-ad
-ad
-ad
-ae
-ae
-aO
-ae
-ae
-ae
-ae
-ag
-aJ
-aJ
-aJ
-cG
-cT
-aR
-ae
-ad
-ad
-ad
-aa
-ac
-aa
-aa
-"}
-(26,1,1) = {"
-ac
-ac
-ad
-ad
-ae
-aC
-aN
-aX
-ag
-cm
-ae
-ag
-ag
-bh
-ag
-cG
-cU
-dF
-ae
-ad
-ad
-ad
-aa
-ac
-aa
-aa
-"}
-(27,1,1) = {"
-aa
-ac
-ad
-ad
-ae
-az
-aN
-aY
-bi
-bu
-ae
-ag
-bw
-bw
-bw
-cG
-cV
-da
-ae
-ad
-ad
-ac
-ac
-ac
-aa
-aa
-"}
-(28,1,1) = {"
-ac
-ac
-ad
-ad
-ae
-aA
-aP
-ag
-ag
-ag
-ae
-ag
-cd
-co
-cA
-bh
-bh
-aM
-ae
-ad
-ac
-ac
-ac
-aa
-aa
-aa
-"}
-(29,1,1) = {"
-aa
-ac
-ad
-ad
-ae
-ag
-aQ
-aD
-bn
-bv
-ae
-bV
-ce
-dC
-cp
-bb
-ag
-ag
-ae
-ad
-ad
-ac
-ac
-aa
-aa
-aa
-"}
-(30,1,1) = {"
-aa
-ac
-ad
-ad
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ad
-ad
-aa
-aa
-aa
-aa
-aa
-"}
-(31,1,1) = {"
-aa
-aa
-ac
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ac
-ac
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(32,1,1) = {"
-aa
-aa
-aa
-ac
-ad
-ac
-ad
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
diff --git a/_maps/RandomRuins/SpaceRuins/astraeus.dmm b/_maps/RandomRuins/SpaceRuins/astraeus.dmm
index 2629cc5d1cd..655aff67aa1 100644
--- a/_maps/RandomRuins/SpaceRuins/astraeus.dmm
+++ b/_maps/RandomRuins/SpaceRuins/astraeus.dmm
@@ -1234,9 +1234,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/dark/airless,
/area/ruin/space/has_grav/astraeus/bridge)
-"GV" = (
-/turf/closed/mineral/random/high_chance,
-/area/ruin/unpowered)
"Ha" = (
/obj/structure/disposalpipe/broken,
/obj/effect/decal/cleanable/dirt,
@@ -1724,7 +1721,7 @@
/turf/open/floor/plasteel/airless,
/area/ruin/space/has_grav/astraeus/munitions)
"TV" = (
-/obj/machinery/computer/communications{
+/obj/structure/frame/computer{
dir = 8
},
/turf/open/floor/plating/airless,
@@ -2305,7 +2302,7 @@ Wy
ac
ac
ac
-GV
+zq
zq
zq
FB
@@ -2342,9 +2339,9 @@ ac
ac
ac
zq
-GV
-GV
-GV
+zq
+zq
+zq
zq
ac
"}
@@ -2379,9 +2376,9 @@ FL
Wy
ac
zq
-GV
-GV
-GV
+zq
+zq
+zq
zq
ac
"}
@@ -2416,8 +2413,8 @@ ac
ac
ac
zq
-GV
-GV
+zq
+zq
zq
FB
ac
@@ -2452,9 +2449,9 @@ Fb
WQ
ac
ac
-GV
-GV
-GV
+zq
+zq
+zq
zq
FB
ac
@@ -2490,8 +2487,8 @@ ac
ac
ac
FB
-GV
-GV
+zq
+zq
zq
ac
ac
@@ -2527,8 +2524,8 @@ ac
ac
ac
FB
-GV
-GV
+zq
+zq
zq
ac
ac
@@ -2565,7 +2562,7 @@ ac
ac
lF
ph
-GV
+zq
FB
ac
ac
@@ -2602,7 +2599,7 @@ ac
ac
wX
Nj
-GV
+zq
FB
ac
ac
@@ -2639,7 +2636,7 @@ WQ
ac
ac
Nj
-GV
+zq
zq
ac
ac
@@ -3045,8 +3042,8 @@ ac
FB
zq
zq
-GV
-GV
+zq
+zq
zq
zq
ac
@@ -3081,9 +3078,9 @@ ac
ac
zq
zq
-GV
-GV
-GV
+zq
+zq
+zq
zq
zq
ac
@@ -3118,9 +3115,9 @@ ac
ac
zq
zq
-GV
-GV
-GV
+zq
+zq
+zq
zq
FB
ac
@@ -3156,7 +3153,7 @@ ac
ac
zq
zq
-GV
+zq
zq
zq
FB
@@ -3193,7 +3190,7 @@ ac
ac
zq
zq
-GV
+zq
zq
FB
ac
@@ -3256,7 +3253,7 @@ FB
FB
zq
zq
-GV
+zq
zq
zq
ac
@@ -3292,9 +3289,9 @@ FB
zq
zq
zq
-GV
-GV
-GV
+zq
+zq
+zq
zq
zq
zq
@@ -3365,9 +3362,9 @@ VG
FB
zq
zq
-GV
+zq
FB
-GV
+zq
FB
FB
FB
@@ -3400,13 +3397,13 @@ zq
Ub
FB
FB
-GV
-GV
-GV
+zq
+zq
+zq
FB
-GV
-GV
-GV
+zq
+zq
+zq
zq
zq
zq
@@ -3441,10 +3438,10 @@ zq
zq
FB
FB
-GV
-GV
-GV
-GV
+zq
+zq
+zq
+zq
zq
zq
zq
@@ -3472,7 +3469,7 @@ zq
zq
zq
zq
-GV
+zq
FB
FB
FB
@@ -3481,8 +3478,8 @@ FB
FB
FB
FB
-GV
-GV
+zq
+zq
zq
zq
ac
@@ -3508,17 +3505,17 @@ ac
zq
zq
zq
-GV
-GV
-GV
-GV
-GV
+zq
+zq
+zq
+zq
+zq
zq
FB
ra
-GV
-GV
-GV
+zq
+zq
+zq
zq
zq
ac
@@ -3546,14 +3543,14 @@ ac
zq
zq
zq
-GV
-GV
-GV
-GV
-GV
+zq
+zq
+zq
+zq
+zq
FB
FB
-GV
+zq
zq
zq
ac
@@ -3696,9 +3693,9 @@ ac
ac
zq
zq
-GV
-GV
-GV
+zq
+zq
+zq
FB
zq
zq
diff --git a/_maps/RandomRuins/SpaceRuins/bigderelict1.dmm b/_maps/RandomRuins/SpaceRuins/bigderelict1.dmm
index a4f6006bf88..73f4a5875db 100644
--- a/_maps/RandomRuins/SpaceRuins/bigderelict1.dmm
+++ b/_maps/RandomRuins/SpaceRuins/bigderelict1.dmm
@@ -522,9 +522,7 @@
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/derelictoutpost/powerstorage)
"bI" = (
-/obj/item/gun/ballistic/automatic/pistol/candor{
- spawnwithmagazine = 0
- },
+/obj/item/gun/ballistic/automatic/pistol/candor/no_mag,
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/derelictoutpost/powerstorage)
"bJ" = (
@@ -1333,9 +1331,7 @@
desc = "A thick gelatinous surface covers the floor. Someone get the golashes.";
name = "gelatinous floor"
},
-/obj/item/gun/ballistic/automatic/pistol/candor{
- spawnwithmagazine = 0
- },
+/obj/item/gun/ballistic/automatic/pistol/candor/no_mag,
/obj/item/ammo_box/magazine/m45,
/turf/open/floor/plating/asteroid,
/area/ruin/space/has_grav/derelictoutpost)
@@ -1493,9 +1489,7 @@
/turf/open/floor/plating,
/area/ruin/space/has_grav/derelictoutpost)
"dJ" = (
-/obj/item/gun/ballistic/automatic/pistol/candor{
- spawnwithmagazine = 0
- },
+/obj/item/gun/ballistic/automatic/pistol/candor/no_mag,
/obj/structure/alien/weeds{
color = "#4BAE56";
desc = "A thick gelatinous surface covers the floor. Someone get the golashes.";
diff --git a/_maps/RandomRuins/SpaceRuins/crashedship.dmm b/_maps/RandomRuins/SpaceRuins/crashedship.dmm
deleted file mode 100644
index 9a154053c0b..00000000000
--- a/_maps/RandomRuins/SpaceRuins/crashedship.dmm
+++ /dev/null
@@ -1,5676 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"aa" = (
-/turf/template_noop,
-/area/template_noop)
-"ab" = (
-/obj/item/circular_saw,
-/obj/structure/lattice,
-/turf/template_noop,
-/area/space/nearstation)
-"ac" = (
-/turf/closed/wall/mineral/titanium,
-/area/awaymission/BMPship/Aft)
-"ad" = (
-/obj/machinery/button/door{
- id = "packerMed";
- pixel_x = 0;
- pixel_y = -25
- },
-/turf/open/floor/plating/airless,
-/area/awaymission/BMPship/Midship)
-"ae" = (
-/turf/closed/wall/mineral/titanium/overspace,
-/area/awaymission/BMPship/Aft)
-"af" = (
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/obj/machinery/button/door{
- id = "packerMed";
- pixel_x = 0;
- pixel_y = 25
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Midship)
-"ah" = (
-/turf/open/floor/engine,
-/area/awaymission/BMPship/Aft)
-"aj" = (
-/obj/effect/spawner/structure/window/hollow/reinforced/middle{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/awaymission/BMPship/Aft)
-"ak" = (
-/obj/machinery/door/airlock/titanium,
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Aft)
-"al" = (
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Aft)
-"am" = (
-/obj/structure/lattice,
-/turf/template_noop,
-/area/space/nearstation)
-"an" = (
-/obj/structure/window/reinforced,
-/obj/effect/spawner/structure/window/hollow/reinforced/middle{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/awaymission/BMPship/Aft)
-"ap" = (
-/turf/closed/wall/mineral/titanium/nodiagonal,
-/area/awaymission/BMPship/Midship)
-"aq" = (
-/turf/closed/wall/mineral/titanium,
-/area/awaymission/BMPship/Midship)
-"ar" = (
-/obj/effect/mapping_helpers/airlock/locked,
-/obj/machinery/door/airlock/titanium,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/awaymission/BMPship/Aft)
-"as" = (
-/obj/structure/bed/roller,
-/turf/open/floor/plating/airless,
-/area/awaymission/BMPship/Midship)
-"at" = (
-/turf/open/floor/plating/airless,
-/area/awaymission/BMPship/Midship)
-"au" = (
-/obj/item/restraints/handcuffs,
-/obj/item/restraints/handcuffs,
-/obj/structure/closet/crate,
-/turf/open/floor/plating/airless,
-/area/awaymission/BMPship/Midship)
-"av" = (
-/obj/item/scalpel,
-/obj/structure/closet/crate,
-/obj/item/tank/internals/anesthetic,
-/turf/open/floor/plating/airless,
-/area/awaymission/BMPship/Midship)
-"aw" = (
-/obj/item/bodybag,
-/turf/open/floor/plating/airless,
-/area/awaymission/BMPship/Midship)
-"ax" = (
-/obj/item/storage/box/syringes,
-/turf/open/floor/plating/airless,
-/area/awaymission/BMPship/Midship)
-"ay" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/plating/airless,
-/area/awaymission/BMPship/Midship)
-"az" = (
-/obj/structure/table/optable,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating/airless,
-/area/awaymission/BMPship/Midship)
-"aA" = (
-/obj/machinery/computer/operating{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/plating/airless,
-/area/awaymission/BMPship/Midship)
-"aB" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Aft)
-"aC" = (
-/obj/structure/closet/crate/freezer,
-/obj/item/organ/appendix,
-/obj/item/reagent_containers/food/snacks/meat/slab,
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Aft)
-"aD" = (
-/obj/structure/closet/crate/freezer,
-/obj/item/organ/brain,
-/obj/item/reagent_containers/food/snacks/meat/slab,
-/obj/item/reagent_containers/food/snacks/meat/slab/human/mutant/slime,
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Aft)
-"aE" = (
-/obj/structure/table,
-/obj/item/stack/packageWrap,
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Aft)
-"aG" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Aft)
-"aI" = (
-/turf/closed/wall/mineral/titanium/overspace,
-/area/awaymission/BMPship/Fore)
-"aL" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating/airless,
-/area/awaymission/BMPship/Midship)
-"aM" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Aft)
-"aN" = (
-/obj/item/storage/box,
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Aft)
-"aO" = (
-/obj/item/hand_labeler,
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Aft)
-"aP" = (
-/obj/structure/closet/crate/large,
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Aft)
-"aR" = (
-/obj/structure/table/wood,
-/obj/item/spacecash/bundle/c500,
-/obj/item/spacecash/bundle/c100,
-/obj/item/reagent_containers/food/drinks/beer,
-/turf/open/floor/wood,
-/area/awaymission/BMPship/Fore)
-"aS" = (
-/obj/structure/bed,
-/obj/item/bedsheet/yellow,
-/turf/open/floor/wood,
-/area/awaymission/BMPship/Fore)
-"aT" = (
-/turf/closed/wall/mineral/titanium,
-/area/awaymission/BMPship/Fore)
-"aU" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Fore)
-"aV" = (
-/obj/structure/rack,
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Fore)
-"aW" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Fore)
-"aX" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Fore)
-"aY" = (
-/obj/structure/sign/warning/vacuum,
-/turf/closed/wall/mineral/titanium,
-/area/awaymission/BMPship/Fore)
-"bb" = (
-/obj/effect/decal/cleanable/blood/gibs/old,
-/obj/effect/gibspawner/human,
-/turf/open/floor/plating/airless,
-/area/awaymission/BMPship/Midship)
-"bc" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/item/clothing/glasses/regular/hipster,
-/turf/open/floor/plating/airless,
-/area/awaymission/BMPship/Midship)
-"be" = (
-/obj/machinery/door/airlock/titanium,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating/airless,
-/area/awaymission/BMPship/Midship)
-"bf" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Aft)
-"bg" = (
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Aft)
-"bh" = (
-/obj/structure/closet/crate/freezer,
-/obj/item/reagent_containers/food/drinks/beer,
-/obj/item/reagent_containers/food/drinks/beer,
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Aft)
-"bi" = (
-/obj/machinery/computer/teleporter,
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Aft)
-"bj" = (
-/obj/machinery/teleport/station,
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Aft)
-"bk" = (
-/obj/machinery/teleport/hub,
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Aft)
-"bl" = (
-/obj/effect/spawner/structure/window/hollow/reinforced/middle{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/awaymission/BMPship/Fore)
-"bm" = (
-/turf/open/floor/wood,
-/area/awaymission/BMPship/Fore)
-"bo" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Fore)
-"bp" = (
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Fore)
-"bq" = (
-/obj/machinery/door/airlock/external{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Fore)
-"bs" = (
-/obj/structure/closet/crate,
-/obj/item/spacecash/bundle/c1000,
-/obj/item/spacecash/bundle/c50,
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Aft)
-"bt" = (
-/obj/structure/window/reinforced,
-/obj/effect/spawner/structure/window/hollow/reinforced/middle{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/awaymission/BMPship/Fore)
-"bu" = (
-/turf/open/floor/wood{
- icon_state = "wood-broken"
- },
-/area/awaymission/BMPship/Fore)
-"bv" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 2
- },
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Fore)
-"bx" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Fore)
-"bA" = (
-/obj/machinery/sleeper{
- dir = 1
- },
-/turf/open/floor/plating/airless,
-/area/awaymission/BMPship/Midship)
-"bB" = (
-/obj/machinery/sleep_console,
-/turf/open/floor/plating/airless,
-/area/awaymission/BMPship/Midship)
-"bD" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Aft)
-"bE" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/item/hand_labeler,
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Aft)
-"bG" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/item/storage/box,
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Aft)
-"bH" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Aft)
-"bK" = (
-/obj/machinery/door/poddoor/shutters{
- id = "packerMed"
- },
-/turf/open/floor/plating/airless,
-/area/awaymission/BMPship/Midship)
-"bL" = (
-/obj/structure/closet/crate/large,
-/obj/effect/turf_decal/industrial/warning{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Aft)
-"bM" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 2
- },
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Aft)
-"bO" = (
-/obj/structure/kitchenspike,
-/obj/effect/turf_decal/industrial/warning{
- dir = 2
- },
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Aft)
-"bP" = (
-/obj/structure/closet/crate,
-/obj/item/analyzer,
-/obj/item/spacecash/bundle/c10,
-/obj/effect/turf_decal/industrial/warning{
- dir = 2
- },
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Aft)
-"bQ" = (
-/obj/structure/closet/crate,
-/obj/item/spacecash/bundle/c1000,
-/obj/item/spacecash/bundle/c200,
-/obj/item/spacecash/bundle/c500,
-/obj/effect/turf_decal/industrial/warning{
- dir = 2
- },
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Aft)
-"bR" = (
-/obj/structure/closet/crate/freezer,
-/obj/item/reagent_containers/food/snacks/hugemushroomslice,
-/obj/item/organ/appendix,
-/obj/item/reagent_containers/food/snacks/meat/slab,
-/obj/effect/turf_decal/industrial/warning{
- dir = 2
- },
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Aft)
-"bT" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 2
- },
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Aft)
-"bU" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Aft)
-"bV" = (
-/turf/open/floor/carpet,
-/area/awaymission/BMPship/Fore)
-"bW" = (
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/machinery/power/apc/unlocked{
- dir = 1;
- environ = 0;
- equipment = 3;
- pixel_y = 25;
- req_access = null
- },
-/turf/open/floor/carpet,
-/area/awaymission/BMPship/Fore)
-"bX" = (
-/obj/structure/table,
-/obj/item/screwdriver,
-/obj/item/screwdriver,
-/obj/item/paper/fluff/ruins/crashedship/scribbled,
-/obj/item/screwdriver,
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Midship)
-"bZ" = (
-/obj/machinery/hydroponics,
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Midship)
-"ca" = (
-/obj/structure/sink{
- dir = 2
- },
-/obj/effect/turf_decal/corner/opaque/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/yellow{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Midship)
-"cc" = (
-/obj/machinery/vending/hydronutrients,
-/obj/effect/turf_decal/corner/opaque/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/yellow{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Midship)
-"cd" = (
-/obj/machinery/hydroponics,
-/obj/effect/turf_decal/corner/opaque/green,
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Midship)
-"ce" = (
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Midship)
-"cf" = (
-/obj/structure/table,
-/obj/item/kitchen/knife/butcher,
-/obj/item/reagent_containers/food/drinks/beer,
-/obj/item/reagent_containers/food/snacks/meat,
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 4
- },
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Midship)
-"cg" = (
-/obj/structure/table,
-/obj/item/storage/box/donkpockets,
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 4
- },
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Midship)
-"ch" = (
-/obj/structure/table,
-/obj/machinery/microwave,
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 4
- },
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Midship)
-"cj" = (
-/obj/structure/table,
-/obj/item/reagent_containers/food/drinks/beer,
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Midship)
-"ck" = (
-/obj/structure/table,
-/obj/item/kitchen/knife,
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Midship)
-"cm" = (
-/obj/structure/table,
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Midship)
-"cn" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/titanium,
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Aft)
-"cp" = (
-/obj/item/reagent_containers/food/snacks/hugemushroomslice,
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Midship)
-"cq" = (
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Midship)
-"cr" = (
-/obj/item/reagent_containers/food/drinks/beer,
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Midship)
-"cs" = (
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 4
- },
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Midship)
-"ct" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 4
- },
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Midship)
-"cu" = (
-/obj/structure/chair/stool,
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Midship)
-"cv" = (
-/obj/structure/kitchenspike,
-/turf/open/floor/plasteel/showroomfloor,
-/area/awaymission/BMPship/Aft)
-"cw" = (
-/turf/open/floor/plasteel/showroomfloor,
-/area/awaymission/BMPship/Aft)
-"cx" = (
-/obj/machinery/door/airlock/titanium,
-/turf/open/floor/plasteel/showroomfloor,
-/area/awaymission/BMPship/Aft)
-"cy" = (
-/turf/open/floor/plasteel/white,
-/area/awaymission/BMPship/Aft)
-"cA" = (
-/obj/effect/decal/cleanable/blood/gibs/old,
-/turf/open/floor/plasteel/white,
-/area/awaymission/BMPship/Aft)
-"cB" = (
-/obj/machinery/gibber,
-/turf/open/floor/plasteel/white,
-/area/awaymission/BMPship/Aft)
-"cE" = (
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Aft)
-"cG" = (
-/turf/closed/wall/mineral/titanium/interior,
-/area/awaymission/BMPship/Fore)
-"cH" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/carpet,
-/area/awaymission/BMPship/Fore)
-"cI" = (
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/carpet,
-/area/awaymission/BMPship/Fore)
-"cJ" = (
-/obj/item/reagent_containers/food/snacks/hugemushroomslice,
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Midship)
-"cK" = (
-/obj/machinery/door/airlock/titanium,
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Midship)
-"cL" = (
-/obj/structure/window/reinforced,
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 4
- },
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Midship)
-"cM" = (
-/obj/structure/window/reinforced,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 4
- },
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Midship)
-"cN" = (
-/obj/machinery/door/window,
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 4
- },
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Midship)
-"cO" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced,
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 4
- },
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Midship)
-"cP" = (
-/obj/item/reagent_containers/food/drinks/beer,
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Midship)
-"cQ" = (
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/awaymission/BMPship/Aft)
-"cR" = (
-/obj/structure/closet/secure_closet/freezer/meat/open{
- opened = 1
- },
-/turf/open/floor/plasteel/white,
-/area/awaymission/BMPship/Aft)
-"cS" = (
-/obj/structure/closet/crate/freezer,
-/obj/item/reagent_containers/food/snacks/meat/slab,
-/obj/item/reagent_containers/food/snacks/meat/slab,
-/turf/open/floor/plasteel/white,
-/area/awaymission/BMPship/Aft)
-"cT" = (
-/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/plasteel/white,
-/area/awaymission/BMPship/Aft)
-"cU" = (
-/obj/item/crowbar,
-/turf/open/floor/plasteel/white,
-/area/awaymission/BMPship/Aft)
-"cV" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Aft)
-"cW" = (
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/machinery/power/apc/unlocked{
- dir = 1;
- environ = 0;
- equipment = 3;
- pixel_y = 25;
- req_access = null
- },
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Aft)
-"cX" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Aft)
-"cY" = (
-/obj/structure/table,
-/obj/item/paper/fluff/ruins/crashedship/captains_log,
-/turf/open/floor/carpet,
-/area/awaymission/BMPship/Fore)
-"cZ" = (
-/obj/structure/table,
-/obj/item/reagent_containers/food/drinks/beer,
-/turf/open/floor/carpet,
-/area/awaymission/BMPship/Fore)
-"da" = (
-/obj/structure/frame/computer{
- anchored = 1
- },
-/turf/open/floor/carpet,
-/area/awaymission/BMPship/Fore)
-"db" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/carpet,
-/area/awaymission/BMPship/Fore)
-"dc" = (
-/obj/machinery/hydroponics,
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/green,
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Midship)
-"dd" = (
-/obj/effect/turf_decal/corner/opaque/green,
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Midship)
-"de" = (
-/obj/machinery/seed_extractor,
-/obj/item/seeds/plump/walkingmushroom,
-/obj/effect/turf_decal/corner/opaque/green,
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Midship)
-"df" = (
-/obj/machinery/hydroponics,
-/obj/effect/turf_decal/corner/opaque/green,
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 4
- },
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Midship)
-"dg" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Midship)
-"dh" = (
-/obj/machinery/light/small/directional/north,
-/turf/open/floor/plating/airless,
-/area/awaymission/BMPship/Fore)
-"di" = (
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Midship)
-"dj" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/awaymission/BMPship/Aft)
-"dk" = (
-/turf/closed/wall/mineral/titanium/nodiagonal,
-/area/awaymission/BMPship/Aft)
-"dl" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Aft)
-"dm" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Aft)
-"dn" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Aft)
-"do" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Aft)
-"dq" = (
-/obj/item/multitool,
-/obj/machinery/power/terminal{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/engine,
-/area/awaymission/BMPship/Aft)
-"dr" = (
-/obj/machinery/power/smes/shuttle{
- dir = 8
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/obj/effect/turf_decal/techfloor/orange{
- dir = 4
- },
-/turf/open/floor/engine/airless,
-/area/awaymission/BMPship/Aft)
-"ds" = (
-/obj/machinery/power/shuttle/engine/electric{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/engine/airless,
-/area/awaymission/BMPship/Aft)
-"dt" = (
-/obj/structure/table,
-/obj/machinery/recharger,
-/turf/open/floor/carpet,
-/area/awaymission/BMPship/Fore)
-"du" = (
-/obj/structure/chair/stool,
-/turf/open/floor/carpet,
-/area/awaymission/BMPship/Fore)
-"dx" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Midship)
-"dy" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Midship)
-"dz" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Midship)
-"dB" = (
-/turf/closed/wall/r_wall,
-/area/awaymission/BMPship/Midship)
-"dE" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Aft)
-"dG" = (
-/obj/effect/spawner/structure/window/hollow/reinforced/end{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Fore)
-"dH" = (
-/obj/item/shard,
-/turf/open/floor/carpet,
-/area/awaymission/BMPship/Fore)
-"dI" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/carpet,
-/area/awaymission/BMPship/Fore)
-"dJ" = (
-/obj/machinery/door/airlock/titanium,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/carpet,
-/area/awaymission/BMPship/Fore)
-"dK" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Midship)
-"dL" = (
-/obj/machinery/power/shieldwallgen,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Midship)
-"dM" = (
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Midship)
-"dN" = (
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/machinery/power/apc/unlocked{
- dir = 1;
- pixel_y = 25;
- req_access = null
- },
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Midship)
-"dO" = (
-/obj/effect/turf_decal/industrial/loading{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Midship)
-"dP" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "meatConvey1"
- },
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Midship)
-"dQ" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "meatConvey1"
- },
-/obj/structure/plasticflaps,
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Midship)
-"dR" = (
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/obj/machinery/disposal/deliveryChute{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Midship)
-"dS" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/awaymission/BMPship/Midship)
-"dT" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Midship)
-"dU" = (
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Midship)
-"dV" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Aft)
-"dW" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Aft)
-"dX" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Aft)
-"dY" = (
-/obj/structure/rack,
-/obj/item/storage/box/lights,
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Aft)
-"ea" = (
-/obj/machinery/power/smes/magical{
- desc = "A high-capacity superconducting magnetic energy storage (SMES) unit.";
- name = "power storage unit"
- },
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Aft)
-"eb" = (
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/machinery/power/terminal{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Aft)
-"ec" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Aft)
-"ed" = (
-/obj/effect/spawner/structure/window/hollow/reinforced/middle{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Fore)
-"ee" = (
-/obj/structure/table,
-/turf/open/floor/carpet,
-/area/awaymission/BMPship/Fore)
-"ef" = (
-/obj/structure/chair/office{
- dir = 8
- },
-/turf/open/floor/carpet,
-/area/awaymission/BMPship/Fore)
-"eg" = (
-/obj/item/shard{
- icon_state = "medium"
- },
-/turf/open/floor/carpet,
-/area/awaymission/BMPship/Fore)
-"eh" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Midship)
-"ei" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Midship)
-"ej" = (
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Midship)
-"ek" = (
-/obj/item/reagent_containers/glass/bucket,
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Midship)
-"el" = (
-/obj/machinery/conveyor_switch/oneway{
- id = "meatConvey1"
- },
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Midship)
-"em" = (
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Midship)
-"eo" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/awaymission/BMPship/Aft)
-"ep" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/awaymission/BMPship/Aft)
-"eq" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/structure/disposaloutlet{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Aft)
-"er" = (
-/obj/effect/decal/cleanable/blood/gibs/old,
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Aft)
-"es" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Aft)
-"et" = (
-/obj/structure/rack,
-/obj/item/storage/belt/utility/full,
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Aft)
-"eu" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Aft)
-"ev" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/carpet,
-/area/awaymission/BMPship/Fore)
-"ew" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/carpet,
-/area/awaymission/BMPship/Fore)
-"ex" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/carpet,
-/area/awaymission/BMPship/Fore)
-"ey" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/gibspawner/xeno,
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Midship)
-"ez" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Midship)
-"eA" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Midship)
-"eB" = (
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Midship)
-"eD" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Aft)
-"eE" = (
-/obj/effect/gibspawner/human,
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Aft)
-"eF" = (
-/obj/machinery/door/window{
- base_state = "right";
- dir = 4;
- icon_state = "right"
- },
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Aft)
-"eG" = (
-/obj/structure/rack,
-/obj/item/stock_parts/cell/high,
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Aft)
-"eH" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/effect/spawner/structure/window/hollow/reinforced/directional{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Fore)
-"eJ" = (
-/obj/machinery/door/window{
- base_state = "right";
- dir = 4;
- icon_state = "right"
- },
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Midship)
-"eL" = (
-/obj/effect/gibspawner/generic,
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Midship)
-"eM" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Midship)
-"eO" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/awaymission/BMPship/Aft)
-"eP" = (
-/obj/structure/rack,
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Aft)
-"eQ" = (
-/obj/machinery/power/smes/magical{
- desc = "A high-capacity superconducting magnetic energy storage (SMES) unit.";
- name = "power storage unit"
- },
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Aft)
-"eR" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Aft)
-"eS" = (
-/obj/effect/decal/cleanable/cobweb,
-/obj/machinery/power/terminal{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/engine,
-/area/awaymission/BMPship/Aft)
-"eT" = (
-/obj/structure/closet,
-/turf/open/floor/carpet,
-/area/awaymission/BMPship/Fore)
-"eV" = (
-/obj/item/wrench,
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Midship)
-"eW" = (
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Midship)
-"eX" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Midship)
-"eY" = (
-/obj/structure/mopbucket,
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Aft)
-"eZ" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/item/kitchen/knife,
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Aft)
-"fa" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/item/stock_parts/cell/high,
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Aft)
-"fc" = (
-/obj/machinery/door/airlock/titanium,
-/turf/open/floor/carpet,
-/area/awaymission/BMPship/Fore)
-"fd" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/titanium,
-/turf/open/floor/carpet,
-/area/awaymission/BMPship/Fore)
-"fe" = (
-/obj/effect/gibspawner/xeno,
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Midship)
-"ff" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/plasteel{
- icon_state = "panelscorched"
- },
-/area/awaymission/BMPship/Midship)
-"fg" = (
-/obj/structure/kitchenspike,
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Midship)
-"fi" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "meatConvey2"
- },
-/obj/item/kitchen/knife,
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Midship)
-"fj" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "meatConvey2"
- },
-/obj/structure/plasticflaps,
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Midship)
-"fk" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "meatConvey2"
- },
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Midship)
-"fl" = (
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Midship)
-"fm" = (
-/turf/closed/wall/mineral/titanium/interior,
-/area/awaymission/BMPship/Midship)
-"fn" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Aft)
-"fo" = (
-/obj/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Aft)
-"fp" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Aft)
-"fq" = (
-/obj/item/stack/cable_coil,
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Aft)
-"fs" = (
-/obj/item/stack/sheet/mineral/uranium{
- amount = 50
- },
-/obj/machinery/power/terminal{
- dir = 4
- },
-/obj/structure/cable,
-/turf/open/floor/engine,
-/area/awaymission/BMPship/Aft)
-"ft" = (
-/turf/open/floor/plating/airless{
- icon_state = "platingdmg1"
- },
-/area/awaymission/BMPship/Fore)
-"fu" = (
-/obj/structure/lattice,
-/turf/template_noop,
-/area/awaymission/BMPship/Fore)
-"fv" = (
-/turf/open/floor/plating/airless{
- icon_state = "platingdmg3"
- },
-/area/awaymission/BMPship/Fore)
-"fw" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/plating/airless,
-/area/awaymission/BMPship/Fore)
-"fx" = (
-/obj/item/shard{
- icon_state = "small"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating/airless,
-/area/awaymission/BMPship/Fore)
-"fy" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating/airless{
- icon_state = "panelscorched"
- },
-/area/awaymission/BMPship/Fore)
-"fz" = (
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/plating/airless{
- icon_state = "platingdmg3"
- },
-/area/awaymission/BMPship/Fore)
-"fA" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/item/kitchen/knife,
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Midship)
-"fB" = (
-/obj/machinery/conveyor_switch/oneway{
- id = "meatConvey2"
- },
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Midship)
-"fC" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/awaymission/BMPship/Aft)
-"fD" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/awaymission/BMPship/Aft)
-"fE" = (
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/awaymission/BMPship/Aft)
-"fF" = (
-/obj/item/mop,
-/turf/open/floor/plasteel/showroomfloor,
-/area/awaymission/BMPship/Aft)
-"fG" = (
-/obj/effect/decal/cleanable/oil,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Aft)
-"fH" = (
-/obj/structure/reagent_dispensers/fueltank,
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Aft)
-"fI" = (
-/turf/open/floor/plating/airless{
- icon_state = "platingdmg2"
- },
-/area/awaymission/BMPship/Fore)
-"fJ" = (
-/obj/item/shard,
-/turf/open/floor/plating/airless{
- icon_state = "platingdmg1"
- },
-/area/awaymission/BMPship/Fore)
-"fK" = (
-/obj/structure/chair/stool,
-/turf/open/floor/plating/airless{
- icon_state = "platingdmg3"
- },
-/area/awaymission/BMPship/Fore)
-"fL" = (
-/obj/item/stack/cable_coil{
- amount = 5
- },
-/turf/open/floor/plating/airless,
-/area/awaymission/BMPship/Fore)
-"fM" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating/airless,
-/area/awaymission/BMPship/Fore)
-"fN" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Midship)
-"fO" = (
-/obj/structure/closet/crate/freezer,
-/obj/item/reagent_containers/food/snacks/meat,
-/turf/open/floor/plasteel/showroomfloor,
-/area/awaymission/BMPship/Aft)
-"fP" = (
-/obj/item/reagent_containers/glass/bucket,
-/turf/open/floor/plasteel/showroomfloor,
-/area/awaymission/BMPship/Aft)
-"fQ" = (
-/obj/structure/reagent_dispensers,
-/turf/open/floor/plasteel/showroomfloor,
-/area/awaymission/BMPship/Aft)
-"fR" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Aft)
-"fS" = (
-/turf/open/floor/plating/asteroid/airless,
-/area/awaymission/BMPship)
-"fT" = (
-/obj/structure/frame/computer{
- anchored = 1;
- dir = 1
- },
-/turf/open/floor/plating/airless{
- icon_state = "panelscorched"
- },
-/area/awaymission/BMPship/Fore)
-"fU" = (
-/obj/structure/frame/computer{
- anchored = 1;
- dir = 1
- },
-/turf/open/floor/plating/airless{
- icon_state = "platingdmg1"
- },
-/area/awaymission/BMPship/Fore)
-"fW" = (
-/turf/open/floor/plasteel{
- icon_state = "platingdmg3"
- },
-/area/awaymission/BMPship/Midship)
-"fX" = (
-/turf/open/floor/plasteel{
- icon_state = "platingdmg1"
- },
-/area/awaymission/BMPship/Midship)
-"fY" = (
-/obj/effect/mapping_helpers/airlock/locked,
-/obj/machinery/door/airlock/titanium,
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Aft)
-"fZ" = (
-/obj/effect/mapping_helpers/airlock/locked,
-/obj/machinery/door/airlock/titanium,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Aft)
-"ga" = (
-/obj/machinery/door/airlock/titanium,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Aft)
-"gb" = (
-/turf/closed/mineral/random,
-/area/awaymission/BMPship)
-"gc" = (
-/obj/item/multitool,
-/turf/open/floor/plating/airless{
- icon_state = "platingdmg2"
- },
-/area/awaymission/BMPship)
-"gd" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/titanium,
-/turf/open/floor/plating/airless,
-/area/awaymission/BMPship/Fore)
-"ge" = (
-/obj/machinery/door/airlock/titanium,
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Midship)
-"gg" = (
-/obj/structure/chair/stool,
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Aft)
-"gh" = (
-/obj/structure/table,
-/obj/item/paper/fluff/ruins/crashedship/old_diary,
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Aft)
-"gi" = (
-/obj/structure/table,
-/obj/item/pen/red,
-/obj/item/reagent_containers/food/drinks/beer,
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Aft)
-"gj" = (
-/obj/structure/closet,
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Aft)
-"gk" = (
-/obj/effect/spawner/structure/window/hollow/reinforced/end{
- dir = 1
- },
-/turf/open/floor/plating/airless,
-/area/awaymission/BMPship/Fore)
-"gn" = (
-/obj/structure/cable,
-/turf/open/floor/plating/airless{
- icon_state = "platingdmg3"
- },
-/area/awaymission/BMPship/Fore)
-"gp" = (
-/turf/open/floor/plating/asteroid/airless,
-/area/awaymission/BMPship/Fore)
-"gq" = (
-/obj/structure/rack,
-/turf/open/floor/plating/airless,
-/area/awaymission/BMPship/Fore)
-"gs" = (
-/turf/open/floor/plating/asteroid/airless,
-/area/awaymission/BMPship/Midship)
-"gt" = (
-/turf/open/floor/plating/airless{
- icon_state = "platingdmg1"
- },
-/area/awaymission/BMPship/Midship)
-"gv" = (
-/obj/item/wallframe/apc,
-/turf/open/floor/plating/airless,
-/area/awaymission/BMPship/Midship)
-"gx" = (
-/obj/item/stack/cable_coil{
- amount = 5
- },
-/turf/open/floor/plating/airless,
-/area/awaymission/BMPship/Midship)
-"gy" = (
-/obj/structure/ore_box,
-/turf/open/floor/plating/airless,
-/area/awaymission/BMPship/Midship)
-"gz" = (
-/obj/machinery/computer/arcade,
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Aft)
-"gA" = (
-/obj/effect/decal/remains/human,
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Aft)
-"gC" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Aft)
-"gD" = (
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/item/wallframe/apc,
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Aft)
-"gE" = (
-/obj/effect/decal/remains/human,
-/obj/item/clothing/head/helmet/space/syndicate/green/dark,
-/obj/effect/gibspawner/generic,
-/turf/open/floor/plating/asteroid/airless,
-/area/awaymission/BMPship)
-"gF" = (
-/obj/effect/spawner/structure/window/hollow/reinforced/directional{
- dir = 4
- },
-/obj/item/shard{
- icon_state = "small"
- },
-/turf/open/floor/plating/airless,
-/area/awaymission/BMPship/Fore)
-"gG" = (
-/turf/open/floor/engine,
-/area/awaymission/BMPship/Fore)
-"gH" = (
-/obj/machinery/door/airlock/titanium,
-/turf/open/floor/plating/airless,
-/area/awaymission/BMPship/Fore)
-"gI" = (
-/turf/open/floor/plating/airless,
-/area/awaymission/BMPship/Fore)
-"gJ" = (
-/obj/effect/gibspawner/robot,
-/turf/open/floor/plasteel/airless{
- icon_state = "floorscorched2"
- },
-/area/awaymission/BMPship/Fore)
-"gK" = (
-/turf/closed/mineral/random,
-/area/awaymission/BMPship/Fore)
-"gL" = (
-/turf/open/floor/plating/airless{
- icon_state = "platingdmg2"
- },
-/area/awaymission/BMPship/Midship)
-"gM" = (
-/obj/structure/mecha_wreckage/ripley,
-/turf/open/floor/plating/airless,
-/area/awaymission/BMPship/Midship)
-"gN" = (
-/obj/structure/bed,
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Aft)
-"gO" = (
-/obj/structure/bed,
-/obj/item/bedsheet,
-/obj/item/storage/wallet/random,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Aft)
-"gP" = (
-/obj/structure/closet,
-/obj/item/clothing/under/rank/civilian/lawyer/bluesuit,
-/obj/item/clothing/suit/apron,
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Aft)
-"gQ" = (
-/obj/item/clothing/suit/space/syndicate/green/dark,
-/turf/open/floor/plating/asteroid/airless,
-/area/awaymission/BMPship)
-"gR" = (
-/obj/effect/spawner/structure/window/hollow/reinforced/directional{
- dir = 6
- },
-/turf/open/floor/plating/airless,
-/area/awaymission/BMPship/Fore)
-"gS" = (
-/turf/closed/wall/mineral/titanium,
-/area/awaymission/BMPship)
-"gT" = (
-/obj/effect/gibspawner/robot,
-/turf/open/floor/plating/airless,
-/area/awaymission/BMPship/Midship)
-"gU" = (
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/plating/airless,
-/area/awaymission/BMPship/Midship)
-"gV" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating/airless,
-/area/awaymission/BMPship/Midship)
-"gW" = (
-/obj/machinery/door/airlock/titanium,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Midship)
-"gX" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Aft)
-"gY" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Aft)
-"gZ" = (
-/obj/item/shard{
- icon_state = "medium"
- },
-/turf/template_noop,
-/area/template_noop)
-"ha" = (
-/turf/open/floor/plating/airless{
- icon_state = "panelscorched"
- },
-/area/awaymission/BMPship/Midship)
-"hb" = (
-/obj/effect/decal/remains/human,
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Aft)
-"hc" = (
-/obj/structure/bed,
-/obj/item/bedsheet,
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Aft)
-"hd" = (
-/obj/machinery/door/airlock/titanium,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Aft)
-"he" = (
-/obj/structure/mirror{
- pixel_y = 28
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Aft)
-"hg" = (
-/turf/open/floor/plating/airless{
- icon_state = "platingdmg3"
- },
-/area/awaymission/BMPship/Midship)
-"hh" = (
-/obj/item/clothing/suit/caution,
-/turf/open/floor/plating/airless,
-/area/awaymission/BMPship/Midship)
-"hi" = (
-/obj/machinery/portable_atmospherics/canister/air,
-/turf/open/floor/plating/airless,
-/area/awaymission/BMPship/Midship)
-"hj" = (
-/obj/structure/closet/crate,
-/obj/item/spacecash/bundle/c10,
-/obj/item/spacecash/bundle/c200,
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Aft)
-"hk" = (
-/obj/structure/closet/crate,
-/obj/item/spacecash/bundle/c10,
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Aft)
-"hl" = (
-/obj/structure/sink{
- dir = 2
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Aft)
-"hn" = (
-/obj/item/clothing/gloves/color/fyellow,
-/turf/open/floor/plating/asteroid/airless,
-/area/awaymission/BMPship)
-"ho" = (
-/obj/effect/spawner/structure/window/hollow/reinforced/end{
- dir = 1
- },
-/turf/open/floor/engine,
-/area/awaymission/BMPship/Aft)
-"hq" = (
-/obj/item/storage/box/matches,
-/obj/item/storage/fancy/cigarettes/dromedaryco,
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Aft)
-"hr" = (
-/obj/item/poster/random_contraband,
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Aft)
-"hs" = (
-/obj/item/reagent_containers/food/drinks/beer,
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Aft)
-"ht" = (
-/turf/closed/wall/mineral/titanium/interior,
-/area/awaymission/BMPship/Aft)
-"hu" = (
-/obj/effect/spawner/structure/window/hollow/reinforced/end,
-/turf/open/floor/engine,
-/area/awaymission/BMPship/Aft)
-"hv" = (
-/turf/closed/mineral/diamond,
-/area/awaymission/BMPship)
-"hw" = (
-/turf/closed/mineral/bananium,
-/area/awaymission/BMPship)
-"hE" = (
-/turf/closed/wall/mineral/titanium/nodiagonal,
-/area/awaymission/BMPship/Fore)
-"iJ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small/directional/west,
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Midship)
-"jl" = (
-/obj/machinery/light/directional/east,
-/obj/structure/closet,
-/turf/open/floor/carpet,
-/area/awaymission/BMPship/Fore)
-"pe" = (
-/obj/machinery/light/directional/south,
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Midship)
-"pJ" = (
-/obj/machinery/power/port_gen/pacman/super,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Aft)
-"qv" = (
-/obj/machinery/light/directional/south,
-/obj/effect/decal/cleanable/blood/gibs/old,
-/turf/open/floor/plating/airless,
-/area/awaymission/BMPship/Midship)
-"qU" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Aft)
-"qY" = (
-/obj/effect/turf_decal/corner/opaque/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/yellow{
- dir = 4
- },
-/obj/structure/salvageable/seed,
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Midship)
-"sk" = (
-/obj/structure/table,
-/obj/machinery/light/small/directional/north,
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Midship)
-"sB" = (
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/obj/machinery/light/small/directional/south,
-/obj/machinery/button/door{
- id = "packerMine";
- pixel_x = 0;
- pixel_y = -25
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Midship)
-"ui" = (
-/obj/machinery/light/small/directional/west,
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Aft)
-"vh" = (
-/turf/template_noop,
-/area/space/nearstation)
-"wh" = (
-/turf/template_noop,
-/area/awaymission/BMPship)
-"wq" = (
-/obj/machinery/light/directional/east,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/carpet,
-/area/awaymission/BMPship/Fore)
-"Ae" = (
-/obj/structure/toilet{
- dir = 8
- },
-/obj/machinery/light/small/directional/north,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Aft)
-"AX" = (
-/obj/machinery/light/small/directional/north,
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Midship)
-"Bm" = (
-/obj/machinery/light/small/directional/north,
-/turf/open/floor/engine,
-/area/awaymission/BMPship/Aft)
-"BZ" = (
-/obj/machinery/light/small/directional/south,
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Midship)
-"Ca" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Aft)
-"CP" = (
-/obj/machinery/light/small/directional/south,
-/obj/effect/turf_decal/industrial/warning{
- dir = 2
- },
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Aft)
-"Dq" = (
-/obj/machinery/light/small/directional/north,
-/turf/open/floor/plasteel/white,
-/area/awaymission/BMPship/Aft)
-"DX" = (
-/obj/machinery/power/terminal{
- dir = 4
- },
-/obj/structure/cable,
-/turf/open/floor/engine,
-/area/awaymission/BMPship/Aft)
-"ED" = (
-/obj/machinery/power/terminal{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/engine,
-/area/awaymission/BMPship/Aft)
-"EJ" = (
-/obj/machinery/light/small/directional/east,
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Midship)
-"EQ" = (
-/obj/structure/lattice,
-/turf/template_noop,
-/area/awaymission/BMPship/Midship)
-"Fl" = (
-/obj/machinery/light/directional/north,
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Midship)
-"Go" = (
-/obj/machinery/door/airlock/titanium,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Aft)
-"Hy" = (
-/obj/machinery/door/poddoor/shutters{
- id = "packerMine"
- },
-/turf/open/floor/plating/airless,
-/area/awaymission/BMPship/Midship)
-"HP" = (
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/machinery/light/small/directional/east,
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Aft)
-"JI" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/light/small/directional/north,
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Midship)
-"Kq" = (
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/obj/machinery/light/small/directional/south,
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Midship)
-"Lr" = (
-/obj/machinery/light/small/directional/east,
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Aft)
-"Mx" = (
-/turf/closed/mineral/random,
-/area/awaymission/BMPship/Midship)
-"MV" = (
-/obj/machinery/light/small/directional/west,
-/obj/effect/turf_decal/corner/transparent/bar,
-/obj/effect/turf_decal/corner/transparent/bar{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Midship)
-"Op" = (
-/obj/machinery/porta_turret{
- dir = 8;
- installation = /obj/item/gun/energy/lasercannon;
- set_obj_flags = "EMAGGED"
- },
-/turf/open/floor/engine,
-/area/awaymission/BMPship/Aft)
-"OQ" = (
-/obj/machinery/light/small/directional/north,
-/turf/open/floor/plating/asteroid/airless,
-/area/awaymission/BMPship/Fore)
-"Pb" = (
-/obj/machinery/light/small/directional/north,
-/turf/open/floor/engine,
-/area/awaymission/BMPship/Fore)
-"Qe" = (
-/obj/structure/table,
-/obj/item/storage/box,
-/obj/machinery/light/small/directional/north,
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Aft)
-"Rp" = (
-/obj/machinery/light/small/directional/south,
-/turf/open/floor/engine,
-/area/awaymission/BMPship/Aft)
-"RG" = (
-/obj/machinery/porta_turret{
- dir = 8;
- installation = /obj/item/gun/energy/lasercannon;
- set_obj_flags = "EMAGGED"
- },
-/turf/open/floor/engine,
-/area/awaymission/BMPship/Fore)
-"SL" = (
-/obj/machinery/light/small/directional/east,
-/turf/open/floor/plasteel/showroomfloor,
-/area/awaymission/BMPship/Aft)
-"SN" = (
-/obj/machinery/light/directional/north,
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Aft)
-"SS" = (
-/obj/machinery/light/small/directional/south,
-/obj/effect/turf_decal/industrial/warning{
- dir = 2
- },
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Fore)
-"Uc" = (
-/obj/machinery/light/small/directional/east,
-/turf/open/floor/wood,
-/area/awaymission/BMPship/Fore)
-"WI" = (
-/obj/machinery/light/small/directional/west,
-/turf/open/floor/plating,
-/area/awaymission/BMPship/Aft)
-"Xc" = (
-/obj/structure/frame/computer{
- anchored = 1;
- dir = 4
- },
-/turf/open/floor/carpet,
-/area/awaymission/BMPship/Fore)
-"Xi" = (
-/obj/machinery/light/directional/south,
-/turf/open/floor/plating/airless,
-/area/awaymission/BMPship/Midship)
-"Xp" = (
-/obj/machinery/light/small/directional/north,
-/obj/machinery/button/door{
- id = "packerMine";
- pixel_x = 0;
- pixel_y = 25
- },
-/turf/open/floor/plating/asteroid/airless,
-/area/awaymission/BMPship/Midship)
-"YE" = (
-/obj/machinery/light/small/directional/north,
-/turf/open/floor/plating/airless{
- icon_state = "platingdmg1"
- },
-/area/awaymission/BMPship/Midship)
-"ZA" = (
-/obj/machinery/processor,
-/obj/machinery/light/directional/north,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 4
- },
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Midship)
-"ZB" = (
-/obj/machinery/power/terminal{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/engine,
-/area/awaymission/BMPship/Aft)
-
-(1,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-gb
-gb
-gb
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(2,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-fS
-gb
-gb
-gb
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(3,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-fS
-gb
-gb
-gb
-gb
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(4,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-fS
-gb
-gb
-fS
-fS
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(5,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-fS
-gE
-gQ
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-gb
-gb
-gb
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(6,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
-am
-am
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-wh
-fS
-fS
-gb
-gb
-gb
-gb
-gb
-aa
-aa
-aa
-aa
-aa
-"}
-(7,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aI
-aT
-dG
-ed
-ed
-eH
-aT
-aI
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-fS
-fS
-fS
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-aa
-aa
-aa
-aa
-"}
-(8,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aI
-hE
-bV
-ee
-Xc
-Xc
-ee
-bV
-aT
-aI
-aa
-aa
-gc
-aa
-aa
-aa
-aa
-aa
-hn
-fS
-fS
-fS
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-aa
-aa
-aa
-"}
-(9,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aI
-hE
-bV
-bV
-dH
-ef
-ef
-bV
-bV
-aT
-ft
-fu
-aa
-am
-aa
-aa
-aa
-gZ
-fS
-fS
-fS
-fS
-fS
-fS
-fS
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-aa
-aa
-"}
-(10,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aI
-hE
-bV
-bV
-bV
-bV
-bV
-bV
-bV
-bV
-aT
-fu
-fI
-fu
-aa
-aa
-aa
-aa
-fS
-fS
-fS
-fS
-fS
-fS
-fS
-fS
-fS
-fS
-fS
-gb
-gb
-gb
-gb
-aa
-aa
-"}
-(11,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-cG
-gk
-bl
-bt
-hE
-hE
-bV
-bV
-cY
-dt
-bV
-eg
-bV
-bV
-bV
-fc
-fv
-fJ
-cG
-hE
-gk
-gF
-gR
-cG
-fS
-fS
-gb
-gb
-gb
-gb
-fS
-fS
-fS
-fS
-fS
-gb
-gb
-fS
-aa
-aa
-"}
-(12,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-cG
-aR
-bm
-bu
-aT
-bV
-bV
-bV
-cZ
-du
-bV
-bV
-ev
-db
-db
-fd
-fw
-fu
-fT
-cG
-RG
-gG
-RG
-cG
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-fS
-fS
-fS
-fS
-fS
-fS
-aa
-aa
-"}
-(13,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-cG
-aS
-Uc
-bm
-fc
-bV
-bV
-bV
-da
-bV
-bV
-bV
-ew
-bV
-bV
-aT
-fx
-fK
-fU
-cG
-Pb
-gG
-gG
-cG
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-fS
-fS
-fS
-fS
-fS
-aa
-"}
-(14,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-cG
-aT
-aT
-aT
-hE
-bW
-db
-cH
-bV
-bV
-bV
-bV
-ew
-bV
-eT
-aT
-fy
-fL
-fv
-cG
-cG
-gH
-cG
-cG
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-fS
-fS
-fS
-fS
-aa
-"}
-(15,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-cG
-aU
-bo
-bp
-fc
-bV
-bV
-cI
-db
-wq
-dI
-db
-ex
-bV
-jl
-aT
-fz
-fM
-fM
-gd
-gn
-gI
-fv
-cG
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-hv
-gb
-gb
-gb
-fS
-fS
-fS
-aa
-"}
-(16,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-cG
-aV
-bp
-bv
-aT
-aT
-aT
-aT
-aT
-aT
-dJ
-aT
-aT
-fc
-aT
-aT
-aT
-aT
-aT
-aT
-dh
-fI
-fv
-cG
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-fS
-fS
-aa
-"}
-(17,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-cG
-aW
-bp
-bv
-aq
-bX
-ce
-ce
-ce
-MV
-dy
-ce
-ce
-ce
-MV
-ce
-ce
-ce
-ce
-aq
-gp
-gI
-gp
-gK
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-fS
-fS
-"}
-(18,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-cG
-aV
-bp
-SS
-aq
-Fl
-cp
-ce
-ce
-dx
-dK
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-BZ
-aq
-gq
-gp
-ft
-gp
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-hw
-gb
-gb
-fS
-fS
-"}
-(19,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-cG
-aW
-bp
-bv
-aq
-bZ
-bZ
-bZ
-dc
-dy
-dB
-dB
-dB
-dB
-dB
-dB
-dB
-ce
-ce
-aq
-ft
-gJ
-gp
-aT
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-fS
-"}
-(20,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-cG
-aV
-bp
-bv
-aq
-ca
-cq
-cq
-dd
-dy
-dB
-eh
-eh
-iJ
-eh
-ej
-dB
-ce
-ce
-aq
-OQ
-gI
-fv
-gK
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-hw
-gb
-gb
-gb
-gb
-fS
-"}
-(21,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-cG
-aX
-bp
-bx
-aq
-qY
-cq
-cJ
-dd
-dy
-dB
-eh
-ey
-eh
-ej
-ej
-dB
-ce
-ce
-aq
-fv
-gp
-gp
-gK
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-hw
-gb
-gb
-gb
-fS
-"}
-(22,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aI
-aY
-bq
-aT
-aq
-cc
-cq
-cq
-de
-dy
-dB
-eh
-ej
-ej
-ej
-fe
-dB
-ce
-ce
-aq
-aT
-gK
-aT
-gK
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-fS
-"}
-(23,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aq
-ca
-cr
-cq
-dd
-dy
-dB
-ei
-ei
-eJ
-ei
-ff
-dB
-ce
-fW
-aq
-gb
-gb
-gb
-gb
-gb
-gS
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-fS
-"}
-(24,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aq
-cd
-cd
-cd
-df
-dy
-dL
-ej
-ej
-ej
-eV
-ej
-dL
-ce
-ce
-aq
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-fS
-"}
-(25,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aq
-Fl
-ce
-ce
-ce
-di
-dM
-dz
-ez
-dz
-dz
-dz
-fA
-ej
-fX
-ge
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-fS
-"}
-(26,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-am
-ap
-aq
-ce
-ce
-ce
-ce
-ce
-ce
-ek
-dy
-ce
-ce
-fg
-ce
-ce
-fW
-fm
-Mx
-gb
-gS
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-fS
-"}
-(27,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ap
-aq
-aq
-aq
-cK
-aq
-aq
-aq
-dN
-dz
-eA
-pe
-aq
-aq
-cK
-aq
-aq
-fm
-aq
-Mx
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-fS
-fS
-"}
-(28,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-am
-aa
-EQ
-aq
-gt
-aq
-cf
-cs
-cL
-ce
-ce
-ce
-ce
-dy
-ce
-ce
-ce
-ce
-ce
-ce
-fm
-gs
-aq
-Mx
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-fS
-fS
-"}
-(29,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-am
-aa
-vh
-EQ
-gt
-at
-ha
-aq
-cg
-cs
-cM
-dg
-dz
-dz
-dz
-eB
-dz
-dz
-dz
-dz
-fN
-BZ
-fm
-gs
-gs
-Mx
-Mx
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-fS
-fS
-aa
-"}
-(30,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-am
-EQ
-gL
-hg
-ha
-at
-aq
-ch
-cs
-cN
-dy
-ce
-dO
-ce
-ce
-ce
-ce
-dO
-ce
-dy
-ce
-fm
-at
-gL
-gs
-Mx
-Mx
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-fS
-fS
-aa
-"}
-(31,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ap
-aq
-hg
-at
-hg
-qv
-aq
-ZA
-ct
-cO
-dy
-EJ
-dP
-el
-ce
-ce
-EJ
-fi
-fB
-dy
-ce
-fm
-gt
-gM
-gT
-gt
-aq
-Mx
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-fS
-fS
-fS
-aa
-aa
-"}
-(32,1,1) = {"
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aq
-as
-at
-ha
-at
-ad
-aq
-af
-ce
-ce
-dy
-dB
-dQ
-dB
-ce
-eL
-dB
-fj
-dB
-dy
-sB
-fm
-Xp
-at
-gs
-gL
-gs
-fm
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-fS
-fS
-fS
-fS
-aa
-aa
-"}
-(33,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aq
-at
-at
-bb
-ha
-at
-bK
-ce
-ce
-ce
-dy
-dB
-dP
-dB
-ce
-ce
-dB
-fk
-dB
-dy
-ce
-Hy
-at
-gs
-at
-at
-gL
-fm
-gb
-gb
-gb
-gb
-gb
-gb
-gb
-fS
-fS
-fS
-gb
-gb
-aa
-aa
-"}
-(34,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aq
-au
-at
-at
-at
-at
-bK
-ce
-ce
-ce
-dy
-dB
-dP
-dB
-ce
-ce
-dB
-fk
-dB
-dy
-ce
-Hy
-at
-gt
-at
-at
-at
-fm
-gb
-gb
-gb
-gb
-gb
-fS
-fS
-fS
-fS
-fS
-gb
-gb
-gb
-aa
-"}
-(35,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aq
-av
-at
-at
-at
-at
-bK
-ce
-ce
-ce
-dy
-dB
-dP
-dB
-AX
-ce
-dB
-fk
-dB
-dy
-ce
-Hy
-gs
-at
-at
-gs
-at
-fm
-fS
-fS
-fS
-fS
-fS
-fS
-fS
-fS
-fS
-gb
-gb
-gb
-gb
-aa
-"}
-(36,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aq
-aw
-at
-as
-at
-bA
-aq
-cj
-cu
-ce
-dy
-dB
-dP
-dB
-ce
-ce
-dB
-fk
-dB
-dy
-Kq
-fm
-YE
-at
-at
-at
-hg
-fm
-fS
-fS
-fS
-fS
-aa
-aa
-aa
-aa
-aa
-gb
-gb
-gb
-gb
-aa
-"}
-(37,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aq
-ax
-at
-at
-at
-bB
-aq
-ck
-cu
-ce
-dy
-dB
-dR
-dB
-ce
-ce
-dB
-dR
-dB
-dy
-ce
-fm
-gv
-at
-at
-at
-hh
-fm
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-gb
-gb
-aa
-aa
-"}
-(38,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aq
-ay
-aL
-bc
-at
-Xi
-aq
-sk
-ce
-cP
-dy
-dB
-dS
-dB
-ce
-ce
-dB
-dS
-dB
-dy
-ce
-fm
-gy
-at
-at
-ha
-hh
-fm
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(39,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aq
-az
-at
-gV
-at
-bA
-aq
-cj
-cu
-ce
-di
-dz
-dT
-dz
-dz
-eM
-dz
-dT
-dz
-dK
-Kq
-fm
-gx
-at
-gU
-at
-hh
-fm
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(40,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aq
-aA
-at
-gV
-at
-bB
-aq
-cm
-ce
-ce
-ce
-ce
-dU
-em
-ce
-dy
-eW
-fl
-ce
-ce
-ce
-fm
-gy
-at
-gV
-at
-hi
-fm
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(41,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aq
-aq
-aq
-be
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-JI
-ce
-dy
-eX
-fm
-fm
-fm
-fm
-fm
-fm
-fm
-gW
-fm
-fm
-fm
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(42,1,1) = {"
-aa
-aa
-aa
-ac
-ho
-aj
-an
-ac
-aB
-aM
-bf
-aM
-aM
-bL
-ac
-cv
-cw
-cw
-cw
-cw
-eo
-cw
-fD
-eo
-cw
-cw
-fO
-ac
-cE
-gz
-gg
-gX
-cE
-hj
-ht
-ho
-aj
-hu
-dk
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(43,1,1) = {"
-aa
-aa
-aa
-ht
-Op
-ah
-Op
-ac
-aC
-al
-bg
-fR
-bD
-bM
-ac
-cv
-cQ
-dj
-dj
-dj
-ep
-dj
-eO
-ep
-dj
-fC
-cw
-ac
-cE
-cE
-cE
-gX
-cE
-hk
-ht
-Op
-ah
-Op
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(44,1,1) = {"
-aa
-aa
-aa
-ht
-ah
-ah
-Rp
-ac
-aD
-al
-al
-al
-bE
-CP
-ac
-cw
-cw
-cw
-cw
-dV
-eq
-eD
-eD
-eq
-fn
-fD
-cw
-fY
-cE
-al
-cE
-gX
-hb
-cE
-ht
-Bm
-ah
-ah
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(45,1,1) = {"
-aa
-aa
-aa
-ht
-ac
-ak
-ac
-ac
-aE
-aN
-bh
-al
-dm
-bO
-ac
-cx
-ac
-dk
-cw
-dW
-er
-al
-er
-eY
-fo
-fD
-cw
-ac
-cE
-cE
-gN
-gX
-hc
-al
-ht
-ac
-ak
-ac
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(46,1,1) = {"
-aa
-aa
-aa
-ht
-WI
-al
-al
-ac
-Qe
-al
-al
-al
-dm
-bM
-ac
-cy
-cR
-ac
-cw
-dW
-er
-eE
-al
-al
-fo
-fD
-cw
-ac
-SN
-cE
-cE
-gX
-cE
-cE
-ht
-hq
-al
-WI
-ac
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(47,1,1) = {"
-aa
-aa
-aa
-ae
-ht
-al
-al
-ar
-aG
-al
-al
-al
-bG
-bM
-ac
-Dq
-cS
-ac
-cw
-dX
-es
-eF
-eF
-eZ
-fp
-fE
-dj
-fZ
-dE
-gA
-gO
-gY
-gN
-cE
-fY
-al
-hs
-ht
-ae
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(48,1,1) = {"
-aa
-aa
-aa
-aa
-ae
-ht
-al
-ac
-aG
-al
-bi
-al
-dm
-bP
-ac
-cA
-cT
-ac
-cw
-cw
-cw
-cw
-cw
-cw
-cw
-cw
-fP
-ac
-gg
-gX
-cE
-cE
-cE
-cE
-ht
-hr
-ht
-ae
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(49,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-ae
-ht
-ht
-aG
-al
-bj
-al
-dm
-bQ
-ac
-cB
-cU
-ac
-SL
-cw
-cw
-cw
-cw
-SL
-cw
-fF
-fQ
-ac
-gh
-gX
-gN
-cE
-gN
-cE
-ht
-ac
-ae
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(50,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-ht
-aG
-al
-bk
-al
-dm
-bR
-ht
-ht
-ht
-ht
-ht
-ht
-ht
-ht
-ht
-ht
-ht
-ht
-ht
-ht
-gi
-gX
-cE
-cE
-cE
-cE
-ht
-ae
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(51,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ht
-aG
-al
-al
-al
-dm
-CP
-ac
-cV
-cV
-cV
-ui
-dY
-et
-eG
-eP
-ui
-cV
-cV
-cV
-ac
-SN
-gX
-cE
-ht
-hd
-ht
-ht
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(52,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ht
-aG
-aO
-al
-al
-bg
-bT
-cn
-dE
-dE
-dl
-dE
-dE
-dE
-dE
-dE
-fa
-dE
-dE
-fR
-ga
-dE
-gC
-cE
-ht
-he
-hl
-ht
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(53,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-ht
-aP
-aP
-bs
-bH
-bU
-ht
-cE
-cE
-dm
-al
-al
-al
-al
-al
-al
-al
-cE
-al
-ac
-gj
-gD
-gP
-ht
-Ae
-ht
-ae
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(54,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-ht
-ht
-ht
-ht
-ht
-ht
-ht
-cE
-dn
-fR
-ea
-fR
-fR
-eQ
-al
-fq
-pJ
-ht
-ht
-ht
-ht
-ht
-ht
-ht
-ae
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(55,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-ac
-cW
-do
-al
-eb
-al
-al
-eb
-al
-al
-fG
-ht
-ae
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(56,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-cX
-HP
-Ca
-ec
-eu
-eu
-eR
-qU
-Lr
-fH
-ht
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(57,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ht
-ht
-Go
-ht
-ht
-ac
-ht
-Go
-ht
-ht
-ht
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(58,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-ht
-dq
-ED
-DX
-ht
-ht
-eS
-ZB
-fs
-ht
-ae
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(59,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ht
-dr
-dr
-dr
-ht
-ht
-dr
-dr
-dr
-ht
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(60,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ht
-ds
-ds
-ds
-ht
-ht
-ds
-ds
-ds
-ht
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
diff --git a/_maps/RandomRuins/SpaceRuins/cryocontainment.dmm b/_maps/RandomRuins/SpaceRuins/cryocontainment.dmm
deleted file mode 100644
index f381d0375e4..00000000000
--- a/_maps/RandomRuins/SpaceRuins/cryocontainment.dmm
+++ /dev/null
@@ -1,2434 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"ab" = (
-/obj/machinery/atmospherics/pipe/simple/general{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"al" = (
-/obj/structure/cable{
- 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/plating/airless,
-/area/ruin/unpowered)
-"ar" = (
-/obj/item/stack/ore/salvage/scraptitanium,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/unpowered)
-"aK" = (
-/obj/item/stack/ore/salvage/scrapgold,
-/obj/effect/turf_decal/corner/opaque/purple/border{
- dir = 1
- },
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/unpowered)
-"aM" = (
-/obj/structure/fluff/paper/stack{
- dir = 4
- },
-/obj/effect/turf_decal/corner/opaque/purple/border{
- dir = 1
- },
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/unpowered)
-"aO" = (
-/obj/item/stack/ore/salvage/scrapmetal,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/unpowered)
-"ba" = (
-/obj/structure/sign/directions/science{
- pixel_y = 25
- },
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"bm" = (
-/obj/effect/decal/cleanable/greenglow,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/unpowered)
-"bp" = (
-/turf/open/floor/plating/airless{
- icon_state = "platingdmg1"
- },
-/area/ruin/unpowered)
-"bt" = (
-/obj/structure/fluff/paper/stack{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/purple/border{
- dir = 1
- },
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/unpowered)
-"bK" = (
-/obj/effect/decal/cleanable/blood,
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"bW" = (
-/obj/effect/decal/cleanable/chem_pile,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/unpowered)
-"ca" = (
-/obj/item/stack/ore/salvage/scrapplasma,
-/obj/effect/turf_decal/corner/opaque/purple/border{
- dir = 5
- },
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/unpowered)
-"cy" = (
-/turf/closed/wall/r_wall,
-/area/ruin/unpowered)
-"cB" = (
-/obj/structure/table_frame,
-/obj/item/stock_parts/cell/hyper/empty,
-/obj/effect/turf_decal/corner/opaque/purple/border{
- dir = 1
- },
-/obj/effect/decal/cleanable/robot_debris/old,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/unpowered)
-"cV" = (
-/obj/structure/table/reinforced,
-/obj/structure/window/reinforced/survival_pod{
- dir = 1
- },
-/obj/item/circuitboard/machine/bepis,
-/turf/open/floor/plasteel/white/airless,
-/area/ruin/unpowered)
-"dt" = (
-/obj/machinery/door/airlock/security{
- dir = 8
- },
-/obj/machinery/door/poddoor{
- id = "cryocontainmentlockdown";
- dir = 8
- },
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"dw" = (
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/unpowered)
-"dT" = (
-/obj/effect/turf_decal/siding/purple,
-/turf/open/floor/plasteel/white/airless,
-/area/ruin/unpowered)
-"eI" = (
-/obj/machinery/vending/plasmaresearch,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/unpowered)
-"eN" = (
-/obj/effect/decal/cleanable/blood/gibs,
-/obj/machinery/atmospherics/components/unary/vent_pump/layer2,
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"eS" = (
-/obj/item/shard,
-/obj/item/stack/rods,
-/turf/template_noop,
-/area/template_noop)
-"eT" = (
-/obj/effect/decal/cleanable/blood/gibs/down,
-/obj/effect/decal/cleanable/blood/gibs,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/plasteel/white/airless,
-/area/ruin/unpowered)
-"eU" = (
-/obj/effect/decal/cleanable/blood/tracks,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"eX" = (
-/obj/item/stack/ore/titanium,
-/obj/item/stack/ore/titanium,
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/unpowered)
-"eZ" = (
-/obj/machinery/atmospherics/pipe/simple/general{
- dir = 5
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"fo" = (
-/obj/structure/sign/departments/chemistry,
-/turf/closed/wall/r_wall,
-/area/ruin/unpowered)
-"fx" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/box/stockparts/t3,
-/obj/machinery/door/window/survival_pod{
- dir = 4
- },
-/obj/structure/window/reinforced/survival_pod{
- dir = 1
- },
-/turf/open/floor/plasteel/white/airless,
-/area/ruin/unpowered)
-"fE" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"fL" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"fN" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"fY" = (
-/obj/structure/table/optable,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"gd" = (
-/obj/effect/decal/cleanable/blood/drip,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"ge" = (
-/obj/structure/sign/directions/science{
- pixel_y = 25
- },
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/unpowered)
-"gm" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/siding/purple{
- dir = 4
- },
-/turf/open/floor/plasteel/white/airless,
-/area/ruin/unpowered)
-"gz" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/siding/purple,
-/turf/open/floor/plasteel/white/airless,
-/area/ruin/unpowered)
-"gC" = (
-/obj/machinery/door/poddoor{
- id = "cryocontainmentlockdown";
- dir = 8
- },
-/obj/structure/cable{
- 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/plating/airless,
-/area/ruin/unpowered)
-"gG" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/layer2,
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"gJ" = (
-/obj/item/stack/ore/salvage/scrapuranium,
-/obj/structure/salvageable/protolathe,
-/obj/machinery/light/dim/directional/south,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/unpowered)
-"gO" = (
-/obj/item/stock_parts/capacitor,
-/turf/open/floor/plating/airless{
- icon_state = "platingdmg3"
- },
-/area/ruin/unpowered)
-"ha" = (
-/obj/structure/table/reinforced,
-/obj/machinery/light/directional/north,
-/turf/open/floor/plasteel/white/airless,
-/area/ruin/unpowered)
-"hl" = (
-/obj/item/stack/ore/salvage/scrapmetal,
-/obj/structure/fluff/paper/stack{
- dir = 6
- },
-/obj/effect/turf_decal/corner/opaque/purple/border{
- dir = 1
- },
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/unpowered)
-"hw" = (
-/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
- dir = 8
- },
-/turf/open/floor/plasteel/white/airless,
-/area/ruin/unpowered)
-"hE" = (
-/obj/item/stack/ore/salvage/scrapgold,
-/obj/machinery/light/broken/directional/south,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/unpowered)
-"ih" = (
-/obj/effect/decal/cleanable/blood/gibs/limb,
-/obj/item/light/tube/broken,
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/light/built/directional/south,
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"iA" = (
-/obj/item/mine/proximity/explosive/sting/live,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"jd" = (
-/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"jq" = (
-/turf/closed/mineral,
-/area/ruin/unpowered)
-"jx" = (
-/obj/effect/decal/cleanable/robot_debris/old,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/unpowered)
-"jN" = (
-/obj/effect/decal/cleanable/blood,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"jP" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
- },
-/obj/structure/fluff/paper/stack{
- dir = 6
- },
-/turf/open/floor/plasteel/white/airless,
-/area/ruin/unpowered)
-"kl" = (
-/obj/machinery/computer{
- desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages.";
- dir = 4;
- name = "Broken Computer"
- },
-/obj/item/paper{
- name = "console log";
- text = "SPECIMIN BREACH, ACTIVATING LOCKDOWN PRTOCOLS, ACTIVATING EXPLOSIVE DECOUPLE CHARGES.";
- default_raw_text = "SPECIMEN BREACHED FROM CRYO CELL, ACTIVATING LOCKDOWN PRTOCOLS, ACTIVATING DECOUPLING CHARGES. THE SPECIMEN MUST NOT GET TO THE MAIN STATION. RECONTAIN AT ALL COSTS."
- },
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/unpowered)
-"km" = (
-/obj/effect/decal/cleanable/blood/drip,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
- },
-/turf/open/floor/plasteel/white/airless,
-/area/ruin/unpowered)
-"kH" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/plasteel/white/airless,
-/area/ruin/unpowered)
-"kI" = (
-/obj/structure/fluff/paper/stack{
- dir = 1
- },
-/obj/effect/decal/cleanable/chem_pile,
-/obj/effect/turf_decal/corner/opaque/orange/border{
- dir = 10
- },
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/unpowered)
-"kT" = (
-/obj/effect/spawner/lootdrop/beaker_loot_spawner,
-/turf/open/floor/plating/airless{
- icon_state = "platingdmg2"
- },
-/area/ruin/unpowered)
-"kU" = (
-/obj/effect/mob_spawn/human/corpse/damaged{
- outfit = /datum/outfit/job/scientist
- },
-/obj/effect/decal/cleanable/blood,
-/obj/effect/turf_decal/corner/opaque/purple/border{
- dir = 1
- },
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/unpowered)
-"kW" = (
-/obj/structure/table_frame,
-/obj/item/shard,
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"lk" = (
-/obj/structure/salvageable/computer{
- dir = 8
- },
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/unpowered)
-"lR" = (
-/obj/structure/sign/warning/chemdiamond,
-/turf/closed/wall/r_wall/rust,
-/area/ruin/unpowered)
-"mM" = (
-/obj/structure/lattice,
-/obj/item/stack/ore/salvage/scraptitanium,
-/turf/template_noop,
-/area/template_noop)
-"nh" = (
-/obj/machinery/smartfridge/organ,
-/turf/open/floor/plasteel/white/airless,
-/area/ruin/unpowered)
-"nl" = (
-/obj/machinery/chem_master,
-/turf/open/floor/plasteel/white/airless,
-/area/ruin/unpowered)
-"nt" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"nN" = (
-/obj/structure/salvageable/destructive_analyzer,
-/turf/open/floor/plating/airless{
- icon_state = "platingdmg2"
- },
-/area/ruin/unpowered)
-"nY" = (
-/obj/effect/turf_decal/corner/opaque/orange/border,
-/obj/structure/table_frame,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/unpowered)
-"ow" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/item/storage/backpack/duffelbag/med/surgery,
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"oD" = (
-/obj/structure/lattice,
-/obj/item/stack/cable_coil/cut/red,
-/turf/template_noop,
-/area/template_noop)
-"oY" = (
-/obj/structure/fluff/paper/stack{
- dir = 9
- },
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/unpowered)
-"qa" = (
-/obj/machinery/atmospherics/pipe/simple/general,
-/turf/open/floor/engine/airless,
-/area/ruin/unpowered)
-"qf" = (
-/obj/machinery/door/airlock/public/glass{
- dir = 8
- },
-/obj/machinery/door/poddoor{
- id = "cryocontainmentlockdown";
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"qk" = (
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/machinery/power/apc/away{
- pixel_x = -25;
- start_charge = 0;
- dir = 8
- },
-/obj/item/ammo_casing/spent{
- pixel_x = -9;
- pixel_y = 11
- },
-/obj/item/ammo_casing/spent{
- dir = 10;
- pixel_y = 5
- },
-/obj/item/ammo_casing/spent{
- dir = 4;
- pixel_x = 1;
- pixel_y = 10
- },
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"qy" = (
-/obj/structure/lattice,
-/obj/item/stack/rods,
-/turf/template_noop,
-/area/template_noop)
-"qC" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"ra" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"sc" = (
-/obj/effect/decal/cleanable/chem_pile,
-/obj/effect/turf_decal/corner/opaque/orange/border,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/unpowered)
-"sD" = (
-/obj/item/stack/ore/salvage/scraptitanium,
-/turf/template_noop,
-/area/template_noop)
-"sJ" = (
-/obj/item/reagent_containers/syringe,
-/turf/open/floor/plasteel/white/airless,
-/area/ruin/unpowered)
-"tm" = (
-/obj/item/stack/ore/salvage/scrapsilver,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/unpowered)
-"tn" = (
-/obj/structure/table/reinforced,
-/obj/item/reagent_containers/glass/beaker/cryoxadone{
- cap_on = 1;
- pixel_x = -6
- },
-/obj/item/reagent_containers/glass/beaker/cryoxadone{
- cap_on = 1;
- pixel_x = 6
- },
-/turf/open/floor/plasteel/white/airless,
-/area/ruin/unpowered)
-"ts" = (
-/obj/structure/grille,
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"tx" = (
-/obj/structure/table/reinforced,
-/obj/machinery/button{
- name = "Explosive Decoupler Control";
- pixel_x = 8;
- pixel_y = -4
- },
-/obj/machinery/button/door{
- id = "cryocontainmentlockdown";
- name = "Containment Lockdown Control";
- pixel_x = -8;
- pixel_y = -4
- },
-/obj/item/megaphone/command,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/unpowered)
-"tD" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/light/directional/east,
-/obj/effect/turf_decal/siding/purple{
- dir = 5
- },
-/obj/machinery/aug_manipulator,
-/turf/open/floor/plasteel/white/airless,
-/area/ruin/unpowered)
-"uc" = (
-/obj/structure/table/reinforced,
-/obj/item/clothing/accessory/medal/plasma/nobel_science,
-/obj/machinery/door/window/survival_pod,
-/turf/open/floor/plasteel/white/airless,
-/area/ruin/unpowered)
-"un" = (
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "cryocontainshutter"
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/unpowered)
-"ve" = (
-/obj/structure/table/greyscale,
-/obj/item/storage/fancy/cigarettes/cigpack_carp,
-/obj/machinery/atmospherics/components/unary/vent_pump/layer2{
- dir = 8
- },
-/obj/machinery/light/small/directional/west,
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"vj" = (
-/obj/structure/table/glass,
-/obj/item/toy/figure/chemist,
-/obj/effect/turf_decal/corner/opaque/orange/border{
- dir = 8
- },
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/unpowered)
-"vp" = (
-/obj/item/shard,
-/turf/template_noop,
-/area/template_noop)
-"vO" = (
-/obj/structure/table/reinforced,
-/obj/item/gun/energy/laser/hitscanpistol,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/door/window/survival_pod{
- dir = 4
- },
-/obj/structure/window/reinforced/survival_pod,
-/turf/open/floor/plasteel/white/airless,
-/area/ruin/unpowered)
-"vU" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/siding/purple{
- dir = 8
- },
-/turf/open/floor/plasteel/white/airless,
-/area/ruin/unpowered)
-"wj" = (
-/obj/machinery/computer/pandemic,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/unpowered)
-"wr" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/layer4,
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"wM" = (
-/obj/effect/turf_decal/corner/opaque/purple/border{
- dir = 1
- },
-/obj/effect/decal/remains/robot,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/unpowered)
-"wQ" = (
-/obj/structure/fluff/paper/stack{
- pixel_x = -7;
- pixel_y = 1
- },
-/obj/structure/salvageable/circuit_imprinter,
-/obj/machinery/light/dim/directional/south,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/unpowered)
-"xB" = (
-/obj/structure/table/reinforced,
-/obj/structure/window/reinforced/survival_pod,
-/obj/item/clothing/neck/cloak/rd,
-/turf/open/floor/plasteel/white/airless,
-/area/ruin/unpowered)
-"xD" = (
-/obj/structure/table/chem,
-/obj/item/reagent_containers/glass/beaker/sulphuric,
-/obj/effect/spawner/lootdrop/beaker_loot_spawner,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/unpowered)
-"xL" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/siding/purple{
- dir = 9
- },
-/turf/open/floor/plasteel/white/airless,
-/area/ruin/unpowered)
-"ye" = (
-/obj/structure/closet/wardrobe/chemistry_white,
-/obj/machinery/light/broken/directional/west,
-/obj/effect/turf_decal/corner/opaque/orange/border,
-/obj/item/stock_parts/scanning_module/phasic,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/unpowered)
-"yM" = (
-/obj/item/stack/ore/salvage/scrapmetal,
-/turf/template_noop,
-/area/template_noop)
-"zI" = (
-/obj/effect/decal/cleanable/blood/drip,
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"Ax" = (
-/obj/structure/grille/broken,
-/obj/effect/decal/cleanable/glass,
-/obj/item/shard,
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"Be" = (
-/obj/structure/table_frame,
-/obj/item/stack/ore/salvage/scrapsilver,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/unpowered)
-"Bl" = (
-/obj/structure/salvageable/computer{
- dir = 1
- },
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/unpowered)
-"BB" = (
-/obj/machinery/blackbox_recorder,
-/obj/machinery/light/directional/east,
-/obj/effect/turf_decal/siding/purple{
- dir = 6
- },
-/turf/open/floor/plasteel/white/airless,
-/area/ruin/unpowered)
-"BV" = (
-/turf/open/floor/plating/airless{
- icon_state = "platingdmg2"
- },
-/area/ruin/unpowered)
-"Cd" = (
-/obj/structure/sign/departments/science,
-/turf/closed/wall/r_wall,
-/area/ruin/unpowered)
-"Cq" = (
-/turf/closed/wall/r_wall/rust,
-/area/ruin/unpowered)
-"Cs" = (
-/obj/item/stack/cable_coil/cut/red,
-/turf/open/floor/plating/airless{
- icon_state = "platingdmg2"
- },
-/area/ruin/unpowered)
-"CD" = (
-/obj/effect/decal/cleanable/blood/tracks,
-/turf/open/floor/plasteel/white/airless,
-/area/ruin/unpowered)
-"CI" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/white/airless,
-/area/ruin/unpowered)
-"CL" = (
-/obj/structure/table/chem,
-/obj/item/reagent_containers/glass/beaker/large/styptic,
-/obj/item/stock_parts/micro_laser/high,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/unpowered)
-"DL" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/white/airless,
-/area/ruin/unpowered)
-"DX" = (
-/obj/effect/turf_decal/trimline/opaque/purple/end,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/unpowered)
-"Ej" = (
-/obj/structure/table/reinforced,
-/obj/item/research_notes/loot/big,
-/obj/machinery/door/window/survival_pod,
-/turf/open/floor/plasteel/white/airless,
-/area/ruin/unpowered)
-"Ey" = (
-/obj/item/stack/ore/uranium,
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/unpowered)
-"EE" = (
-/obj/effect/turf_decal/siding/purple{
- dir = 8
- },
-/turf/open/floor/plasteel/white/airless,
-/area/ruin/unpowered)
-"EH" = (
-/obj/machinery/atmospherics/pipe/simple/general,
-/obj/machinery/door/poddoor/preopen{
- id = "cryocontainmentblastdoors"
- },
-/obj/structure/door_assembly/door_assembly_hatch{
- anchored = 1
- },
-/turf/open/floor/engine/airless,
-/area/ruin/unpowered)
-"ET" = (
-/obj/item/mine/proximity/explosive/sting/live,
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"Fb" = (
-/obj/structure/table/reinforced,
-/obj/item/ammo_box/magazine/co9mm,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/unpowered)
-"Fk" = (
-/obj/machinery/smartfridge/chemistry,
-/obj/machinery/light/directional/east,
-/turf/open/floor/plasteel/white/airless,
-/area/ruin/unpowered)
-"Fq" = (
-/obj/structure/grille,
-/obj/effect/decal/cleanable/glass,
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"FK" = (
-/obj/structure/fluff/paper/stack{
- pixel_x = -7;
- pixel_y = 1
- },
-/obj/effect/decal/remains/robot,
-/obj/item/bodypart/l_arm/robot,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/unpowered)
-"FW" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"FX" = (
-/obj/structure/fluff/paper/stack{
- dir = 8
- },
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"Gj" = (
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 8
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/item/ammo_casing/spent{
- dir = 10;
- pixel_x = -11;
- pixel_y = -5
- },
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"Gn" = (
-/obj/effect/decal/cleanable/blood,
-/obj/item/bodypart/r_arm/robot,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/unpowered)
-"Gp" = (
-/obj/structure/lattice,
-/obj/item/stack/ore/salvage/scrapmetal,
-/turf/template_noop,
-/area/template_noop)
-"Gw" = (
-/obj/structure/girder/reinforced,
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"GP" = (
-/obj/structure/table/reinforced,
-/obj/structure/window/reinforced/survival_pod{
- dir = 1
- },
-/obj/item/circuitboard/aicore,
-/turf/open/floor/plasteel/white/airless,
-/area/ruin/unpowered)
-"GV" = (
-/turf/open/floor/plating/airless{
- icon_state = "platingdmg3"
- },
-/area/ruin/unpowered)
-"Hm" = (
-/obj/item/stack/ore/silver,
-/obj/item/stack/ore/silver,
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/unpowered)
-"Hn" = (
-/obj/machinery/light/directional/north,
-/obj/effect/turf_decal/dept/science,
-/turf/open/floor/engine/airless,
-/area/ruin/unpowered)
-"Hu" = (
-/obj/structure/salvageable/computer{
- dir = 8
- },
-/obj/machinery/light/broken/directional/east,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/unpowered)
-"Hy" = (
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/plating/airless{
- icon_state = "platingdmg3"
- },
-/area/ruin/unpowered)
-"HE" = (
-/obj/structure/table/reinforced,
-/obj/item/circuitboard/computer/cloning,
-/obj/machinery/door/window/survival_pod{
- dir = 1
- },
-/turf/open/floor/plasteel/white/airless,
-/area/ruin/unpowered)
-"HS" = (
-/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"Ic" = (
-/obj/machinery/atmospherics/pipe/simple/general{
- dir = 5
- },
-/obj/structure/fluff/paper/stack{
- dir = 4
- },
-/turf/open/floor/plasteel/white/airless,
-/area/ruin/unpowered)
-"Iw" = (
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/mob/living/simple_animal/hostile/carp,
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"Ix" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/siding/purple{
- dir = 1
- },
-/turf/open/floor/plasteel/white/airless,
-/area/ruin/unpowered)
-"IR" = (
-/obj/structure/table/reinforced,
-/obj/machinery/button/door{
- id = "cryocontainshutter";
- name = "Window Shutter Control";
- pixel_x = 8;
- pixel_y = -4
- },
-/obj/item/gun/ballistic/automatic/pistol/commander/no_mag,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/unpowered)
-"IX" = (
-/turf/template_noop,
-/area/template_noop)
-"Jd" = (
-/obj/structure/showcase/horrific_experiment,
-/turf/open/floor/engine/airless,
-/area/ruin/unpowered)
-"Ji" = (
-/obj/structure/grille/broken,
-/obj/effect/decal/cleanable/glass,
-/obj/item/stack/rods,
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"Jj" = (
-/turf/open/floor/engine/airless,
-/area/ruin/unpowered)
-"JX" = (
-/obj/effect/decal/cleanable/chem_pile,
-/obj/effect/turf_decal/corner/opaque/orange/border{
- dir = 4
- },
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/unpowered)
-"KY" = (
-/obj/structure/lattice,
-/turf/template_noop,
-/area/template_noop)
-"KZ" = (
-/obj/structure/grille/broken,
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"Lw" = (
-/obj/structure/table/glass,
-/obj/item/book/manual/wiki/chemistry,
-/obj/effect/turf_decal/corner/opaque/orange/border,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/unpowered)
-"Lx" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"LH" = (
-/obj/structure/grille/broken,
-/obj/item/stack/rods,
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"LP" = (
-/obj/structure/fluff/paper/stack{
- dir = 1
- },
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/unpowered)
-"LY" = (
-/obj/structure/chair/stool,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/layer4{
- dir = 8
- },
-/obj/effect/decal/remains/human,
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"Mb" = (
-/obj/machinery/atmospherics/pipe/simple/general{
- dir = 4
- },
-/mob/living/simple_animal/hostile/carp,
-/turf/open/floor/plasteel/white/airless,
-/area/ruin/unpowered)
-"Mf" = (
-/obj/effect/mob_spawn/human/corpse/damaged{
- outfit = /datum/outfit/job/scientist
- },
-/obj/effect/decal/cleanable/blood,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"Mp" = (
-/obj/structure/table/glass,
-/obj/item/storage/bag/chemistry,
-/obj/effect/turf_decal/corner/opaque/orange/border,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/unpowered)
-"Mw" = (
-/mob/living/simple_animal/hostile/carp,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/unpowered)
-"Mz" = (
-/obj/structure/fluff/paper/stack{
- pixel_x = -7;
- pixel_y = 1
- },
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/unpowered)
-"MK" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/fluff/paper/stack{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"Na" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 8
- },
-/obj/machinery/light/directional/north,
-/turf/open/floor/plasteel/white/airless,
-/area/ruin/unpowered)
-"NM" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/ruin/unpowered)
-"OD" = (
-/obj/structure/table/glass,
-/obj/item/clothing/head/beret/chem,
-/obj/effect/turf_decal/corner/opaque/orange/border,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/unpowered)
-"OG" = (
-/obj/item/stack/ore/salvage/scrapuranium,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/unpowered)
-"OH" = (
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"OI" = (
-/obj/item/stack/ore/silver,
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/unpowered)
-"OM" = (
-/obj/effect/turf_decal/corner/opaque/purple/bordercorner{
- dir = 4
- },
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/unpowered)
-"Pg" = (
-/obj/effect/spawner/lootdrop/beaker_loot_spawner,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/unpowered)
-"Po" = (
-/obj/effect/decal/cleanable/blood/splatter,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"Pu" = (
-/obj/structure/fluff/paper/stack{
- dir = 6
- },
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/unpowered)
-"Py" = (
-/obj/structure/table/glass,
-/obj/effect/turf_decal/corner/opaque/orange/border{
- dir = 8
- },
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/unpowered)
-"PD" = (
-/obj/effect/decal/cleanable/blood/splatter,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"PL" = (
-/obj/effect/decal/cleanable/greenglow,
-/obj/machinery/light/directional/east,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/unpowered)
-"PN" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"PW" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 8
- },
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/turf/open/floor/plasteel/white/airless,
-/area/ruin/unpowered)
-"Qi" = (
-/obj/effect/decal/cleanable/blood/splatter,
-/obj/effect/decal/cleanable/blood/gibs,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"QC" = (
-/turf/open/floor/plasteel/white/airless,
-/area/ruin/unpowered)
-"QH" = (
-/obj/effect/decal/cleanable/blood,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"QP" = (
-/obj/machinery/chem_master,
-/obj/machinery/light/dim/directional/north,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/unpowered)
-"QV" = (
-/obj/effect/decal/cleanable/blood/gibs/body,
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"Rd" = (
-/obj/effect/decal/cleanable/vomit/old,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/unpowered)
-"Rj" = (
-/mob/living/simple_animal/hostile/carp,
-/turf/template_noop,
-/area/template_noop)
-"Ro" = (
-/obj/item/banner/science,
-/obj/machinery/light/directional/west,
-/turf/open/floor/plasteel/white/airless,
-/area/ruin/unpowered)
-"Ru" = (
-/obj/structure/fluff/paper/stack{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/orange/border{
- dir = 6
- },
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/unpowered)
-"Rx" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/siding/purple{
- dir = 10
- },
-/turf/open/floor/plasteel/white/airless,
-/area/ruin/unpowered)
-"RJ" = (
-/obj/item/stack/ore/salvage/scrapplasma,
-/obj/machinery/light/broken/directional/west,
-/obj/effect/turf_decal/corner/opaque/purple/border{
- dir = 1
- },
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/unpowered)
-"RK" = (
-/obj/structure/girder/displaced,
-/turf/template_noop,
-/area/template_noop)
-"RX" = (
-/obj/structure/salvageable/computer{
- dir = 1
- },
-/turf/open/floor/plating/airless{
- icon_state = "platingdmg3"
- },
-/area/ruin/unpowered)
-"RZ" = (
-/obj/effect/gibspawner/human,
-/obj/item/clothing/suit/toggle/labcoat,
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"Sj" = (
-/obj/structure/fluff/paper/stack{
- dir = 4
- },
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/unpowered)
-"Sk" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/light/directional/south,
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"Sp" = (
-/obj/structure/lattice,
-/obj/item/stack/cable_coil/cut/red,
-/obj/item/stack/ore/salvage/scraptitanium,
-/turf/template_noop,
-/area/template_noop)
-"Ta" = (
-/obj/item/shard,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/unpowered)
-"Tq" = (
-/obj/effect/decal/cleanable/greenglow,
-/obj/structure/salvageable/autolathe,
-/turf/open/floor/plating/airless{
- icon_state = "platingdmg3"
- },
-/area/ruin/unpowered)
-"Tr" = (
-/obj/effect/mapping_helpers/airlock/locked,
-/obj/machinery/door/airlock/hatch{
- dir = 8
- },
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"TF" = (
-/obj/effect/decal/cleanable/blood/splatter,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/plasteel/white/airless,
-/area/ruin/unpowered)
-"TG" = (
-/obj/effect/decal/cleanable/blood,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/unpowered)
-"TL" = (
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/unpowered)
-"TU" = (
-/obj/item/shard,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"Ue" = (
-/obj/structure/chair/greyscale{
- dir = 8
- },
-/obj/effect/decal/cleanable/blood,
-/obj/machinery/atmospherics/components/unary/vent_pump/layer2{
- dir = 4
- },
-/obj/effect/mob_spawn/human/corpse/nanotrasensoldier,
-/obj/machinery/light/directional/north,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/unpowered)
-"Ul" = (
-/obj/structure/table/reinforced,
-/obj/structure/window/reinforced/survival_pod,
-/obj/item/clothing/glasses/science,
-/turf/open/floor/plasteel/white/airless,
-/area/ruin/unpowered)
-"UL" = (
-/obj/machinery/atmospherics/pipe/manifold{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"UO" = (
-/obj/effect/turf_decal/siding/purple{
- dir = 1
- },
-/turf/open/floor/plasteel/white/airless,
-/area/ruin/unpowered)
-"UT" = (
-/obj/machinery/chem_heater,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/unpowered)
-"VG" = (
-/mob/living/simple_animal/hostile/carp,
-/obj/structure/lattice,
-/turf/template_noop,
-/area/template_noop)
-"Wm" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"Wz" = (
-/obj/item/stack/ore/titanium,
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/unpowered)
-"WF" = (
-/obj/effect/turf_decal/corner/opaque/purple/border{
- dir = 1
- },
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/unpowered)
-"WR" = (
-/obj/structure/grille,
-/obj/structure/window/plasma/reinforced/fulltile,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/machinery/door/poddoor/preopen{
- id = "cryocontainmentblastdoors"
- },
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"WS" = (
-/obj/structure/table/chem,
-/obj/item/reagent_containers/glass/beaker/large/silver_sulfadiazine,
-/obj/machinery/light/dim/directional/north,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/unpowered)
-"Xn" = (
-/obj/item/ammo_casing/spent{
- dir = 8;
- pixel_x = -1;
- pixel_y = 8
- },
-/obj/item/ammo_casing/spent{
- dir = 9;
- pixel_x = 5;
- pixel_y = -3
- },
-/obj/item/ammo_casing/spent,
-/obj/item/ammo_casing/spent{
- pixel_x = 10;
- pixel_y = 5
- },
-/obj/item/ammo_casing/spent{
- dir = 1;
- pixel_x = -10
- },
-/obj/machinery/light/broken/directional/west,
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"Xq" = (
-/obj/machinery/light/broken/directional/south,
-/obj/effect/turf_decal/rechargefloor,
-/obj/structure/sign/departments/science{
- pixel_x = 32
- },
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/unpowered)
-"Xs" = (
-/obj/structure/table/reinforced,
-/obj/machinery/button/door{
- id = "cryocontainmentblastdoors";
- name = "Blast Door Control"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"XF" = (
-/obj/item/stack/ore/titanium,
-/turf/closed/mineral,
-/area/ruin/unpowered)
-"Yc" = (
-/mob/living/simple_animal/hostile/carp/megacarp,
-/obj/machinery/light/floor,
-/obj/effect/turf_decal/trimline/opaque/orange/end{
- dir = 1
- },
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/unpowered)
-"Ye" = (
-/obj/structure/cable{
- 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/light/broken/directional/south,
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"YC" = (
-/obj/machinery/door/airlock/science/glass,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/unpowered)
-"Zx" = (
-/obj/machinery/atmospherics/components/unary/cryo_cell{
- state_open = 1
- },
-/turf/open/floor/engine/airless,
-/area/ruin/unpowered)
-"Zz" = (
-/obj/effect/mob_spawn/human/corpse/damaged{
- outfit = /datum/outfit/job/scientist
- },
-/obj/effect/decal/cleanable/blood,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"ZF" = (
-/obj/structure/table/reinforced,
-/obj/item/circuitboard/computer/crew,
-/obj/machinery/door/window/survival_pod{
- dir = 1
- },
-/turf/open/floor/plasteel/white/airless,
-/area/ruin/unpowered)
-
-(1,1,1) = {"
-IX
-IX
-IX
-IX
-IX
-IX
-IX
-IX
-IX
-IX
-IX
-IX
-IX
-KY
-IX
-IX
-IX
-IX
-IX
-KZ
-ts
-KZ
-KZ
-ts
-KZ
-LH
-ts
-IX
-IX
-IX
-"}
-(2,1,1) = {"
-IX
-IX
-IX
-IX
-IX
-IX
-IX
-IX
-IX
-IX
-IX
-IX
-IX
-IX
-IX
-IX
-IX
-KY
-IX
-IX
-qy
-IX
-IX
-IX
-yM
-KY
-IX
-IX
-IX
-IX
-"}
-(3,1,1) = {"
-IX
-IX
-IX
-XF
-Wz
-IX
-IX
-IX
-IX
-IX
-IX
-IX
-IX
-IX
-KY
-IX
-IX
-IX
-IX
-Cq
-Cq
-Cq
-cy
-cy
-cy
-Cq
-Gw
-IX
-KZ
-IX
-"}
-(4,1,1) = {"
-IX
-IX
-Wz
-jq
-jq
-dw
-Hm
-IX
-IX
-IX
-IX
-IX
-IX
-IX
-Sp
-KY
-KY
-RK
-IX
-cy
-cy
-Ro
-fx
-vO
-Ro
-cy
-Cq
-KY
-ts
-IX
-"}
-(5,1,1) = {"
-IX
-IX
-jq
-jq
-jq
-Ey
-jq
-jq
-IX
-IX
-Rj
-IX
-IX
-IX
-sD
-BV
-oD
-eS
-IX
-cy
-xB
-xL
-vU
-EE
-Rx
-GP
-cy
-IX
-ts
-IX
-"}
-(6,1,1) = {"
-IX
-IX
-IX
-OI
-jq
-jq
-jq
-jq
-dw
-IX
-IX
-IX
-IX
-IX
-KY
-bp
-VG
-KY
-Gp
-cy
-uc
-UO
-CI
-QC
-gz
-ZF
-cy
-IX
-KZ
-IX
-"}
-(7,1,1) = {"
-IX
-IX
-IX
-IX
-jq
-eX
-jq
-Ey
-jq
-IX
-IX
-IX
-IX
-vp
-Cq
-GV
-Cq
-IX
-IX
-Cq
-Ej
-Ix
-QC
-CI
-dT
-HE
-Cq
-IX
-ts
-IX
-"}
-(8,1,1) = {"
-IX
-IX
-IX
-IX
-IX
-jq
-jq
-jq
-jq
-IX
-IX
-IX
-yM
-IX
-Ji
-Cs
-Ax
-IX
-IX
-Cq
-Ul
-UO
-CI
-QC
-gz
-cV
-Cq
-IX
-LH
-IX
-"}
-(9,1,1) = {"
-IX
-IX
-IX
-IX
-IX
-IX
-IX
-IX
-IX
-IX
-sD
-IX
-IX
-IX
-Ax
-GV
-Fq
-IX
-IX
-Cq
-Cd
-tD
-gm
-gm
-BB
-cy
-Cq
-KY
-ts
-IX
-"}
-(10,1,1) = {"
-IX
-IX
-IX
-IX
-Rj
-IX
-IX
-IX
-IX
-ts
-ts
-KZ
-KZ
-vp
-Fq
-Hy
-qC
-mM
-KY
-Cq
-cy
-cy
-Tr
-Tr
-Cq
-cy
-Cq
-IX
-ts
-IX
-"}
-(11,1,1) = {"
-IX
-IX
-IX
-IX
-IX
-IX
-IX
-IX
-IX
-yM
-KY
-IX
-yM
-IX
-qC
-al
-qC
-IX
-IX
-KY
-IX
-Cq
-ET
-iA
-cy
-IX
-KY
-yM
-IX
-IX
-"}
-(12,1,1) = {"
-IX
-IX
-IX
-IX
-IX
-IX
-IX
-IX
-IX
-IX
-Cq
-Cq
-Cq
-cy
-cy
-gC
-cy
-IX
-Rj
-KY
-IX
-Cq
-Lx
-OH
-cy
-IX
-KY
-IX
-IX
-IX
-"}
-(13,1,1) = {"
-IX
-IX
-IX
-yM
-IX
-sD
-IX
-IX
-yM
-yM
-Cq
-kl
-Fb
-un
-wr
-Wm
-cy
-IX
-IX
-KY
-cy
-cy
-Tr
-Tr
-cy
-cy
-KY
-IX
-IX
-LH
-"}
-(14,1,1) = {"
-IX
-IX
-KZ
-KZ
-ts
-ts
-ts
-ts
-ts
-IX
-cy
-Ue
-IR
-un
-OH
-Ye
-Cq
-yM
-IX
-Cq
-fo
-ye
-bm
-TL
-RJ
-cy
-Cq
-KY
-qy
-KZ
-"}
-(15,1,1) = {"
-IX
-IX
-KZ
-yM
-IX
-KY
-sD
-IX
-KY
-IX
-cy
-Gj
-tx
-un
-gG
-nt
-Cq
-KY
-cy
-Cq
-xD
-kT
-bW
-TG
-cB
-wj
-cy
-Cq
-IX
-ts
-"}
-(16,1,1) = {"
-IX
-IX
-ts
-yM
-IX
-Gp
-IX
-IX
-cy
-cy
-cy
-dt
-cy
-Cq
-Cq
-gC
-Cq
-KY
-Cq
-CL
-OG
-sc
-bW
-BV
-kU
-tm
-RX
-Cq
-IX
-IX
-"}
-(17,1,1) = {"
-IX
-IX
-ts
-KY
-cy
-Cq
-Cq
-cy
-cy
-tn
-QC
-zI
-Xn
-qk
-OH
-al
-Cq
-IX
-Cq
-WS
-Pg
-gO
-Mw
-TL
-WF
-Gn
-hE
-Cq
-yM
-IX
-"}
-(18,1,1) = {"
-IX
-IX
-ts
-IX
-cy
-cy
-cy
-cy
-cy
-ha
-HS
-Iw
-QH
-Mf
-FW
-ih
-cy
-Cq
-cy
-Tq
-JX
-Ru
-TG
-aO
-ca
-OM
-Be
-cy
-cy
-IX
-"}
-(19,1,1) = {"
-IX
-IX
-ts
-IX
-cy
-Cq
-Jd
-Jj
-WR
-Xs
-OH
-jN
-RZ
-DL
-OH
-TF
-cy
-ba
-TL
-OH
-TL
-GV
-GV
-TL
-GV
-wM
-LP
-nN
-cy
-IX
-"}
-(20,1,1) = {"
-IX
-IX
-ts
-KY
-cy
-Cq
-Hn
-Jj
-WR
-fL
-eN
-gd
-ow
-MK
-eT
-km
-YC
-TL
-GV
-Ta
-ar
-Pu
-TL
-TL
-Mz
-WF
-jx
-gJ
-cy
-IX
-"}
-(21,1,1) = {"
-IX
-IX
-KZ
-IX
-cy
-Cq
-Zx
-qa
-EH
-eZ
-Zz
-fE
-fY
-QV
-TF
-QC
-YC
-TL
-TL
-GV
-TL
-TL
-Yc
-DX
-TL
-WF
-TL
-Bl
-cy
-IX
-"}
-(22,1,1) = {"
-IX
-IX
-ts
-IX
-cy
-Cq
-Hn
-Jj
-WR
-ab
-wr
-Po
-kW
-bK
-eU
-CD
-YC
-TL
-LP
-OH
-aO
-Sj
-TL
-TL
-TL
-bt
-BV
-wQ
-cy
-IX
-"}
-(23,1,1) = {"
-IX
-IX
-ts
-KY
-Cq
-Cq
-Jd
-Jj
-WR
-UL
-Ic
-PN
-PD
-kH
-TU
-jP
-Cq
-ge
-BV
-bm
-TL
-bW
-Ta
-Sj
-ar
-WF
-FK
-eI
-cy
-IX
-"}
-(24,1,1) = {"
-IX
-IX
-ts
-IX
-Cq
-Cq
-Cq
-Cq
-cy
-Na
-Mb
-sJ
-QC
-jd
-ra
-Sk
-Cq
-cy
-cy
-vj
-Py
-GV
-kI
-TL
-Mw
-aK
-oY
-cy
-Cq
-IX
-"}
-(25,1,1) = {"
-IX
-IX
-ts
-IX
-cy
-Cq
-Cq
-cy
-cy
-PW
-hw
-nh
-Fk
-nl
-Qi
-fN
-Cq
-IX
-lR
-aO
-TG
-bW
-Lw
-Mz
-oY
-WF
-RX
-Cq
-IX
-IX
-"}
-(26,1,1) = {"
-IX
-IX
-KZ
-KY
-KY
-KY
-Gp
-KY
-cy
-cy
-Cq
-Cq
-Cq
-Cq
-NM
-qf
-cy
-KY
-Cq
-QP
-Rd
-TG
-nY
-LP
-BV
-hl
-Xq
-Cq
-IX
-IX
-"}
-(27,1,1) = {"
-IX
-IX
-KZ
-IX
-IX
-Rj
-IX
-IX
-IX
-KY
-IX
-yM
-IX
-qC
-ve
-LY
-qC
-Gp
-Cq
-cy
-UT
-BV
-Mp
-FX
-TL
-aM
-cy
-cy
-IX
-ts
-"}
-(28,1,1) = {"
-IX
-IX
-IX
-IX
-KZ
-ts
-ts
-ts
-ts
-ts
-ts
-KZ
-yM
-qC
-qC
-qC
-qC
-IX
-IX
-cy
-cy
-PL
-OD
-lk
-Hu
-cy
-cy
-qy
-Gp
-LH
-"}
-(29,1,1) = {"
-IX
-IX
-IX
-IX
-IX
-IX
-IX
-IX
-IX
-IX
-IX
-IX
-IX
-yM
-IX
-IX
-IX
-IX
-IX
-KY
-Cq
-Cq
-cy
-Cq
-Cq
-cy
-KY
-IX
-IX
-ts
-"}
-(30,1,1) = {"
-IX
-IX
-IX
-IX
-IX
-IX
-IX
-IX
-IX
-IX
-IX
-IX
-IX
-IX
-IX
-IX
-IX
-IX
-IX
-KY
-IX
-IX
-IX
-IX
-IX
-IX
-KY
-IX
-IX
-IX
-"}
diff --git a/_maps/RandomRuins/SpaceRuins/dangerous_research.dmm b/_maps/RandomRuins/SpaceRuins/dangerous_research.dmm
deleted file mode 100644
index a1bfbbcabd8..00000000000
--- a/_maps/RandomRuins/SpaceRuins/dangerous_research.dmm
+++ /dev/null
@@ -1,3666 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"aa" = (
-/turf/open/floor/glass/reinforced,
-/area/ruin/space/has_grav)
-"ae" = (
-/obj/effect/decal/cleanable/blood/bubblegum,
-/obj/item/shard,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav)
-"av" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/corner/opaque/mauve/border{
- dir = 4
- },
-/obj/effect/turf_decal/corner/opaque/grey{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav)
-"ay" = (
-/obj/effect/turf_decal/siding/purple/corner{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav)
-"aB" = (
-/obj/structure/closet/crate,
-/obj/item/reagent_containers/food/drinks/waterbottle/large,
-/obj/item/reagent_containers/food/drinks/waterbottle/large,
-/obj/item/reagent_containers/food/drinks/waterbottle/large,
-/obj/item/reagent_containers/food/drinks/waterbottle/large,
-/obj/item/reagent_containers/food/drinks/waterbottle/large,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav)
-"aP" = (
-/obj/machinery/door/airlock/command,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav)
-"aT" = (
-/obj/structure/table,
-/obj/item/clothing/gloves/color/latex,
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"aW" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav)
-"bB" = (
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 4
- },
-/obj/effect/turf_decal/corner/opaque/grey/diagonal,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav)
-"bR" = (
-/obj/structure/chair/office{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/grey/diagonal,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav)
-"ci" = (
-/obj/structure/window/reinforced,
-/obj/effect/turf_decal/corner/opaque/grey/diagonal,
-/obj/machinery/autolathe,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav)
-"cl" = (
-/obj/structure/flippedtable,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav)
-"ct" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/carpet/blue,
-/area/ruin/space/has_grav)
-"cF" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/mauve/border{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/grey,
-/obj/machinery/rnd/production/techfab/department/medical,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav)
-"cW" = (
-/obj/structure/table,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/grey/diagonal,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav)
-"dy" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced,
-/obj/effect/decal/cleanable/blood/footprints,
-/obj/item/organ/lungs,
-/turf/open/floor/plating/rust,
-/area/ruin/space/has_grav)
-"dA" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/spawner/lootdrop/maintenance/five,
-/obj/structure/closet/crate,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav)
-"dI" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/effect/decal/cleanable/blood/gibs/up,
-/obj/effect/decal/cleanable/blood/footprints,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav)
-"dN" = (
-/obj/effect/decal/cleanable/blood/gibs/core,
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 8
- },
-/obj/effect/decal/cleanable/blood/gibs,
-/obj/effect/mob_spawn/human/scientist,
-/obj/item/gun/ballistic/automatic/pistol/no_mag,
-/obj/effect/turf_decal/corner/opaque/mauve/border{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/grey,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav)
-"eI" = (
-/obj/effect/turf_decal/corner/opaque/grey/diagonal,
-/obj/machinery/computer/security,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav)
-"eW" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 4
- },
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav)
-"fg" = (
-/obj/effect/turf_decal/siding/purple,
-/obj/structure/table,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav)
-"fq" = (
-/obj/structure/table,
-/obj/item/shard,
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"fB" = (
-/obj/machinery/light/broken/directional/north,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav)
-"fF" = (
-/obj/effect/turf_decal/trimline/opaque/purple/corner{
- dir = 8
- },
-/obj/machinery/chem_master,
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"fH" = (
-/obj/effect/decal/cleanable/blood/splatter,
-/obj/effect/turf_decal/corner/opaque/grey/diagonal,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav)
-"fR" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/table,
-/obj/item/flashlight,
-/turf/open/floor/plating/rust,
-/area/ruin/space/has_grav)
-"fZ" = (
-/obj/structure/window/reinforced,
-/obj/structure/filingcabinet,
-/obj/effect/turf_decal/corner/opaque/grey/diagonal,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav)
-"gb" = (
-/turf/closed/wall/rust,
-/area/ruin/space/has_grav)
-"gC" = (
-/obj/structure/table,
-/obj/effect/turf_decal/corner/opaque/green/border,
-/obj/item/book/manual/wiki/chemistry,
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"gH" = (
-/obj/item/trash/can{
- pixel_x = -8
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/light/broken/directional/west,
-/obj/effect/turf_decal/corner/opaque/mauve/border{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/grey,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav)
-"gN" = (
-/obj/effect/decal/cleanable/glass,
-/obj/structure/grille/broken,
-/obj/effect/decal/cleanable/blood/tracks,
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav)
-"hn" = (
-/obj/structure/sign/poster/official/safety_report{
- pixel_y = -32
- },
-/obj/effect/turf_decal/corner/opaque/mauve/border,
-/obj/effect/turf_decal/corner/opaque/grey{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav)
-"hV" = (
-/obj/effect/turf_decal/siding/purple/corner{
- dir = 4
- },
-/obj/item/kirbyplants/random,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav)
-"ip" = (
-/obj/effect/turf_decal/trimline/opaque/blue/filled/line{
- dir = 4
- },
-/obj/item/shard{
- icon_state = "medium"
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"is" = (
-/obj/structure/table,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/computer/med_data/laptop,
-/obj/effect/turf_decal/corner/opaque/grey/diagonal,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav)
-"iD" = (
-/obj/structure/table,
-/obj/structure/window/reinforced,
-/obj/effect/turf_decal/corner/opaque/grey/diagonal,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav)
-"iR" = (
-/obj/structure/chair/comfy{
- dir = 4
- },
-/obj/effect/turf_decal/corner/opaque/grey/diagonal,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav)
-"jz" = (
-/obj/structure/table,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/item/modular_computer/laptop/preset/civilian,
-/obj/effect/turf_decal/corner/opaque/grey/diagonal,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav)
-"jB" = (
-/obj/structure/chair/comfy{
- dir = 4
- },
-/obj/effect/turf_decal/corner/opaque/green/border{
- dir = 10
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"jD" = (
-/obj/effect/decal/cleanable/blood/gibs/up,
-/obj/effect/decal/cleanable/blood/bubblegum,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav)
-"jF" = (
-/obj/structure/chair{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"kf" = (
-/obj/structure/barricade/wooden/crude,
-/obj/machinery/door/airlock/vault,
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"kl" = (
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 1
- },
-/obj/effect/decal/cleanable/blood/footprints,
-/turf/open/floor/plating/rust,
-/area/ruin/space/has_grav)
-"kp" = (
-/obj/effect/decal/cleanable/blood/gibs/core,
-/turf/open/floor/plating/rust,
-/area/ruin/space/has_grav)
-"kA" = (
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 4
- },
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 8
- },
-/turf/open/floor/plating/rust,
-/area/ruin/space/has_grav)
-"kV" = (
-/obj/effect/decal/cleanable/blood/gibs/core,
-/obj/effect/decal/cleanable/blood/footprints,
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav)
-"kY" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/mob_spawn/human/scientist,
-/obj/effect/decal/cleanable/blood/bubblegum,
-/obj/item/switchblade,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav)
-"ln" = (
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"lu" = (
-/obj/machinery/light/directional/east,
-/obj/effect/turf_decal/corner/opaque/grey/diagonal,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav)
-"lX" = (
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/grey/diagonal,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav)
-"lY" = (
-/obj/machinery/light/broken/directional/south,
-/turf/open/floor/plating/rust,
-/area/ruin/space/has_grav)
-"mo" = (
-/obj/structure/closet/l3closet/scientist,
-/obj/effect/turf_decal/corner/opaque/purple/diagonal,
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"mp" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"mG" = (
-/obj/structure/door_assembly/door_assembly_vault,
-/obj/structure/barricade/wooden/crude,
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"mK" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/machinery/light/directional/west,
-/obj/effect/turf_decal/corner/opaque/green/border{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"mV" = (
-/obj/machinery/vending/cigarette,
-/turf/open/floor/carpet/blue,
-/area/ruin/space/has_grav)
-"nl" = (
-/obj/machinery/light/directional/west,
-/obj/effect/turf_decal/corner/opaque/mauve/border{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/grey,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav)
-"nu" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced,
-/obj/structure/table,
-/obj/effect/turf_decal/corner/opaque/grey/diagonal,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav)
-"nA" = (
-/obj/structure/table,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/item/stack/sticky_tape,
-/obj/effect/turf_decal/corner/opaque/grey/diagonal,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav)
-"nB" = (
-/obj/effect/decal/cleanable/blood/tracks,
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"oa" = (
-/obj/machinery/computer/operating,
-/obj/machinery/light/broken/directional/north,
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"oi" = (
-/obj/structure/table,
-/obj/item/organ/heart,
-/obj/effect/decal/cleanable/blood/bubblegum,
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"ol" = (
-/obj/structure/table,
-/obj/item/paper_bin,
-/obj/item/pen/fountain,
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"os" = (
-/obj/structure/sign/poster/official/random{
- pixel_y = 32
- },
-/obj/effect/turf_decal/corner/opaque/grey/diagonal,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav)
-"oz" = (
-/turf/open/floor/plating,
-/area/ruin/space/has_grav)
-"oG" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/effect/turf_decal/corner/opaque/green/border{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"pd" = (
-/obj/effect/turf_decal/trimline/opaque/purple/corner{
- dir = 1
- },
-/mob/living/simple_animal/hostile/faithless,
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"pF" = (
-/obj/structure/table,
-/obj/effect/turf_decal/trimline/opaque/blue/filled/line{
- dir = 4
- },
-/obj/item/hemostat,
-/obj/item/circular_saw,
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"pO" = (
-/obj/effect/turf_decal/trimline/opaque/purple/line{
- dir = 1
- },
-/obj/structure/table,
-/obj/item/clothing/gloves/color/latex,
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"pP" = (
-/obj/structure/rack,
-/obj/item/storage/toolbox/mechanical,
-/obj/item/storage/toolbox/electrical,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav)
-"pY" = (
-/obj/structure/table,
-/obj/structure/window/reinforced,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/corner/opaque/grey/diagonal,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav)
-"ql" = (
-/obj/machinery/light/broken/directional/north,
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"qp" = (
-/obj/effect/turf_decal/corner/opaque/mauve/border{
- dir = 9
- },
-/obj/effect/turf_decal/corner/opaque/grey,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav)
-"qq" = (
-/obj/machinery/door/airlock/science,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/barricade/wooden,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav)
-"qE" = (
-/obj/effect/turf_decal/corner/opaque/mauve/diagonal,
-/obj/machinery/suit_storage_unit/standard_unit,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav)
-"qR" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/effect/decal/cleanable/blood/gibs,
-/obj/effect/decal/cleanable/blood/footprints,
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav)
-"rb" = (
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 4
- },
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 8
- },
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 4
- },
-/turf/open/floor/plating/rust,
-/area/ruin/space/has_grav)
-"rc" = (
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 4
- },
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 8
- },
-/mob/living/simple_animal/hostile/faithless,
-/turf/open/floor/plating/rust,
-/area/ruin/space/has_grav)
-"rd" = (
-/obj/effect/turf_decal/siding/purple{
- dir = 1
- },
-/obj/effect/turf_decal/siding/purple/corner,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav)
-"re" = (
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 8
- },
-/obj/effect/turf_decal/trimline/opaque/blue/filled/line{
- dir = 1
- },
-/obj/effect/turf_decal/trimline/opaque/purple/line,
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"rr" = (
-/obj/item/shard,
-/obj/effect/decal/cleanable/glass,
-/obj/effect/decal/cleanable/blood/footprints,
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 4
- },
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 8
- },
-/obj/item/organ/liver,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav)
-"rF" = (
-/obj/item/chair,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav)
-"rO" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/fluff/paper/stack{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"sa" = (
-/obj/effect/turf_decal/siding/purple/corner{
- dir = 8
- },
-/obj/item/kirbyplants/random,
-/obj/structure/sign/poster/official/random{
- pixel_y = 32
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav)
-"sj" = (
-/obj/effect/decal/cleanable/blood/footprints,
-/obj/effect/decal/cleanable/glass,
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 4
- },
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 8
- },
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 4
- },
-/turf/open/floor/plating/rust,
-/area/ruin/space/has_grav)
-"sv" = (
-/obj/effect/turf_decal/corner/opaque/grey/diagonal,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav)
-"sG" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/green/border{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"tm" = (
-/obj/machinery/iv_drip,
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"tp" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/effect/turf_decal/corner/opaque/green/border{
- dir = 9
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"tt" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/industrial/warning,
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"tz" = (
-/obj/structure/table,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/item/paper_bin{
- pixel_x = -1;
- pixel_y = 5
- },
-/obj/item/pen,
-/obj/effect/turf_decal/corner/opaque/grey/diagonal,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav)
-"tK" = (
-/obj/effect/decal/cleanable/blood/footprints,
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 4
- },
-/obj/effect/decal/cleanable/blood/bubblegum,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav)
-"tQ" = (
-/obj/structure/sign/warning/docking{
- pixel_y = 28
- },
-/turf/open/space,
-/area/template_noop)
-"tR" = (
-/obj/item/storage/firstaid/regular{
- empty = 1;
- name = "First-Aid (empty)"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/reagent_containers/spray/cleaner,
-/obj/structure/rack,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav)
-"tS" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/siding/purple{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav)
-"uN" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/rust,
-/area/ruin/space/has_grav)
-"uP" = (
-/obj/structure/fluff/paper/stack{
- dir = 6
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"uZ" = (
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 1
- },
-/obj/effect/decal/cleanable/blood/footprints,
-/obj/effect/decal/cleanable/blood/footprints,
-/turf/open/floor/plating/rust,
-/area/ruin/space/has_grav)
-"ve" = (
-/obj/effect/turf_decal/trimline/opaque/purple/line{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/mob/living/simple_animal/hostile/faithless,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav)
-"vm" = (
-/obj/effect/turf_decal/corner/opaque/mauve/border{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/grey,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav)
-"vA" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/effect/decal/cleanable/blood/footprints,
-/obj/effect/decal/cleanable/blood/bubblegum,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav)
-"vH" = (
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 4
- },
-/obj/item/shard,
-/obj/effect/decal/cleanable/glass,
-/obj/item/electronics/airlock,
-/obj/effect/decal/cleanable/blood/footprints,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav)
-"wg" = (
-/obj/effect/decal/cleanable/blood/footprints,
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 1
- },
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 8
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"wh" = (
-/obj/effect/turf_decal/siding/purple{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav)
-"wt" = (
-/obj/machinery/light/broken/directional/south,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav)
-"wC" = (
-/obj/effect/decal/cleanable/blood/bubblegum,
-/obj/structure/frame/computer,
-/obj/effect/decal/cleanable/glass,
-/obj/item/shard{
- icon_state = "small"
- },
-/obj/item/shard{
- icon_state = "medium"
- },
-/obj/item/stack/cable_coil/cut,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav)
-"wJ" = (
-/obj/machinery/light/directional/west,
-/obj/effect/turf_decal/corner/opaque/mauve/diagonal,
-/obj/machinery/suit_storage_unit/standard_unit,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav)
-"xf" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/chair/office{
- dir = 1
- },
-/turf/open/floor/carpet/blue,
-/area/ruin/space/has_grav)
-"xn" = (
-/turf/open/floor/plating/rust,
-/area/ruin/space/has_grav)
-"xq" = (
-/obj/structure/window/reinforced,
-/obj/effect/decal/cleanable/blood/gibs/torso,
-/obj/effect/decal/cleanable/blood/footprints,
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav)
-"xB" = (
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 4
- },
-/obj/effect/turf_decal/trimline/opaque/blue/filled/line{
- dir = 1
- },
-/obj/effect/turf_decal/trimline/opaque/purple/line,
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"xE" = (
-/obj/effect/turf_decal/corner/opaque/mauve/border{
- dir = 6
- },
-/obj/effect/turf_decal/corner/opaque/grey{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav)
-"ya" = (
-/obj/machinery/shower{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/purple/diagonal,
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"yA" = (
-/obj/structure/table,
-/obj/item/stack/sheet/cardboard,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav)
-"yB" = (
-/obj/structure/fluff/paper/stack,
-/obj/effect/turf_decal/industrial/warning/corner,
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"yK" = (
-/obj/structure/closet/crate,
-/obj/item/stack/sheet/mineral/wood/fifty,
-/obj/item/stack/sheet/glass/fifty,
-/obj/item/stack/sheet/glass/fifty,
-/obj/item/stack/sheet/plasteel{
- amount = 30
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav)
-"yO" = (
-/obj/effect/turf_decal/siding/purple/corner,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav)
-"yW" = (
-/obj/effect/decal/cleanable/glass,
-/obj/structure/grille/broken,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav)
-"ze" = (
-/obj/structure/sign/poster/official/science,
-/turf/closed/wall/r_wall,
-/area/ruin/space/has_grav)
-"zg" = (
-/obj/structure/table,
-/turf/open/floor/carpet/blue,
-/area/ruin/space/has_grav)
-"zi" = (
-/obj/item/stack/rods/ten,
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"zr" = (
-/obj/structure/chair/office,
-/obj/effect/turf_decal/corner/opaque/grey/diagonal,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav)
-"zz" = (
-/turf/open/floor/carpet/blue,
-/area/ruin/space/has_grav)
-"zX" = (
-/obj/structure/table/glass,
-/obj/item/folder/white,
-/obj/item/toy/figure/rd{
- pixel_y = 10
- },
-/turf/open/floor/carpet/blue,
-/area/ruin/space/has_grav)
-"zZ" = (
-/obj/effect/decal/cleanable/blood/bubblegum,
-/obj/effect/turf_decal/corner/opaque/mauve/border{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/grey,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav)
-"Ad" = (
-/obj/effect/decal/cleanable/glass,
-/obj/structure/grille/broken,
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 4
- },
-/obj/item/shard{
- icon_state = "small"
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav)
-"Ah" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/green/border{
- dir = 5
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"Am" = (
-/obj/machinery/door/airlock/external,
-/obj/effect/turf_decal/corner/opaque/mauve/diagonal,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav)
-"AH" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/effect/decal/cleanable/blood/footprints,
-/obj/effect/decal/cleanable/blood/footprints,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav)
-"AK" = (
-/obj/structure/table,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/item/clothing/gloves/color/latex,
-/obj/effect/turf_decal/corner/opaque/grey/diagonal,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav)
-"AS" = (
-/obj/effect/turf_decal/corner/opaque/green/border{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"Bc" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced,
-/obj/effect/decal/cleanable/blood/gibs/limb,
-/obj/effect/decal/cleanable/blood/footprints,
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 4
- },
-/obj/effect/decal/cleanable/blood/bubblegum,
-/obj/item/organ/appendix,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav)
-"Bg" = (
-/turf/closed/mineral/random,
-/area/template_noop)
-"Bz" = (
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 10
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"BE" = (
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 4
- },
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 1
- },
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 8
- },
-/obj/item/organ/heart,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav)
-"BG" = (
-/turf/closed/wall/r_wall/rust,
-/area/ruin/space/has_grav)
-"BH" = (
-/obj/structure/table/optable,
-/obj/item/organ/eyes,
-/obj/item/organ/liver,
-/obj/effect/decal/cleanable/blood/bubblegum,
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"BJ" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/table,
-/obj/effect/turf_decal/corner/opaque/grey/diagonal,
-/obj/item/circuitboard/computer/rdconsole,
-/obj/item/multitool,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav)
-"BN" = (
-/obj/structure/table,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/item/reagent_containers/dropper{
- pixel_x = -3;
- pixel_y = -6
- },
-/obj/effect/turf_decal/corner/opaque/mauve/border,
-/obj/effect/turf_decal/corner/opaque/grey{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav)
-"Cn" = (
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 4
- },
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 8
- },
-/obj/effect/turf_decal/trimline/opaque/blue/filled/line{
- dir = 1
- },
-/obj/effect/turf_decal/trimline/opaque/purple/line,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"CD" = (
-/obj/effect/decal/cleanable/blood/gibs/core,
-/obj/effect/decal/cleanable/blood/footprints,
-/obj/effect/decal/cleanable/blood/bubblegum,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav)
-"CE" = (
-/obj/effect/turf_decal/trimline/opaque/purple/line{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"CG" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav)
-"CS" = (
-/obj/effect/decal/cleanable/blood/footprints,
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 8
- },
-/obj/item/clothing/suit/bio_suit/scientist,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav)
-"CW" = (
-/obj/effect/turf_decal/siding/purple{
- dir = 1
- },
-/obj/effect/turf_decal/siding/purple,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav)
-"Dl" = (
-/obj/effect/turf_decal/trimline/opaque/purple/line{
- dir = 8
- },
-/obj/machinery/light/broken/directional/east,
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"Dt" = (
-/obj/structure/table,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced,
-/obj/effect/turf_decal/corner/opaque/grey/diagonal,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav)
-"Dx" = (
-/obj/structure/chair{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav)
-"DA" = (
-/obj/structure/chair/comfy{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/green/border,
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"DC" = (
-/obj/effect/decal/cleanable/glass,
-/obj/structure/grille/broken,
-/obj/item/shard{
- icon_state = "small"
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav)
-"DR" = (
-/obj/effect/turf_decal/trimline/opaque/purple/line,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"DX" = (
-/obj/structure/table/glass,
-/turf/open/floor/carpet/blue,
-/area/ruin/space/has_grav)
-"DY" = (
-/obj/item/trash/can/food/peaches/maint,
-/obj/item/trash/sosjerky,
-/obj/item/trash/semki,
-/obj/item/ammo_box/magazine/m10mm,
-/obj/effect/turf_decal/corner/opaque/mauve/border{
- dir = 10
- },
-/obj/item/gps/science,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav)
-"EF" = (
-/obj/effect/decal/cleanable/blood/tracks,
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav)
-"ET" = (
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 1
- },
-/obj/effect/decal/cleanable/blood/footprints,
-/obj/effect/decal/cleanable/blood/gibs/core,
-/obj/effect/decal/cleanable/blood/bubblegum,
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"EX" = (
-/obj/structure/table,
-/obj/item/storage/bag/bio,
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"Fi" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"Fj" = (
-/obj/structure/closet,
-/obj/item/crowbar,
-/obj/item/clothing/suit/armor/vest,
-/obj/item/ammo_box/magazine/m10mm,
-/obj/effect/turf_decal/corner/opaque/grey/diagonal,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav)
-"Fk" = (
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 4
- },
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav)
-"Fo" = (
-/obj/effect/turf_decal/siding/purple{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav)
-"FA" = (
-/obj/effect/turf_decal/trimline/opaque/purple/line{
- dir = 4
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"FB" = (
-/obj/structure/table,
-/obj/machinery/light/directional/west,
-/obj/item/storage/box/donkpockets/donkpocketpizza,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav)
-"FG" = (
-/obj/structure/fluff/paper/stack,
-/obj/effect/turf_decal/industrial/warning,
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"FM" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"FZ" = (
-/obj/effect/decal/cleanable/blood/gibs/torso,
-/obj/effect/decal/cleanable/blood/footprints,
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 4
- },
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 8
- },
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav)
-"Gn" = (
-/mob/living/simple_animal/hostile/faithless,
-/obj/effect/turf_decal/siding/purple/corner{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav)
-"Gu" = (
-/obj/effect/turf_decal/trimline/opaque/purple/line,
-/obj/structure/table,
-/obj/item/reagent_containers/glass/beaker/large,
-/obj/item/reagent_containers/glass/beaker{
- pixel_x = 8;
- pixel_y = 2
- },
-/obj/item/reagent_containers/dropper,
-/obj/item/clothing/glasses/science,
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"Gz" = (
-/obj/machinery/shower{
- dir = 4
- },
-/obj/structure/barricade/wooden,
-/obj/effect/turf_decal/corner/opaque/purple/diagonal,
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"GN" = (
-/obj/structure/fluff/paper/stack{
- dir = 9
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"GZ" = (
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 5
- },
-/obj/effect/turf_decal/trimline/opaque/purple/line,
-/obj/effect/turf_decal/trimline/opaque/blue/filled/corner{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"Hl" = (
-/obj/item/kirbyplants/random,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav)
-"HG" = (
-/obj/effect/turf_decal/corner/opaque/green/border{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"If" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/corner/opaque/purple/diagonal,
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"Il" = (
-/obj/effect/turf_decal/siding/purple,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav)
-"ID" = (
-/obj/effect/turf_decal/corner/opaque/green/border{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"IR" = (
-/obj/structure/closet/firecloset/wall/directional/north,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav)
-"Ja" = (
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 4
- },
-/obj/effect/decal/cleanable/blood/footprints,
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 8
- },
-/obj/effect/decal/cleanable/blood/bubblegum,
-/obj/effect/mob_spawn/human/corpse/charredskeleton,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav)
-"Jf" = (
-/obj/effect/turf_decal/siding/purple/corner{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav)
-"Ji" = (
-/obj/structure/chair/comfy{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/green/border{
- dir = 6
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"Js" = (
-/obj/effect/turf_decal/siding/purple/corner{
- dir = 1
- },
-/obj/item/kirbyplants/random,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav)
-"Ju" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 4
- },
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 8
- },
-/obj/effect/decal/cleanable/blood/bubblegum,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav)
-"Jw" = (
-/obj/effect/turf_decal/trimline/opaque/purple/corner{
- dir = 4
- },
-/obj/item/storage/backpack/duffelbag/med/surgery,
-/obj/structure/table,
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"JL" = (
-/obj/effect/turf_decal/siding/purple{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav)
-"JS" = (
-/obj/structure/window/reinforced,
-/obj/effect/decal/cleanable/blood/footprints,
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav)
-"JW" = (
-/obj/structure/table,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/machinery/computer/med_data/laptop{
- dir = 8;
- pixel_y = 1;
- req_one_access = null;
- req_one_access_txt = "4;5;9"
- },
-/obj/effect/turf_decal/corner/opaque/mauve/border{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/grey,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav)
-"Kb" = (
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 1
- },
-/obj/effect/decal/cleanable/blood/footprints,
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"Kg" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/corner/opaque/mauve/diagonal,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav)
-"Ki" = (
-/obj/effect/decal/cleanable/blood/bubblegum,
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"Ky" = (
-/obj/machinery/light/broken/directional/east,
-/obj/effect/turf_decal/corner/opaque/mauve/diagonal,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav)
-"KH" = (
-/obj/effect/turf_decal/siding/purple,
-/obj/effect/turf_decal/siding/purple/corner{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav)
-"KL" = (
-/mob/living/simple_animal/hostile/faithless,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav)
-"KR" = (
-/obj/effect/turf_decal/corner/opaque/mauve/diagonal,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav)
-"KT" = (
-/obj/effect/decal/cleanable/blood/tracks,
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 1
- },
-/obj/effect/turf_decal/trimline/opaque/purple/line{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"KX" = (
-/obj/effect/decal/cleanable/blood/bubblegum,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav)
-"LG" = (
-/obj/structure/chair/comfy{
- dir = 4
- },
-/obj/effect/turf_decal/corner/opaque/green/border,
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"LJ" = (
-/obj/structure/extinguisher_cabinet/directional/north,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav)
-"LZ" = (
-/obj/item/stack/sheet/mineral/silver,
-/turf/open/floor/plating/rust,
-/area/ruin/space/has_grav)
-"Mf" = (
-/obj/machinery/light/directional/east,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav)
-"Ml" = (
-/obj/item/circuitboard/computer/operating,
-/turf/open/floor/plating/rust,
-/area/ruin/space/has_grav)
-"MI" = (
-/obj/structure/table,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav)
-"Ns" = (
-/turf/closed/wall/r_wall,
-/area/ruin/space/has_grav)
-"ND" = (
-/obj/item/kirbyplants/random,
-/turf/open/floor/carpet/blue,
-/area/ruin/space/has_grav)
-"NK" = (
-/obj/structure/window/reinforced,
-/obj/effect/decal/cleanable/blood/gibs,
-/obj/effect/decal/cleanable/blood/footprints,
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav)
-"Oa" = (
-/obj/structure/table,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"Oh" = (
-/obj/effect/turf_decal/trimline/opaque/purple/line{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"On" = (
-/turf/open/floor/plating/asteroid/airless,
-/area/template_noop)
-"OB" = (
-/obj/effect/turf_decal/industrial/warning,
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"OH" = (
-/obj/effect/decal/cleanable/blood/bubblegum,
-/obj/effect/decal/cleanable/blood/gibs/core,
-/obj/effect/decal/cleanable/blood/gibs/down,
-/mob/living/simple_animal/hostile/faithless,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav)
-"Pb" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"Pk" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/effect/decal/cleanable/blood/footprints,
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav)
-"Pv" = (
-/obj/machinery/door/airlock/science,
-/obj/effect/turf_decal/corner/opaque/purple/diagonal,
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"Pw" = (
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 8
- },
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 4
- },
-/obj/effect/decal/cleanable/blood/gibs/core,
-/obj/item/ammo_box/magazine/m10mm{
- start_empty = 1
- },
-/obj/effect/turf_decal/corner/opaque/grey/diagonal,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav)
-"PL" = (
-/obj/machinery/light/broken/directional/south,
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"PM" = (
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 8
- },
-/obj/effect/turf_decal/trimline/opaque/blue/filled/line{
- dir = 1
- },
-/obj/effect/turf_decal/trimline/opaque/purple/line,
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 1
- },
-/obj/effect/decal/cleanable/blood/footprints,
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"PO" = (
-/obj/machinery/door/airlock/science,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav)
-"PP" = (
-/obj/structure/table/glass,
-/obj/item/paicard,
-/turf/open/floor/carpet/blue,
-/area/ruin/space/has_grav)
-"Qk" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/glass/reinforced,
-/area/ruin/space/has_grav)
-"Qn" = (
-/obj/structure/table,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/item/trash/energybar,
-/obj/item/trash/chips,
-/obj/effect/turf_decal/corner/opaque/grey/diagonal,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav)
-"Qp" = (
-/obj/structure/chair{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"Qr" = (
-/obj/effect/decal/cleanable/blood/tracks,
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav)
-"Qt" = (
-/obj/structure/barricade/wooden/crude,
-/obj/effect/decal/cleanable/blood/tracks,
-/obj/effect/turf_decal/corner/opaque/purple/diagonal,
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"Qv" = (
-/turf/open/space,
-/area/template_noop)
-"Qz" = (
-/obj/structure/sign/warning/docking{
- pixel_y = 28
- },
-/obj/effect/turf_decal/corner/opaque/purple/diagonal,
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"QE" = (
-/obj/structure/sign/warning/biohazard{
- pixel_y = 32
- },
-/obj/effect/turf_decal/corner/opaque/purple/diagonal,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"QF" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav)
-"QI" = (
-/obj/structure/table,
-/obj/item/storage/book/bible,
-/obj/effect/turf_decal/corner/opaque/green/border,
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"QQ" = (
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 8
- },
-/obj/effect/decal/cleanable/blood/footprints,
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"Rj" = (
-/obj/structure/table,
-/obj/machinery/microwave,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav)
-"Rn" = (
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 4
- },
-/obj/effect/decal/cleanable/blood/footprints,
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 8
- },
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav)
-"Rs" = (
-/obj/structure/frame/machine,
-/obj/item/stack/cable_coil/cut,
-/turf/open/floor/plating/rust,
-/area/ruin/space/has_grav)
-"RA" = (
-/obj/structure/sink{
- pixel_y = 22
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"RB" = (
-/obj/structure/table,
-/obj/machinery/recharger{
- pixel_y = 4
- },
-/obj/effect/turf_decal/corner/opaque/grey/diagonal,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav)
-"RM" = (
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 4
- },
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav)
-"RR" = (
-/obj/structure/table,
-/obj/item/book/manual/wiki/medicine,
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"RU" = (
-/obj/effect/turf_decal/corner/opaque/purple/diagonal,
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"Sg" = (
-/obj/machinery/light/directional/north,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav)
-"Si" = (
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav)
-"Sx" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/green/border{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"SC" = (
-/obj/effect/turf_decal/corner/opaque/mauve/border{
- dir = 4
- },
-/obj/effect/turf_decal/corner/opaque/grey{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav)
-"SD" = (
-/obj/effect/turf_decal/corner/opaque/grey/diagonal,
-/turf/open/floor/plating/rust,
-/area/ruin/space/has_grav)
-"SL" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/machinery/light/directional/east,
-/obj/effect/turf_decal/corner/opaque/green/border{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"SS" = (
-/obj/item/trash/cheesie,
-/obj/structure/sign/poster/ripped{
- pixel_y = -32
- },
-/obj/effect/turf_decal/corner/opaque/mauve/border,
-/obj/effect/turf_decal/corner/opaque/grey{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav)
-"SV" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/corner/opaque/mauve/border{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/grey,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav)
-"Tc" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/extinguisher_cabinet/directional/north,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav)
-"Ty" = (
-/obj/effect/turf_decal/corner/opaque/mauve/border{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/grey,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav)
-"TD" = (
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 4
- },
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 8
- },
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 4
- },
-/mob/living/simple_animal/hostile/faithless,
-/obj/effect/turf_decal/corner/opaque/grey/diagonal,
-/turf/open/floor/plating/rust,
-/area/ruin/space/has_grav)
-"TL" = (
-/obj/machinery/light/directional/south,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav)
-"TO" = (
-/obj/effect/turf_decal/siding/purple,
-/obj/structure/chair,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav)
-"TW" = (
-/obj/structure/chair/office{
- dir = 4
- },
-/obj/effect/turf_decal/corner/opaque/grey/diagonal,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav)
-"Uk" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/chair/office{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/grey/diagonal,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav)
-"Um" = (
-/obj/structure/barricade/wooden,
-/obj/effect/turf_decal/corner/opaque/purple/diagonal,
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"UD" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/table,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/reagent_containers/food/snacks/grown/eggplant,
-/obj/effect/turf_decal/corner/opaque/mauve/border,
-/obj/effect/turf_decal/corner/opaque/grey{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav)
-"UQ" = (
-/obj/effect/turf_decal/siding/purple,
-/obj/structure/closet/firecloset/wall/directional/north,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav)
-"UR" = (
-/obj/effect/turf_decal/siding/purple,
-/obj/structure/table,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav)
-"UV" = (
-/obj/item/chair,
-/turf/open/floor/plating/rust,
-/area/ruin/space/has_grav)
-"Va" = (
-/obj/effect/turf_decal/siding/purple{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav)
-"Vd" = (
-/obj/structure/table,
-/obj/machinery/light/broken/directional/north,
-/obj/item/ammo_box/magazine/m10mm,
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"Vm" = (
-/mob/living/simple_animal/hostile/faithless,
-/obj/effect/turf_decal/industrial/warning,
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"Vo" = (
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 8
- },
-/obj/effect/turf_decal/trimline/opaque/blue/filled/corner{
- dir = 4
- },
-/obj/effect/turf_decal/trimline/opaque/purple/corner,
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"VL" = (
-/obj/effect/decal/cleanable/blood/footprints,
-/turf/open/floor/plating/rust,
-/area/ruin/space/has_grav)
-"VP" = (
-/obj/item/kirbyplants/random,
-/obj/effect/turf_decal/corner/opaque/mauve/border{
- dir = 5
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav)
-"Wn" = (
-/obj/structure/table,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/item/trash/can,
-/obj/effect/turf_decal/corner/opaque/grey/diagonal,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav)
-"Wt" = (
-/obj/effect/turf_decal/trimline/opaque/blue/filled/line{
- dir = 4
- },
-/obj/item/chair,
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"Wx" = (
-/obj/structure/table,
-/obj/machinery/light/directional/south,
-/obj/item/clothing/under/rank/rnd/research_director/turtleneck,
-/turf/open/floor/carpet/blue,
-/area/ruin/space/has_grav)
-"WV" = (
-/obj/structure/fluff/paper/stack{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav)
-"Xk" = (
-/turf/closed/wall,
-/area/ruin/space/has_grav)
-"Xy" = (
-/obj/effect/turf_decal/siding/purple{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav)
-"XO" = (
-/obj/structure/door_assembly/door_assembly_vault,
-/obj/item/electronics/airlock,
-/obj/effect/turf_decal/trimline/opaque/purple/line{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav)
-"XX" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/effect/decal/cleanable/blood/gibs,
-/obj/effect/decal/cleanable/blood/footprints,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav)
-"XY" = (
-/obj/structure/filingcabinet/chestdrawer,
-/turf/open/floor/carpet/blue,
-/area/ruin/space/has_grav)
-"Yr" = (
-/obj/structure/table,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/effect/turf_decal/corner/opaque/grey/diagonal,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav)
-"YW" = (
-/obj/effect/turf_decal/trimline/opaque/purple/line,
-/obj/machinery/chem_heater,
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"Zc" = (
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 1
- },
-/obj/effect/decal/cleanable/blood/footprints,
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"Zd" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/effect/turf_decal/corner/opaque/green/border{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"Zl" = (
-/obj/structure/fluff/paper/stack,
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav)
-"ZF" = (
-/obj/structure/table,
-/obj/item/storage/fancy/donut_box,
-/obj/effect/turf_decal/corner/opaque/grey/diagonal,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav)
-"ZH" = (
-/mob/living/simple_animal/hostile/faithless,
-/obj/effect/turf_decal/siding/purple{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav)
-
-(1,1,1) = {"
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-On
-On
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-"}
-(2,1,1) = {"
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Bg
-Bg
-Bg
-Bg
-Bg
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-On
-Bg
-Bg
-On
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-"}
-(3,1,1) = {"
-Qv
-Qv
-Qv
-Bg
-Bg
-Bg
-Qv
-Qv
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-On
-On
-Bg
-On
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-"}
-(4,1,1) = {"
-Qv
-Qv
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-On
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-On
-Bg
-On
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-"}
-(5,1,1) = {"
-Qv
-Qv
-Bg
-Bg
-Bg
-gb
-gb
-Ns
-Ns
-ze
-Ns
-Ns
-gb
-gb
-gb
-Bg
-On
-Qv
-Qv
-On
-On
-Qv
-Qv
-On
-Qv
-Qv
-On
-On
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-"}
-(6,1,1) = {"
-Qv
-Qv
-Bg
-Bg
-Bg
-gb
-qp
-nl
-Ty
-Ty
-dN
-zZ
-gH
-DY
-Ns
-Bg
-On
-Qv
-On
-On
-On
-On
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Bg
-Bg
-Bg
-Bg
-Qv
-Qv
-Qv
-"}
-(7,1,1) = {"
-Qv
-Qv
-Qv
-Bg
-Bg
-gb
-SV
-TW
-iD
-sv
-Pw
-jz
-iR
-SS
-Ns
-Bg
-Bg
-On
-On
-Bg
-Bg
-On
-On
-On
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-On
-Bg
-Bg
-Bg
-Bg
-Qv
-Qv
-"}
-(8,1,1) = {"
-Qv
-Qv
-Qv
-Qv
-Bg
-Ns
-JW
-Yr
-Dt
-sv
-TD
-Wn
-Qn
-UD
-Ns
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-On
-On
-On
-Qv
-Bg
-Qv
-Qv
-Qv
-Qv
-Qv
-On
-On
-Bg
-Bg
-Bg
-Qv
-Qv
-"}
-(9,1,1) = {"
-Qv
-Qv
-Qv
-Bg
-Bg
-Ns
-cF
-BJ
-nu
-SD
-bB
-AK
-nA
-BN
-Ns
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-On
-On
-On
-Bg
-Bg
-Qv
-Qv
-Qv
-Qv
-On
-Bg
-Bg
-Bg
-Bg
-Bg
-Qv
-"}
-(10,1,1) = {"
-Qv
-Qv
-Bg
-Bg
-Bg
-ze
-vm
-Uk
-ci
-SD
-lX
-is
-bR
-hn
-Ns
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-On
-On
-On
-Bg
-Bg
-Bg
-On
-Qv
-On
-On
-Bg
-Bg
-Bg
-Bg
-Bg
-Qv
-"}
-(11,1,1) = {"
-Qv
-Qv
-Bg
-Bg
-Bg
-Ns
-VP
-SC
-av
-SC
-Fk
-SC
-SC
-xE
-Ns
-Ns
-Ns
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-On
-On
-On
-On
-On
-On
-Bg
-On
-On
-On
-On
-Bg
-Bg
-Bg
-Bg
-Bg
-Qv
-"}
-(12,1,1) = {"
-Qv
-Bg
-Bg
-Bg
-Bg
-Ns
-ZH
-xn
-Xy
-Xy
-RM
-oz
-Xy
-tS
-Gn
-QF
-Ns
-Ns
-Ns
-Xk
-Xk
-Xk
-Xk
-Xk
-On
-On
-On
-On
-Bg
-Bg
-On
-On
-On
-On
-On
-Bg
-Bg
-Bg
-Qv
-Qv
-"}
-(13,1,1) = {"
-Qv
-Bg
-Bg
-Bg
-Bg
-Ns
-Tc
-Mf
-xn
-xn
-kA
-xn
-aW
-Mf
-Si
-Si
-oz
-xn
-Ns
-Rj
-FB
-yA
-MI
-Xk
-CG
-CG
-CG
-Xk
-Xk
-Bg
-Bg
-On
-On
-On
-On
-Bg
-Bg
-Bg
-Qv
-Qv
-"}
-(14,1,1) = {"
-Qv
-Bg
-Bg
-Bg
-Bg
-Ns
-Ns
-BG
-BG
-xn
-rc
-BG
-BG
-Ns
-xn
-xn
-oz
-Si
-BG
-Si
-Si
-Si
-Si
-Xk
-ND
-zz
-ct
-XY
-Xk
-Bg
-Bg
-On
-On
-Qv
-On
-On
-On
-Bg
-Qv
-Qv
-"}
-(15,1,1) = {"
-Qv
-Bg
-Bg
-Bg
-Bg
-Ns
-RR
-yB
-Pb
-UV
-rb
-Pb
-xn
-xn
-xn
-Ns
-IR
-QF
-Ns
-yO
-Va
-JL
-Jf
-CG
-zz
-PP
-zz
-zg
-Xk
-Bg
-Bg
-On
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-"}
-(16,1,1) = {"
-Qv
-Bg
-Bg
-Bg
-Bg
-Ns
-Vd
-OB
-qR
-eW
-sj
-Pk
-Bc
-lY
-Ns
-Si
-Si
-Si
-Ns
-fg
-aa
-aa
-Fo
-aP
-ct
-DX
-xf
-Wx
-Xk
-Bg
-Bg
-On
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-"}
-(17,1,1) = {"
-Qv
-Qv
-Bg
-Bg
-Bg
-Ns
-aT
-tt
-Ju
-BE
-FZ
-kV
-NK
-Fi
-CG
-Dx
-oz
-xn
-Ns
-TO
-aa
-aa
-Fo
-CG
-zz
-zX
-zz
-mV
-Xk
-Bg
-Bg
-Bg
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-"}
-(18,1,1) = {"
-Qv
-Qv
-Bg
-Bg
-Bg
-Ns
-fq
-OB
-rr
-VL
-Ja
-tK
-JS
-Fi
-CG
-Dx
-QF
-oz
-Ns
-TO
-aa
-aa
-Fo
-Xk
-CG
-CG
-Xk
-Xk
-Xk
-Xk
-Xk
-Bg
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-"}
-(19,1,1) = {"
-Qv
-Qv
-Bg
-Bg
-Bg
-Ns
-GN
-Vm
-dI
-CD
-Rn
-CS
-xq
-Fi
-CG
-Si
-Si
-rF
-Ns
-UR
-aa
-Qk
-rd
-Va
-Va
-hV
-Xk
-KR
-wJ
-qE
-Xk
-Bg
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-"}
-(20,1,1) = {"
-Qv
-Qv
-Qv
-Bg
-Bg
-Ns
-FM
-FG
-XX
-AH
-vH
-vA
-dy
-Fi
-CG
-rF
-Si
-Si
-Ns
-UQ
-aa
-aa
-CW
-aa
-aa
-Fo
-CG
-Kg
-KR
-KR
-CG
-CG
-Xk
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-"}
-(21,1,1) = {"
-Qv
-Qv
-Qv
-Qv
-Bg
-Ns
-ql
-Kb
-kl
-uZ
-wg
-Bz
-mp
-PL
-Ns
-cl
-WV
-KL
-Ns
-ay
-Xy
-Xy
-KH
-aa
-aa
-wh
-Am
-KR
-QF
-KR
-Am
-KR
-Am
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-"}
-(22,1,1) = {"
-Qv
-Qv
-Qv
-Qv
-Bg
-Ns
-Oa
-EX
-ol
-Zl
-ln
-QQ
-ln
-FM
-Ns
-Si
-Si
-KX
-Ns
-os
-cW
-tz
-Il
-aa
-aa
-Fo
-CG
-Kg
-Si
-KR
-CG
-CG
-Xk
-tQ
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-"}
-(23,1,1) = {"
-Qv
-Qv
-Qv
-Bg
-Bg
-Ns
-Ns
-Ns
-Ns
-CG
-yW
-Ad
-XO
-Ns
-gb
-QF
-Si
-Si
-Ns
-sv
-fH
-pY
-Il
-aa
-aa
-wh
-CG
-KR
-Si
-Kg
-CG
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-"}
-(24,1,1) = {"
-Qv
-Qv
-Qv
-Bg
-Bg
-Bg
-Bg
-Ns
-pF
-ip
-Wt
-Vo
-FA
-Jw
-gb
-gb
-Sg
-Si
-Ns
-Fj
-zr
-ZF
-Il
-aa
-aa
-Fo
-CG
-KR
-Si
-KR
-CG
-CG
-Xk
-tQ
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-"}
-(25,1,1) = {"
-Qv
-Qv
-Bg
-Bg
-Bg
-Bg
-Bg
-Ns
-oi
-ET
-Zc
-PM
-uP
-pO
-gb
-QF
-Si
-QF
-Ns
-RB
-sv
-iD
-Il
-aa
-aa
-Fo
-Am
-KR
-Si
-KR
-Am
-KR
-Am
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-"}
-(26,1,1) = {"
-Qv
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Ns
-oa
-BH
-tm
-xB
-Ki
-ve
-gb
-Si
-Si
-Si
-Ns
-eI
-lu
-fZ
-Il
-aa
-aa
-Fo
-CG
-KR
-Ky
-KR
-CG
-CG
-Xk
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-"}
-(27,1,1) = {"
-Qv
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Ns
-RA
-FM
-zi
-re
-ln
-Oh
-CG
-Si
-Si
-BG
-BG
-Ns
-Ns
-Ns
-sa
-Xy
-Xy
-Js
-Xk
-CG
-Xk
-CG
-Xk
-Bg
-Bg
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-"}
-(28,1,1) = {"
-Qv
-Qv
-Bg
-Bg
-Bg
-Bg
-Bg
-BG
-kp
-Ml
-ln
-Cn
-FM
-Oh
-CG
-ae
-QF
-Ns
-Um
-Gz
-mo
-Ns
-Qz
-RU
-Si
-tp
-mK
-oG
-HG
-jB
-Xk
-Bg
-On
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-"}
-(29,1,1) = {"
-Qv
-Qv
-Qv
-Bg
-Bg
-Bg
-Bg
-Ns
-wC
-uN
-LZ
-GZ
-nB
-KT
-gN
-Qr
-EF
-kf
-Qt
-Qt
-RU
-Pv
-RU
-RU
-Si
-AS
-FM
-ln
-FM
-QI
-CG
-On
-On
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-"}
-(30,1,1) = {"
-Qv
-Qv
-Qv
-Bg
-Bg
-Bg
-Bg
-Ns
-jD
-OH
-xn
-xn
-fR
-Oh
-CG
-Si
-wt
-BG
-Um
-Um
-RU
-Ns
-QE
-RU
-QF
-sG
-Qp
-Qp
-ln
-DA
-CG
-On
-On
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-"}
-(31,1,1) = {"
-Qv
-Qv
-Qv
-Bg
-Bg
-Bg
-Bg
-Ns
-Ns
-Ns
-BG
-xn
-rO
-Oh
-CG
-oz
-Si
-mG
-RU
-RU
-RU
-Pv
-If
-RU
-Si
-Zd
-jF
-jF
-ln
-LG
-CG
-On
-On
-Qv
-Qv
-On
-On
-Qv
-Qv
-Qv
-"}
-(32,1,1) = {"
-Qv
-Qv
-Qv
-Qv
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Ns
-DR
-ln
-Oh
-DC
-Si
-Si
-Ns
-Um
-ya
-mo
-Ns
-Qz
-RU
-Si
-AS
-ln
-ln
-ln
-gC
-CG
-On
-On
-Qv
-On
-Bg
-Bg
-On
-Qv
-Qv
-"}
-(33,1,1) = {"
-Qv
-Qv
-Qv
-Qv
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Ns
-Rs
-ln
-CE
-xn
-Si
-Si
-Ns
-Ns
-BG
-Ns
-Ns
-Hl
-Si
-Si
-Ah
-SL
-Sx
-ID
-Ji
-Xk
-Bg
-On
-On
-Bg
-Bg
-Bg
-On
-Qv
-Qv
-"}
-(34,1,1) = {"
-Qv
-Qv
-Qv
-Qv
-Qv
-Bg
-Bg
-Bg
-Bg
-Bg
-Ns
-YW
-ln
-Oh
-Xk
-fB
-Si
-Xk
-pP
-yK
-aB
-Ns
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Bg
-On
-On
-Bg
-Bg
-On
-Qv
-Qv
-Qv
-"}
-(35,1,1) = {"
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Bg
-Bg
-Bg
-Bg
-Ns
-Gu
-ln
-Oh
-PO
-Si
-Si
-qq
-QF
-QF
-TL
-Ns
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-On
-On
-On
-On
-Qv
-Qv
-Qv
-"}
-(36,1,1) = {"
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Bg
-Bg
-Bg
-Bg
-Ns
-fF
-Dl
-pd
-Xk
-QF
-LJ
-Xk
-tR
-dA
-kY
-Ns
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Qv
-Qv
-On
-On
-Qv
-Qv
-Qv
-Qv
-"}
-(37,1,1) = {"
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Bg
-Bg
-Ns
-Ns
-Ns
-Ns
-Ns
-Ns
-gb
-gb
-gb
-Ns
-Ns
-Ns
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-On
-On
-On
-On
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-"}
-(38,1,1) = {"
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Qv
-Qv
-Bg
-Bg
-On
-On
-Bg
-On
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-"}
-(39,1,1) = {"
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-On
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-"}
-(40,1,1) = {"
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Bg
-Bg
-Bg
-Bg
-Bg
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-Qv
-"}
diff --git a/_maps/RandomRuins/SpaceRuins/dark_glade.dmm b/_maps/RandomRuins/SpaceRuins/dark_glade.dmm
deleted file mode 100644
index f17b4a9fd89..00000000000
--- a/_maps/RandomRuins/SpaceRuins/dark_glade.dmm
+++ /dev/null
@@ -1,699 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"a" = (
-/turf/template_noop,
-/area/template_noop)
-"b" = (
-/turf/closed/mineral/random,
-/area/ruin/space/has_grav/glade)
-"c" = (
-/obj/item/toy/plush/goatplushie,
-/turf/open/floor/plating/asteroid,
-/area/ruin/space/has_grav/glade)
-"d" = (
-/obj/structure/chair/wood,
-/obj/item/instrument/banjo{
- pixel_y = -22
- },
-/turf/open/floor/plating/asteroid,
-/area/ruin/space/has_grav/glade)
-"f" = (
-/obj/item/grown/log/tree,
-/turf/open/floor/plating/asteroid,
-/area/ruin/space/has_grav/glade)
-"h" = (
-/obj/structure/flora/tree/jungle{
- icon_state = "tree8";
- randomize_icon = 0
- },
-/turf/open/floor/plating/asteroid,
-/area/ruin/space/has_grav/glade)
-"i" = (
-/obj/structure/flora/tree/jungle{
- icon_state = "tree7";
- randomize_icon = 0
- },
-/turf/open/floor/plating/asteroid,
-/area/ruin/space/has_grav/glade)
-"r" = (
-/obj/structure/fans/tiny/invisible,
-/turf/open/floor/plating/asteroid,
-/area/ruin/space/has_grav/glade)
-"v" = (
-/obj/structure/chair/wood{
- dir = 8
- },
-/obj/item/instrument/violin{
- pixel_x = -16;
- pixel_y = -12
- },
-/turf/open/floor/plating/asteroid,
-/area/ruin/space/has_grav/glade)
-"C" = (
-/obj/structure/flora/tree/jungle{
- icon_state = "tree9";
- randomize_icon = 0
- },
-/turf/open/floor/plating/asteroid,
-/area/ruin/space/has_grav/glade)
-"D" = (
-/obj/structure/chair/wood{
- dir = 1
- },
-/turf/open/floor/plating/asteroid,
-/area/ruin/space/has_grav/glade)
-"F" = (
-/obj/item/melee/roastingstick,
-/turf/open/floor/grass,
-/area/ruin/space/has_grav/glade)
-"J" = (
-/obj/item/instrument/piano_synth{
- pixel_x = 18
- },
-/obj/structure/chair/wood{
- dir = 4
- },
-/turf/open/floor/grass,
-/area/ruin/space/has_grav/glade)
-"M" = (
-/obj/structure/bonfire/prelit,
-/turf/open/floor/grass,
-/area/ruin/space/has_grav/glade)
-"P" = (
-/turf/open/floor/plating/asteroid,
-/area/ruin/space/has_grav/glade)
-"R" = (
-/turf/open/floor/grass,
-/area/ruin/space/has_grav/glade)
-"S" = (
-/obj/item/trash/can/food/beans,
-/turf/open/floor/grass,
-/area/ruin/space/has_grav/glade)
-"T" = (
-/obj/structure/flora/stump,
-/turf/open/floor/plating/asteroid,
-/area/ruin/space/has_grav/glade)
-"Z" = (
-/obj/structure/chair/wood{
- dir = 8
- },
-/obj/item/instrument/harmonica{
- pixel_x = -17;
- pixel_y = 9
- },
-/turf/open/floor/plating/asteroid,
-/area/ruin/space/has_grav/glade)
-
-(1,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-a
-"}
-(2,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-"}
-(3,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-a
-"}
-(4,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(5,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(6,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(7,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-r
-r
-r
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(8,1,1) = {"
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-P
-P
-i
-P
-r
-r
-r
-a
-a
-a
-a
-a
-"}
-(9,1,1) = {"
-a
-a
-b
-a
-b
-b
-b
-b
-b
-b
-b
-b
-P
-P
-P
-P
-P
-P
-P
-P
-r
-r
-a
-a
-a
-"}
-(10,1,1) = {"
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-P
-P
-P
-P
-P
-P
-P
-P
-P
-r
-a
-a
-a
-"}
-(11,1,1) = {"
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-P
-P
-C
-P
-P
-J
-R
-P
-P
-h
-P
-r
-a
-a
-"}
-(12,1,1) = {"
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-P
-P
-P
-P
-S
-R
-R
-R
-P
-P
-P
-r
-a
-a
-"}
-(13,1,1) = {"
-b
-b
-b
-b
-b
-b
-b
-b
-b
-P
-P
-P
-P
-P
-d
-R
-M
-F
-D
-P
-P
-P
-r
-a
-b
-"}
-(14,1,1) = {"
-a
-b
-b
-b
-b
-b
-b
-b
-c
-P
-h
-P
-T
-P
-P
-R
-R
-R
-P
-P
-P
-P
-b
-b
-b
-"}
-(15,1,1) = {"
-a
-a
-b
-b
-b
-b
-b
-b
-b
-r
-P
-P
-f
-P
-P
-Z
-R
-v
-P
-P
-b
-b
-b
-b
-a
-"}
-(16,1,1) = {"
-a
-a
-b
-b
-b
-b
-b
-b
-b
-a
-r
-P
-P
-P
-P
-P
-P
-P
-P
-b
-b
-b
-b
-b
-a
-"}
-(17,1,1) = {"
-a
-a
-b
-b
-a
-a
-b
-b
-b
-a
-a
-r
-r
-r
-P
-P
-P
-i
-P
-b
-b
-b
-b
-b
-a
-"}
-(18,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-b
-a
-a
-a
-a
-a
-a
-r
-r
-r
-P
-P
-P
-b
-b
-b
-b
-b
-"}
-(19,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-r
-r
-r
-b
-b
-b
-b
-b
-"}
-(20,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-"}
-(21,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-a
-"}
-(22,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-"}
diff --git a/_maps/RandomRuins/SpaceRuins/excavator_DK.dmm b/_maps/RandomRuins/SpaceRuins/excavator_DK.dmm
deleted file mode 100644
index 865f979ff82..00000000000
--- a/_maps/RandomRuins/SpaceRuins/excavator_DK.dmm
+++ /dev/null
@@ -1,1481 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"dN" = (
-/obj/item/shard,
-/obj/structure/bed,
-/obj/item/bedsheet/dorms,
-/turf/open/floor/plating,
-/area/ruin/space/derelict)
-"eo" = (
-/obj/structure/sign/directions/medical{
- dir = 8
- },
-/obj/structure/sign/directions/engineering{
- dir = 4;
- pixel_y = -8
- },
-/obj/structure/sign/directions/command{
- pixel_y = 8
- },
-/turf/closed/wall/r_wall,
-/area/ruin/space/derelict)
-"eC" = (
-/obj/structure/table,
-/turf/open/floor/plasteel,
-/area/ruin/space/derelict)
-"gg" = (
-/obj/structure/table,
-/obj/item/storage/backpack/duffelbag/med/surgery,
-/turf/open/floor/plasteel,
-/area/ruin/space/derelict)
-"gk" = (
-/obj/machinery/light/broken/directional/south,
-/turf/open/floor/plasteel,
-/area/ruin/space/derelict)
-"gr" = (
-/obj/structure/lattice,
-/obj/item/stack/rods/ten,
-/turf/open/space,
-/area/ruin/space/derelict)
-"gD" = (
-/turf/open/space,
-/area/ruin/space)
-"gQ" = (
-/obj/item/stack/tile/plasteel,
-/turf/open/space,
-/area/ruin/space)
-"hk" = (
-/obj/item/trash/pistachios,
-/turf/open/space,
-/area/ruin/space)
-"iC" = (
-/obj/item/stack/tile/plasteel,
-/turf/open/floor/plating,
-/area/ruin/space/derelict)
-"jb" = (
-/obj/item/trash/plate,
-/turf/open/floor/plating,
-/area/ruin/space/derelict)
-"jn" = (
-/obj/structure/lattice,
-/obj/item/trash/pistachios,
-/turf/open/space,
-/area/ruin/space/derelict)
-"kF" = (
-/obj/structure/closet/crate/large,
-/turf/open/floor/plasteel,
-/area/ruin/space/derelict)
-"ly" = (
-/obj/item/trash/candy,
-/turf/open/floor/plasteel,
-/area/ruin/space/derelict)
-"lL" = (
-/obj/structure/lattice,
-/turf/open/space,
-/area/ruin/space/derelict)
-"mH" = (
-/obj/structure/grille/broken,
-/obj/item/stack/rods/ten,
-/turf/open/floor/plasteel,
-/area/ruin/space/derelict)
-"mM" = (
-/turf/open/floor/plating,
-/area/ruin/space/derelict)
-"ni" = (
-/obj/item/stack/sheet/plasteel,
-/turf/open/floor/plasteel,
-/area/ruin/space/derelict)
-"nj" = (
-/obj/structure/grille/broken,
-/obj/item/shard,
-/turf/open/floor/plasteel,
-/area/ruin/space/derelict)
-"nA" = (
-/obj/structure/catwalk,
-/turf/open/space,
-/area/ruin/space/derelict)
-"nU" = (
-/obj/machinery/light/broken/directional/south,
-/obj/item/stack/tile/plasteel,
-/turf/open/floor/plating,
-/area/ruin/space/derelict)
-"nV" = (
-/obj/structure/sign/departments/medbay/alt,
-/turf/closed/wall/r_wall,
-/area/ruin/space/derelict)
-"qT" = (
-/obj/structure/door_assembly/door_assembly_med,
-/turf/open/space,
-/area/ruin/space)
-"qU" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plasteel,
-/area/ruin/space/derelict)
-"sb" = (
-/obj/structure/door_assembly/door_assembly_public,
-/turf/open/floor/plasteel,
-/area/ruin/space/derelict)
-"sO" = (
-/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
-/turf/open/floor/plasteel,
-/area/ruin/space/derelict)
-"tq" = (
-/obj/structure/catwalk,
-/obj/item/stack/cable_coil/cut/red,
-/turf/open/space,
-/area/ruin/space/derelict)
-"uX" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/ruin/space/derelict)
-"vj" = (
-/obj/item/stack/sheet/plasteel,
-/turf/open/space,
-/area/ruin/space)
-"vC" = (
-/obj/structure/catwalk,
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/space,
-/area/ruin/space/derelict)
-"vX" = (
-/obj/machinery/portable_atmospherics/canister/toxins,
-/turf/open/floor/plasteel,
-/area/ruin/space/derelict)
-"wK" = (
-/obj/item/shard,
-/turf/open/space,
-/area/ruin/space)
-"yj" = (
-/turf/open/floor/plasteel,
-/area/ruin/space/derelict)
-"yl" = (
-/obj/machinery/door/poddoor/shutters,
-/turf/open/floor/plating,
-/area/ruin/space/derelict)
-"zw" = (
-/obj/item/shard,
-/turf/open/floor/plating,
-/area/ruin/space/derelict)
-"Au" = (
-/obj/machinery/door/airlock/engineering{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/derelict)
-"AP" = (
-/obj/structure/girder/reinforced,
-/turf/open/floor/plating,
-/area/ruin/space/derelict)
-"Bl" = (
-/obj/structure/closet/crate/rcd,
-/turf/open/floor/plasteel,
-/area/ruin/space/derelict)
-"BB" = (
-/obj/structure/closet/crate/medical,
-/turf/open/floor/plasteel,
-/area/ruin/space/derelict)
-"Dz" = (
-/turf/closed/wall/r_wall/rust,
-/area/ruin/space/derelict)
-"Eu" = (
-/obj/item/trash/popcorn,
-/turf/open/floor/plasteel,
-/area/ruin/space/derelict)
-"EE" = (
-/obj/item/stack/cable_coil/cut/red,
-/turf/open/floor/plating,
-/area/ruin/space/derelict)
-"EN" = (
-/obj/machinery/light/broken/directional/south,
-/obj/structure/table,
-/turf/open/floor/plasteel,
-/area/ruin/space/derelict)
-"GB" = (
-/obj/item/stack/cable_coil/cut/red,
-/turf/open/floor/plasteel,
-/area/ruin/space/derelict)
-"GQ" = (
-/obj/item/trash/plate,
-/turf/open/space,
-/area/ruin/space)
-"Hv" = (
-/obj/structure/catwalk,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/space,
-/area/ruin/space/derelict)
-"HA" = (
-/obj/structure/door_assembly/door_assembly_ext,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/derelict)
-"IA" = (
-/turf/closed/wall/r_wall,
-/area/ruin/space/derelict)
-"IB" = (
-/obj/structure/lattice,
-/obj/item/shard,
-/turf/open/space,
-/area/ruin/space/derelict)
-"IZ" = (
-/obj/structure/flippedtable,
-/turf/open/floor/plasteel,
-/area/ruin/space/derelict)
-"Jd" = (
-/obj/machinery/light/broken/directional/south,
-/obj/structure/closet/crate/large,
-/turf/open/floor/plasteel,
-/area/ruin/space/derelict)
-"Jp" = (
-/obj/structure/door_assembly/door_assembly_public,
-/turf/open/floor/plating,
-/area/ruin/space/derelict)
-"JG" = (
-/obj/structure/table/optable,
-/turf/open/floor/plasteel,
-/area/ruin/space/derelict)
-"Ki" = (
-/obj/item/trash/semki,
-/turf/open/floor/plasteel,
-/area/ruin/space/derelict)
-"KG" = (
-/obj/item/stack/rods/ten,
-/turf/open/floor/plasteel,
-/area/ruin/space/derelict)
-"La" = (
-/obj/structure/bed,
-/obj/item/bedsheet/dorms,
-/turf/open/floor/plating,
-/area/ruin/space/derelict)
-"Lg" = (
-/obj/structure/lattice,
-/obj/item/stack/sheet/plasteel,
-/turf/open/space,
-/area/ruin/space/derelict)
-"My" = (
-/obj/item/stack/rods/ten,
-/turf/open/space,
-/area/ruin/space)
-"Nk" = (
-/obj/item/trash/cheesie,
-/turf/open/floor/plasteel,
-/area/ruin/space/derelict)
-"Ns" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plasteel,
-/area/ruin/space/derelict)
-"OJ" = (
-/obj/machinery/door/poddoor/shutters,
-/turf/open/floor/plasteel,
-/area/ruin/space/derelict)
-"Pq" = (
-/obj/machinery/light/broken/directional/south,
-/obj/machinery/portable_atmospherics/canister/air,
-/turf/open/floor/plasteel,
-/area/ruin/space/derelict)
-"QL" = (
-/obj/item/shard,
-/turf/open/floor/plasteel,
-/area/ruin/space/derelict)
-"Sl" = (
-/obj/structure/catwalk,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/space,
-/area/ruin/space/derelict)
-"Td" = (
-/obj/item/shard,
-/obj/structure/grille/broken,
-/turf/open/floor/plasteel,
-/area/ruin/space/derelict)
-"Tm" = (
-/obj/machinery/door/airlock/external,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/derelict)
-"Ul" = (
-/obj/structure/lattice,
-/obj/item/stack/cable_coil/cut/red,
-/turf/open/space,
-/area/ruin/space/derelict)
-"VV" = (
-/obj/machinery/door/airlock/solgov,
-/turf/open/floor/plasteel,
-/area/ruin/space/derelict)
-"Wc" = (
-/obj/structure/bed,
-/obj/item/bedsheet/dorms,
-/turf/open/floor/plasteel,
-/area/ruin/space/derelict)
-"Wm" = (
-/obj/structure/catwalk,
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/space,
-/area/ruin/space/derelict)
-"WM" = (
-/obj/item/trash/waffles,
-/turf/open/space,
-/area/ruin/space)
-"XA" = (
-/obj/item/stack/tile/plasteel,
-/turf/open/floor/plasteel,
-/area/ruin/space/derelict)
-"XH" = (
-/obj/machinery/door/airlock/glass,
-/turf/open/floor/plasteel,
-/area/ruin/space/derelict)
-"XP" = (
-/obj/machinery/light/broken/directional/south,
-/obj/structure/bed,
-/obj/item/bedsheet/dorms,
-/turf/open/floor/plasteel,
-/area/ruin/space/derelict)
-"YF" = (
-/mob/living/simple_animal/bot/medbot/derelict,
-/turf/open/floor/plasteel,
-/area/ruin/space/derelict)
-"ZB" = (
-/obj/structure/catwalk,
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/space,
-/area/ruin/space/derelict)
-"ZK" = (
-/obj/item/stack/cable_coil/cut/red,
-/obj/item/trash/can,
-/turf/open/floor/plating,
-/area/ruin/space/derelict)
-
-(1,1,1) = {"
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-"}
-(2,1,1) = {"
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-"}
-(3,1,1) = {"
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-"}
-(4,1,1) = {"
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-"}
-(5,1,1) = {"
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-"}
-(6,1,1) = {"
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-mM
-AP
-IA
-gD
-wK
-AP
-AP
-AP
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-"}
-(7,1,1) = {"
-gD
-gD
-gD
-gD
-gD
-gD
-tq
-IA
-Lg
-jb
-lL
-mM
-lL
-iC
-Dz
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-"}
-(8,1,1) = {"
-gD
-gD
-gD
-gD
-gD
-gD
-Hv
-Dz
-lL
-lL
-Lg
-lL
-IB
-mM
-IA
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-"}
-(9,1,1) = {"
-gD
-gD
-gD
-gD
-gD
-Wm
-ZB
-Dz
-gD
-wK
-mM
-mM
-gD
-gD
-AP
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-"}
-(10,1,1) = {"
-gD
-gD
-gD
-gD
-gD
-Hv
-IA
-IA
-IA
-Dz
-Dz
-gD
-hk
-My
-AP
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-"}
-(11,1,1) = {"
-gD
-gD
-gD
-gD
-gD
-Hv
-Dz
-gg
-yj
-mM
-IA
-qT
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-"}
-(12,1,1) = {"
-gD
-gD
-gD
-gD
-gD
-Hv
-IA
-JG
-mM
-yj
-ni
-gD
-gD
-gQ
-gD
-WM
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-"}
-(13,1,1) = {"
-gD
-gD
-gD
-gD
-gD
-Hv
-IA
-BB
-yj
-gk
-nV
-gD
-gD
-gD
-gD
-gD
-gQ
-gD
-gD
-AP
-AP
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-"}
-(14,1,1) = {"
-gD
-gD
-gD
-gD
-gD
-Hv
-Dz
-IA
-Dz
-Dz
-Dz
-mM
-gD
-vj
-GQ
-gD
-gQ
-mM
-zw
-mM
-Dz
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-"}
-(15,1,1) = {"
-gD
-gD
-gD
-gD
-gD
-Hv
-Dz
-Wc
-Wc
-XP
-IA
-mM
-iC
-mM
-gD
-gD
-gr
-lL
-zw
-mM
-IA
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-"}
-(16,1,1) = {"
-gD
-gD
-gD
-gD
-gD
-Hv
-Td
-zw
-Eu
-yj
-XH
-yj
-mM
-zw
-Jp
-lL
-Lg
-lL
-lL
-mM
-AP
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-"}
-(17,1,1) = {"
-gD
-gD
-gD
-gD
-gD
-Hv
-IA
-dN
-La
-Wc
-IA
-yj
-yj
-mM
-mM
-Ul
-lL
-jn
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-"}
-(18,1,1) = {"
-gD
-gD
-gD
-gD
-gD
-Hv
-IA
-IA
-Dz
-Dz
-Dz
-sb
-yj
-IA
-mM
-lL
-lL
-wK
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-"}
-(19,1,1) = {"
-gD
-gD
-gD
-gD
-gD
-vC
-Sl
-HA
-uX
-Tm
-yj
-yj
-yj
-Dz
-mM
-mM
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-"}
-(20,1,1) = {"
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-IA
-Dz
-Dz
-kF
-yj
-gk
-Dz
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-"}
-(21,1,1) = {"
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-OJ
-yj
-OJ
-kF
-mM
-mM
-Dz
-gD
-gD
-wK
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-"}
-(22,1,1) = {"
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-Dz
-Dz
-IA
-GB
-iC
-KG
-IA
-nA
-nA
-nA
-gD
-nA
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-"}
-(23,1,1) = {"
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-yl
-yj
-OJ
-yj
-Nk
-yj
-Dz
-IA
-qU
-nj
-mH
-Dz
-Dz
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-"}
-(24,1,1) = {"
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-IA
-Dz
-IA
-yj
-kF
-Jd
-IA
-yj
-IZ
-yj
-yj
-nU
-IA
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-"}
-(25,1,1) = {"
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-OJ
-yj
-yl
-yj
-KG
-yj
-IA
-yj
-IZ
-ly
-zw
-mM
-Ns
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-"}
-(26,1,1) = {"
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-IA
-Dz
-Dz
-yj
-yj
-GB
-VV
-yj
-mM
-mM
-yj
-yj
-qU
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-"}
-(27,1,1) = {"
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-OJ
-mM
-yl
-yj
-yj
-gk
-IA
-yj
-QL
-yj
-yj
-YF
-qU
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-"}
-(28,1,1) = {"
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-IA
-Dz
-Dz
-eo
-yj
-yj
-Dz
-Ki
-yj
-XA
-eC
-EN
-Dz
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-"}
-(29,1,1) = {"
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-lL
-gD
-IA
-Au
-IA
-Dz
-Dz
-qU
-qU
-qU
-IA
-IA
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-"}
-(30,1,1) = {"
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-IA
-Dz
-Dz
-EE
-Pq
-Dz
-nA
-nA
-gD
-nA
-nA
-nA
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-"}
-(31,1,1) = {"
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-yj
-yj
-qU
-ZK
-sO
-qU
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-"}
-(32,1,1) = {"
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-IA
-Dz
-Dz
-Bl
-vX
-Dz
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-"}
-(33,1,1) = {"
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-IA
-qU
-qU
-IA
-nA
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-"}
-(34,1,1) = {"
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-"}
-(35,1,1) = {"
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-gD
-"}
diff --git a/_maps/RandomRuins/SpaceRuins/fueldepot.dmm b/_maps/RandomRuins/SpaceRuins/fueldepot.dmm
deleted file mode 100644
index aa5edab6420..00000000000
--- a/_maps/RandomRuins/SpaceRuins/fueldepot.dmm
+++ /dev/null
@@ -1,4226 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"aH" = (
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/structure/table_frame,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/pod/light,
-/area/ruin/unpowered)
-"aL" = (
-/obj/effect/gibspawner/human,
-/turf/open/space,
-/area/ruin/unpowered)
-"aO" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/unpowered)
-"aW" = (
-/obj/structure/girder/displaced,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
-/area/ruin/unpowered)
-"bm" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/stack/cable_coil/cut/red,
-/turf/open/floor/plating{
- broken = 1;
- icon_state = "platingdmg1"
- },
-/area/ruin/unpowered)
-"bG" = (
-/obj/effect/decal/cleanable/oil/streak,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"bI" = (
-/obj/structure/fluff/broken_flooring{
- dir = 8;
- icon_state = "plating"
- },
-/turf/open/space,
-/area/template_noop)
-"bJ" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/stack/rods,
-/obj/item/shard,
-/turf/open/floor/plating{
- icon_state = "platingdmg2"
- },
-/area/ruin/unpowered)
-"bK" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 10
- },
-/obj/machinery/light/small/directional/south,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/unpowered)
-"bM" = (
-/turf/open/space,
-/area/ruin/unpowered)
-"bN" = (
-/obj/effect/turf_decal/corner/transparent/neutral/full,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"bV" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/engine/hull,
-/area/ruin/unpowered)
-"cr" = (
-/obj/structure/girder/displaced,
-/turf/template_noop,
-/area/template_noop)
-"dx" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/turf/open/space,
-/area/ruin/unpowered)
-"dC" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/door_assembly/door_assembly_mhatch{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"dN" = (
-/obj/structure/railing,
-/obj/effect/turf_decal/corner/transparent/neutral/full,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"ef" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/door_assembly/door_assembly_mhatch{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/pod/dark,
-/area/ruin/unpowered)
-"eg" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/engine/hull,
-/area/ruin/unpowered)
-"eD" = (
-/obj/item/shard,
-/obj/effect/decal/cleanable/oil,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/stack/cable_coil/cut/red,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/ruin/unpowered)
-"eJ" = (
-/obj/structure/girder/displaced,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/stack/sheet/mineral/plastitanium,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"fs" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 6
- },
-/obj/structure/table_frame,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/closet/wall/directional/east{
- name = "armory locker"
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/unpowered)
-"fP" = (
-/obj/item/shard,
-/turf/open/space,
-/area/ruin/unpowered)
-"gj" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/gibspawner/human,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/pod/light,
-/area/ruin/unpowered)
-"gp" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "5-8"
- },
-/obj/effect/decal/cleanable/blood/old,
-/obj/effect/mob_spawn/human/corpse/charredskeleton,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/unpowered)
-"gq" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/closed/wall/mineral/plastitanium,
-/area/ruin/unpowered)
-"gH" = (
-/obj/structure/lattice,
-/obj/structure/fluff/broken_flooring{
- dir = 4;
- icon_state = "singular"
- },
-/turf/open/space,
-/area/ruin/unpowered)
-"gM" = (
-/obj/structure/cable{
- icon_state = "6-8"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/effect/decal/cleanable/oil,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"gN" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 1
- },
-/obj/machinery/power/terminal,
-/obj/structure/cable,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"hv" = (
-/obj/effect/turf_decal/industrial/outline/yellow,
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"hJ" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 5
- },
-/obj/structure/closet/wall/directional/east{
- name = "armory locker"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/gun/ballistic/shotgun/brimstone,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/unpowered)
-"hL" = (
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/effect/decal/cleanable/blood/old,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/pod/light,
-/area/ruin/unpowered)
-"hO" = (
-/turf/closed/wall/material,
-/area/ruin/unpowered)
-"io" = (
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/ruin/unpowered)
-"iB" = (
-/obj/structure/lattice,
-/obj/structure/fluff/broken_flooring{
- dir = 4;
- icon_state = "plating"
- },
-/turf/template_noop,
-/area/template_noop)
-"iT" = (
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/oil/streak,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/ruin/unpowered)
-"ji" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/stairs/right,
-/area/ruin/unpowered)
-"jl" = (
-/obj/structure/railing,
-/obj/effect/turf_decal/corner/transparent/neutral/full,
-/obj/effect/decal/cleanable/oil,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"jy" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
-/area/ruin/unpowered)
-"jE" = (
-/obj/item/stack/rods,
-/turf/open/space,
-/area/ruin/unpowered)
-"jH" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/girder/displaced,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/ruin/unpowered)
-"kl" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "8-10"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/machinery/airalarm/directional/east,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/greenglow,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"kN" = (
-/obj/structure/catwalk,
-/obj/machinery/atmospherics/pipe/simple/orange{
- dir = 8
- },
-/turf/open/space,
-/area/ruin/unpowered)
-"kT" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/light/small/directional/west,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/stack/cable_coil/cut/red,
-/turf/open/floor/pod/light,
-/area/ruin/unpowered)
-"lm" = (
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"ln" = (
-/obj/structure/lattice,
-/turf/open/space,
-/area/ruin/unpowered)
-"lq" = (
-/obj/effect/decal/cleanable/oil,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"ls" = (
-/obj/structure/grille/broken,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/stack/cable_coil/cut/red,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
-/area/ruin/unpowered)
-"lS" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
-/area/ruin/unpowered)
-"md" = (
-/obj/structure/door_assembly/door_assembly_mhatch,
-/turf/open/space,
-/area/ruin/unpowered)
-"mK" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating{
- icon_state = "platingdmg2"
- },
-/area/ruin/unpowered)
-"mX" = (
-/obj/effect/turf_decal/corner/transparent/neutral/full,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/pod/light,
-/area/ruin/unpowered)
-"nz" = (
-/obj/structure/grille,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
-/area/ruin/unpowered)
-"nI" = (
-/obj/structure/girder/displaced,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating{
- broken = 1;
- icon_state = "platingdmg1"
- },
-/area/ruin/unpowered)
-"oc" = (
-/turf/open/floor/engine/hull,
-/area/ruin/unpowered)
-"od" = (
-/obj/structure/fluff/broken_flooring{
- dir = 2;
- icon_state = "plating"
- },
-/turf/open/space,
-/area/ruin/unpowered)
-"oh" = (
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/machinery/portable_atmospherics/canister/toxins,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/unpowered)
-"oP" = (
-/obj/effect/decal/cleanable/oil,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/stack/cable_coil/cut/yellow,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"oQ" = (
-/obj/structure/lattice,
-/obj/structure/fluff/broken_flooring{
- dir = 8;
- icon_state = "plating"
- },
-/turf/open/space,
-/area/ruin/unpowered)
-"pv" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "4-9"
- },
-/obj/effect/decal/cleanable/oil,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/unpowered)
-"pF" = (
-/obj/effect/turf_decal/corner/transparent/neutral/full,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/box,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/pod/light,
-/area/ruin/unpowered)
-"pJ" = (
-/obj/structure/fluff/broken_flooring{
- dir = 8;
- icon_state = "plating"
- },
-/turf/open/space,
-/area/ruin/unpowered)
-"pM" = (
-/obj/structure/table/reinforced,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"qy" = (
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/item/rack_parts,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/pod/light,
-/area/ruin/unpowered)
-"qZ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/door_assembly/door_assembly_grunge,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/pod/dark,
-/area/ruin/unpowered)
-"ri" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 6
- },
-/obj/effect/turf_decal/industrial/stand_clear{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/unpowered)
-"rr" = (
-/obj/machinery/portable_atmospherics/canister/toxins,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"rt" = (
-/obj/effect/turf_decal/box,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/pod/light,
-/area/ruin/unpowered)
-"rM" = (
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/machinery/power/port_gen/pacman/super,
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/greenglow,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"rO" = (
-/obj/item/shard,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/pod/light,
-/area/ruin/unpowered)
-"sg" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/portable_atmospherics/canister/toxins,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/pod/light,
-/area/ruin/unpowered)
-"st" = (
-/obj/structure/door_assembly/door_assembly_grunge{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/pipe/simple/orange{
- dir = 8
- },
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"sU" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/stairs,
-/area/ruin/unpowered)
-"tp" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/lattice,
-/turf/open/space,
-/area/ruin/unpowered)
-"tG" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/pipe/simple/orange{
- dir = 8
- },
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"tJ" = (
-/obj/machinery/portable_atmospherics/canister/toxins,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
-/area/ruin/unpowered)
-"tW" = (
-/obj/structure/grille/broken,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/stack/rods,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
-/area/ruin/unpowered)
-"tX" = (
-/turf/open/space,
-/area/template_noop)
-"tZ" = (
-/obj/effect/decal/cleanable/oil,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 8
- },
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"uk" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/closed/wall/rust,
-/area/ruin/unpowered)
-"ut" = (
-/obj/effect/turf_decal/industrial/warning/cee,
-/obj/effect/decal/cleanable/blood/old,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/unpowered)
-"uJ" = (
-/obj/effect/turf_decal/corner/transparent/neutral/full,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/box,
-/obj/effect/gibspawner/human,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/pod/light,
-/area/ruin/unpowered)
-"uV" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/obj/structure/cable{
- icon_state = "4-5"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/effect/decal/cleanable/oil,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/pod/light,
-/area/ruin/unpowered)
-"ve" = (
-/obj/effect/turf_decal/industrial/warning/cee{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/closet/wall/directional/west{
- name = "suit locker"
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/unpowered)
-"vs" = (
-/obj/machinery/portable_atmospherics/canister/toxins,
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"vz" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 9
- },
-/obj/structure/cable{
- icon_state = "8-10"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/frame/machine,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/unpowered)
-"vJ" = (
-/obj/machinery/power/apc/auto_name/directional/east,
-/obj/machinery/atmospherics/components/binary/pump/layer2,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"vR" = (
-/obj/machinery/light/small/directional/west,
-/obj/effect/decal/cleanable/oil/streak,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/stack/cable_coil/cut/red,
-/turf/open/floor/plating{
- icon_state = "platingdmg2"
- },
-/area/ruin/unpowered)
-"vV" = (
-/obj/structure/grille/broken,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/ruin/unpowered)
-"wb" = (
-/obj/item/shard,
-/obj/structure/lattice,
-/obj/structure/fluff/broken_flooring{
- dir = 8;
- icon_state = "plating"
- },
-/turf/open/space,
-/area/ruin/unpowered)
-"wd" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
-/area/ruin/unpowered)
-"wi" = (
-/obj/effect/turf_decal/industrial/stand_clear{
- dir = 8
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/unpowered)
-"wx" = (
-/obj/effect/turf_decal/corner/transparent/neutral/full,
-/obj/structure/railing,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/frame/computer,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/pod/light,
-/area/ruin/unpowered)
-"wF" = (
-/obj/effect/turf_decal/corner/transparent/neutral/full,
-/obj/structure/railing,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-6"
- },
-/obj/effect/decal/cleanable/blood/old,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/pod/light,
-/area/ruin/unpowered)
-"wN" = (
-/obj/structure/girder/displaced,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/stack/rods,
-/turf/open/floor/plating{
- broken = 1;
- icon_state = "platingdmg1"
- },
-/area/ruin/unpowered)
-"xy" = (
-/obj/machinery/portable_atmospherics/canister/toxins,
-/obj/effect/decal/cleanable/oil/streak,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
-/area/ruin/unpowered)
-"xM" = (
-/obj/structure/frame/machine,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"yg" = (
-/obj/structure/catwalk,
-/obj/machinery/atmospherics/pipe/manifold4w/orange,
-/turf/open/space,
-/area/ruin/unpowered)
-"yv" = (
-/obj/item/stack/sheet/mineral/plastitanium,
-/turf/open/space,
-/area/ruin/unpowered)
-"yw" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/stairs/left,
-/area/ruin/unpowered)
-"yx" = (
-/obj/structure/lattice,
-/obj/structure/girder/displaced,
-/turf/open/space,
-/area/ruin/unpowered)
-"yE" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/unpowered)
-"zt" = (
-/obj/effect/decal/cleanable/oil/streak,
-/obj/machinery/light/small/broken/directional/east,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/pod/light,
-/area/ruin/unpowered)
-"zu" = (
-/obj/structure/girder/displaced,
-/turf/open/space,
-/area/ruin/unpowered)
-"zE" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/stack/cable_coil/cut/red,
-/turf/open/floor/pod/light,
-/area/ruin/unpowered)
-"zH" = (
-/obj/structure/lattice,
-/obj/structure/fluff/broken_flooring{
- icon_state = "pile";
- pixel_x = 11;
- pixel_y = 1
- },
-/turf/open/space,
-/area/ruin/unpowered)
-"zI" = (
-/obj/effect/turf_decal/corner/transparent/neutral/full,
-/obj/structure/railing,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
- icon_state = "6-8"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/light/small/directional/north,
-/turf/open/floor/pod/light,
-/area/ruin/unpowered)
-"zY" = (
-/obj/structure/grille,
-/obj/machinery/door/poddoor/shutters{
- id = "pirateshutters";
- name = "Blast Shutters";
- dir = 4
- },
-/obj/structure/window/plasma/reinforced/plastitanium,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"AC" = (
-/obj/structure/railing,
-/obj/effect/turf_decal/corner/transparent/neutral/full,
-/obj/structure/cable{
- icon_state = "5-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/pod/light,
-/area/ruin/unpowered)
-"AD" = (
-/obj/structure/grille/broken,
-/obj/item/shard,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/stack/rods,
-/turf/open/floor/plating{
- broken = 1;
- icon_state = "platingdmg1"
- },
-/area/ruin/unpowered)
-"AI" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/clothing/glasses/thermal/eyepatch,
-/obj/effect/decal/cleanable/oil/streak,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/pod/light,
-/area/ruin/unpowered)
-"AV" = (
-/obj/effect/turf_decal/corner/transparent/neutral/full,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/stack/cable_coil/cut/red,
-/turf/open/floor/pod/light,
-/area/ruin/unpowered)
-"AX" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"BG" = (
-/obj/structure/railing,
-/obj/effect/turf_decal/corner/transparent/neutral/full,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/pod/light,
-/area/ruin/unpowered)
-"BX" = (
-/obj/structure/girder/displaced,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"Cc" = (
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/pod/light,
-/area/ruin/unpowered)
-"CA" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/components/unary/portables_connector{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"CS" = (
-/obj/structure/fluff/broken_flooring{
- dir = 4;
- icon_state = "plating"
- },
-/turf/template_noop,
-/area/ruin/unpowered)
-"CZ" = (
-/obj/machinery/door/airlock/hatch{
- name = "External Access Hatch";
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/pod/light,
-/area/ruin/unpowered)
-"Dl" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/machinery/power/smes/shuttle/precharged{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
-/area/ruin/unpowered)
-"Dt" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "0-5"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"DS" = (
-/turf/closed/wall/rust,
-/area/ruin/unpowered)
-"El" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/stack/sheet/mineral/plastitanium,
-/turf/open/floor/plating{
- icon_state = "platingdmg2"
- },
-/area/ruin/unpowered)
-"En" = (
-/obj/effect/decal/cleanable/oil/streak,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/engine/hull,
-/area/ruin/unpowered)
-"Ew" = (
-/obj/structure/girder/displaced,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"ED" = (
-/obj/structure/fluff/broken_flooring{
- dir = 4;
- icon_state = "singular"
- },
-/turf/open/space,
-/area/ruin/unpowered)
-"Fc" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/unpowered)
-"FA" = (
-/obj/effect/decal/cleanable/oil/streak,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"FT" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 8
- },
-/obj/structure/door_assembly/door_assembly_mhatch{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating{
- broken = 1;
- icon_state = "platingdmg1"
- },
-/area/ruin/unpowered)
-"FW" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
- },
-/obj/structure/cable{
- icon_state = "1-5"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating{
- broken = 1;
- icon_state = "platingdmg1"
- },
-/area/ruin/unpowered)
-"FY" = (
-/obj/structure/lattice,
-/obj/item/rack_parts,
-/turf/open/space,
-/area/ruin/unpowered)
-"FZ" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/space,
-/area/ruin/unpowered)
-"Hl" = (
-/obj/effect/decal/cleanable/blood/old,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/pipe/simple/orange{
- dir = 8
- },
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"HE" = (
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/structure/frame/computer,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/pod/light,
-/area/ruin/unpowered)
-"HL" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating{
- broken = 1;
- icon_state = "platingdmg1"
- },
-/area/ruin/unpowered)
-"HQ" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 5
- },
-/obj/structure/cable{
- icon_state = "8-10"
- },
-/obj/effect/decal/cleanable/blood/old,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/unpowered)
-"In" = (
-/obj/structure/lattice,
-/turf/template_noop,
-/area/ruin/unpowered)
-"Iv" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/ruin/unpowered)
-"IH" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 10
- },
-/obj/effect/turf_decal/industrial/stand_clear{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/light/small/broken/directional/west,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/unpowered)
-"IW" = (
-/obj/machinery/portable_atmospherics/canister/toxins,
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"Jg" = (
-/obj/item/chair/plastic,
-/turf/open/space,
-/area/ruin/unpowered)
-"Jj" = (
-/obj/machinery/portable_atmospherics/canister/toxins,
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/effect/decal/cleanable/oil,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"JU" = (
-/obj/structure/girder/displaced,
-/turf/template_noop,
-/area/ruin/unpowered)
-"JX" = (
-/obj/structure/fluff/broken_flooring{
- icon_state = "singular"
- },
-/obj/structure/fluff/broken_flooring{
- dir = 8;
- icon_state = "plating"
- },
-/turf/template_noop,
-/area/ruin/unpowered)
-"Kd" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/space,
-/area/ruin/unpowered)
-"Kw" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"KJ" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/pod/light,
-/area/ruin/unpowered)
-"KO" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/pod/light,
-/area/ruin/unpowered)
-"Lc" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/ruin/unpowered)
-"Lo" = (
-/obj/structure/door_assembly/door_assembly_hatch,
-/turf/open/space,
-/area/ruin/unpowered)
-"Lu" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/unpowered)
-"LT" = (
-/obj/structure/cable{
- icon_state = "4-5"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating{
- broken = 1;
- icon_state = "platingdmg1"
- },
-/area/ruin/unpowered)
-"Mf" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"My" = (
-/obj/structure/lattice,
-/obj/item/stack/rods,
-/turf/open/space,
-/area/ruin/unpowered)
-"MM" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/stack/cable_coil/cut/red,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
-/area/ruin/unpowered)
-"MZ" = (
-/obj/item/roller,
-/turf/open/space,
-/area/ruin/unpowered)
-"Nt" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
- },
-/obj/structure/cable{
- icon_state = "1-10"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/oil,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"Nx" = (
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/effect/decal/cleanable/greenglow,
-/obj/machinery/portable_atmospherics/canister/toxins,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/unpowered)
-"Oa" = (
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"Oe" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/pod/light,
-/area/ruin/unpowered)
-"OC" = (
-/obj/structure/fluff/broken_flooring{
- dir = 4;
- icon_state = "pile"
- },
-/turf/open/space,
-/area/ruin/unpowered)
-"OW" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/pod/light,
-/area/ruin/unpowered)
-"Pa" = (
-/obj/structure/door_assembly/door_assembly_hatch{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating{
- broken = 1;
- icon_state = "platingdmg1"
- },
-/area/ruin/unpowered)
-"Pq" = (
-/obj/effect/turf_decal/industrial/warning,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/unpowered)
-"Ps" = (
-/obj/item/wrench,
-/turf/open/space,
-/area/ruin/unpowered)
-"PU" = (
-/obj/machinery/portable_atmospherics/canister/toxins,
-/turf/open/space,
-/area/ruin/unpowered)
-"Qa" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/space,
-/area/template_noop)
-"Qf" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/item/stack/cable_coil/cut/red,
-/turf/open/space,
-/area/ruin/unpowered)
-"Qh" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/closed/wall/mineral/plastitanium/nodiagonal,
-/area/ruin/unpowered)
-"Qk" = (
-/obj/effect/turf_decal/industrial/warning,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/unpowered)
-"Qy" = (
-/obj/structure/fluff/broken_flooring{
- icon_state = "pile";
- pixel_x = 11;
- pixel_y = 1
- },
-/turf/template_noop,
-/area/template_noop)
-"QV" = (
-/turf/open/floor/plating{
- icon_state = "platingdmg2"
- },
-/area/ruin/unpowered)
-"Ra" = (
-/turf/closed/wall/mineral/plastitanium,
-/area/ruin/unpowered)
-"Rj" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/stack/cable_coil/cut/red,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/unpowered)
-"Rl" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/obj/effect/decal/cleanable/oil,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/reagent_containers/food/drinks/bottle/rum,
-/obj/structure/closet/wall/directional/east{
- name = "armory locker"
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/unpowered)
-"Rt" = (
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "5-8"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/unpowered)
-"Ry" = (
-/turf/closed/wall/mineral/plastitanium/nodiagonal,
-/area/ruin/unpowered)
-"RP" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/structure/door_assembly/door_assembly_grunge,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/pod/dark,
-/area/ruin/unpowered)
-"RX" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating{
- broken = 1;
- icon_state = "platingdmg1"
- },
-/area/ruin/unpowered)
-"Sm" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/pipe/simple/orange{
- dir = 8
- },
-/obj/structure/door_assembly/door_assembly_mhatch{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"Sw" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/stack/cable_coil/cut/red,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
-/area/ruin/unpowered)
-"SL" = (
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered)
-"SQ" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/engine/hull/interior,
-/area/ruin/unpowered)
-"Tj" = (
-/obj/machinery/power/shuttle/engine/electric{
- dir = 1
- },
-/turf/open/space,
-/area/ruin/unpowered)
-"Ty" = (
-/obj/effect/turf_decal/corner/transparent/neutral/full,
-/obj/structure/cable{
- icon_state = "2-9"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/stairs,
-/area/ruin/unpowered)
-"TC" = (
-/obj/structure/girder/displaced,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating{
- icon_state = "platingdmg2"
- },
-/area/ruin/unpowered)
-"TM" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 9
- },
-/obj/effect/decal/cleanable/oil,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/unpowered)
-"Ug" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/space,
-/area/ruin/unpowered)
-"Ui" = (
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/effect/decal/cleanable/oil/streak,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/unpowered)
-"Us" = (
-/obj/structure/lattice,
-/turf/open/space,
-/area/template_noop)
-"Ut" = (
-/obj/structure/catwalk,
-/turf/open/space,
-/area/ruin/unpowered)
-"Uu" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/ruin/unpowered)
-"Uv" = (
-/obj/machinery/portable_atmospherics/canister/toxins,
-/turf/template_noop,
-/area/ruin/unpowered)
-"Uy" = (
-/obj/structure/lattice,
-/turf/template_noop,
-/area/template_noop)
-"Uz" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-6"
- },
-/obj/structure/closet/wall/directional/west{
- name = "suit locker"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/unpowered)
-"UJ" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "4-6"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/unpowered)
-"Vm" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/template_noop,
-/area/template_noop)
-"Vo" = (
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
- icon_state = "4-5"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/unpowered)
-"Vv" = (
-/obj/structure/fluff/broken_flooring{
- dir = 1;
- icon_state = "plating"
- },
-/turf/open/space,
-/area/ruin/unpowered)
-"VP" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/chair/plastic,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"VX" = (
-/obj/structure/table_frame,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"Wn" = (
-/obj/effect/turf_decal/corner/transparent/neutral/full,
-/obj/structure/railing,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
- icon_state = "4-6"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/light/small/directional/north,
-/turf/open/floor/pod/light,
-/area/ruin/unpowered)
-"WA" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/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/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating{
- icon_state = "platingdmg2"
- },
-/area/ruin/unpowered)
-"WB" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "5-8"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/unpowered)
-"WV" = (
-/obj/structure/fluff/broken_flooring{
- dir = 4;
- icon_state = "plating"
- },
-/turf/open/space,
-/area/ruin/unpowered)
-"XE" = (
-/obj/structure/grille,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"XJ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/cable{
- icon_state = "5-9"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/pod/light,
-/area/ruin/unpowered)
-"XL" = (
-/obj/structure/catwalk,
-/obj/machinery/atmospherics/pipe/simple/orange,
-/turf/open/space,
-/area/ruin/unpowered)
-"XR" = (
-/obj/structure/cable{
- icon_state = "8-10"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"YK" = (
-/obj/structure/cable,
-/obj/machinery/power/shuttle/engine/electric{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"YM" = (
-/obj/structure/table/reinforced,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/shard,
-/obj/item/clothing/head/pirate/captain,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/pod/light,
-/area/ruin/unpowered)
-"YO" = (
-/obj/item/stack/cable_coil/cut/red,
-/turf/open/space,
-/area/ruin/unpowered)
-"YX" = (
-/obj/effect/decal/cleanable/oil,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating{
- broken = 1;
- icon_state = "platingdmg1"
- },
-/area/ruin/unpowered)
-"ZA" = (
-/obj/structure/cable/yellow,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/ruin/unpowered)
-"ZO" = (
-/turf/template_noop,
-/area/template_noop)
-"ZQ" = (
-/obj/structure/toilet,
-/obj/effect/decal/cleanable/vomit/old,
-/obj/item/shard,
-/obj/effect/decal/cleanable/oil,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/pod/light,
-/area/ruin/unpowered)
-
-(1,1,1) = {"
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-zu
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-"}
-(2,1,1) = {"
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ln
-ln
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-"}
-(3,1,1) = {"
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-DS
-DS
-hO
-DS
-DS
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-RX
-hO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-"}
-(4,1,1) = {"
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-DS
-hO
-AX
-AX
-Kw
-DS
-DS
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-WV
-ZO
-ZO
-ZO
-zu
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-"}
-(5,1,1) = {"
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-DS
-DS
-lm
-vs
-Kw
-IW
-vs
-hO
-hO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-Uv
-ZO
-ZO
-ZO
-ZO
-mK
-hO
-DS
-DS
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-"}
-(6,1,1) = {"
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-hO
-AX
-IW
-SL
-AX
-SL
-IW
-AX
-hO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-jE
-ln
-ln
-zH
-RX
-jy
-uk
-hO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-"}
-(7,1,1) = {"
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-hO
-AX
-Kw
-AX
-CA
-AX
-Kw
-FA
-DS
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ln
-FZ
-ZO
-ZO
-ZO
-ln
-ZO
-ZO
-ln
-mK
-YX
-tJ
-DS
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-"}
-(8,1,1) = {"
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-DS
-Kw
-SL
-Jj
-Hl
-vs
-lm
-Kw
-hO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-gH
-pJ
-ZO
-ZO
-ZO
-ZO
-ZO
-PU
-tX
-Qa
-RX
-RX
-hO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-"}
-(9,1,1) = {"
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-DS
-hO
-hv
-hv
-tG
-vs
-lm
-DS
-hO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ln
-ZO
-ZO
-ZO
-ZO
-ln
-ln
-ln
-jy
-DS
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-"}
-(10,1,1) = {"
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-hO
-hO
-AX
-bG
-AX
-DS
-DS
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-cr
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ln
-ZO
-ZO
-ZO
-ln
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-"}
-(11,1,1) = {"
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-hO
-hO
-Sm
-DS
-DS
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-PU
-DS
-pJ
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-"}
-(12,1,1) = {"
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ln
-ZO
-kN
-ZO
-ln
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-jE
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-mK
-ZO
-ZO
-yx
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-"}
-(13,1,1) = {"
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ln
-ZO
-Ut
-ln
-ZO
-ZO
-ZO
-ZO
-ZO
-ln
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ln
-XL
-Ut
-ln
-ZO
-ZO
-WV
-HL
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-"}
-(14,1,1) = {"
-ZO
-ZO
-ln
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ln
-ZO
-Ut
-ZO
-ln
-ZO
-ZO
-ZO
-ZO
-ln
-ZO
-ZO
-ZO
-ZO
-ZO
-ln
-Ut
-ln
-ZO
-ZO
-ZO
-ZO
-ZO
-JU
-ln
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-"}
-(15,1,1) = {"
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ln
-ZO
-Ut
-ZO
-ln
-ZO
-ZO
-ZO
-ZO
-ln
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-"}
-(16,1,1) = {"
-ZO
-ZO
-ZO
-ZO
-ZO
-ln
-ln
-ln
-ln
-ln
-ln
-ln
-ln
-Ut
-ln
-ln
-ln
-ln
-ln
-ln
-ZO
-ZO
-ZO
-ln
-ln
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-"}
-(17,1,1) = {"
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ln
-ZO
-kN
-ZO
-ln
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ln
-ZO
-ZO
-ZO
-ZO
-jE
-ZO
-ZO
-ZO
-ln
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-"}
-(18,1,1) = {"
-ZO
-ZO
-ZO
-ZO
-ln
-ln
-Ut
-Ut
-XL
-XL
-XL
-XL
-XL
-yg
-XL
-XL
-XL
-Ut
-Ut
-ln
-ln
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-fP
-ZO
-ZO
-"}
-(19,1,1) = {"
-ZO
-ZO
-ZO
-ln
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ln
-ZO
-Ut
-ZO
-ln
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-Ra
-Ra
-Ra
-Ra
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-"}
-(20,1,1) = {"
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ln
-ln
-ZO
-ZO
-ln
-ln
-ZO
-ZO
-ZO
-ZO
-Ra
-Ra
-Ra
-Ra
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-Ra
-Ry
-rM
-ZA
-vR
-Ra
-Ra
-BX
-ZO
-jE
-ZO
-ZO
-"}
-(21,1,1) = {"
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-eg
-eg
-ZO
-ZO
-ZO
-ZO
-ZO
-jE
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-Ra
-Ry
-iT
-vJ
-Nt
-FW
-Dt
-eD
-mK
-ZO
-ZO
-Tj
-"}
-(22,1,1) = {"
-ln
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ln
-ZO
-ZO
-ln
-ZO
-ln
-ZO
-ZO
-Qy
-ZO
-ZO
-In
-bV
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-Ug
-ZO
-ZO
-ZO
-Ra
-Ra
-Ry
-FT
-kl
-gN
-Dl
-YK
-ZO
-ZO
-ZO
-"}
-(23,1,1) = {"
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ln
-ZO
-ZO
-ZO
-ln
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-yv
-ZO
-ZO
-ZO
-ZO
-ZO
-md
-ZO
-ZO
-ZO
-ZO
-Ra
-WA
-Ry
-Ra
-Ra
-ZO
-ZO
-ZO
-ZO
-"}
-(24,1,1) = {"
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ln
-ZO
-fP
-ln
-ZO
-ZO
-Ra
-RX
-mK
-ZO
-ZO
-Ra
-Pa
-mK
-ZO
-ZO
-ZO
-Ra
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-WV
-Ra
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-"}
-(25,1,1) = {"
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ln
-ZO
-ZO
-Uy
-iB
-Lc
-Ra
-ZO
-Ry
-Oe
-Ry
-Ra
-vV
-mK
-ZO
-ZO
-My
-TC
-Ra
-Ra
-Ry
-Sw
-Ry
-Ra
-Ra
-ZO
-yv
-zu
-YO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-"}
-(26,1,1) = {"
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-Ra
-Ry
-Iv
-Qh
-Ry
-Ry
-Ry
-OW
-Ry
-pM
-RX
-JX
-ZO
-MZ
-ZO
-Ra
-mX
-ji
-kT
-uV
-Cc
-hL
-Ry
-Ra
-ZO
-ZO
-ZO
-ED
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-"}
-(27,1,1) = {"
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-jE
-ZO
-ZO
-mK
-AD
-aW
-zY
-Ra
-Ry
-Wn
-ve
-Uz
-ut
-Ry
-CZ
-Ry
-mK
-ZO
-ZO
-ZO
-ZO
-aL
-Ra
-AC
-aH
-vz
-WB
-Rj
-Fc
-IH
-SQ
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-"}
-(28,1,1) = {"
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-RX
-uJ
-AI
-sU
-KJ
-RP
-AV
-Ty
-KO
-XJ
-qZ
-zE
-Uu
-tp
-FY
-ZO
-ZO
-ZO
-ZO
-Qf
-BG
-Cc
-yE
-Nx
-Vo
-Ui
-Qk
-SQ
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-"}
-(29,1,1) = {"
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-tW
-pF
-wx
-YM
-gj
-Ra
-wF
-TM
-gp
-bK
-Qh
-VX
-XR
-aL
-dx
-ln
-od
-ZO
-Lo
-ZO
-dN
-HE
-UJ
-Rt
-oh
-oh
-Pq
-SQ
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-"}
-(30,1,1) = {"
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ln
-nz
-XE
-gq
-ls
-Ra
-Ry
-zI
-hJ
-Rl
-fs
-Ry
-ZQ
-HL
-ZO
-ZO
-ZO
-Kd
-ZO
-ZO
-OC
-jl
-rt
-HQ
-pv
-Lu
-Lu
-ri
-SQ
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-"}
-(31,1,1) = {"
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-Ut
-ZO
-ZO
-ln
-ZO
-Ra
-Ry
-wi
-Qh
-Qh
-Qh
-nI
-VP
-rO
-ED
-YO
-ZO
-ZO
-ZO
-Vv
-Lc
-bN
-yw
-zt
-sg
-qy
-Cc
-Ry
-Ra
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-"}
-(32,1,1) = {"
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-Ut
-ZO
-ln
-ZO
-ZO
-ZO
-jy
-aO
-Ry
-mK
-ZO
-RX
-Ew
-El
-pJ
-aL
-Jg
-bM
-ln
-mK
-Mf
-Ra
-Lc
-Ry
-ef
-Ry
-Ra
-Ra
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-"}
-(33,1,1) = {"
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ln
-ZO
-kN
-ZO
-ln
-ZO
-ZO
-ZO
-Lc
-AD
-Ra
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-Ra
-MM
-jH
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-"}
-(34,1,1) = {"
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-DS
-DS
-st
-hO
-DS
-ZO
-ZO
-fP
-ZO
-oc
-oQ
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-Mf
-Ra
-Ry
-dC
-Ry
-Ra
-Ra
-ln
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-"}
-(35,1,1) = {"
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-DS
-DS
-jy
-tZ
-jy
-DS
-DS
-ZO
-ZO
-ZO
-ZO
-ln
-ZO
-ZO
-ZO
-ZO
-yv
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-eJ
-Mf
-Oa
-bm
-gM
-lS
-LT
-bJ
-ZO
-ZO
-zu
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-"}
-(36,1,1) = {"
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-hO
-DS
-AX
-xy
-jy
-ln
-mK
-jy
-wN
-jE
-ZO
-ZO
-ZO
-ZO
-ln
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-Ra
-Ry
-io
-oP
-jy
-mK
-wb
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-"}
-(37,1,1) = {"
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-hO
-AX
-RX
-bI
-ZO
-ln
-ZO
-CS
-RX
-ZO
-zu
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-Ra
-mK
-Ra
-xM
-RX
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-zu
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-"}
-(38,1,1) = {"
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-hO
-tJ
-lq
-QV
-ln
-ln
-ZO
-Uv
-hO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-zu
-ln
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-"}
-(39,1,1) = {"
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-DS
-rr
-jy
-Vm
-ZO
-ZO
-ln
-ZO
-ln
-zu
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-jE
-ZO
-ZO
-ZO
-ZO
-zu
-ZO
-ZO
-ZO
-ZO
-ZO
-Ps
-ZO
-ZO
-ZO
-fP
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-"}
-(40,1,1) = {"
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-DS
-hO
-Us
-RX
-ZO
-ZO
-ln
-ZO
-ZO
-ZO
-ZO
-ZO
-jE
-ZO
-ZO
-ZO
-ZO
-ZO
-En
-Ra
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-jE
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-"}
-(41,1,1) = {"
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-WV
-RX
-mK
-jy
-od
-ZO
-ZO
-ZO
-ED
-ln
-ZO
-ZO
-ZO
-ZO
-ZO
-eg
-ln
-bV
-Ra
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-"}
-(42,1,1) = {"
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-DS
-ZO
-DS
-bM
-jE
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-eg
-Ra
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-"}
-(43,1,1) = {"
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ln
-ZO
-ZO
-ZO
-ZO
-zu
-ZO
-ZO
-ZO
-ZO
-PU
-ZO
-ZO
-ZO
-ZO
-Ra
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-"}
-(44,1,1) = {"
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-"}
-(45,1,1) = {"
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-wd
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-zu
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-"}
-(46,1,1) = {"
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-"}
-(47,1,1) = {"
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-"}
-(48,1,1) = {"
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-"}
-(49,1,1) = {"
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-Uv
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-"}
-(50,1,1) = {"
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-ZO
-"}
diff --git a/_maps/RandomRuins/SpaceRuins/gondolaasteroid.dmm b/_maps/RandomRuins/SpaceRuins/gondolaasteroid.dmm
deleted file mode 100644
index 56747dbd203..00000000000
--- a/_maps/RandomRuins/SpaceRuins/gondolaasteroid.dmm
+++ /dev/null
@@ -1,1392 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"a" = (
-/turf/template_noop,
-/area/template_noop)
-"b" = (
-/turf/closed/mineral/random,
-/area/ruin/space/has_grav)
-"c" = (
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/space/has_grav)
-"d" = (
-/turf/open/floor/grass,
-/area/ruin/space/has_grav)
-"e" = (
-/obj/structure/marker_beacon{
- light_color = "#FFE8AA";
- light_range = 20
- },
-/turf/open/floor/grass,
-/area/ruin/space/has_grav)
-"f" = (
-/obj/structure/flora/ausbushes/fullgrass,
-/turf/open/floor/grass,
-/area/ruin/space/has_grav)
-"g" = (
-/obj/structure/flora/ausbushes/ywflowers,
-/turf/open/floor/grass,
-/area/ruin/space/has_grav)
-"h" = (
-/mob/living/simple_animal/pet/gondola,
-/turf/open/floor/grass,
-/area/ruin/space/has_grav)
-"i" = (
-/obj/structure/flora/ausbushes/sparsegrass,
-/turf/open/floor/grass,
-/area/ruin/space/has_grav)
-"j" = (
-/obj/effect/overlay/coconut,
-/turf/open/floor/grass,
-/area/ruin/space/has_grav)
-"k" = (
-/obj/effect/overlay/palmtree_l,
-/turf/open/floor/grass,
-/area/ruin/space/has_grav)
-"l" = (
-/obj/structure/flora/ausbushes/stalkybush,
-/turf/open/floor/grass,
-/area/ruin/space/has_grav)
-"m" = (
-/obj/structure/flora/ausbushes/grassybush,
-/turf/open/floor/grass,
-/area/ruin/space/has_grav)
-"n" = (
-/obj/structure/flora/ausbushes/reedbush,
-/turf/open/floor/grass,
-/area/ruin/space/has_grav)
-"o" = (
-/obj/structure/flora/ausbushes/lavendergrass,
-/turf/open/floor/grass,
-/area/ruin/space/has_grav)
-"p" = (
-/obj/structure/flora/ausbushes/brflowers,
-/turf/open/floor/grass,
-/area/ruin/space/has_grav)
-"q" = (
-/obj/structure/flora/ausbushes/fernybush,
-/turf/open/floor/grass,
-/area/ruin/space/has_grav)
-"r" = (
-/obj/effect/overlay/palmtree_r,
-/turf/open/floor/grass,
-/area/ruin/space/has_grav)
-"s" = (
-/obj/structure/flora/junglebush/large,
-/turf/open/floor/grass,
-/area/ruin/space/has_grav)
-"t" = (
-/obj/structure/flora/ausbushes/sunnybush,
-/turf/open/floor/grass,
-/area/ruin/space/has_grav)
-"u" = (
-/obj/structure/sink/puddle,
-/turf/open/floor/grass,
-/area/ruin/space/has_grav)
-"v" = (
-/obj/machinery/door/airlock/survival_pod/glass,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper,
-/turf/open/floor/grass,
-/area/ruin/space/has_grav)
-"w" = (
-/obj/machinery/door/airlock/survival_pod/glass,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 1
- },
-/turf/open/floor/grass,
-/area/ruin/space/has_grav)
-
-(1,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-a
-a
-a
-"}
-(2,1,1) = {"
-a
-a
-a
-a
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-"}
-(3,1,1) = {"
-a
-a
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-c
-"}
-(4,1,1) = {"
-a
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-d
-b
-b
-b
-b
-b
-"}
-(5,1,1) = {"
-a
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-d
-d
-d
-d
-d
-d
-d
-b
-b
-b
-"}
-(6,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-d
-d
-d
-d
-g
-d
-d
-d
-h
-d
-b
-b
-"}
-(7,1,1) = {"
-a
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-d
-d
-d
-d
-o
-d
-r
-d
-b
-b
-b
-b
-b
-c
-"}
-(8,1,1) = {"
-a
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-d
-b
-d
-d
-d
-d
-d
-d
-d
-d
-j
-d
-d
-d
-d
-b
-b
-b
-c
-"}
-(9,1,1) = {"
-a
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-d
-k
-d
-d
-q
-d
-d
-j
-d
-d
-k
-d
-d
-d
-d
-m
-d
-d
-b
-b
-b
-c
-"}
-(10,1,1) = {"
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-d
-d
-d
-d
-d
-s
-d
-d
-d
-d
-d
-d
-i
-d
-d
-d
-b
-b
-b
-c
-"}
-(11,1,1) = {"
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-d
-i
-n
-g
-d
-d
-e
-d
-d
-j
-d
-h
-d
-l
-d
-e
-d
-b
-b
-b
-c
-"}
-(12,1,1) = {"
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-d
-d
-d
-d
-o
-o
-d
-h
-d
-d
-d
-d
-d
-d
-d
-i
-o
-d
-d
-b
-b
-b
-c
-"}
-(13,1,1) = {"
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-d
-d
-u
-d
-i
-d
-q
-d
-d
-d
-d
-d
-d
-s
-d
-d
-d
-d
-b
-b
-b
-b
-c
-"}
-(14,1,1) = {"
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-h
-d
-d
-d
-d
-l
-d
-d
-d
-m
-i
-d
-d
-d
-d
-d
-u
-d
-b
-b
-b
-b
-b
-c
-"}
-(15,1,1) = {"
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-d
-d
-d
-d
-d
-i
-o
-d
-d
-d
-d
-d
-d
-d
-d
-b
-b
-b
-b
-c
-"}
-(16,1,1) = {"
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-d
-d
-d
-o
-p
-d
-d
-d
-d
-r
-d
-d
-d
-d
-b
-b
-b
-c
-"}
-(17,1,1) = {"
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-d
-f
-n
-d
-d
-d
-d
-d
-d
-d
-d
-d
-d
-d
-b
-b
-c
-"}
-(18,1,1) = {"
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-d
-f
-d
-b
-b
-b
-b
-b
-d
-d
-d
-d
-d
-d
-i
-t
-d
-d
-d
-i
-d
-d
-b
-b
-b
-"}
-(19,1,1) = {"
-a
-b
-b
-b
-b
-b
-b
-b
-b
-d
-d
-d
-d
-d
-d
-b
-b
-b
-d
-d
-r
-j
-d
-d
-d
-g
-d
-d
-d
-d
-d
-d
-v
-d
-w
-"}
-(20,1,1) = {"
-a
-c
-b
-b
-b
-b
-b
-b
-b
-h
-d
-d
-e
-d
-d
-d
-d
-d
-d
-d
-d
-d
-d
-d
-d
-d
-d
-d
-d
-d
-d
-b
-b
-b
-b
-"}
-(21,1,1) = {"
-a
-c
-c
-b
-b
-b
-b
-b
-b
-d
-d
-d
-k
-d
-i
-i
-d
-d
-q
-d
-d
-d
-d
-d
-e
-d
-h
-d
-d
-d
-d
-d
-b
-b
-b
-"}
-(22,1,1) = {"
-a
-c
-c
-b
-b
-b
-b
-b
-b
-d
-d
-d
-d
-d
-d
-l
-d
-d
-d
-d
-d
-d
-d
-d
-d
-d
-d
-d
-d
-r
-d
-d
-b
-b
-b
-"}
-(23,1,1) = {"
-a
-c
-c
-b
-b
-b
-b
-b
-b
-d
-d
-j
-d
-d
-d
-d
-d
-d
-d
-u
-d
-h
-s
-d
-d
-d
-s
-d
-d
-d
-d
-d
-b
-b
-b
-"}
-(24,1,1) = {"
-a
-a
-c
-c
-b
-b
-b
-b
-f
-d
-d
-d
-d
-d
-h
-d
-d
-d
-d
-d
-d
-d
-d
-d
-m
-d
-d
-d
-d
-d
-d
-d
-b
-b
-b
-"}
-(25,1,1) = {"
-a
-a
-c
-c
-b
-b
-b
-d
-d
-d
-d
-d
-d
-d
-d
-d
-i
-l
-d
-d
-d
-d
-d
-d
-n
-m
-d
-d
-d
-d
-d
-b
-b
-b
-a
-"}
-(26,1,1) = {"
-a
-a
-c
-c
-b
-b
-b
-d
-d
-d
-u
-d
-d
-d
-d
-m
-p
-i
-d
-g
-d
-d
-d
-d
-d
-d
-k
-d
-d
-j
-d
-b
-b
-b
-a
-"}
-(27,1,1) = {"
-a
-a
-c
-c
-b
-b
-b
-b
-d
-d
-d
-d
-d
-d
-d
-d
-d
-d
-d
-e
-m
-i
-d
-d
-d
-d
-d
-d
-d
-d
-b
-b
-b
-a
-a
-"}
-(28,1,1) = {"
-a
-a
-a
-c
-c
-b
-b
-b
-d
-d
-d
-d
-d
-f
-d
-d
-d
-d
-d
-d
-i
-l
-p
-d
-d
-d
-d
-u
-d
-b
-b
-b
-b
-a
-a
-"}
-(29,1,1) = {"
-a
-a
-a
-c
-c
-b
-b
-d
-d
-d
-f
-d
-d
-d
-d
-d
-d
-d
-d
-d
-d
-d
-d
-d
-d
-i
-d
-d
-d
-b
-b
-b
-c
-c
-a
-"}
-(30,1,1) = {"
-a
-a
-a
-c
-b
-b
-d
-e
-g
-d
-i
-d
-d
-d
-b
-d
-d
-d
-d
-d
-j
-d
-d
-d
-d
-d
-d
-d
-b
-b
-b
-c
-c
-c
-a
-"}
-(31,1,1) = {"
-a
-a
-a
-b
-b
-b
-b
-d
-d
-d
-d
-d
-d
-b
-b
-b
-d
-d
-d
-r
-d
-d
-d
-d
-d
-d
-b
-b
-b
-b
-c
-c
-c
-b
-b
-"}
-(32,1,1) = {"
-a
-a
-a
-b
-b
-b
-d
-d
-d
-d
-d
-d
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-c
-c
-b
-b
-b
-"}
-(33,1,1) = {"
-a
-a
-a
-b
-b
-d
-d
-d
-d
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-b
-b
-b
-a
-"}
-(34,1,1) = {"
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-c
-c
-c
-c
-c
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-b
-b
-b
-a
-"}
-(35,1,1) = {"
-a
-a
-a
-a
-b
-b
-b
-b
-b
-b
-b
-b
-b
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
diff --git a/_maps/RandomRuins/SpaceRuins/hellfactory.dmm b/_maps/RandomRuins/SpaceRuins/hellfactory.dmm
deleted file mode 100644
index 700511e2e13..00000000000
--- a/_maps/RandomRuins/SpaceRuins/hellfactory.dmm
+++ /dev/null
@@ -1,1823 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"aa" = (
-/turf/template_noop,
-/area/template_noop)
-"ab" = (
-/turf/closed/wall,
-/area/ruin/space/has_grav/hellfactory)
-"ac" = (
-/turf/closed/wall/r_wall,
-/area/ruin/space/has_grav/hellfactory)
-"ad" = (
-/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{
- dir = 4
- },
-/turf/open/floor/plastic,
-/area/ruin/space/has_grav/hellfactory)
-"ae" = (
-/obj/machinery/atmospherics/pipe/layer_manifold/visible{
- dir = 4
- },
-/obj/structure/closet/secure_closet/freezer/meat,
-/turf/open/floor/plastic,
-/area/ruin/space/has_grav/hellfactory)
-"af" = (
-/obj/machinery/atmospherics/pipe/heat_exchanging/junction{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/heat_exchanging/junction/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/heat_exchanging/junction/layer4{
- dir = 4
- },
-/turf/open/floor/plastic,
-/area/ruin/space/has_grav/hellfactory)
-"ag" = (
-/obj/machinery/atmospherics/pipe/heat_exchanging/manifold{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/heat_exchanging/manifold/layer2{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/heat_exchanging/manifold/layer4{
- dir = 1
- },
-/turf/open/floor/plastic,
-/area/ruin/space/has_grav/hellfactory)
-"ah" = (
-/turf/closed/indestructible/reinforced,
-/area/ruin/space/has_grav/hellfactoryoffice)
-"ai" = (
-/obj/machinery/atmospherics/pipe/heat_exchanging/junction{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/heat_exchanging/junction/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/heat_exchanging/junction/layer4{
- dir = 8
- },
-/turf/closed/indestructible/reinforced,
-/area/ruin/space/has_grav/hellfactoryoffice)
-"aj" = (
-/obj/machinery/atmospherics/pipe/layer_manifold/visible{
- dir = 4
- },
-/obj/structure/fluff/hedge/opaque,
-/turf/open/floor/plasteel/grimy,
-/area/ruin/space/has_grav/hellfactoryoffice)
-"ak" = (
-/obj/machinery/atmospherics/components/unary/tank/oxygen{
- dir = 8;
- gas_type = "water_vapor";
- initialize_directions = 8
- },
-/turf/open/floor/plasteel/grimy,
-/area/ruin/space/has_grav/hellfactoryoffice)
-"al" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/cans/sixbeer,
-/turf/open/floor/plasteel/grimy,
-/area/ruin/space/has_grav/hellfactoryoffice)
-"am" = (
-/obj/machinery/paystand,
-/turf/open/floor/plasteel/grimy,
-/area/ruin/space/has_grav/hellfactoryoffice)
-"an" = (
-/obj/effect/decal/remains/human,
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plasteel/grimy,
-/area/ruin/space/has_grav/hellfactoryoffice)
-"ao" = (
-/turf/open/floor/plasteel/grimy,
-/area/ruin/space/has_grav/hellfactoryoffice)
-"ap" = (
-/obj/structure/table/reinforced,
-/obj/machinery/computer/security/wooden_tv,
-/turf/open/floor/plasteel/grimy,
-/area/ruin/space/has_grav/hellfactoryoffice)
-"ar" = (
-/obj/structure/closet/crate,
-/obj/item/stack/sheet/metal/five,
-/obj/item/grenade/firecracker,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/hellfactory)
-"as" = (
-/obj/structure/holobox,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/hellfactory)
-"at" = (
-/obj/structure/closet/crate{
- icon_state = "crateopen"
- },
-/obj/item/reagent_containers/glass/beaker/large,
-/obj/item/reagent_containers/glass/beaker/large,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/hellfactory)
-"au" = (
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer2{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer4{
- dir = 6
- },
-/turf/open/floor/plastic,
-/area/ruin/space/has_grav/hellfactory)
-"av" = (
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer2{
- dir = 4
- },
-/obj/structure/holobox,
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer4{
- dir = 4
- },
-/turf/open/floor/plastic,
-/area/ruin/space/has_grav/hellfactory)
-"ax" = (
-/obj/machinery/atmospherics/pipe/heat_exchanging/manifold{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/heat_exchanging/manifold/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/heat_exchanging/manifold/layer4{
- dir = 4
- },
-/turf/open/floor/plastic,
-/area/ruin/space/has_grav/hellfactory)
-"ay" = (
-/obj/structure/fluff/hedge/opaque,
-/turf/open/floor/plasteel/grimy,
-/area/ruin/space/has_grav/hellfactoryoffice)
-"az" = (
-/obj/item/trash/raisins,
-/turf/open/floor/plasteel/grimy,
-/area/ruin/space/has_grav/hellfactoryoffice)
-"aA" = (
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/hellfactory)
-"aC" = (
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer2,
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer4,
-/turf/open/floor/plastic,
-/area/ruin/space/has_grav/hellfactory)
-"aD" = (
-/obj/structure/holobox,
-/turf/open/floor/plastic,
-/area/ruin/space/has_grav/hellfactory)
-"aE" = (
-/obj/machinery/photocopier,
-/turf/open/floor/plasteel/grimy,
-/area/ruin/space/has_grav/hellfactoryoffice)
-"aF" = (
-/obj/item/trash/can,
-/turf/open/floor/plasteel/grimy,
-/area/ruin/space/has_grav/hellfactoryoffice)
-"aG" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/cans/sixsoda,
-/turf/open/floor/plasteel/grimy,
-/area/ruin/space/has_grav/hellfactoryoffice)
-"aH" = (
-/obj/structure/table/reinforced,
-/obj/item/trash/popcorn,
-/turf/open/floor/plasteel/grimy,
-/area/ruin/space/has_grav/hellfactoryoffice)
-"aK" = (
-/obj/structure/table/reinforced,
-/obj/item/rsf,
-/turf/open/floor/plasteel/grimy,
-/area/ruin/space/has_grav/hellfactoryoffice)
-"aL" = (
-/turf/closed/wall/rust,
-/area/ruin/space/has_grav/hellfactory)
-"aM" = (
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer2{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer4{
- dir = 5
- },
-/turf/open/floor/plastic,
-/area/ruin/space/has_grav/hellfactory)
-"aN" = (
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer4{
- dir = 4
- },
-/turf/open/floor/plastic,
-/area/ruin/space/has_grav/hellfactory)
-"aO" = (
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer2{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer4{
- dir = 9
- },
-/turf/open/floor/plastic,
-/area/ruin/space/has_grav/hellfactory)
-"aP" = (
-/obj/structure/filingcabinet,
-/turf/open/floor/plasteel/grimy,
-/area/ruin/space/has_grav/hellfactoryoffice)
-"aQ" = (
-/obj/item/trash/can,
-/obj/item/trash/can,
-/obj/structure/closet/crate/bin,
-/obj/item/trash/chips,
-/turf/open/floor/plasteel/grimy,
-/area/ruin/space/has_grav/hellfactoryoffice)
-"aR" = (
-/obj/item/ammo_casing/spent,
-/obj/item/ammo_casing/spent{
- pixel_x = 3;
- pixel_y = 5
- },
-/obj/item/ammo_casing/spent{
- pixel_x = 4;
- pixel_y = -10
- },
-/turf/open/floor/plasteel/grimy,
-/area/ruin/space/has_grav/hellfactoryoffice)
-"aS" = (
-/obj/structure/closet/crate,
-/obj/item/stack/packageWrap,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/hellfactory)
-"aT" = (
-/obj/item/mine/pressure/gas/live,
-/obj/machinery/door/window,
-/turf/open/floor/plastic,
-/area/ruin/space/has_grav/hellfactory)
-"aU" = (
-/turf/open/floor/plastic,
-/area/ruin/space/has_grav/hellfactory)
-"aV" = (
-/obj/item/mine/pressure/gas/live,
-/turf/open/floor/plastic,
-/area/ruin/space/has_grav/hellfactory)
-"aW" = (
-/turf/closed/wall/r_wall/rust,
-/area/ruin/space/has_grav/hellfactory)
-"ba" = (
-/obj/structure/plasticflaps,
-/obj/machinery/conveyor/auto,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/hellfactory)
-"bb" = (
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/grille,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/hellfactory)
-"bc" = (
-/obj/structure/plasticflaps,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/hellfactory)
-"bd" = (
-/obj/structure/sign/warning/coldtemp{
- name = "\improper BLAST FREEZER"
- },
-/turf/closed/wall/r_wall,
-/area/ruin/space/has_grav/hellfactory)
-"be" = (
-/obj/structure/table,
-/obj/item/paper_bin/carbon,
-/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/hellfactory)
-"bg" = (
-/obj/machinery/modular_computer/console/preset/civilian,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/hellfactory)
-"bh" = (
-/obj/item/pressure_plate/hologrid{
- reward = /obj/item/keycard/office
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/hellfactory)
-"bj" = (
-/obj/structure/grille,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/hellfactory)
-"bl" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/machinery/conveyor/auto,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/hellfactory)
-"bm" = (
-/obj/structure/table,
-/obj/item/stamp/denied,
-/obj/item/stamp{
- pixel_x = 6;
- pixel_y = 6
- },
-/obj/structure/window{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/hellfactory)
-"bn" = (
-/obj/structure/closet/crate/trashcart,
-/obj/item/soap/nanotrasen,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/hellfactory)
-"bo" = (
-/obj/structure/grille/broken,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/hellfactory)
-"bp" = (
-/obj/structure/chair/plastic,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/hellfactory)
-"bs" = (
-/obj/machinery/conveyor/auto,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/hellfactory)
-"bt" = (
-/obj/structure/holobox,
-/obj/machinery/conveyor/auto{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/hellfactory)
-"bu" = (
-/obj/structure/fermenting_barrel,
-/obj/machinery/conveyor/auto{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/hellfactory)
-"bv" = (
-/obj/machinery/conveyor/auto{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/hellfactory)
-"bw" = (
-/obj/structure/table,
-/obj/structure/window{
- dir = 8
- },
-/obj/item/pen/fourcolor,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/hellfactory)
-"bx" = (
-/obj/structure/table,
-/obj/item/storage/toolbox/mechanical,
-/obj/structure/window{
- dir = 8
- },
-/obj/structure/window,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/hellfactory)
-"by" = (
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/hellfactory)
-"bz" = (
-/obj/structure/closet/crate,
-/obj/item/reagent_containers/glass/beaker/large,
-/obj/item/reagent_containers/glass/beaker/large,
-/obj/item/reagent_containers/glass/beaker/large,
-/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/hellfactory)
-"bA" = (
-/obj/structure/closet/crate,
-/obj/item/stack/packageWrap,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/hellfactory)
-"bB" = (
-/obj/structure/fermenting_barrel,
-/obj/machinery/conveyor/auto,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/hellfactory)
-"bC" = (
-/obj/structure/ore_box,
-/obj/machinery/conveyor/auto{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/hellfactory)
-"bD" = (
-/obj/effect/turf_decal/arrows,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/hellfactory)
-"bG" = (
-/obj/structure/closet/crate,
-/obj/machinery/conveyor/auto,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/item/reagent_containers/food/drinks/flask,
-/obj/item/stack/sheet/glass,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/hellfactory)
-"bI" = (
-/obj/structure/fermenting_barrel,
-/obj/machinery/conveyor/auto{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/hellfactory)
-"bL" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/hellfactory)
-"bN" = (
-/obj/structure/ore_box,
-/obj/machinery/conveyor/auto,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/hellfactory)
-"bO" = (
-/obj/structure/closet/crate,
-/obj/machinery/conveyor/auto{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/item/stack/sheet/mineral/wood/fifty,
-/obj/item/plunger,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/hellfactory)
-"bP" = (
-/obj/effect/turf_decal/arrows{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/hellfactory)
-"bQ" = (
-/obj/structure/mirror,
-/turf/closed/wall/rust,
-/area/ruin/space/has_grav/hellfactory)
-"bR" = (
-/obj/item/pressure_plate/hologrid{
- reward = /obj/item/keycard/stockroom
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/hellfactory)
-"bS" = (
-/obj/item/pressure_plate/hologrid{
- reward = /obj/item/stack/arcadeticket/thirty
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/hellfactory)
-"bT" = (
-/obj/machinery/conveyor/auto{
- dir = 4
- },
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/hellfactory)
-"bU" = (
-/obj/structure/closet/crate/large,
-/obj/machinery/conveyor/auto{
- dir = 4
- },
-/obj/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/hellfactory)
-"bV" = (
-/obj/structure/closet/crate,
-/obj/machinery/conveyor/auto{
- dir = 4
- },
-/obj/structure/window/reinforced,
-/obj/item/reagent_containers/food/drinks/shaker,
-/obj/item/stack/sheet/cardboard,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/hellfactory)
-"bW" = (
-/obj/machinery/conveyor/auto{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/hellfactory)
-"bX" = (
-/obj/structure/sign/warning/chemdiamond,
-/turf/closed/wall,
-/area/ruin/space/has_grav/hellfactory)
-"ca" = (
-/obj/machinery/door/airlock{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/hellfactory)
-"cc" = (
-/obj/structure/bed,
-/obj/item/bedsheet/dorms,
-/turf/open/floor/holofloor/wood,
-/area/ruin/space/has_grav/hellfactory)
-"cd" = (
-/obj/machinery/plumbing/synthesizer{
- desc = "Produces a single chemical at a given volume. This one appears to have been hotwired to generate universal enzyme.";
- dir = 2;
- dispensable_reagents = list(/datum/reagent/consumable/enzyme);
- reagent_id = /datum/reagent/consumable/enzyme
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/hellfactory)
-"ce" = (
-/obj/machinery/plumbing/synthesizer{
- desc = "Produces a single chemical at a given volume. This one appears to have been hotwired to generate honey.";
- dir = 2;
- dispensable_reagents = list(/datum/reagent/consumable/honey);
- reagent_id = /datum/reagent/consumable/honey
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/hellfactory)
-"cf" = (
-/obj/machinery/plumbing/synthesizer{
- desc = "Produces a single chemical at a given volume. This one seems to have been hotwired to produce... blood?";
- dir = 2;
- dispensable_reagents = list(/datum/reagent/blood);
- reagent_id = /datum/reagent/blood
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/hellfactory)
-"cg" = (
-/obj/structure/closet/crate,
-/obj/item/stack/ore/glass,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/hellfactory)
-"cj" = (
-/obj/structure/closet/crate,
-/obj/item/stack/sheet/cotton/cloth/five,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/hellfactory)
-"ck" = (
-/obj/machinery/plumbing/tank,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/hellfactory)
-"cn" = (
-/obj/machinery/plumbing/output{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/hellfactory)
-"cr" = (
-/obj/structure/closet/crate/trashcart,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/hellfactory)
-"cA" = (
-/obj/item/trash/raisins,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/hellfactory)
-"cB" = (
-/obj/item/stack/tile/plasteel,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/hellfactory)
-"cE" = (
-/obj/structure/sign/warning/docking,
-/turf/closed/wall/rust,
-/area/ruin/space/has_grav/hellfactory)
-"cF" = (
-/obj/effect/turf_decal/industrial/hatch,
-/obj/machinery/door/poddoor,
-/turf/open/floor/plating{
- broken = 1;
- icon_state = "platingdmg1"
- },
-/area/ruin/space/has_grav/hellfactory)
-"cG" = (
-/obj/effect/turf_decal/industrial/hatch,
-/obj/effect/turf_decal/industrial/hatch/red,
-/obj/item/stack/tile/plasteel,
-/obj/machinery/door/poddoor,
-/turf/open/floor/plating{
- broken = 1;
- icon_state = "platingdmg1"
- },
-/area/ruin/space/has_grav/hellfactory)
-"cH" = (
-/obj/effect/turf_decal/industrial/hatch,
-/obj/structure/grille/broken,
-/obj/machinery/door/poddoor,
-/turf/open/floor/plating{
- broken = 1;
- icon_state = "platingdmg1"
- },
-/area/ruin/space/has_grav/hellfactory)
-"cI" = (
-/obj/effect/turf_decal/industrial/hatch,
-/obj/effect/turf_decal/industrial/hatch/red,
-/obj/machinery/door/poddoor,
-/turf/open/floor/plating{
- broken = 1;
- icon_state = "platingdmg1"
- },
-/area/ruin/space/has_grav/hellfactory)
-"cJ" = (
-/obj/effect/turf_decal/industrial/hatch,
-/obj/item/stack/tile/plasteel,
-/obj/machinery/door/poddoor,
-/turf/open/floor/plating{
- broken = 1;
- icon_state = "platingdmg1"
- },
-/area/ruin/space/has_grav/hellfactory)
-"cK" = (
-/obj/machinery/power/port_gen/pacman,
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/hellfactory)
-"cL" = (
-/obj/item/bedsheet/brown,
-/obj/structure/bed,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/hellfactory)
-"cM" = (
-/obj/item/storage/toolbox/emergency/old,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/hellfactory)
-"cO" = (
-/obj/structure/holobox,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/hellfactory)
-"cU" = (
-/obj/machinery/door/keycard/office,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/hellfactoryoffice)
-"cV" = (
-/obj/structure/table,
-/obj/item/stack/ducts/fifty,
-/obj/structure/window,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/hellfactory)
-"cY" = (
-/obj/machinery/light/directional/north,
-/obj/item/chair/plastic{
- pixel_y = 4
- },
-/obj/item/chair/plastic{
- pixel_y = 8
- },
-/obj/item/chair/plastic{
- pixel_y = 12
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/hellfactory)
-"dg" = (
-/obj/machinery/light/small/directional/south,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/hellfactory)
-"fI" = (
-/obj/structure/ore_box,
-/obj/effect/turf_decal/box,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/hellfactory)
-"gV" = (
-/obj/machinery/door/keycard/entry,
-/obj/machinery/door/airlock/public,
-/obj/structure/fans/tiny,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/hellfactory)
-"hd" = (
-/obj/structure/extinguisher_cabinet/directional/north,
-/turf/closed/wall/r_wall/rust,
-/area/ruin/space/has_grav/hellfactory)
-"hv" = (
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plastic,
-/area/ruin/space/has_grav/hellfactory)
-"kf" = (
-/obj/machinery/power/apc/highcap/ten_k{
- dir = 1;
- pixel_y = 25
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/hellfactory)
-"ko" = (
-/obj/machinery/light/directional/east,
-/obj/effect/turf_decal/corner/opaque/black{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/black{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/hellfactory)
-"lq" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/corner/opaque/black{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/black{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/hellfactory)
-"lC" = (
-/obj/machinery/light/broken/directional/south,
-/obj/structure/marker_beacon{
- icon_state = "markerburgundy-on"
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/hellfactory)
-"lL" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/light/floor,
-/obj/effect/turf_decal/box,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/hellfactory)
-"ng" = (
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/closed/wall/r_wall/rust,
-/area/ruin/space/has_grav/hellfactory)
-"nn" = (
-/obj/structure/grille/broken,
-/obj/item/pressure_plate/hologrid{
- reward = /obj/item/spacecash/bundle/c500
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/hellfactory)
-"nF" = (
-/obj/effect/turf_decal/industrial/warning,
-/obj/effect/turf_decal/box,
-/obj/effect/turf_decal/industrial/stand_clear/white{
- dir = 1
- },
-/turf/open/floor/plating{
- broken = 1;
- icon_state = "platingdmg1"
- },
-/area/ruin/space/has_grav/hellfactory)
-"nT" = (
-/obj/structure/rack,
-/obj/item/stack/wrapping_paper,
-/obj/item/stack/packageWrap,
-/obj/effect/spawner/lootdrop/donkpockets,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/hellfactory)
-"pb" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/closed/wall/r_wall,
-/area/ruin/space/has_grav/hellfactory)
-"qB" = (
-/obj/item/pressure_plate/hologrid{
- reward = /obj/item/skub
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/hellfactory)
-"rC" = (
-/obj/structure/sign/poster/random,
-/turf/closed/wall/rust,
-/area/ruin/space/has_grav/hellfactory)
-"sy" = (
-/obj/structure/table/reinforced,
-/obj/item/gun/ballistic/automatic/pistol/commander,
-/turf/open/floor/plasteel/grimy,
-/area/ruin/space/has_grav/hellfactoryoffice)
-"tt" = (
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/hellfactory)
-"tE" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/closed/wall/r_wall,
-/area/ruin/space/has_grav/hellfactory)
-"xd" = (
-/obj/effect/turf_decal/box,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/hellfactory)
-"xy" = (
-/obj/machinery/light/directional/west,
-/obj/machinery/plumbing/tank,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/hellfactory)
-"xJ" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/closed/indestructible/reinforced,
-/area/ruin/space/has_grav/hellfactoryoffice)
-"xK" = (
-/obj/structure/bed,
-/obj/item/bedsheet/dorms,
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/turf/open/floor/holofloor/wood,
-/area/ruin/space/has_grav/hellfactory)
-"yk" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/light/small/directional/west{
- brightness = 3
- },
-/obj/effect/turf_decal/corner/opaque/black{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/black{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/hellfactory)
-"yM" = (
-/obj/structure/closet/crate/trashcart,
-/obj/item/stack/sheet/mineral/plasma,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/hellfactory)
-"yY" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/closed/wall/r_wall/rust,
-/area/ruin/space/has_grav/hellfactory)
-"zj" = (
-/obj/item/pressure_plate/hologrid{
- name = "bossman's hologrid";
- reward = /obj/item/spacecash/bundle/c10000
- },
-/turf/open/floor/plasteel/grimy,
-/area/ruin/space/has_grav/hellfactoryoffice)
-"zK" = (
-/obj/structure/catwalk,
-/obj/structure/marker_beacon{
- icon_state = "markerburgundy-on"
- },
-/turf/open/space,
-/area/ruin/space/has_grav/hellfactory)
-"zW" = (
-/obj/machinery/light/small/directional/south,
-/obj/effect/decal/remains/human,
-/obj/structure/curtain,
-/turf/open/floor/holofloor/wood,
-/area/ruin/space/has_grav/hellfactory)
-"AL" = (
-/obj/structure/fluff/broken_flooring,
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/hellfactory)
-"AY" = (
-/obj/machinery/power/apc/highcap/ten_k{
- dir = 1;
- pixel_y = 25
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plasteel/grimy,
-/area/ruin/space/has_grav/hellfactoryoffice)
-"Ct" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/hellfactory)
-"CH" = (
-/obj/effect/turf_decal/industrial/warning/corner,
-/turf/open/floor/plating{
- broken = 1;
- icon_state = "platingdmg1"
- },
-/area/ruin/space/has_grav/hellfactory)
-"Dk" = (
-/obj/structure/fermenting_barrel,
-/obj/effect/turf_decal/box,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/hellfactory)
-"Do" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/closed/wall/r_wall/rust,
-/area/ruin/space/has_grav/hellfactory)
-"Fn" = (
-/obj/machinery/light/directional/north,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/hellfactory)
-"Fs" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/table,
-/obj/machinery/microwave,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/hellfactory)
-"GH" = (
-/obj/structure/tank_dispenser/oxygen,
-/obj/effect/turf_decal/corner/opaque/black{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/black{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/hellfactory)
-"GK" = (
-/obj/structure/catwalk,
-/obj/item/keycard/entry,
-/turf/open/space,
-/area/ruin/space/has_grav/hellfactory)
-"Ia" = (
-/obj/effect/turf_decal/industrial/warning,
-/obj/effect/turf_decal/box,
-/obj/effect/turf_decal/industrial/stand_clear/white{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/hellfactory)
-"IP" = (
-/obj/machinery/light/directional/east,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/hellfactory)
-"Jv" = (
-/obj/structure/table/reinforced,
-/obj/item/trash/candle,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/grimy,
-/area/ruin/space/has_grav/hellfactoryoffice)
-"KI" = (
-/obj/machinery/light/directional/south,
-/obj/structure/rack,
-/obj/item/book/manual/random,
-/obj/item/poster/random_contraband,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/hellfactory)
-"Ld" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/hellfactory)
-"Mi" = (
-/obj/item/ammo_casing/spent{
- pixel_x = -10;
- pixel_y = -4
- },
-/obj/item/ammo_casing/spent,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/grimy,
-/area/ruin/space/has_grav/hellfactoryoffice)
-"Mv" = (
-/obj/structure/sign/poster/random,
-/turf/closed/wall,
-/area/ruin/space/has_grav/hellfactory)
-"Mx" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/closed/wall/r_wall/rust,
-/area/ruin/space/has_grav/hellfactory)
-"MR" = (
-/obj/item/pressure_plate/hologrid,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/hellfactory)
-"Nv" = (
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer2,
-/obj/machinery/light/directional/east,
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer4,
-/turf/open/floor/plastic,
-/area/ruin/space/has_grav/hellfactory)
-"Nx" = (
-/obj/item/stack/tile/plasteel,
-/obj/effect/turf_decal/industrial/warning,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/hellfactory)
-"NY" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/closed/wall/r_wall,
-/area/ruin/space/has_grav/hellfactory)
-"Ob" = (
-/obj/effect/turf_decal/industrial/hatch/yellow,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/hellfactory)
-"Om" = (
-/obj/effect/turf_decal/box/corners{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/hellfactory)
-"OF" = (
-/obj/structure/catwalk,
-/turf/open/space,
-/area/ruin/space/has_grav/hellfactory)
-"Pg" = (
-/obj/effect/turf_decal/box/corners{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/hellfactory)
-"PA" = (
-/obj/effect/turf_decal/corner/opaque/black{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/black{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/hellfactory)
-"QK" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/box/corners,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/hellfactory)
-"QR" = (
-/obj/machinery/light/floor,
-/obj/effect/turf_decal/box,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/hellfactory)
-"QV" = (
-/obj/effect/turf_decal/box/corners{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/hellfactory)
-"Sz" = (
-/obj/effect/decal/cleanable/oil,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/hellfactory)
-"UK" = (
-/obj/effect/decal/cleanable/oil/streak,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/hellfactory)
-"VZ" = (
-/obj/machinery/door/keycard/stockroom,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/hellfactory)
-"Wh" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/hellfactory)
-"WZ" = (
-/obj/structure/sign/warning/vacuum,
-/turf/closed/wall,
-/area/ruin/space/has_grav/hellfactory)
-"Xt" = (
-/obj/machinery/light/small/directional/south,
-/obj/structure/curtain,
-/turf/open/floor/holofloor/wood,
-/area/ruin/space/has_grav/hellfactory)
-"XS" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/grimy,
-/area/ruin/space/has_grav/hellfactoryoffice)
-"XX" = (
-/obj/machinery/light/built/directional/south,
-/obj/structure/marker_beacon{
- icon_state = "markerburgundy-on"
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/hellfactory)
-"YR" = (
-/obj/structure/extinguisher_cabinet/directional/north,
-/turf/closed/wall,
-/area/ruin/space/has_grav/hellfactory)
-"Za" = (
-/obj/machinery/light/small/directional/south,
-/turf/open/floor/plasteel/grimy,
-/area/ruin/space/has_grav/hellfactoryoffice)
-"ZX" = (
-/obj/machinery/light/small/directional/west{
- brightness = 3
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/hellfactory)
-
-(1,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(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
-"}
-(3,1,1) = {"
-aa
-aa
-aW
-ac
-aW
-aW
-ac
-ac
-aW
-ac
-ac
-ac
-aW
-ac
-ac
-ac
-ac
-aW
-aW
-ac
-aW
-aW
-aW
-aa
-aa
-"}
-(4,1,1) = {"
-aa
-aa
-aW
-ad
-au
-aC
-aM
-aT
-ba
-bl
-bl
-bs
-bB
-bG
-bN
-bT
-cd
-xy
-ck
-ck
-Dk
-fI
-aW
-aa
-aa
-"}
-(5,1,1) = {"
-aa
-aa
-ac
-ae
-av
-ab
-aN
-hv
-bb
-aA
-bL
-bt
-bb
-bb
-bb
-bU
-ce
-aA
-bL
-aA
-cn
-Dk
-aW
-aa
-aa
-"}
-(6,1,1) = {"
-aa
-aa
-aW
-af
-aN
-aD
-aN
-aU
-bb
-bL
-aA
-bu
-bb
-bb
-bb
-bV
-cf
-aA
-aA
-UK
-bL
-Dk
-aW
-aa
-aa
-"}
-(7,1,1) = {"
-aa
-aa
-aW
-ag
-ax
-Nv
-aO
-aV
-bc
-bL
-bL
-bv
-bC
-bI
-bO
-bW
-aA
-aA
-bL
-aA
-aA
-Dk
-aW
-OF
-aa
-"}
-(8,1,1) = {"
-aa
-aa
-ah
-ai
-ah
-ah
-ah
-ah
-bd
-aA
-aA
-aA
-bD
-Ob
-bP
-bX
-aA
-aA
-bL
-aA
-XX
-cE
-aW
-zK
-OF
-"}
-(9,1,1) = {"
-aa
-aa
-ah
-aj
-az
-aF
-aQ
-ah
-be
-bm
-bw
-bx
-Pg
-by
-by
-ZX
-by
-by
-by
-QV
-CH
-cF
-aa
-aa
-aa
-"}
-(10,1,1) = {"
-aa
-aa
-ah
-ak
-ao
-ao
-aF
-ah
-cY
-aA
-bp
-cV
-by
-Wh
-QR
-tt
-Ld
-lL
-by
-by
-Ia
-cG
-aa
-aa
-aa
-"}
-(11,1,1) = {"
-aa
-aa
-ah
-al
-ao
-aG
-Za
-ah
-bg
-aA
-bL
-aA
-Wh
-Wh
-tt
-by
-by
-tt
-Wh
-by
-Nx
-cH
-aa
-aa
-aa
-"}
-(12,1,1) = {"
-aa
-aa
-ah
-am
-ao
-aH
-ao
-ah
-ac
-ac
-hd
-by
-by
-by
-QR
-tt
-tt
-lL
-by
-Wh
-nF
-cI
-aa
-aa
-aa
-"}
-(13,1,1) = {"
-aa
-aa
-ah
-an
-ao
-sy
-aR
-cU
-bh
-qB
-MR
-by
-Om
-by
-by
-xd
-by
-xd
-IP
-QK
-AL
-cJ
-aa
-aa
-aa
-"}
-(14,1,1) = {"
-aa
-aa
-ah
-AY
-XS
-Jv
-Mi
-xJ
-NY
-yY
-pb
-by
-by
-KI
-aL
-ca
-aL
-ca
-aL
-by
-lC
-cE
-ac
-zK
-OF
-"}
-(15,1,1) = {"
-aa
-aa
-ah
-ap
-ao
-aK
-Za
-ah
-aA
-bn
-Do
-by
-Wh
-Fs
-bQ
-Xt
-bQ
-zW
-aL
-kf
-Ct
-cK
-aW
-GK
-aa
-"}
-(16,1,1) = {"
-aa
-aa
-ah
-zj
-ao
-ao
-ao
-ah
-PA
-bL
-VZ
-by
-by
-nT
-aL
-cc
-aL
-xK
-Mx
-tE
-aW
-ac
-aW
-aa
-aa
-"}
-(17,1,1) = {"
-aa
-aa
-ah
-ay
-aE
-aP
-aP
-ah
-Fn
-PA
-ng
-NY
-NY
-yY
-NY
-yY
-NY
-yY
-tE
-yM
-cA
-by
-ab
-aa
-aa
-"}
-(18,1,1) = {"
-aa
-aa
-ah
-ah
-ah
-ah
-ah
-ah
-bj
-bo
-aL
-bz
-Mv
-PA
-bR
-dg
-ab
-as
-aL
-cr
-cB
-cL
-WZ
-aa
-aa
-"}
-(19,1,1) = {"
-aa
-aa
-ac
-ar
-aA
-PA
-aS
-aL
-GH
-PA
-ab
-bA
-aA
-PA
-ab
-lq
-cg
-cj
-by
-Sz
-by
-cM
-gV
-aa
-aa
-"}
-(20,1,1) = {"
-aa
-aa
-aW
-ab
-bL
-PA
-PA
-YR
-aA
-PA
-ab
-ab
-ab
-nn
-ab
-ab
-rC
-ab
-Mv
-Wh
-Wh
-by
-ab
-aa
-aa
-"}
-(21,1,1) = {"
-aa
-aa
-ac
-as
-aA
-Mv
-PA
-aA
-bL
-PA
-PA
-PA
-yk
-PA
-ab
-PA
-bL
-aA
-by
-Wh
-by
-by
-ab
-aa
-aa
-"}
-(22,1,1) = {"
-aa
-aa
-ac
-at
-lq
-aL
-lq
-ko
-PA
-PA
-aL
-by
-ab
-aA
-bS
-PA
-ab
-as
-aL
-by
-IP
-cO
-ab
-aa
-aa
-"}
-(23,1,1) = {"
-aa
-aa
-aW
-aW
-aW
-aW
-aW
-ac
-aW
-ac
-ac
-aW
-aW
-ac
-ac
-ac
-ac
-aW
-aW
-ab
-ab
-ab
-ab
-aa
-aa
-"}
-(24,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
-"}
-(25,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
-"}
diff --git a/_maps/RandomRuins/SpaceRuins/ntfacility.dmm b/_maps/RandomRuins/SpaceRuins/ntfacility.dmm
deleted file mode 100644
index d17fe7601d2..00000000000
--- a/_maps/RandomRuins/SpaceRuins/ntfacility.dmm
+++ /dev/null
@@ -1,3847 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"aT" = (
-/obj/machinery/button/door{
- id = "a";
- name = "door lock";
- pixel_x = -25;
- pixel_y = -7
- },
-/obj/machinery/button/door{
- id = "medical_lock_cmo";
- name = "door lock";
- pixel_x = -25;
- pixel_y = 9
- },
-/obj/machinery/button/door{
- id = "medical_lock_medlock";
- name = "door lock";
- pixel_x = -25;
- pixel_y = 1
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"bb" = (
-/obj/machinery/computer/security{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"bd" = (
-/obj/machinery/door/airlock/maintenance_hatch{
- dir = 4
- },
-/obj/effect/mapping_helpers/airlock/locked,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"bx" = (
-/obj/machinery/computer/operating,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"bL" = (
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 9
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"bO" = (
-/obj/structure/table,
-/obj/machinery/recharger,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"bZ" = (
-/obj/machinery/door/airlock/vault,
-/obj/effect/mapping_helpers/airlock/locked,
-/obj/effect/turf_decal/corner/opaque/black{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/black{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"cc" = (
-/obj/machinery/door/airlock/research{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/door/poddoor/shutters{
- id = "rd4";
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"cd" = (
-/obj/effect/spawner/structure/window/plasma/reinforced,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"cl" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/shutters{
- id = "rd1";
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"cy" = (
-/obj/item/crowbar/power,
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/carpet/blue,
-/area/ruin/powered)
-"cI" = (
-/obj/effect/decal/cleanable/blood,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"dg" = (
-/obj/machinery/cryopod{
- dir = 4
- },
-/obj/effect/mob_spawn/human/corpse/assistant{
- outfit = /datum/outfit/job/cmo
- },
-/mob/living/simple_animal/hostile/zombie,
-/turf/open/floor/mineral/titanium/blue,
-/area/ruin/powered)
-"dh" = (
-/obj/structure/table,
-/obj/item/reagent_containers/glass/bottle/romerol{
- desc = "A serum that restart a patients heart without the use of a defibilator. Although it deals tissue damage when its in a alive patient, it heals organ damage. The more badly damaged a a patient is, the more resucator is needed.";
- name = "resuscator bottle"
- },
-/obj/item/reagent_containers/syringe,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"dj" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/shutters{
- id = "celock";
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"dm" = (
-/mob/living/simple_animal/hostile/zombie,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"dv" = (
-/obj/effect/decal/cleanable/blood/drip,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/carpet/royalblue,
-/area/ruin/powered)
-"dS" = (
-/obj/machinery/door/airlock/command/glass{
- id_tag = list(103);
- name = "Chief Engineer's Office";
- dir = 4
- },
-/obj/machinery/door/poddoor/shutters{
- id = "celock";
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"dV" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"ek" = (
-/turf/closed/wall,
-/area/ruin/powered)
-"eo" = (
-/obj/effect/decal/cleanable/blood/splatter,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"eD" = (
-/obj/machinery/door/airlock/maintenance_hatch,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"eJ" = (
-/obj/machinery/door/airlock/maintenance_hatch{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"eP" = (
-/obj/effect/gibspawner/human,
-/obj/item/bodypart/head,
-/obj/item/clothing/head/beret/chem,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"eQ" = (
-/obj/structure/table/wood/reinforced,
-/obj/item/storage/fancy/cigarettes/cigars/havana,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/carpet/royalblue,
-/area/ruin/powered)
-"eX" = (
-/obj/effect/turf_decal/industrial/warning/cee,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/poddoor{
- id = "medical_lock_medlock";
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/powered)
-"fd" = (
-/obj/item/shard{
- icon_state = "small"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/corner/opaque/black{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/black{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"fe" = (
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 4
- },
-/obj/effect/mob_spawn/human/corpse/damaged{
- disease = /datum/disease/brainrot;
- outfit = /datum/outfit/job/assistant
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/white,
-/area/ruin/powered)
-"fj" = (
-/obj/machinery/suit_storage_unit/rd,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"fq" = (
-/obj/machinery/door/airlock/medical/glass{
- dir = 4
- },
-/obj/machinery/door/poddoor/shutters{
- id = "medical_lock_lobby";
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/powered)
-"fQ" = (
-/obj/effect/turf_decal/number/two{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"fW" = (
-/obj/machinery/power/emitter/welded{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"gb" = (
-/mob/living/simple_animal/hostile/zombie,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"gg" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/shutters{
- id = "rd1"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"gi" = (
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 1
- },
-/obj/machinery/harvester,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/white,
-/area/ruin/powered)
-"gk" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/closed/wall/r_wall/rust,
-/area/ruin/powered)
-"gE" = (
-/obj/structure/table,
-/obj/item/folder,
-/obj/item/reagent_containers/glass/beaker,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"gJ" = (
-/obj/machinery/modular_computer/console/preset/engineering{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"gL" = (
-/obj/item/shard{
- icon_state = "medium"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "rd3";
- dir = 8
- },
-/obj/effect/decal/cleanable/glass,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"gP" = (
-/obj/item/shard,
-/obj/item/shard{
- icon_state = "small"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "rd3";
- dir = 8
- },
-/obj/effect/decal/cleanable/glass,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"gY" = (
-/obj/effect/turf_decal/corner/opaque/blue,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/white,
-/area/ruin/powered)
-"hi" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/shutters{
- id = "celock";
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"hk" = (
-/obj/machinery/door/airlock/maintenance_hatch{
- dir = 8
- },
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"hC" = (
-/obj/machinery/light/small/directional/south,
-/obj/machinery/door/poddoor/preopen,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/button/door{
- id = "a";
- name = "door lock";
- pixel_x = -8;
- pixel_y = -23
- },
-/obj/machinery/button/door{
- id = "b";
- name = "door lock";
- pixel_x = 1;
- pixel_y = -23
- },
-/obj/machinery/button/door{
- id = "c";
- name = "door lock";
- pixel_x = 10;
- pixel_y = -23
- },
-/turf/open/floor/vault,
-/area/ruin/powered)
-"hI" = (
-/mob/living/simple_animal/hostile/zombie,
-/mob/living/simple_animal/hostile/zombie,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"ii" = (
-/obj/structure/chair/office{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/carpet/blue,
-/area/ruin/powered)
-"it" = (
-/obj/machinery/door/poddoor/preopen{
- dir = 4
- },
-/obj/effect/spawner/lootdrop/maintenance/five,
-/obj/structure/closet/crate,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/vault,
-/area/ruin/powered)
-"iu" = (
-/obj/structure/table/glass,
-/obj/item/toy/figure/cmo,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"ix" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/door/poddoor/shutters{
- id = "rd4";
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"iA" = (
-/obj/machinery/atmospherics/components/unary/portables_connector,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/engine,
-/area/ruin/powered)
-"iH" = (
-/turf/open/floor/plasteel/airless,
-/area/ruin/powered)
-"iN" = (
-/obj/machinery/door/window,
-/turf/open/floor/carpet/blue,
-/area/ruin/powered)
-"iR" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/door/poddoor/preopen{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"jq" = (
-/obj/structure/table/wood/reinforced,
-/obj/item/cigbutt/cigarbutt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/carpet/royalblue,
-/area/ruin/powered)
-"jx" = (
-/obj/machinery/door/airlock/maintenance_hatch{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"jA" = (
-/obj/machinery/door/airlock/external/glass{
- dir = 4
- },
-/obj/structure/fans/tiny,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"jI" = (
-/obj/machinery/button/door{
- id = "medical_lock_lobby";
- name = "door lock";
- pixel_x = -8;
- pixel_y = 25
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/white,
-/area/ruin/powered)
-"jP" = (
-/mob/living/simple_animal/hostile/zombie,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/corner/opaque/black{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/black{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"jW" = (
-/obj/machinery/door/poddoor/preopen,
-/obj/effect/gibspawner/human,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"kl" = (
-/obj/machinery/portable_atmospherics/canister/nitrogen,
-/obj/machinery/atmospherics/components/unary/portables_connector{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/engine,
-/area/ruin/powered)
-"kq" = (
-/obj/structure/chair/office{
- dir = 4
- },
-/obj/effect/decal/cleanable/blood/drip,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/carpet/blue,
-/area/ruin/powered)
-"ku" = (
-/obj/machinery/atmospherics/pipe/manifold/brown/visible,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/engine,
-/area/ruin/powered)
-"kB" = (
-/obj/effect/decal/cleanable/blood,
-/obj/item/bodypart/l_arm,
-/obj/item/clothing/gloves/color/yellow,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/carpet/blue,
-/area/ruin/powered)
-"kT" = (
-/obj/machinery/door/poddoor/ert{
- id = "c";
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"kX" = (
-/obj/effect/gibspawner/human,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"le" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/shutters{
- id = "medical_lock_lobby";
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"lu" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"lL" = (
-/obj/machinery/door/airlock/engineering/glass/critical{
- dir = 8
- },
-/obj/effect/mapping_helpers/airlock/locked,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"lR" = (
-/obj/machinery/door/poddoor/preopen,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"lZ" = (
-/obj/structure/sink{
- dir = 4;
- pixel_x = -12
- },
-/obj/effect/gibspawner/human,
-/mob/living/simple_animal/hostile/zombie,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"mS" = (
-/obj/machinery/power/terminal{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"nc" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/glass,
-/turf/closed/wall/r_wall/rust,
-/area/ruin/powered)
-"ng" = (
-/obj/effect/gibspawner/human,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"nR" = (
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 8
- },
-/obj/machinery/sleeper{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/white,
-/area/ruin/powered)
-"nV" = (
-/obj/item/shard,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "rd3"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/glass,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"os" = (
-/obj/item/mop,
-/obj/structure/mopbucket,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"oN" = (
-/obj/machinery/door/airlock/maintenance_hatch{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"oP" = (
-/obj/machinery/light/small/directional/north,
-/obj/machinery/door/poddoor/preopen,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/vault,
-/area/ruin/powered)
-"oV" = (
-/obj/item/kirbyplants/random,
-/obj/machinery/door/poddoor{
- id = "medical_lock_medlock"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/white,
-/area/ruin/powered)
-"po" = (
-/obj/machinery/door/airlock/maintenance_hatch,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"pI" = (
-/obj/machinery/door/poddoor/preopen{
- dir = 4
- },
-/obj/structure/closet/crate,
-/obj/effect/spawner/lootdrop/maintenance/five,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/vault,
-/area/ruin/powered)
-"pM" = (
-/turf/closed/wall/mineral/titanium/nodiagonal,
-/area/ruin/powered)
-"pO" = (
-/obj/machinery/power/supermatter_crystal/shard,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/engine,
-/area/ruin/powered)
-"pP" = (
-/obj/structure/chair/office,
-/turf/open/floor/carpet/blue,
-/area/ruin/powered)
-"qd" = (
-/obj/machinery/door/poddoor{
- id = "medical_lock_medlock"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/white,
-/area/ruin/powered)
-"qm" = (
-/obj/machinery/light/small/directional/east,
-/obj/machinery/door/poddoor/preopen{
- dir = 4
- },
-/obj/effect/decal/cleanable/blood/splatter,
-/obj/structure/sign/poster/retro/nanotrasen_logo_70s{
- pixel_x = 32
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/vault,
-/area/ruin/powered)
-"qr" = (
-/obj/item/kirbyplants/random,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/corner/opaque/orange{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"qs" = (
-/obj/machinery/door/airlock/research{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/door/poddoor/shutters{
- id = "rd1";
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"qU" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/door/poddoor/preopen{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"qW" = (
-/obj/structure/table/reinforced,
-/obj/item/toy/figure/ce,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"rK" = (
-/turf/closed/wall/mineral/titanium,
-/area/ruin/powered)
-"rO" = (
-/obj/machinery/door/airlock/research{
- dir = 8
- },
-/obj/effect/mapping_helpers/airlock/abandoned,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "rd3";
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"rS" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/on{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/engine,
-/area/ruin/powered)
-"rX" = (
-/obj/machinery/door/poddoor{
- dir = 8
- },
-/turf/open/floor/plating/airless,
-/area/ruin/powered)
-"rY" = (
-/obj/effect/mob_spawn/human/corpse/assistant{
- outfit = /datum/outfit/job/doctor
- },
-/obj/effect/decal/cleanable/blood,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"sd" = (
-/obj/machinery/door/airlock/vault,
-/obj/machinery/door/poddoor/shutters{
- id = "celock"
- },
-/obj/effect/turf_decal/corner/opaque/black{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/black{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"sn" = (
-/obj/machinery/door/poddoor/preopen{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/vault,
-/area/ruin/powered)
-"so" = (
-/obj/machinery/computer/card{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"sA" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/carpet/blue,
-/area/ruin/powered)
-"sE" = (
-/obj/effect/spawner/structure/window/shuttle,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"tv" = (
-/obj/machinery/door/airlock/external/glass{
- dir = 4
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/ruin/powered)
-"tF" = (
-/obj/machinery/door/poddoor/preopen{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"tI" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/corner/opaque/orange{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"tQ" = (
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 4
- },
-/obj/effect/gibspawner/human,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/white,
-/area/ruin/powered)
-"tW" = (
-/obj/machinery/door/airlock/external/glass{
- dir = 4
- },
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 8
- },
-/obj/structure/fans/tiny,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"tZ" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/obj/item/ammo_box/magazine/m10mm{
- start_empty = 1
- },
-/turf/open/floor/vault,
-/area/ruin/powered)
-"ue" = (
-/obj/machinery/suit_storage_unit/ce,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"uF" = (
-/obj/structure/table/optable,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"uG" = (
-/obj/machinery/door/airlock/engineering/glass/critical{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/engine,
-/area/ruin/powered)
-"uL" = (
-/obj/item/shard{
- icon_state = "small"
- },
-/obj/structure/table,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"uM" = (
-/obj/effect/turf_decal/number/four{
- dir = 4
- },
-/mob/living/simple_animal/hostile/zombie,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"vb" = (
-/obj/machinery/door/poddoor/ert{
- id = "b"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"vO" = (
-/obj/structure/table/optable,
-/obj/effect/mob_spawn/human/corpse/assistant/brainrot_infection,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"vP" = (
-/obj/machinery/atmospherics/pipe/simple/brown/visible{
- dir = 6
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/engine,
-/area/ruin/powered)
-"vU" = (
-/obj/structure/table/wood/reinforced,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/carpet/royalblue,
-/area/ruin/powered)
-"vW" = (
-/obj/structure/bed,
-/obj/item/bedsheet/captain,
-/turf/open/floor/carpet/royalblue,
-/area/ruin/powered)
-"wa" = (
-/obj/machinery/door/airlock/maintenance_hatch,
-/turf/open/floor/plating/airless,
-/area/ruin/powered)
-"wb" = (
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/carpet/royalblue,
-/area/ruin/powered)
-"wx" = (
-/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/engine,
-/area/ruin/powered)
-"xf" = (
-/obj/machinery/door/poddoor/preopen{
- dir = 8
- },
-/obj/effect/decal/cleanable/blood/splatter,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/vault,
-/area/ruin/powered)
-"xx" = (
-/obj/machinery/door/poddoor/ert{
- id = "b";
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"xO" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/white,
-/area/ruin/powered)
-"yC" = (
-/obj/machinery/door/poddoor/ert{
- id = "a"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"yE" = (
-/obj/structure/bed,
-/obj/item/bedsheet/dorms,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"yG" = (
-/obj/structure/toilet{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"yP" = (
-/obj/structure/closet/secure_closet{
- icon_state = "rd";
- name = "chief doctor's locker";
- req_access = list(103)
- },
-/obj/item/storage/box/hypospray/CMO,
-/obj/item/storage/photo_album/CMO,
-/obj/item/melee/classic_baton,
-/obj/item/storage/firstaid/ancient,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"yQ" = (
-/obj/machinery/door/poddoor/preopen,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/vault,
-/area/ruin/powered)
-"yR" = (
-/obj/structure/chair/office{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/carpet/royalblue,
-/area/ruin/powered)
-"yX" = (
-/obj/structure/chair/office{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/carpet/blue,
-/area/ruin/powered)
-"zk" = (
-/obj/effect/decal/cleanable/blood/splatter,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/carpet/blue,
-/area/ruin/powered)
-"zn" = (
-/obj/machinery/door/airlock/research{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/door/poddoor/shutters{
- id = "rd2";
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"zx" = (
-/obj/effect/decal/cleanable/blood/gibs/core,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/vault,
-/area/ruin/powered)
-"zZ" = (
-/obj/machinery/door/airlock/medical{
- name = "OR"
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"Ae" = (
-/obj/machinery/button/door{
- id = "b";
- name = "door lock";
- pixel_x = -25;
- pixel_y = 10
- },
-/obj/machinery/button/door{
- id = "captain_lock";
- name = "door lock";
- pixel_x = -25;
- pixel_y = 1
- },
-/turf/open/floor/carpet/blue,
-/area/ruin/powered)
-"Aj" = (
-/obj/structure/marker_beacon,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"An" = (
-/turf/closed/indestructible/reinforced,
-/area/ruin/powered)
-"As" = (
-/obj/effect/spawner/structure/window/reinforced/shutters,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"AI" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/closed/wall/r_wall,
-/area/ruin/powered)
-"AQ" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/door/poddoor/shutters{
- id = "rd1";
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"AR" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- icon_state = "platingdmg2";
- initial_gas_mix = "o2=22;n2=82;TEMP=503.15"
- },
-/area/ruin/powered)
-"AT" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"Bk" = (
-/obj/structure/table/wood/reinforced,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/carpet/royalblue,
-/area/ruin/powered)
-"Bl" = (
-/obj/structure/sink{
- dir = 4;
- pixel_x = -12
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"Bm" = (
-/obj/structure/table/wood,
-/obj/machinery/door/window,
-/turf/open/floor/wood,
-/area/ruin/powered)
-"BD" = (
-/obj/effect/decal/cleanable/blood/splatter,
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 6
- },
-/mob/living/simple_animal/hostile/zombie,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"BG" = (
-/mob/living/simple_animal/hostile/zombie,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"BO" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/door/poddoor/shutters{
- id = "rd4"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"BS" = (
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 4
- },
-/obj/effect/turf_decal/corner/opaque/blue,
-/obj/machinery/medical_kiosk,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/white,
-/area/ruin/powered)
-"Ca" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/engine,
-/area/ruin/powered)
-"CJ" = (
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 9
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/powered)
-"CO" = (
-/obj/machinery/atmospherics/pipe/simple/brown/visible{
- dir = 5
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/engine,
-/area/ruin/powered)
-"Dn" = (
-/obj/structure/shuttle/engine/propulsion/burst{
- dir = 4
- },
-/turf/closed/wall/mineral/titanium/nodiagonal,
-/area/ruin/powered)
-"Dp" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"DF" = (
-/obj/structure/table/wood/reinforced,
-/obj/item/toy/redbutton,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/carpet/royalblue,
-/area/ruin/powered)
-"DK" = (
-/obj/machinery/door/poddoor/ert{
- id = "a";
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"DU" = (
-/obj/structure/window/plasma/reinforced/spawner{
- dir = 1
- },
-/obj/machinery/power/rad_collector/anchored,
-/obj/machinery/atmospherics/pipe/simple/brown/visible,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/engine,
-/area/ruin/powered)
-"DW" = (
-/obj/machinery/door/airlock/vault,
-/obj/machinery/door/poddoor{
- id = "medical_lock_medlock";
- dir = 4
- },
-/obj/effect/turf_decal/corner/opaque/black{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/black{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Ea" = (
-/obj/item/shard{
- icon_state = "medium"
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "rd3"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/glass,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Ee" = (
-/obj/structure/table/optable,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"Ey" = (
-/obj/item/storage/backpack/duffelbag/syndie/c4,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/vault,
-/area/ruin/powered)
-"Ez" = (
-/turf/open/floor/plating/airless,
-/area/ruin/powered)
-"EH" = (
-/turf/closed/wall/r_wall,
-/area/ruin/powered)
-"EJ" = (
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/carpet/blue,
-/area/ruin/powered)
-"EL" = (
-/obj/structure/window/reinforced,
-/obj/structure/table/wood,
-/obj/machinery/computer/card{
- dir = 8
- },
-/turf/open/floor/wood,
-/area/ruin/powered)
-"EN" = (
-/obj/structure/toilet{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"Fk" = (
-/obj/structure/closet/secure_closet{
- icon_state = "ce";
- name = "chief engineer's locker";
- req_access = list(103)
- },
-/obj/item/clothing/under/rank/engineering/chief_engineer,
-/obj/item/weldingtool/hugetank,
-/obj/item/clothing/mask/gas/welding,
-/obj/item/clothing/gloves/combat,
-/obj/item/clothing/glasses/meson/engine,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"Fn" = (
-/obj/item/gun/ballistic/derringer,
-/obj/item/ammo_casing{
- dir = 5;
- pixel_x = 10
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"Fq" = (
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/powered)
-"FE" = (
-/obj/machinery/computer/rdconsole/production{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"FI" = (
-/turf/template_noop,
-/area/template_noop)
-"FO" = (
-/obj/structure/table/glass,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"FQ" = (
-/obj/machinery/door/poddoor/preopen{
- dir = 8
- },
-/obj/machinery/light/small/directional/west{
- brightness = 3
- },
-/obj/structure/sign/poster/retro/nanotrasen_logo_70s{
- pixel_x = -32
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/vault,
-/area/ruin/powered)
-"Gb" = (
-/obj/item/kirbyplants/random,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/corner/opaque/black{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/black{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Gf" = (
-/obj/machinery/door/poddoor/preopen{
- dir = 8
- },
-/turf/open/floor/plating/airless,
-/area/ruin/powered)
-"Gx" = (
-/obj/structure/table/glass,
-/obj/item/modular_computer/laptop/preset/civilian,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"GH" = (
-/obj/item/clothing/head/hardhat/white,
-/turf/template_noop,
-/area/template_noop)
-"GO" = (
-/obj/item/shard{
- icon_state = "medium"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/corner/opaque/black{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/black{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"GQ" = (
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"GY" = (
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 4
- },
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/white,
-/area/ruin/powered)
-"Hc" = (
-/obj/structure/bed,
-/obj/item/bedsheet/dorms,
-/obj/effect/mob_spawn/human/corpse/damaged{
- disease = null;
- outfit = /datum/outfit/job/assistant
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"Hf" = (
-/obj/machinery/door/poddoor{
- id = "medical_lock_medlock";
- dir = 8
- },
-/obj/effect/turf_decal/industrial/warning/cee{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/white,
-/area/ruin/powered)
-"Hx" = (
-/obj/machinery/door/poddoor/preopen,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"Hy" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/corner/opaque/orange{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"HA" = (
-/obj/machinery/atmospherics/pipe/manifold/brown/visible{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/engine,
-/area/ruin/powered)
-"Ib" = (
-/obj/machinery/door/poddoor/shutters{
- id = "medical_lock_lobby";
- dir = 8
- },
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"If" = (
-/obj/structure/grille,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Iw" = (
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/white,
-/area/ruin/powered)
-"IA" = (
-/obj/structure/displaycase/captain{
- start_showpiece_type = /obj/item/gun/energy/laser/hitscanpistol
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/vault,
-/area/ruin/powered)
-"IH" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/poddoor{
- id = "medical_lock_medlock";
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/powered)
-"IM" = (
-/obj/structure/chair/office,
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/carpet/royalblue,
-/area/ruin/powered)
-"IS" = (
-/obj/machinery/door/firedoor/window{
- density = 1;
- icon_state = "door_closed";
- opacity = 1
- },
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"IV" = (
-/obj/item/shard,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/corner/opaque/black{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/black{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Jh" = (
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 6
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Jm" = (
-/obj/machinery/door/poddoor/preopen,
-/obj/structure/sign/poster/retro/nanotrasen_logo_80s{
- pixel_x = -32
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Ju" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/engine,
-/area/ruin/powered)
-"JH" = (
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"JI" = (
-/turf/open/floor/carpet/blue,
-/area/ruin/powered)
-"JJ" = (
-/obj/structure/tank_dispenser,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/corner/opaque/orange{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"JM" = (
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 8
- },
-/obj/structure/table/glass,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/white,
-/area/ruin/powered)
-"JP" = (
-/obj/effect/decal/cleanable/blood/drip,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/carpet/blue,
-/area/ruin/powered)
-"Kd" = (
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Kk" = (
-/obj/item/reagent_containers/glass/mortar,
-/obj/item/pestle,
-/obj/effect/gibspawner/human,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"Ko" = (
-/obj/item/ammo_casing{
- dir = 9;
- pixel_y = 11
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"Kp" = (
-/obj/machinery/power/smes,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Kw" = (
-/obj/effect/mob_spawn/human/corpse/damaged{
- disease = /datum/disease/brainrot;
- outfit = /datum/outfit/job/assistant
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"KF" = (
-/obj/machinery/atmospherics/pipe/simple/brown/visible{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/engine,
-/area/ruin/powered)
-"KG" = (
-/obj/machinery/door/airlock/command/glass{
- id_tag = list(103);
- name = "Chief Doctor's Office"
- },
-/obj/machinery/door/poddoor/shutters{
- id = "medical_lock_cmo"
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"KJ" = (
-/obj/item/gun/ballistic/revolver/detective{
- spawnwithmagazine = 0
- },
-/obj/effect/decal/cleanable/blood,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/carpet/royalblue,
-/area/ruin/powered)
-"KK" = (
-/obj/structure/table/wood,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced,
-/obj/machinery/computer/communications{
- dir = 1
- },
-/turf/open/floor/wood,
-/area/ruin/powered)
-"KQ" = (
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/white,
-/area/ruin/powered)
-"Lt" = (
-/obj/machinery/button/door{
- id = "celock";
- name = "door lock";
- pixel_x = 6;
- pixel_y = 25
- },
-/obj/machinery/button/door{
- id = "c";
- name = "door lock";
- pixel_x = -6;
- pixel_y = 25
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"LA" = (
-/obj/structure/chair/office{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"LD" = (
-/mob/living/simple_animal/hostile/zombie,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/carpet/royalblue,
-/area/ruin/powered)
-"LI" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/corner/opaque/black{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/black{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"LO" = (
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/white,
-/area/ruin/powered)
-"Mb" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/door/poddoor/shutters{
- id = "rd2";
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Mk" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/shutters{
- id = "celock";
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Ml" = (
-/obj/structure/sink{
- dir = 8;
- pixel_x = 13
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"Mx" = (
-/obj/machinery/door/poddoor/preopen{
- dir = 4
- },
-/obj/machinery/light/small/directional/west{
- brightness = 3
- },
-/obj/structure/sign/poster/retro/nanotrasen_logo_70s{
- pixel_x = -32
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/vault,
-/area/ruin/powered)
-"ML" = (
-/obj/machinery/door/poddoor/preopen,
-/obj/structure/closet/crate,
-/obj/effect/spawner/lootdrop/maintenance/five,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/vault,
-/area/ruin/powered)
-"Nq" = (
-/obj/structure/closet/secure_closet/chemical,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"NH" = (
-/obj/structure/window/plasma/reinforced/spawner,
-/obj/machinery/power/rad_collector/anchored,
-/obj/machinery/atmospherics/pipe/simple/brown/visible,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/engine,
-/area/ruin/powered)
-"NM" = (
-/obj/machinery/door/poddoor{
- dir = 8
- },
-/turf/open/floor/plasteel/airless,
-/area/ruin/powered)
-"NU" = (
-/obj/structure/table/wood/reinforced,
-/obj/item/flashlight/lamp/green,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/carpet/royalblue,
-/area/ruin/powered)
-"OE" = (
-/obj/effect/turf_decal/corner/opaque/blue,
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 1
- },
-/obj/effect/gibspawner/human,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/white,
-/area/ruin/powered)
-"OJ" = (
-/obj/machinery/computer/crew{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"OV" = (
-/obj/structure/table/reinforced,
-/obj/item/paper_bin/carbon,
-/obj/item/pen,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"OX" = (
-/obj/structure/table,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"Pe" = (
-/obj/effect/decal/cleanable/blood/splatter,
-/obj/item/clothing/head/hopcap{
- desc = "It's good to be the king.";
- icon = 'icons/obj/clothing/hats.dmi';
- mob_overlay_icon = 'icons/mob/clothing/head.dmi';
- name = "captains's cap";
- pixel_x = 5;
- pixel_y = -4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/carpet/blue,
-/area/ruin/powered)
-"Pn" = (
-/obj/effect/mob_spawn/human/corpse/syndicatesoldier,
-/obj/effect/decal/cleanable/blood,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/vault,
-/area/ruin/powered)
-"PC" = (
-/obj/machinery/door/airlock/maintenance_hatch{
- dir = 4
- },
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"PJ" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/vault,
-/area/ruin/powered)
-"Qz" = (
-/obj/structure/window/reinforced,
-/obj/structure/table/wood,
-/turf/open/floor/wood,
-/area/ruin/powered)
-"QI" = (
-/obj/item/kirbyplants/random,
-/obj/machinery/door/poddoor{
- id = "medical_lock_medlock"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/white,
-/area/ruin/powered)
-"QM" = (
-/obj/structure/table/glass,
-/obj/item/paper_bin/carbon,
-/obj/item/pen,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"QP" = (
-/obj/structure/filingcabinet/chestdrawer,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"QQ" = (
-/obj/structure/closet/secure_closet{
- icon_state = "cap";
- name = "captain's locker";
- req_access = list(103)
- },
-/obj/item/ammo_box/c38,
-/obj/item/melee/sabre,
-/obj/item/clothing/suit/hooded/wintercoat/captain,
-/obj/item/clothing/head/beret/captain,
-/obj/item/card/id/captains_spare,
-/turf/open/floor/carpet/royalblue,
-/area/ruin/powered)
-"QW" = (
-/obj/effect/gibspawner/human,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Rs" = (
-/obj/machinery/light/small/directional/east,
-/obj/machinery/door/poddoor/preopen{
- dir = 4
- },
-/obj/structure/sign/poster/retro/nanotrasen_logo_70s{
- pixel_x = 32
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/vault,
-/area/ruin/powered)
-"Rw" = (
-/obj/machinery/door/poddoor/preopen,
-/obj/structure/closet/crate,
-/obj/effect/spawner/lootdrop/maintenance/five,
-/obj/item/camera_bug,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/vault,
-/area/ruin/powered)
-"Sm" = (
-/obj/effect/turf_decal/corner/opaque/blue,
-/obj/structure/table/glass,
-/obj/item/defibrillator/loaded,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/white,
-/area/ruin/powered)
-"SR" = (
-/obj/machinery/door/poddoor{
- id = "medical_lock_medlock"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/white,
-/area/ruin/powered)
-"SU" = (
-/obj/structure/table/reinforced,
-/obj/item/pipe_dispenser,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"Tb" = (
-/obj/effect/turf_decal/number/one{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"Tf" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/shutters{
- id = "rd2";
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Tr" = (
-/obj/machinery/computer/crew{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"TB" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/carpet/royalblue,
-/area/ruin/powered)
-"TD" = (
-/obj/effect/gibspawner/human,
-/mob/living/simple_animal/hostile/zombie,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"Uv" = (
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 4
- },
-/obj/structure/sign/poster/retro/nanotrasen_logo_80s{
- pixel_x = -32
- },
-/obj/structure/table/glass,
-/obj/item/storage/firstaid/ancient,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/white,
-/area/ruin/powered)
-"UL" = (
-/turf/closed/wall/rust,
-/area/ruin/powered)
-"UR" = (
-/obj/effect/gibspawner/human,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/carpet/royalblue,
-/area/ruin/powered)
-"UU" = (
-/obj/machinery/button/door{
- id = "rd4";
- name = "door lock";
- pixel_x = 6;
- pixel_y = 29
- },
-/obj/machinery/button/door{
- id = "rd3";
- name = "door lock";
- pixel_x = -6;
- pixel_y = 29
- },
-/obj/machinery/button/door{
- id = "rd1";
- name = "door lock";
- pixel_x = -6;
- pixel_y = 38
- },
-/obj/machinery/button/door{
- id = "rd2";
- name = "door lock";
- pixel_x = 6;
- pixel_y = 38
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/corner/opaque/black{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/black{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Vh" = (
-/obj/structure/toilet{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"Vj" = (
-/turf/closed/wall/r_wall/rust,
-/area/ruin/powered)
-"Vk" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"VE" = (
-/mob/living/simple_animal/hostile/zombie,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"VN" = (
-/obj/structure/table/reinforced,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/corner/opaque/black{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/black{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"VV" = (
-/obj/structure/bed,
-/obj/item/bedsheet/dorms,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"Wl" = (
-/obj/item/shard{
- icon_state = "medium"
- },
-/obj/item/shard{
- icon_state = "small"
- },
-/obj/item/shard,
-/obj/effect/gibspawner/human,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "rd3";
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/glass,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"WU" = (
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Xb" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/powered)
-"Xc" = (
-/obj/item/kirbyplants/random,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Xg" = (
-/obj/machinery/door/airlock/vault,
-/obj/machinery/door/poddoor/shutters{
- id = "captain_lock"
- },
-/obj/effect/turf_decal/corner/opaque/black{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/black{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Xw" = (
-/obj/machinery/computer{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/corner/opaque/black{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/black{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"Xx" = (
-/obj/structure/table/glass,
-/obj/item/storage/backpack/duffelbag/med/surgery,
-/obj/item/reagent_containers/medigel/sterilizine,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"Xz" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/ruin/powered)
-"XA" = (
-/obj/structure/curtain,
-/turf/open/floor/carpet/royalblue,
-/area/ruin/powered)
-"XB" = (
-/mob/living/simple_animal/hostile/zombie,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"XC" = (
-/obj/machinery/door/airlock/command/glass{
- id_tag = list(103);
- name = "Captain's Office";
- dir = 4
- },
-/obj/machinery/door/poddoor/shutters{
- id = "captain_lock";
- dir = 4
- },
-/turf/open/floor/carpet/blue,
-/area/ruin/powered)
-"XF" = (
-/obj/item/gun/ballistic/automatic/pistol/no_mag,
-/obj/effect/decal/cleanable/blood/gibs,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/vault,
-/area/ruin/powered)
-"XG" = (
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/blue,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/white,
-/area/ruin/powered)
-"XH" = (
-/obj/item/kirbyplants/random,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"XK" = (
-/obj/machinery/atmospherics/pipe/simple/brown/visible{
- dir = 10
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/engine,
-/area/ruin/powered)
-"XN" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/obj/item/paper/crumpled{
- default_raw_text = "the buttons... open the doors... did i ever mention how the buttons open the doors?"
- },
-/turf/open/floor/vault,
-/area/ruin/powered)
-"Yl" = (
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 4
- },
-/obj/effect/turf_decal/corner/opaque/blue,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/white,
-/area/ruin/powered)
-"YM" = (
-/obj/machinery/door/poddoor/ert{
- id = "c"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Zt" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/shutters{
- id = "rd2"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Zu" = (
-/obj/machinery/door/poddoor/preopen,
-/mob/living/simple_animal/hostile/zombie,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered)
-"ZB" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/corner/opaque/orange{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered)
-"ZQ" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"ZW" = (
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/ruin/powered)
-
-(1,1,1) = {"
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-Vj
-NM
-rX
-rX
-Gf
-EH
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-"}
-(2,1,1) = {"
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-EH
-Ez
-iH
-Ez
-iH
-EH
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-"}
-(3,1,1) = {"
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-Vj
-Ez
-iH
-Ez
-Ez
-Vj
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-"}
-(4,1,1) = {"
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-EH
-le
-fq
-fq
-Ib
-EH
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-Aj
-FI
-Aj
-Aj
-FI
-Aj
-Aj
-FI
-Aj
-FI
-"}
-(5,1,1) = {"
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-Vj
-jI
-xO
-xO
-xO
-Vj
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-Aj
-FI
-Aj
-Aj
-FI
-Aj
-Aj
-FI
-Aj
-FI
-"}
-(6,1,1) = {"
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-Vj
-EH
-Hf
-IH
-IH
-eX
-EH
-Vj
-Vj
-Vj
-Vj
-Vj
-EH
-Vj
-Vj
-EH
-Vj
-Vj
-FI
-rK
-sE
-rK
-Aj
-FI
-Aj
-Aj
-FI
-Aj
-FI
-"}
-(7,1,1) = {"
-FI
-FI
-FI
-FI
-FI
-FI
-Vj
-Vj
-Vj
-Vj
-Vj
-QI
-gY
-Yl
-xO
-Sm
-Uv
-oV
-ZQ
-aT
-iu
-lu
-Tr
-EH
-If
-WU
-If
-Vj
-FI
-pM
-dg
-pM
-Aj
-FI
-Aj
-Aj
-FI
-Aj
-FI
-"}
-(8,1,1) = {"
-FI
-FI
-FI
-FI
-FI
-FI
-Vj
-Xx
-lu
-FO
-UL
-qd
-KQ
-OE
-fe
-XG
-LO
-SR
-ZQ
-lu
-Gx
-LA
-fj
-wa
-Dp
-Dp
-Vj
-EH
-Vj
-Dn
-tv
-Dn
-Aj
-FI
-Aj
-Aj
-FI
-Aj
-FI
-"}
-(9,1,1) = {"
-FI
-FI
-FI
-FI
-FI
-FI
-Vj
-Ee
-rY
-cI
-zZ
-qd
-gY
-Iw
-XG
-tQ
-xO
-SR
-KG
-lu
-QM
-Fn
-yP
-EH
-If
-Dp
-Dp
-If
-EH
-EH
-jA
-Vj
-EH
-tW
-EH
-Vj
-jA
-EH
-Vj
-"}
-(10,1,1) = {"
-FI
-FI
-FI
-FI
-FI
-FI
-Vj
-bx
-gb
-FO
-UL
-QI
-nR
-gi
-JM
-BS
-GY
-oV
-ZQ
-Kw
-lu
-Ko
-Vj
-Vj
-EH
-Vj
-Dp
-Dp
-EH
-Xb
-Dp
-Xb
-Dp
-ZW
-Dp
-Dp
-Xb
-Dp
-EH
-"}
-(11,1,1) = {"
-FI
-FI
-FI
-EH
-Vj
-Vj
-Vj
-Vj
-Kd
-Vj
-Vj
-EH
-Vj
-EH
-Vj
-EH
-DW
-Vj
-EH
-Vj
-EH
-EH
-Vj
-Nq
-eP
-EH
-EH
-WU
-Vj
-CJ
-GQ
-Fq
-GQ
-Jh
-Xb
-Xb
-Dp
-Dp
-Vj
-"}
-(12,1,1) = {"
-FI
-FI
-FI
-EH
-gJ
-Fk
-ue
-Kd
-ek
-Vj
-Vj
-Dp
-Vk
-Dp
-Vk
-Jm
-dm
-lR
-Vk
-Dp
-Dp
-Vk
-EH
-EH
-Kk
-TD
-eD
-Dp
-EH
-ZW
-Dp
-Xb
-Xb
-Xb
-Dp
-Dp
-Xb
-Xb
-EH
-"}
-(13,1,1) = {"
-FI
-FI
-FI
-Vj
-Lt
-Vk
-Vk
-Vk
-EH
-EH
-Hx
-XB
-Dp
-Dp
-kX
-Hx
-Dp
-lR
-Dp
-Vk
-Dp
-Dp
-lR
-Vj
-EH
-Vj
-EH
-Dp
-EH
-PC
-Vj
-Vj
-Dp
-Dp
-Xb
-Dp
-Dp
-Xb
-Vj
-"}
-(14,1,1) = {"
-FI
-FI
-FI
-Vj
-qW
-OV
-SU
-Vk
-Vj
-Dp
-QW
-lR
-Dp
-Vj
-EH
-An
-DK
-An
-EH
-EH
-Vk
-Zu
-Vk
-Dp
-EH
-If
-WU
-Dp
-bL
-BD
-WU
-EH
-Dp
-Xb
-Dp
-Dp
-Xb
-Dp
-Vj
-"}
-(15,1,1) = {"
-FI
-FI
-FI
-EH
-Vk
-Vk
-Vk
-Vk
-EH
-Dp
-Dp
-Vk
-Vj
-If
-If
-Vj
-xx
-An
-If
-If
-Vj
-Vk
-Dp
-Dp
-Vj
-EH
-Vj
-Vj
-hk
-Vj
-EH
-EH
-Vj
-EH
-EH
-ZQ
-ZQ
-ZQ
-Vj
-"}
-(16,1,1) = {"
-EH
-Vj
-EH
-Vj
-hi
-dS
-Mk
-dj
-Vj
-Vk
-Dp
-EH
-If
-An
-An
-An
-kT
-An
-An
-An
-If
-EH
-Dp
-Vk
-EH
-XH
-AT
-eo
-JH
-FE
-OJ
-QP
-Vj
-Vj
-FI
-FI
-FI
-FI
-FI
-"}
-(17,1,1) = {"
-Vj
-Xc
-dV
-ZB
-Hy
-Hy
-Hy
-JJ
-Vj
-dm
-Dp
-Vj
-If
-An
-ML
-Mx
-xf
-FQ
-pI
-An
-If
-Vj
-Dp
-Dp
-Vj
-sA
-zk
-sA
-EJ
-JP
-kq
-sA
-sA
-As
-FI
-FI
-FI
-FI
-FI
-"}
-(18,1,1) = {"
-EH
-Kp
-mS
-dV
-BG
-dV
-dV
-dV
-EH
-iR
-qU
-Vj
-An
-An
-oP
-tZ
-XN
-PJ
-hC
-An
-An
-An
-iR
-qU
-EH
-TB
-dv
-LD
-wb
-NU
-Bk
-Bk
-TB
-As
-FI
-FI
-FI
-FI
-FI
-"}
-(19,1,1) = {"
-Vj
-Kp
-mS
-dV
-dV
-BG
-dV
-dV
-sd
-Vk
-Dp
-yC
-vb
-YM
-yQ
-Pn
-IA
-zx
-yQ
-YM
-vb
-yC
-Vk
-Vk
-Xg
-UR
-TB
-TB
-IM
-vU
-DF
-Bk
-yR
-As
-FI
-FI
-FI
-FI
-FI
-"}
-(20,1,1) = {"
-Vj
-qr
-tI
-tI
-tI
-tI
-tI
-qr
-EH
-tF
-qU
-An
-Vj
-An
-oP
-XF
-Ey
-PJ
-hC
-An
-Vj
-An
-qU
-iR
-EH
-TB
-TB
-TB
-KJ
-jq
-eQ
-Bk
-TB
-As
-FI
-FI
-GH
-FI
-FI
-"}
-(21,1,1) = {"
-Vj
-cd
-cd
-cd
-lL
-cd
-cd
-cd
-Vj
-Vk
-Dp
-Vj
-If
-An
-it
-qm
-sn
-Rs
-Rw
-An
-If
-EH
-Vk
-Dp
-Vj
-sA
-sA
-zk
-ii
-Pe
-yX
-kB
-cy
-IS
-FI
-FI
-FI
-FI
-FI
-"}
-(22,1,1) = {"
-EH
-Ju
-Ju
-Ju
-Ju
-Ju
-Ju
-Ju
-EH
-hI
-Vk
-Vj
-If
-An
-An
-An
-kT
-An
-An
-An
-If
-Vj
-Dp
-Dp
-EH
-XH
-AT
-AT
-VE
-so
-bb
-AT
-EH
-EH
-FI
-FI
-FI
-FI
-FI
-"}
-(23,1,1) = {"
-EH
-vP
-kl
-EH
-uG
-EH
-iA
-CO
-Vj
-Vk
-Dp
-Vk
-Vj
-If
-If
-Vj
-xx
-An
-If
-If
-EH
-Vk
-Dp
-Vk
-Vj
-Vj
-EH
-XC
-EH
-Vj
-Vj
-jx
-EH
-FI
-FI
-FI
-FI
-FI
-FI
-"}
-(24,1,1) = {"
-Vj
-HA
-kl
-EH
-Ju
-EH
-iA
-ku
-EH
-Dp
-Dp
-jW
-Vk
-EH
-Vj
-An
-DK
-Vj
-Vj
-EH
-Vk
-lR
-Dp
-Dp
-Vj
-Ae
-KK
-JI
-Vj
-Dp
-Dp
-Dp
-Vj
-FI
-FI
-FI
-FI
-FI
-FI
-"}
-(25,1,1) = {"
-Vj
-KF
-EH
-EH
-uG
-EH
-EH
-KF
-Vj
-Vj
-Hx
-Dp
-Dp
-Dp
-Vk
-lR
-Vk
-lR
-Dp
-kX
-XB
-Dp
-Hx
-EH
-Vj
-pP
-Bm
-JI
-Vj
-WU
-If
-If
-EH
-FI
-FI
-FI
-FI
-FI
-FI
-"}
-(26,1,1) = {"
-EH
-HA
-NH
-rS
-Ju
-Ca
-DU
-ku
-Vj
-If
-EH
-Vk
-Vk
-Dp
-Dp
-lR
-Vk
-Hx
-Vk
-Dp
-Dp
-Vk
-EH
-Vj
-EH
-JI
-Qz
-JI
-Vj
-Dp
-Dp
-Vj
-Vj
-FI
-FI
-FI
-FI
-FI
-FI
-"}
-(27,1,1) = {"
-Vj
-HA
-NH
-rS
-pO
-Ca
-DU
-ku
-EH
-Vj
-Vj
-EH
-Vj
-Vj
-Vj
-EH
-bZ
-EH
-EH
-EH
-EH
-EH
-Vj
-vW
-XA
-JI
-iN
-JI
-Vj
-EH
-Dp
-Vj
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-"}
-(28,1,1) = {"
-EH
-XK
-NH
-rS
-Ju
-Ca
-DU
-ku
-Vj
-EH
-VV
-yG
-Vk
-Bl
-gg
-Gb
-LI
-Gb
-Ea
-lZ
-Vh
-yE
-Vj
-QQ
-XA
-JI
-EL
-JI
-Vj
-If
-Dp
-Vj
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-"}
-(29,1,1) = {"
-Vj
-Vj
-EH
-EH
-bd
-Vj
-EH
-wx
-EH
-Vj
-Vk
-Vk
-Vk
-dh
-gg
-LI
-LI
-GO
-Ea
-uL
-ng
-lu
-EH
-EH
-Vj
-Vj
-EH
-eJ
-EH
-EH
-WU
-Vj
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-"}
-(30,1,1) = {"
-FI
-FI
-Vj
-WU
-WU
-If
-Vj
-EH
-If
-EH
-vO
-Vk
-Tb
-gE
-gg
-LI
-LI
-jP
-nV
-OX
-uM
-gb
-Ee
-EH
-Dp
-If
-EH
-Dp
-If
-Dp
-Dp
-EH
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-"}
-(31,1,1) = {"
-FI
-FI
-EH
-If
-Dp
-WU
-WU
-Vj
-If
-Vj
-AQ
-AQ
-qs
-cl
-gk
-LI
-LI
-IV
-nc
-Wl
-rO
-gL
-gP
-EH
-Dp
-WU
-Dp
-WU
-Dp
-Dp
-EH
-Vj
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-"}
-(32,1,1) = {"
-FI
-EH
-Vj
-Dp
-Dp
-EH
-Vj
-EH
-Vj
-EH
-Gb
-LI
-LI
-LI
-LI
-LI
-LI
-fd
-jP
-LI
-LI
-LI
-Gb
-Vj
-If
-If
-Dp
-If
-EH
-Vj
-Vj
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-"}
-(33,1,1) = {"
-FI
-Vj
-If
-Dp
-fW
-If
-Vj
-Dp
-Dp
-po
-LI
-LI
-jP
-LI
-LI
-jP
-LI
-LI
-LI
-LI
-LI
-GO
-LI
-eD
-WU
-XB
-Dp
-EH
-EH
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-"}
-(34,1,1) = {"
-FI
-EH
-If
-WU
-Vj
-EH
-EH
-WU
-EH
-Vj
-Gb
-LI
-LI
-LI
-LI
-LI
-LI
-LI
-LI
-jP
-LI
-LI
-Gb
-Vj
-EH
-EH
-EH
-Vj
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-"}
-(35,1,1) = {"
-FI
-Vj
-EH
-Dp
-Vj
-os
-Vj
-Dp
-If
-EH
-Mb
-Tf
-zn
-Mb
-AI
-LI
-LI
-LI
-gk
-ix
-cc
-ix
-ix
-EH
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-"}
-(36,1,1) = {"
-FI
-FI
-Vj
-Dp
-EH
-oN
-EH
-Dp
-If
-Vj
-uF
-Vk
-fQ
-gE
-Zt
-LI
-jP
-LI
-BO
-Xz
-Xz
-Xz
-Xz
-EH
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-"}
-(37,1,1) = {"
-FI
-FI
-Vj
-WU
-Dp
-Dp
-Dp
-WU
-If
-EH
-Vk
-Vk
-Vk
-bO
-Zt
-VN
-UU
-VN
-BO
-Xz
-Xz
-AR
-Xz
-Vj
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-"}
-(38,1,1) = {"
-FI
-FI
-EH
-Vj
-Vj
-WU
-If
-Dp
-Dp
-EH
-Hc
-EN
-Vk
-Ml
-Zt
-Xw
-Xw
-Xw
-BO
-Xz
-Xz
-Xz
-Xz
-EH
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-"}
-(39,1,1) = {"
-FI
-FI
-FI
-FI
-EH
-Vj
-EH
-Vj
-EH
-Vj
-EH
-Vj
-Vj
-Vj
-EH
-Vj
-Vj
-EH
-Vj
-EH
-EH
-Vj
-EH
-EH
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-FI
-"}
diff --git a/_maps/RandomRuins/SpaceRuins/onehalf.dmm b/_maps/RandomRuins/SpaceRuins/onehalf.dmm
index 0ff038bd93d..85f087ec38a 100644
--- a/_maps/RandomRuins/SpaceRuins/onehalf.dmm
+++ b/_maps/RandomRuins/SpaceRuins/onehalf.dmm
@@ -1766,7 +1766,7 @@
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/onehalf)
"Gv" = (
-/obj/machinery/computer/communications{
+/obj/structure/frame/computer{
dir = 8
},
/turf/open/floor/plasteel,
diff --git a/_maps/RandomRuins/SpaceRuins/oretruck.dmm b/_maps/RandomRuins/SpaceRuins/oretruck.dmm
deleted file mode 100644
index 00c9b51f53c..00000000000
--- a/_maps/RandomRuins/SpaceRuins/oretruck.dmm
+++ /dev/null
@@ -1,3315 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"ac" = (
-/turf/closed/wall/mineral/plastitanium,
-/area/ruin/space/has_grav/radship/Cargo3)
-"ah" = (
-/obj/machinery/atmospherics/components/unary/tank/air{
- piping_layer = 2
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/radship/EngineRoom)
-"al" = (
-/obj/structure/sign/warning/radiation{
- pixel_y = 32
- },
-/turf/closed/mineral/random,
-/area/template_noop)
-"ao" = (
-/obj/effect/turf_decal/industrial/warning/corner,
-/obj/effect/turf_decal/trimline/opaque/orange/filled/line,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/radship/Hallway)
-"aA" = (
-/obj/effect/turf_decal/industrial/warning,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/plasteel/tech,
-/area/ruin/space/has_grav/radship/Cargo4)
-"aR" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/reagent_containers/glass/beaker/large,
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/radship/MethLab)
-"aT" = (
-/obj/item/wrench/syndie,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/radship/EngineRoom)
-"aY" = (
-/obj/item/shard{
- icon_state = "small"
- },
-/turf/template_noop,
-/area/template_noop)
-"bf" = (
-/turf/open/floor/plating/asteroid,
-/area/template_noop)
-"bj" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/radship/Engineering)
-"bx" = (
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 4
- },
-/obj/structure/radioactive/waste,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/tech,
-/area/ruin/space/has_grav/radship/Cargo2)
-"bF" = (
-/obj/structure/radioactive/waste,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/light/directional/east,
-/turf/open/floor/plasteel/tech,
-/area/ruin/space/has_grav/radship/Cargo2)
-"bK" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/table,
-/obj/item/reagent_containers/pill/floorpill,
-/obj/item/reagent_containers/pill/floorpill,
-/obj/item/reagent_containers/glass/beaker,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/radship/MethLab)
-"cn" = (
-/obj/effect/turf_decal/trimline/opaque/orange/filled/line{
- dir = 10
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/radship/Hallway)
-"cq" = (
-/obj/structure/sign/warning/radiation{
- pixel_y = -32
- },
-/obj/effect/turf_decal/trimline/opaque/orange/filled/line,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/radship/Hallway)
-"cH" = (
-/obj/structure/radioactive/stack,
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/plasteel/tech,
-/area/ruin/space/has_grav/radship/Cargo1)
-"cM" = (
-/obj/structure/radioactive/stack,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/light/directional/east,
-/turf/open/floor/plasteel/tech,
-/area/ruin/space/has_grav/radship/Cargo4)
-"cN" = (
-/obj/structure/radioactive/stack,
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/tech,
-/area/ruin/space/has_grav/radship/Cargo4)
-"dk" = (
-/turf/closed/wall/mineral/plastitanium/nodiagonal,
-/area/ruin/space/has_grav/radship/Cargo2)
-"dP" = (
-/obj/structure/radioactive,
-/obj/effect/turf_decal/industrial/warning/corner,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/tech,
-/area/ruin/space/has_grav/radship/Cargo3)
-"dZ" = (
-/obj/machinery/power/smes,
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/radship/Engineering)
-"ef" = (
-/obj/structure/table/wood,
-/obj/item/toy/nuke,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/wood/maple,
-/area/ruin/space/has_grav/radship/CrewQuarters)
-"em" = (
-/turf/closed/wall/mineral/plastitanium/overspace,
-/area/ruin/space/has_grav/radship/MethLab)
-"eF" = (
-/turf/closed/wall/mineral/plastitanium,
-/area/ruin/space/has_grav/radship/Cargo2)
-"eL" = (
-/obj/effect/turf_decal/industrial/warning,
-/obj/machinery/portable_atmospherics/canister/tritium,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/tech,
-/area/ruin/space/has_grav/radship/Cargo2)
-"eR" = (
-/obj/structure/sign/warning/securearea{
- pixel_y = 32
- },
-/turf/template_noop,
-/area/template_noop)
-"eW" = (
-/obj/structure/closet/crate,
-/obj/effect/turf_decal/industrial/warning,
-/obj/item/stack/sheet/mineral/uranium,
-/obj/item/stack/sheet/mineral/uranium,
-/obj/item/coin/uranium,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel/tech,
-/area/ruin/space/has_grav/radship/Cargo4)
-"fd" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/grunge{
- name = "Engine Room";
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/plasteel/mono/dark,
-/area/ruin/space/has_grav/radship/EngineRoom)
-"fh" = (
-/obj/effect/turf_decal/industrial/warning/fulltile,
-/obj/machinery/door/poddoor{
- id = "radroom1int"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/plasteel/mono/dark,
-/area/ruin/space/has_grav/radship/Cargo1)
-"fi" = (
-/obj/machinery/door/airlock/command/glass{
- name = "Bridge";
- dir = 4
- },
-/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"
- },
-/turf/open/floor/plasteel/mono/dark,
-/area/ruin/space/has_grav/radship/Hallway)
-"fD" = (
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 8
- },
-/obj/machinery/button{
- id = "radroom2ext";
- name = "External Blast Doors";
- pixel_x = 6;
- pixel_y = -25;
- dir = 1
- },
-/obj/machinery/button{
- id = "radroom2int";
- name = "Internal Blast Doors";
- pixel_x = -6;
- pixel_y = -25;
- dir = 1
- },
-/obj/effect/turf_decal/trimline/opaque/orange/filled/line,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/radship/Hallway)
-"fG" = (
-/turf/closed/mineral/random,
-/area/ruin/space/has_grav/radship/Cargo1)
-"fN" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/lattice/catwalk,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/radship/Hallway)
-"gp" = (
-/turf/closed/wall/mineral/plastitanium,
-/area/ruin/space/has_grav/radship/CrewQuarters)
-"gx" = (
-/obj/effect/turf_decal/trimline/opaque/orange/filled/line,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/radship/Hallway)
-"gI" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/radship/Hallway)
-"gO" = (
-/obj/item/toy/plush/moth{
- desc = "Eternally at odds with Unsafe Moth";
- name = "Safety Moth"
- },
-/turf/open/floor/plating/grass,
-/area/template_noop)
-"hs" = (
-/obj/effect/turf_decal/industrial/warning/corner,
-/obj/structure/radioactive/waste,
-/obj/effect/decal/cleanable/oil{
- pixel_x = 8;
- pixel_y = -3
- },
-/turf/open/floor/plasteel/tech,
-/area/ruin/space/has_grav/radship/Cargo4)
-"hT" = (
-/obj/structure/radioactive/stack,
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/tech,
-/area/ruin/space/has_grav/radship/Cargo4)
-"ib" = (
-/obj/structure/closet/crate/radiation,
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/stack/sheet/mineral/uranium,
-/obj/item/stack/sheet/mineral/uranium,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/machinery/power/apc/auto_name/directional/east,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/radship/Engineering)
-"id" = (
-/obj/effect/turf_decal/industrial/warning/fulltile,
-/obj/machinery/door/poddoor{
- id = "radroom4int"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/mono/dark,
-/area/ruin/space/has_grav/radship/Cargo4)
-"io" = (
-/obj/structure/radioactive,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/on/layer2,
-/turf/open/floor/plasteel/tech/grid,
-/area/ruin/space/has_grav/radship/Cargo4)
-"iv" = (
-/obj/effect/turf_decal/trimline/opaque/orange/filled/line{
- dir = 5
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/radship/Hallway)
-"iY" = (
-/obj/item/shard{
- icon_state = "medium"
- },
-/turf/template_noop,
-/area/template_noop)
-"jb" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/on/layer2,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/machinery/light/directional/north,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/radship/Engineering)
-"jo" = (
-/obj/structure/closet/crate/large,
-/obj/effect/turf_decal/industrial/warning,
-/obj/item/coin/uranium,
-/obj/item/stack/sheet/mineral/uranium,
-/obj/item/stack/sheet/mineral/uranium,
-/obj/item/stack/sheet/mineral/uranium,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/tech,
-/area/ruin/space/has_grav/radship/Cargo1)
-"jp" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/lattice/catwalk,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/radship/Hallway)
-"jQ" = (
-/turf/closed/wall/mineral/plastitanium,
-/area/ruin/space/has_grav/radship/Cargo4)
-"jS" = (
-/turf/closed/wall/mineral/plastitanium,
-/area/ruin/space/has_grav/radship/Engineering)
-"kv" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/obj/effect/turf_decal/trimline/opaque/orange/filled/line{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/radship/Hallway)
-"kP" = (
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/machinery/power/terminal{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/oil/streak,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/radship/EngineRoom)
-"kR" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/lattice/catwalk,
-/obj/machinery/atmospherics/pipe/manifold4w/supply/visible/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/radship/Hallway)
-"kS" = (
-/turf/closed/wall/mineral/plastitanium/nodiagonal,
-/area/ruin/space/has_grav/radship/MethLab)
-"le" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/lattice/catwalk,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/radship/Hallway)
-"lM" = (
-/obj/structure/closet/crate,
-/obj/item/coin/uranium,
-/obj/item/coin/uranium,
-/obj/machinery/light/directional/west,
-/turf/open/floor/plasteel/tech,
-/area/ruin/space/has_grav/radship/Cargo1)
-"lX" = (
-/obj/machinery/suit_storage_unit/radsuit,
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/radship/Engineering)
-"ma" = (
-/obj/structure/toilet{
- dir = 8
- },
-/obj/structure/mirror{
- pixel_x = -1;
- pixel_y = 30
- },
-/obj/structure/sink{
- pixel_y = 25
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/remains/human,
-/obj/machinery/light/small/directional/east,
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ruin/space/has_grav/radship/CrewQuarters)
-"me" = (
-/mob/living/simple_animal/hostile/carp/megacarp,
-/turf/template_noop,
-/area/template_noop)
-"mo" = (
-/obj/effect/turf_decal/trimline/opaque/orange/filled/line,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/light/directional/south,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/radship/Hallway)
-"mp" = (
-/obj/machinery/power/shuttle/engine/fueled/plasma{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/radship/EngineRoom)
-"mz" = (
-/obj/structure/closet/crate/large,
-/obj/structure/statue/uranium/nuke,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/light/directional/west,
-/turf/open/floor/plasteel/tech,
-/area/ruin/space/has_grav/radship/Cargo2)
-"mZ" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/lattice/catwalk,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/radship/Hallway)
-"nd" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/table,
-/obj/item/reagent_containers/pill/floorpill,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/radship/MethLab)
-"nf" = (
-/obj/item/stack/cable_coil/red,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/machinery/power/terminal{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/radship/EngineRoom)
-"nk" = (
-/obj/effect/turf_decal/industrial/warning/fulltile,
-/turf/closed/mineral/random,
-/area/ruin/space/has_grav/radship/Cargo1)
-"nt" = (
-/turf/closed/wall/mineral/plastitanium,
-/area/ruin/space/has_grav/radship/Hallway)
-"nD" = (
-/obj/structure/radioactive/waste,
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/plasteel/tech,
-/area/ruin/space/has_grav/radship/Cargo1)
-"nY" = (
-/obj/structure/closet/crate,
-/obj/item/stack/sheet/mineral/uranium,
-/obj/item/stack/sheet/mineral/uranium,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/light/directional/west,
-/turf/open/floor/plasteel/tech,
-/area/ruin/space/has_grav/radship/Cargo3)
-"ol" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/oil/slippery,
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/radship/EngineRoom)
-"oI" = (
-/obj/item/storage/toolbox/syndicate/empty,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/machinery/power/terminal{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/light/small/broken/directional/north,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/radship/EngineRoom)
-"oP" = (
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/machinery/power/terminal{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/light/small/directional/south,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/radship/EngineRoom)
-"pm" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/on/layer4,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/radship/Engineering)
-"px" = (
-/obj/effect/turf_decal/industrial/warning/corner,
-/obj/machinery/button{
- id = "radroom1int";
- name = "Internal Blast Doors";
- pixel_x = -6;
- pixel_y = -25;
- dir = 1
- },
-/obj/machinery/button{
- id = "radroom1ext";
- name = "External Blast Doors";
- pixel_x = 6;
- pixel_y = -25;
- dir = 1
- },
-/obj/effect/turf_decal/trimline/opaque/orange/filled/line,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/radship/Hallway)
-"pz" = (
-/turf/closed/wall/mineral/plastitanium,
-/area/ruin/space/has_grav/radship/EngineRoom)
-"pB" = (
-/obj/structure/ore_box,
-/obj/effect/turf_decal/industrial/warning,
-/obj/item/stack/ore/uranium,
-/obj/item/stack/ore/uranium,
-/obj/item/stack/ore/uranium,
-/obj/item/stack/ore/uranium,
-/obj/item/stack/ore/glass/basalt,
-/obj/item/stack/ore/iron,
-/obj/item/stack/ore/iron,
-/obj/item/stack/ore/iron,
-/obj/item/stack/ore/iron,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/oil/streak,
-/obj/effect/decal/cleanable/greenglow,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/plasteel/tech,
-/area/ruin/space/has_grav/radship/Cargo3)
-"pD" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/trash/can,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/wood/maple,
-/area/ruin/space/has_grav/radship/CrewQuarters)
-"pF" = (
-/obj/structure/curtain/bounty,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ruin/space/has_grav/radship/CrewQuarters)
-"qn" = (
-/obj/effect/turf_decal/industrial/warning,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/trash/pistachios,
-/turf/open/floor/plasteel/tech,
-/area/ruin/space/has_grav/radship/Cargo1)
-"qt" = (
-/obj/effect/decal/cleanable/glass,
-/obj/structure/grille/broken,
-/obj/item/shard{
- icon_state = "medium"
- },
-/turf/open/floor/plating,
-/area/template_noop)
-"qu" = (
-/obj/machinery/power/port_gen/pacman/super,
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/radship/Engineering)
-"qV" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/obj/effect/turf_decal/trimline/opaque/orange/filled/line{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/radship/Hallway)
-"rf" = (
-/turf/closed/wall/mineral/plastitanium/overspace,
-/area/ruin/space/has_grav/radship/Hallway)
-"rD" = (
-/turf/open/floor/plating/grass,
-/area/template_noop)
-"se" = (
-/obj/structure/fans/tiny/invisible,
-/turf/open/floor/plating/asteroid,
-/area/template_noop)
-"sr" = (
-/turf/closed/wall/mineral/plastitanium/nodiagonal,
-/area/ruin/space/has_grav/radship/CrewQuarters)
-"sR" = (
-/obj/item/bedsheet/syndie,
-/obj/structure/bed,
-/obj/structure/curtain/bounty,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/trash/can,
-/turf/open/floor/wood/maple,
-/area/ruin/space/has_grav/radship/CrewQuarters)
-"sW" = (
-/obj/structure/ore_box,
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/obj/item/stack/ore/uranium,
-/obj/item/stack/ore/uranium,
-/obj/item/stack/ore/uranium,
-/obj/item/stack/ore/gold,
-/obj/item/stack/ore/gold,
-/obj/item/stack/ore/iron,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/plasteel/tech,
-/area/ruin/space/has_grav/radship/Cargo1)
-"tm" = (
-/obj/structure/flora/ausbushes/lavendergrass,
-/turf/open/floor/plating/grass,
-/area/template_noop)
-"tH" = (
-/obj/effect/turf_decal/industrial/warning/fulltile,
-/obj/machinery/door/poddoor{
- id = "radroom3int"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/plasteel/mono/dark,
-/area/ruin/space/has_grav/radship/Cargo3)
-"tJ" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/generic,
-/obj/machinery/light/dim/directional/west,
-/turf/open/floor/wood/maple,
-/area/ruin/space/has_grav/radship/CrewQuarters)
-"tX" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/obj/structure/radioactive/waste,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/oil/slippery,
-/obj/effect/decal/cleanable/greenglow,
-/turf/open/floor/plasteel/tech,
-/area/ruin/space/has_grav/radship/Cargo4)
-"uo" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/trimline/opaque/orange/filled/line{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/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 = "1-8"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/radship/Hallway)
-"up" = (
-/obj/structure/closet/crate/large,
-/obj/item/stack/sheet/mineral/uranium,
-/obj/item/stack/sheet/mineral/uranium,
-/obj/item/stack/sheet/mineral/uranium,
-/obj/item/stack/sheet/mineral/uranium,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/on/layer2{
- dir = 1
- },
-/turf/open/floor/plasteel/tech/grid,
-/area/ruin/space/has_grav/radship/Cargo2)
-"uD" = (
-/obj/effect/turf_decal/trimline/opaque/orange/filled/line,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/light/directional/south,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/radship/Hallway)
-"uP" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/oil/slippery,
-/obj/machinery/light/directional/east,
-/turf/open/floor/plasteel/tech,
-/area/ruin/space/has_grav/radship/Cargo1)
-"uY" = (
-/turf/closed/wall/mineral/plastitanium,
-/area/ruin/space/has_grav/radship/MethLab)
-"vi" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/lattice/catwalk,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/radship/Hallway)
-"vJ" = (
-/obj/structure/sign/warning/radiation{
- pixel_y = 32
- },
-/obj/effect/turf_decal/trimline/opaque/orange/filled/line{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/radship/Hallway)
-"wd" = (
-/turf/closed/wall/mineral/plastitanium/overspace,
-/area/ruin/space/has_grav/radship/EngineRoom)
-"wt" = (
-/obj/effect/turf_decal/trimline/opaque/orange/filled/line{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/trash/energybar,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/radship/Hallway)
-"wR" = (
-/obj/machinery/power/smes,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/radship/Engineering)
-"xw" = (
-/obj/effect/turf_decal/industrial/warning/fulltile,
-/obj/machinery/door/poddoor{
- id = "radroom3ext"
- },
-/obj/structure/fans/tiny,
-/turf/open/floor/plasteel/tech,
-/area/ruin/space/has_grav/radship/Cargo3)
-"xB" = (
-/obj/effect/turf_decal/trimline/opaque/orange/filled/line{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/radship/Hallway)
-"xI" = (
-/obj/item/broken_bottle,
-/turf/template_noop,
-/area/template_noop)
-"xZ" = (
-/obj/effect/turf_decal/industrial/warning/fulltile,
-/obj/machinery/door/poddoor{
- id = "radroom4ext"
- },
-/obj/structure/fans/tiny,
-/turf/open/floor/plasteel/tech,
-/area/ruin/space/has_grav/radship/Cargo4)
-"yv" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/lattice/catwalk,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/radship/Hallway)
-"zG" = (
-/obj/structure/ore_box,
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 8
- },
-/obj/item/stack/ore/uranium,
-/obj/item/stack/ore/uranium,
-/obj/item/stack/ore/uranium,
-/obj/item/stack/ore/uranium,
-/obj/item/stack/ore/uranium,
-/obj/item/stack/ore/uranium,
-/obj/item/stack/ore/glass/basalt,
-/obj/item/stack/ore/glass/basalt,
-/obj/item/stack/ore/glass/basalt,
-/obj/item/stack/ore/glass/basalt,
-/obj/item/stack/ore/iron,
-/obj/effect/decal/cleanable/oil,
-/obj/machinery/power/apc/auto_name/directional/south,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/plasteel/tech,
-/area/ruin/space/has_grav/radship/Cargo4)
-"Am" = (
-/obj/structure/ore_box,
-/obj/item/stack/ore/uranium,
-/obj/item/stack/ore/uranium,
-/obj/item/stack/ore/uranium,
-/obj/item/stack/ore/uranium,
-/obj/item/stack/ore/glass/basalt,
-/obj/item/stack/ore/glass/basalt,
-/obj/item/stack/ore/glass/basalt,
-/obj/item/stack/ore/gold,
-/obj/item/stack/ore/iron,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 1
- },
-/turf/open/floor/plasteel/tech/grid,
-/area/ruin/space/has_grav/radship/Cargo2)
-"AY" = (
-/obj/item/bedsheet/syndie,
-/obj/structure/bed,
-/obj/structure/curtain/bounty,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/storage/cans/sixbeer,
-/turf/open/floor/wood/maple,
-/area/ruin/space/has_grav/radship/CrewQuarters)
-"Bf" = (
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 1
- },
-/obj/machinery/button{
- id = "radroom4ext";
- name = "External Blast Doors";
- pixel_x = 6;
- pixel_y = 25
- },
-/obj/machinery/button{
- id = "radroom4int";
- name = "Internal Blast Doors";
- pixel_x = -6;
- pixel_y = 25
- },
-/obj/effect/turf_decal/trimline/opaque/orange/filled/line{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/radship/Hallway)
-"BD" = (
-/obj/structure/ore_box,
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 1
- },
-/obj/item/stack/ore/uranium,
-/obj/item/stack/ore/glass/basalt,
-/obj/item/stack/ore/gold,
-/obj/item/stack/ore/iron,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/tech,
-/area/ruin/space/has_grav/radship/Cargo4)
-"Ct" = (
-/obj/structure/table/wood,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/generic,
-/obj/item/storage/cans/sixbeer,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
- },
-/turf/open/floor/wood/maple,
-/area/ruin/space/has_grav/radship/CrewQuarters)
-"CT" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/closed/wall/mineral/plastitanium,
-/area/ruin/space/has_grav/radship/Engineering)
-"DI" = (
-/obj/structure/sign/warning/securearea{
- pixel_y = -32
- },
-/turf/template_noop,
-/area/template_noop)
-"DW" = (
-/obj/effect/turf_decal/trimline/opaque/blue/filled/line{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/reagent_containers/hypospray/medipen/pumpup,
-/obj/effect/decal/remains/human,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel/mono/dark,
-/area/template_noop)
-"Ee" = (
-/turf/closed/wall/mineral/plastitanium/nodiagonal,
-/area/ruin/space/has_grav/radship/Cargo1)
-"El" = (
-/obj/effect/turf_decal/trimline/opaque/blue/filled/line{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/vomit/old,
-/obj/item/reagent_containers/food/drinks/beer,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/item/wallframe/apc,
-/turf/open/floor/plasteel/mono/dark,
-/area/template_noop)
-"Fg" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/reagent_containers/syringe/contraband/methamphetamine,
-/obj/machinery/chem_dispenser,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/radship/MethLab)
-"Fq" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/obj/effect/turf_decal/trimline/opaque/orange/filled/line{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/radship/Hallway)
-"Ft" = (
-/obj/machinery/atmospherics/components/unary/shuttle/heater{
- dir = 4
- },
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/door/window{
- dir = 4;
- name = "Engine Access"
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/radship/EngineRoom)
-"FJ" = (
-/turf/closed/wall/mineral/plastitanium/overspace,
-/area/ruin/space/has_grav/radship/Engineering)
-"FP" = (
-/obj/structure/table,
-/obj/effect/turf_decal/trimline/opaque/blue/filled/line{
- dir = 9
- },
-/obj/item/dnainjector/radioactive,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/reagent_containers/syringe/contraband/krokodil,
-/obj/effect/decal/cleanable/glass,
-/obj/machinery/light/broken/directional/west,
-/turf/open/floor/plasteel/dark,
-/area/template_noop)
-"FS" = (
-/obj/effect/turf_decal/trimline/opaque/orange/filled/line{
- dir = 9
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/radship/Hallway)
-"Gc" = (
-/obj/effect/turf_decal/industrial/warning/fulltile,
-/obj/machinery/door/poddoor{
- id = "radroom2int"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/mono/dark,
-/area/ruin/space/has_grav/radship/Cargo2)
-"Gr" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/greenglow,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/plasteel/tech,
-/area/ruin/space/has_grav/radship/Cargo2)
-"Gu" = (
-/obj/structure/closet/crate/large,
-/obj/structure/radioactive/supermatter,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/greenglow,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 1
- },
-/turf/open/floor/plasteel/tech/grid,
-/area/ruin/space/has_grav/radship/Cargo1)
-"Gx" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/components/binary/valve,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/radship/EngineRoom)
-"Gz" = (
-/obj/structure/radioactive/waste,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/greenglow,
-/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/on/layer2{
- dir = 1
- },
-/turf/open/floor/plasteel/tech/grid,
-/area/ruin/space/has_grav/radship/Cargo1)
-"GH" = (
-/obj/machinery/atmospherics/components/unary/tank/toxins{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/radship/EngineRoom)
-"Ha" = (
-/obj/structure/ore_box,
-/obj/item/stack/ore/uranium,
-/obj/item/stack/ore/uranium,
-/obj/item/stack/ore/uranium,
-/obj/item/stack/ore/glass/basalt,
-/obj/item/stack/ore/gold,
-/obj/item/stack/ore/gold,
-/obj/item/stack/ore/iron,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/light/directional/west,
-/turf/open/floor/plasteel/tech,
-/area/ruin/space/has_grav/radship/Cargo4)
-"Hb" = (
-/obj/machinery/power/terminal{
- dir = 8
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/radship/Engineering)
-"Hj" = (
-/obj/item/bedsheet/syndie,
-/obj/structure/bed,
-/obj/structure/curtain/bounty,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/wood/maple,
-/area/ruin/space/has_grav/radship/CrewQuarters)
-"HD" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/reagent_containers/syringe/contraband/methamphetamine,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/radship/MethLab)
-"HM" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/chem_heater,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/radship/MethLab)
-"HN" = (
-/obj/machinery/door/airlock/grunge{
- name = "Crew Quarters"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/mono/dark,
-/area/ruin/space/has_grav/radship/CrewQuarters)
-"HW" = (
-/obj/structure/closet/crate/large,
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/obj/item/stack/sheet/mineral/uranium,
-/obj/item/stack/sheet/mineral/uranium,
-/obj/item/stack/sheet/mineral/uranium,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/tech,
-/area/ruin/space/has_grav/radship/Cargo3)
-"Ik" = (
-/obj/effect/turf_decal/trimline/opaque/orange/filled/line{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/power/apc/auto_name/directional/north,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/machinery/light/directional/north,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/radship/Hallway)
-"It" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/trash/energybar,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/radship/MethLab)
-"IM" = (
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 4
- },
-/obj/machinery/button{
- id = "radroom3ext";
- name = "External Blast Doors";
- pixel_x = 6;
- pixel_y = 25
- },
-/obj/machinery/button{
- id = "radroom3int";
- name = "Internal Blast Doors";
- pixel_x = -6;
- pixel_y = 25
- },
-/obj/effect/turf_decal/trimline/opaque/orange/filled/line{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/radship/Hallway)
-"IS" = (
-/mob/living/simple_animal/hostile/carp,
-/turf/template_noop,
-/area/template_noop)
-"IW" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/radship/Engineering)
-"Jq" = (
-/obj/structure/closet/crate/large,
-/obj/item/stack/sheet/mineral/uranium,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
-/turf/open/floor/plasteel/tech/grid,
-/area/ruin/space/has_grav/radship/Cargo4)
-"JS" = (
-/obj/effect/turf_decal/industrial/warning,
-/obj/structure/radioactive/waste,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel/tech,
-/area/ruin/space/has_grav/radship/Cargo3)
-"Kc" = (
-/obj/effect/turf_decal/trimline/opaque/orange/filled/line,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/radship/Hallway)
-"Ko" = (
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 8
- },
-/obj/effect/turf_decal/trimline/opaque/orange/filled/line,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/light/directional/south,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/radship/Hallway)
-"Kw" = (
-/turf/closed/wall/mineral/plastitanium/nodiagonal,
-/area/ruin/space/has_grav/radship/Cargo3)
-"KJ" = (
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 8
- },
-/turf/closed/mineral/random,
-/area/ruin/space/has_grav/radship/Cargo1)
-"KK" = (
-/obj/effect/turf_decal/industrial/warning/fulltile,
-/obj/machinery/door/poddoor{
- id = "radroom1int"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/mono/dark,
-/area/ruin/space/has_grav/radship/Cargo1)
-"KW" = (
-/obj/effect/turf_decal/industrial/warning/fulltile,
-/obj/machinery/door/poddoor{
- id = "radroom2int"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/plasteel/mono/dark,
-/area/ruin/space/has_grav/radship/Cargo2)
-"Li" = (
-/obj/machinery/door/airlock/external/glass,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/mono/dark,
-/area/ruin/space/has_grav/radship/Hallway)
-"Mv" = (
-/turf/closed/wall/mineral/plastitanium/nodiagonal,
-/area/ruin/space/has_grav/radship/EngineRoom)
-"MD" = (
-/obj/effect/turf_decal/trimline/opaque/orange/filled/line,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/radship/Hallway)
-"MG" = (
-/obj/structure/ore_box,
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/obj/item/stack/ore/uranium,
-/obj/item/stack/ore/glass/basalt,
-/obj/item/stack/ore/glass/basalt,
-/obj/item/stack/ore/iron,
-/obj/item/stack/ore/iron,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/oil/streak,
-/obj/effect/decal/cleanable/greenglow,
-/turf/open/floor/plasteel/tech,
-/area/ruin/space/has_grav/radship/Cargo3)
-"MQ" = (
-/obj/machinery/door/airlock/grunge{
- name = "Storage"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/mono/dark,
-/area/ruin/space/has_grav/radship/MethLab)
-"MY" = (
-/obj/effect/turf_decal/trimline/opaque/orange/filled/line{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/light/directional/north,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/radship/Hallway)
-"Ns" = (
-/obj/effect/turf_decal/industrial/warning/fulltile,
-/obj/machinery/door/poddoor{
- id = "radroom3int"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/mono/dark,
-/area/ruin/space/has_grav/radship/Cargo3)
-"Nu" = (
-/turf/closed/wall/mineral/plastitanium/nodiagonal,
-/area/ruin/space/has_grav/radship/Hallway)
-"NQ" = (
-/obj/structure/radioactive/stack,
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/power/apc/auto_name/directional/south,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/plasteel/tech,
-/area/ruin/space/has_grav/radship/Cargo3)
-"NR" = (
-/turf/closed/mineral/random,
-/area/template_noop)
-"NS" = (
-/obj/structure/closet/crate/large,
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 1
- },
-/obj/item/stack/sheet/mineral/uranium,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/obj/machinery/power/apc/auto_name/directional/north,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/plasteel/tech,
-/area/ruin/space/has_grav/radship/Cargo2)
-"NT" = (
-/obj/effect/decal/cleanable/glass,
-/obj/structure/grille/broken,
-/obj/item/shard,
-/turf/open/floor/plating,
-/area/template_noop)
-"Od" = (
-/obj/structure/radioactive/stack,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
-/turf/open/floor/plasteel/tech/grid,
-/area/ruin/space/has_grav/radship/Cargo3)
-"Oj" = (
-/obj/effect/turf_decal/trimline/opaque/orange/filled/line{
- dir = 6
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/radship/Hallway)
-"Ol" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/storage/pill_bottle/happy,
-/obj/structure/table,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/radship/MethLab)
-"Op" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/obj/effect/turf_decal/trimline/opaque/orange/filled/line{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/radship/Hallway)
-"Oq" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/machinery/power/apc/auto_name/directional/east,
-/turf/open/floor/wood/maple,
-/area/ruin/space/has_grav/radship/CrewQuarters)
-"Pf" = (
-/turf/closed/wall/mineral/plastitanium/overspace,
-/area/ruin/space/has_grav/radship/CrewQuarters)
-"Pl" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/reagent_containers/chem_pack,
-/obj/machinery/iv_drip,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/machinery/power/apc/auto_name/directional/north,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/radship/MethLab)
-"Pu" = (
-/obj/effect/turf_decal/trimline/opaque/orange/filled/line,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/radship/Hallway)
-"PB" = (
-/turf/template_noop,
-/area/template_noop)
-"PH" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/chem_master,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/radship/MethLab)
-"PK" = (
-/turf/closed/wall/mineral/plastitanium/nodiagonal,
-/area/ruin/space/has_grav/radship/Cargo4)
-"PU" = (
-/obj/effect/turf_decal/trimline/opaque/orange/filled/line{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/radship/Hallway)
-"Qj" = (
-/obj/effect/turf_decal/industrial/warning,
-/obj/effect/turf_decal/trimline/opaque/orange/filled/line,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/radship/Hallway)
-"Qr" = (
-/obj/effect/turf_decal/industrial/warning/fulltile,
-/obj/machinery/door/poddoor{
- id = "radroom2ext"
- },
-/obj/structure/fans/tiny,
-/turf/open/floor/plasteel/tech,
-/area/ruin/space/has_grav/radship/Cargo2)
-"Qw" = (
-/obj/machinery/power/smes/shuttle{
- dir = 4
- },
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/door/window{
- dir = 4;
- name = "Engine Access"
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/radship/EngineRoom)
-"Qy" = (
-/obj/structure/closet/crate/large,
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 1
- },
-/obj/item/coin/uranium,
-/obj/item/coin/uranium,
-/obj/item/coin/uranium,
-/obj/item/coin/uranium,
-/obj/item/stack/sheet/mineral/uranium,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/trash/sosjerky,
-/obj/machinery/power/apc/auto_name/directional/north,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/plasteel/tech,
-/area/ruin/space/has_grav/radship/Cargo1)
-"QW" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/remains/human,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/radship/MethLab)
-"Rq" = (
-/turf/closed/wall/mineral/plastitanium/nodiagonal,
-/area/ruin/space/has_grav/radship/Engineering)
-"Rz" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/on/layer2,
-/obj/item/trash/boritos,
-/turf/open/floor/wood/maple,
-/area/ruin/space/has_grav/radship/CrewQuarters)
-"RV" = (
-/obj/structure/flora/ausbushes/grassybush,
-/turf/open/floor/plating/grass,
-/area/template_noop)
-"Sa" = (
-/obj/effect/turf_decal/trimline/opaque/orange/filled/line{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/radship/Hallway)
-"Su" = (
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 1
- },
-/obj/effect/turf_decal/trimline/opaque/orange/filled/line{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/radship/Hallway)
-"Sw" = (
-/obj/effect/turf_decal/industrial/warning,
-/obj/effect/turf_decal/trimline/opaque/orange/filled/line,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/radship/Hallway)
-"SN" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/trimline/opaque/orange/filled/line{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/radship/Hallway)
-"TR" = (
-/obj/structure/closet/crate,
-/obj/effect/turf_decal/industrial/warning,
-/obj/item/coin/uranium,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/tech,
-/area/ruin/space/has_grav/radship/Cargo2)
-"Uo" = (
-/obj/machinery/power/shuttle/engine/electric{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/radship/EngineRoom)
-"UD" = (
-/obj/effect/turf_decal/trimline/opaque/orange/filled/line{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/radship/Hallway)
-"UU" = (
-/obj/structure/ore_box,
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 4
- },
-/obj/item/stack/ore/glass/basalt,
-/obj/item/stack/ore/glass/basalt,
-/obj/item/stack/ore/gold,
-/obj/item/stack/ore/gold,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/tech,
-/area/ruin/space/has_grav/radship/Cargo3)
-"Va" = (
-/obj/item/wirecutters/syndie,
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/components/binary/valve/layer2,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/machinery/power/apc/auto_name/directional/east,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/radship/EngineRoom)
-"Vn" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/radship/Engineering)
-"Vr" = (
-/obj/machinery/door/airlock/grunge{
- name = "Engineering"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/mono/dark,
-/area/ruin/space/has_grav/radship/Engineering)
-"Vx" = (
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 1
- },
-/obj/structure/radioactive/waste,
-/turf/open/floor/plasteel/tech,
-/area/ruin/space/has_grav/radship/Cargo3)
-"VD" = (
-/obj/structure/closet/crate,
-/obj/item/coin/uranium,
-/obj/item/coin/uranium,
-/obj/item/coin/uranium,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/on/layer2,
-/turf/open/floor/plasteel/tech/grid,
-/area/ruin/space/has_grav/radship/Cargo3)
-"VF" = (
-/obj/structure/radioactive/stack,
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/plasteel/tech,
-/area/ruin/space/has_grav/radship/Cargo2)
-"VI" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/closed/wall/mineral/plastitanium,
-/area/ruin/space/has_grav/radship/Cargo3)
-"VL" = (
-/obj/effect/turf_decal/industrial/warning/fulltile,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/tech,
-/area/ruin/space/has_grav/radship/Cargo1)
-"VT" = (
-/obj/machinery/door/airlock/external/glass,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/fans/tiny,
-/turf/open/floor/plasteel/mono/dark,
-/area/ruin/space/has_grav/radship/Hallway)
-"Wk" = (
-/obj/item/toy/plush/moth{
- desc = "A plushie depicting a mothperson dying of radiation poisioning. How cute!";
- name = "Unsafe moth"
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/radship/Hallway)
-"WD" = (
-/turf/closed/wall/mineral/plastitanium,
-/area/ruin/space/has_grav/radship/Cargo1)
-"WF" = (
-/obj/structure/radioactive/stack,
-/obj/effect/turf_decal/industrial/warning/corner,
-/obj/effect/decal/cleanable/greenglow,
-/turf/open/floor/plasteel/tech,
-/area/ruin/space/has_grav/radship/Cargo2)
-"WS" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/radship/Hallway)
-"XT" = (
-/obj/machinery/power/terminal{
- dir = 8
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 5
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/radship/Engineering)
-"Yd" = (
-/obj/effect/turf_decal/industrial/warning,
-/obj/effect/turf_decal/trimline/opaque/orange/filled/line,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/radship/Hallway)
-"Yk" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/lattice/catwalk,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/radship/Hallway)
-"YA" = (
-/obj/structure/ore_box,
-/obj/effect/turf_decal/industrial/warning/corner,
-/obj/item/stack/ore/uranium,
-/obj/item/stack/ore/uranium,
-/obj/item/stack/ore/glass/basalt,
-/obj/item/stack/ore/glass/basalt,
-/obj/item/stack/ore/iron,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/greenglow,
-/turf/open/floor/plasteel/tech,
-/area/ruin/space/has_grav/radship/Cargo1)
-"YE" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/lattice/catwalk,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/radship/Hallway)
-"YF" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/light/directional/east,
-/turf/open/floor/plasteel/tech,
-/area/ruin/space/has_grav/radship/Cargo3)
-"YH" = (
-/obj/structure/ore_box,
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 8
- },
-/obj/item/stack/ore/gold,
-/obj/item/stack/ore/iron,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/tech,
-/area/ruin/space/has_grav/radship/Cargo2)
-"YU" = (
-/obj/structure/sign/warning/securearea{
- pixel_y = 32
- },
-/turf/closed/mineral/random,
-/area/template_noop)
-"YV" = (
-/obj/item/trash/boritos,
-/turf/closed/mineral/random,
-/area/template_noop)
-"Zb" = (
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 4
- },
-/obj/effect/turf_decal/trimline/opaque/orange/filled/line{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/light/directional/north,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/radship/Hallway)
-"Zd" = (
-/obj/structure/sign/warning/radiation{
- pixel_y = -32
- },
-/turf/template_noop,
-/area/template_noop)
-"Zj" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/closed/wall/mineral/plastitanium,
-/area/ruin/space/has_grav/radship/Engineering)
-"ZN" = (
-/obj/effect/turf_decal/industrial/warning/fulltile,
-/obj/machinery/door/poddoor{
- id = "radroom4int"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/plasteel/mono/dark,
-/area/ruin/space/has_grav/radship/Cargo4)
-
-(1,1,1) = {"
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-"}
-(2,1,1) = {"
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-"}
-(3,1,1) = {"
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-"}
-(4,1,1) = {"
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-"}
-(5,1,1) = {"
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-"}
-(6,1,1) = {"
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-IS
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-IS
-PB
-PB
-PB
-"}
-(7,1,1) = {"
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-Uo
-Uo
-mp
-Uo
-Uo
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-"}
-(8,1,1) = {"
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-Mv
-Qw
-Qw
-Ft
-Qw
-Qw
-Mv
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-"}
-(9,1,1) = {"
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-pz
-oI
-kP
-aT
-nf
-oP
-pz
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-"}
-(10,1,1) = {"
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-wd
-Mv
-ah
-Va
-ol
-Gx
-GH
-Mv
-wd
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-"}
-(11,1,1) = {"
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-FJ
-Rq
-Rq
-jS
-Mv
-fd
-Mv
-pz
-Mv
-Mv
-em
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-"}
-(12,1,1) = {"
-PB
-PB
-PB
-PB
-PB
-PB
-FJ
-Rq
-dZ
-wR
-Zj
-FS
-uo
-cn
-uY
-Ol
-bK
-kS
-em
-PB
-PB
-PB
-PB
-PB
-PB
-"}
-(13,1,1) = {"
-PB
-PB
-PB
-PB
-me
-PB
-Rq
-IW
-XT
-Hb
-Rq
-Ik
-jp
-mo
-kS
-Pl
-HD
-nd
-kS
-PB
-PB
-PB
-PB
-PB
-PB
-"}
-(14,1,1) = {"
-PB
-PB
-PB
-PB
-PB
-pm
-CT
-jb
-bj
-Vn
-Vr
-xB
-mZ
-MD
-MQ
-aR
-QW
-It
-uY
-PB
-PB
-PB
-PB
-PB
-PB
-"}
-(15,1,1) = {"
-PB
-PB
-PB
-PB
-PB
-PB
-jS
-qu
-ib
-lX
-Rq
-wt
-fN
-Pu
-kS
-Fg
-PH
-HM
-uY
-PB
-me
-PB
-PB
-PB
-PB
-"}
-(16,1,1) = {"
-PB
-PB
-PB
-PB
-PB
-PB
-ac
-ac
-ac
-ac
-ac
-Sa
-fN
-Kc
-WD
-WD
-WD
-WD
-WD
-PB
-PB
-PB
-PB
-PB
-PB
-"}
-(17,1,1) = {"
-PB
-PB
-PB
-PB
-PB
-DI
-Kw
-UU
-nY
-dP
-Kw
-IM
-fN
-px
-Ee
-cH
-lM
-YA
-Ee
-YU
-NR
-PB
-PB
-PB
-PB
-"}
-(18,1,1) = {"
-PB
-PB
-PB
-PB
-PB
-PB
-xw
-HW
-Od
-pB
-tH
-qV
-Yk
-Sw
-fh
-nD
-Gu
-qn
-VL
-NR
-NR
-NR
-NR
-PB
-PB
-"}
-(19,1,1) = {"
-PB
-PB
-PB
-PB
-PB
-PB
-xw
-MG
-VD
-JS
-Ns
-Op
-kR
-Yd
-KK
-sW
-Gz
-jo
-nk
-NR
-NR
-NR
-NR
-NR
-PB
-"}
-(20,1,1) = {"
-PB
-PB
-PB
-PB
-PB
-PB
-Kw
-Vx
-YF
-NQ
-Kw
-Su
-YE
-Ko
-Ee
-Qy
-uP
-KJ
-fG
-NR
-NR
-NR
-NR
-NR
-PB
-"}
-(21,1,1) = {"
-PB
-PB
-PB
-PB
-PB
-Zd
-jQ
-jQ
-ac
-VI
-ac
-vJ
-vi
-cq
-WD
-WD
-WD
-eF
-eF
-al
-NR
-NR
-NR
-NR
-PB
-"}
-(22,1,1) = {"
-PB
-PB
-PB
-PB
-PB
-PB
-PK
-cN
-Ha
-hs
-PK
-Zb
-vi
-ao
-dk
-bx
-mz
-WF
-dk
-PB
-NR
-NR
-NR
-PB
-PB
-"}
-(23,1,1) = {"
-PB
-PB
-PB
-PB
-PB
-PB
-xZ
-hT
-Jq
-aA
-ZN
-Fq
-yv
-Qj
-KW
-VF
-Am
-eL
-Qr
-PB
-PB
-PB
-PB
-PB
-PB
-"}
-(24,1,1) = {"
-PB
-PB
-PB
-PB
-PB
-PB
-xZ
-tX
-io
-eW
-id
-kv
-kR
-Yd
-Gc
-Gr
-up
-TR
-Qr
-PB
-PB
-PB
-PB
-PB
-PB
-"}
-(25,1,1) = {"
-PB
-PB
-PB
-PB
-PB
-DI
-PK
-BD
-cM
-zG
-PK
-Bf
-vi
-fD
-dk
-NS
-bF
-YH
-dk
-eR
-PB
-PB
-PB
-PB
-PB
-"}
-(26,1,1) = {"
-PB
-PB
-PB
-PB
-PB
-PB
-jQ
-jQ
-jQ
-jQ
-jQ
-PU
-fN
-Kc
-dk
-eF
-eF
-eF
-dk
-PB
-PB
-PB
-PB
-PB
-PB
-"}
-(27,1,1) = {"
-PB
-PB
-PB
-PB
-PB
-PB
-gp
-Hj
-tJ
-ef
-gp
-PU
-jp
-Kc
-WS
-Li
-gI
-gI
-VT
-PB
-PB
-PB
-PB
-PB
-PB
-"}
-(28,1,1) = {"
-PB
-PB
-PB
-PB
-PB
-PB
-sr
-sR
-Rz
-Ct
-sr
-PU
-jp
-gx
-Nu
-nt
-nt
-nt
-Nu
-PB
-PB
-PB
-PB
-PB
-PB
-"}
-(29,1,1) = {"
-PB
-PB
-IS
-PB
-PB
-NR
-NR
-AY
-Oq
-pD
-HN
-UD
-le
-gx
-nt
-Wk
-nt
-nt
-Nu
-PB
-PB
-PB
-PB
-PB
-PB
-"}
-(30,1,1) = {"
-PB
-PB
-PB
-PB
-NR
-NR
-NR
-NR
-sr
-pF
-sr
-MY
-jp
-uD
-nt
-nt
-nt
-Nu
-rf
-PB
-PB
-PB
-PB
-PB
-PB
-"}
-(31,1,1) = {"
-PB
-PB
-PB
-PB
-NR
-NR
-NR
-NR
-sr
-ma
-gp
-iv
-SN
-Oj
-Nu
-nt
-Nu
-rf
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-"}
-(32,1,1) = {"
-PB
-PB
-PB
-NR
-NR
-NR
-NR
-PB
-Pf
-sr
-gp
-Nu
-fi
-Nu
-NR
-NR
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-"}
-(33,1,1) = {"
-PB
-PB
-PB
-PB
-NR
-NR
-aY
-PB
-PB
-NT
-FP
-El
-DW
-NR
-NR
-NR
-NR
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-"}
-(34,1,1) = {"
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-IS
-PB
-qt
-NR
-YV
-NR
-NR
-NR
-NR
-NR
-NR
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-"}
-(35,1,1) = {"
-PB
-PB
-PB
-PB
-PB
-PB
-xI
-PB
-PB
-NR
-NR
-NR
-NR
-NR
-NR
-NR
-NR
-NR
-NR
-PB
-PB
-PB
-IS
-PB
-PB
-"}
-(36,1,1) = {"
-PB
-PB
-PB
-PB
-iY
-PB
-NR
-NR
-NR
-NR
-NR
-NR
-NR
-NR
-NR
-NR
-NR
-NR
-NR
-NR
-PB
-PB
-PB
-PB
-PB
-"}
-(37,1,1) = {"
-PB
-PB
-PB
-PB
-PB
-NR
-NR
-NR
-NR
-NR
-NR
-NR
-NR
-NR
-NR
-NR
-NR
-NR
-NR
-NR
-PB
-PB
-PB
-PB
-PB
-"}
-(38,1,1) = {"
-PB
-PB
-PB
-PB
-NR
-NR
-NR
-NR
-NR
-NR
-NR
-NR
-se
-se
-NR
-NR
-NR
-NR
-NR
-NR
-PB
-PB
-PB
-PB
-PB
-"}
-(39,1,1) = {"
-PB
-PB
-PB
-PB
-NR
-NR
-NR
-NR
-NR
-NR
-se
-se
-rD
-bf
-se
-NR
-NR
-NR
-NR
-NR
-PB
-PB
-PB
-PB
-PB
-"}
-(40,1,1) = {"
-PB
-PB
-PB
-PB
-NR
-NR
-NR
-NR
-NR
-se
-bf
-gO
-RV
-rD
-se
-NR
-NR
-NR
-NR
-NR
-PB
-PB
-PB
-PB
-PB
-"}
-(41,1,1) = {"
-PB
-PB
-PB
-PB
-NR
-NR
-NR
-NR
-NR
-se
-rD
-tm
-rD
-se
-NR
-NR
-NR
-NR
-NR
-PB
-PB
-PB
-PB
-PB
-PB
-"}
-(42,1,1) = {"
-PB
-PB
-PB
-PB
-PB
-NR
-NR
-NR
-NR
-NR
-se
-se
-se
-NR
-NR
-NR
-NR
-NR
-NR
-PB
-PB
-PB
-PB
-PB
-PB
-"}
-(43,1,1) = {"
-PB
-PB
-PB
-PB
-PB
-NR
-NR
-NR
-NR
-NR
-NR
-NR
-NR
-NR
-NR
-NR
-NR
-NR
-NR
-PB
-PB
-PB
-PB
-PB
-PB
-"}
-(44,1,1) = {"
-PB
-me
-PB
-PB
-PB
-PB
-NR
-NR
-NR
-NR
-NR
-NR
-NR
-NR
-NR
-NR
-NR
-NR
-NR
-PB
-PB
-PB
-PB
-PB
-PB
-"}
-(45,1,1) = {"
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-NR
-NR
-NR
-NR
-NR
-NR
-NR
-NR
-NR
-NR
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-"}
-(46,1,1) = {"
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-NR
-NR
-NR
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-"}
-(47,1,1) = {"
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-me
-PB
-PB
-PB
-"}
-(48,1,1) = {"
-PB
-PB
-PB
-PB
-PB
-PB
-IS
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-"}
-(49,1,1) = {"
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-"}
-(50,1,1) = {"
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-PB
-"}
diff --git a/_maps/RandomRuins/SpaceRuins/provinggrounds.dmm b/_maps/RandomRuins/SpaceRuins/provinggrounds.dmm
deleted file mode 100644
index 7577cdeb99f..00000000000
--- a/_maps/RandomRuins/SpaceRuins/provinggrounds.dmm
+++ /dev/null
@@ -1,4699 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"am" = (
-/turf/closed/wall/mineral/plastitanium,
-/area/ruin/space/has_grav/syndicircle/halls)
-"ap" = (
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/space/has_grav/syndicircle/halls)
-"at" = (
-/obj/machinery/light/directional/south,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/space/has_grav/syndicircle/halls)
-"au" = (
-/obj/machinery/door/airlock/centcom,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/space/has_grav/syndicircle/halls)
-"ay" = (
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/space/has_grav/syndicircle/halls)
-"aW" = (
-/turf/closed/indestructible/rock/snow,
-/area/ruin/space/has_grav/syndicircle/winter)
-"ba" = (
-/obj/structure/filingcabinet/chestdrawer,
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ruin/space/has_grav/syndicircle/research)
-"bd" = (
-/obj/structure/window/plasma/reinforced/plastitanium,
-/obj/structure/grille,
-/obj/machinery/door/poddoor{
- id = 64;
- dir = 4
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/space/has_grav/syndicircle/halls)
-"bf" = (
-/obj/machinery/modular_computer/console/preset,
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ruin/space/has_grav/syndicircle/research)
-"bo" = (
-/obj/machinery/button{
- id = 256;
- name = "Zone Delta Shutters";
- pixel_x = 8;
- pixel_y = -8
- },
-/turf/closed/wall/mineral/plastitanium/nodiagonal,
-/area/ruin/space/has_grav/syndicircle/halls)
-"bx" = (
-/obj/structure/flora/rock/icy,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating/asteroid/snow/atmosphere,
-/area/ruin/space/has_grav/syndicircle/winter)
-"by" = (
-/obj/item/target,
-/obj/structure/flippedtable{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating/dirt/jungle/wasteland,
-/area/ruin/space/has_grav/syndicircle/training)
-"bz" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/oil/slippery,
-/turf/open/floor/plating/sandy_dirt,
-/area/ruin/space/has_grav/syndicircle/training)
-"bD" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating/asteroid/snow/atmosphere,
-/area/ruin/space/has_grav/syndicircle/winter)
-"bL" = (
-/turf/open/floor/plating/asteroid/snow/atmosphere,
-/area/ruin/space/has_grav/syndicircle/winter)
-"bM" = (
-/obj/machinery/light/directional/west,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/space/has_grav/syndicircle/halls)
-"bP" = (
-/obj/machinery/vending/cigarette,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/space/has_grav/syndicircle/halls)
-"bS" = (
-/obj/structure/sign/warning/firingrange,
-/turf/closed/wall/mineral/plastitanium,
-/area/ruin/space/has_grav/syndicircle/halls)
-"bV" = (
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ruin/space/has_grav/syndicircle/research)
-"ci" = (
-/obj/structure/window/plasma/reinforced/plastitanium,
-/obj/structure/grille,
-/obj/machinery/door/poddoor{
- id = 99;
- dir = 4
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/space/has_grav/syndicircle/halls)
-"cC" = (
-/obj/structure/chair/office,
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ruin/space/has_grav/syndicircle/research)
-"cQ" = (
-/obj/structure/chair/office{
- dir = 1
- },
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ruin/space/has_grav/syndicircle/research)
-"dd" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ruin/space/has_grav/syndicircle/research)
-"dh" = (
-/obj/machinery/camera{
- network = list("zonec")
- },
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ruin/space/has_grav/syndicircle/research)
-"du" = (
-/mob/living/simple_animal/hostile/syndicate/civilian{
- name = "Syndicate Researcher"
- },
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/space/has_grav/syndicircle/halls)
-"dx" = (
-/obj/machinery/button{
- id = 128;
- name = "Zone Charlie shutters";
- pixel_x = -8;
- pixel_y = -8
- },
-/turf/closed/wall/mineral/plastitanium/nodiagonal,
-/area/ruin/space/has_grav/syndicircle/halls)
-"dN" = (
-/obj/machinery/light/directional/north,
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/space/has_grav/syndicircle/halls)
-"dP" = (
-/obj/structure/window/plasma/reinforced/plastitanium,
-/obj/structure/grille,
-/obj/machinery/door/poddoor{
- id = 256
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/space/has_grav/syndicircle/halls)
-"dZ" = (
-/turf/closed/wall/r_wall,
-/area/ruin/space/has_grav/syndicircle/winter)
-"eh" = (
-/turf/open/floor/plating/ice,
-/area/ruin/space/has_grav/syndicircle/winter)
-"en" = (
-/obj/structure/flora/rock/pile,
-/turf/open/floor/plating/asteroid/snow/atmosphere,
-/area/ruin/space/has_grav/syndicircle/winter)
-"eu" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/asteroid/snow/atmosphere,
-/area/ruin/space/has_grav/syndicircle/winter)
-"ew" = (
-/obj/structure/window/plasma/reinforced/plastitanium,
-/obj/structure/grille,
-/obj/machinery/door/poddoor{
- id = 6;
- dir = 4
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/space/has_grav/syndicircle/halls)
-"eH" = (
-/obj/structure/table/reinforced,
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/space/has_grav/syndicircle/halls)
-"eJ" = (
-/obj/structure/table/reinforced,
-/obj/item/clothing/glasses/night,
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/space/has_grav/syndicircle/halls)
-"fe" = (
-/obj/structure/window/plasma/reinforced/plastitanium,
-/obj/structure/grille,
-/obj/machinery/door/poddoor{
- id = 4
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/space/has_grav/syndicircle/halls)
-"ff" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/modular_computer/console/preset{
- dir = 1
- },
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ruin/space/has_grav/syndicircle/research)
-"fI" = (
-/obj/machinery/modular_computer/console/preset{
- dir = 1
- },
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ruin/space/has_grav/syndicircle/research)
-"fO" = (
-/obj/effect/decal/cleanable/blood/tracks,
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ruin/space/has_grav/syndicircle/research)
-"fZ" = (
-/obj/structure/window/plasma/reinforced/plastitanium,
-/obj/structure/grille,
-/obj/machinery/door/poddoor{
- id = 128
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/space/has_grav/syndicircle/halls)
-"gi" = (
-/obj/structure/table/reinforced,
-/obj/item/folder/documents/syndicate/red,
-/turf/open/floor/plasteel/tech,
-/area/ruin/space/has_grav/syndicircle/winter)
-"gp" = (
-/obj/structure/table/reinforced,
-/obj/item/documents/syndicate/red{
- pixel_x = -7
- },
-/obj/machinery/camera/preset{
- network = list("zoned")
- },
-/obj/item/seeds/chili/ice{
- pixel_x = -5
- },
-/turf/open/floor/plasteel/tech,
-/area/ruin/space/has_grav/syndicircle/winter)
-"gv" = (
-/obj/machinery/camera/preset{
- dir = 4;
- network = list("zoned")
- },
-/turf/open/floor/plating/asteroid/snow/atmosphere,
-/area/ruin/space/has_grav/syndicircle/winter)
-"gz" = (
-/mob/living/simple_animal/hostile/syndicate/ranged/smg{
- name = "REDFOR operative"
- },
-/turf/open/floor/plating/asteroid/snow/atmosphere,
-/area/ruin/space/has_grav/syndicircle/winter)
-"gF" = (
-/obj/structure/rack,
-/obj/item/grenade/c4{
- pixel_x = 4;
- pixel_y = -2
- },
-/obj/item/grenade/c4,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/space/has_grav/syndicircle/halls)
-"hh" = (
-/obj/structure/rack,
-/obj/item/taperecorder,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/space/has_grav/syndicircle/halls)
-"ho" = (
-/obj/structure/salvageable/server,
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ruin/space/has_grav/syndicircle/research)
-"ht" = (
-/obj/machinery/modular_computer/console/preset{
- dir = 4
- },
-/turf/open/floor/circuit,
-/area/ruin/space/has_grav/syndicircle/research)
-"hw" = (
-/obj/effect/decal/cleanable/blood/gibs,
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ruin/space/has_grav/syndicircle/research)
-"if" = (
-/obj/effect/mob_spawn/human/corpse/nanotrasensoldier,
-/obj/effect/decal/cleanable/blood/tracks,
-/obj/effect/decal/cleanable/blood/gibs/old,
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ruin/space/has_grav/syndicircle/research)
-"in" = (
-/obj/structure/window/plasma/reinforced/plastitanium,
-/obj/structure/grille,
-/obj/machinery/door/poddoor{
- id = 128;
- dir = 8
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/space/has_grav/syndicircle/halls)
-"iq" = (
-/obj/item/target,
-/obj/structure/flippedtable{
- dir = 1
- },
-/turf/open/floor/plating/dirt/jungle/wasteland,
-/area/ruin/space/has_grav/syndicircle/training)
-"ir" = (
-/obj/structure/table/reinforced,
-/obj/item/toy/redbutton{
- pixel_y = 6
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/tech,
-/area/ruin/space/has_grav/syndicircle/winter)
-"iy" = (
-/obj/structure/barricade/sandbags,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating/dirt/jungle/wasteland,
-/area/ruin/space/has_grav/syndicircle/training)
-"iz" = (
-/turf/open/floor/plasteel/tech,
-/area/ruin/space/has_grav/syndicircle/winter)
-"iD" = (
-/obj/structure/flippedtable{
- dir = 4
- },
-/mob/living/simple_animal/hostile/nanotrasen/ranged/smg{
- name = "BLUFOR operative"
- },
-/turf/open/floor/plasteel/tech,
-/area/ruin/space/has_grav/syndicircle/winter)
-"iH" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/tech,
-/area/ruin/space/has_grav/syndicircle/winter)
-"iM" = (
-/obj/structure/sign/warning/coldtemp,
-/turf/closed/wall/r_wall,
-/area/ruin/space/has_grav/syndicircle/winter)
-"iR" = (
-/obj/item/mine/pressure/explosive/shrapnel/live,
-/obj/item/stack/tile/mineral/snow,
-/obj/machinery/light/dim/directional/west,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/asteroid/snow/atmosphere,
-/area/ruin/space/has_grav/syndicircle/winter)
-"iZ" = (
-/obj/machinery/light/dim/directional/east,
-/turf/open/floor/plating/asteroid/snow/atmosphere,
-/area/ruin/space/has_grav/syndicircle/winter)
-"jo" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/space/has_grav/syndicircle/halls)
-"jx" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/space/has_grav/syndicircle/halls)
-"jA" = (
-/obj/effect/decal/cleanable/robot_debris,
-/obj/effect/decal/cleanable/oil,
-/obj/effect/decal/cleanable/shreds,
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ruin/space/has_grav/syndicircle/research)
-"jG" = (
-/obj/structure/window/plasma/reinforced/plastitanium,
-/obj/structure/grille,
-/obj/machinery/door/poddoor{
- id = 4
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/space/has_grav/syndicircle/escape)
-"kc" = (
-/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ruin/space/has_grav/syndicircle/research)
-"kj" = (
-/obj/structure/chair/office{
- dir = 4
- },
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ruin/space/has_grav/syndicircle/research)
-"kv" = (
-/obj/machinery/modular_computer/console/preset{
- dir = 8
- },
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ruin/space/has_grav/syndicircle/research)
-"kE" = (
-/obj/structure/window/plasma/reinforced/plastitanium,
-/obj/structure/grille,
-/obj/machinery/door/poddoor{
- id = 32;
- dir = 4
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/space/has_grav/syndicircle/halls)
-"kK" = (
-/obj/structure/table/reinforced,
-/obj/item/gun/ballistic/automatic/smg/c20r{
- pixel_x = 4;
- pixel_y = -4
- },
-/obj/machinery/light/dim/directional/west,
-/turf/open/floor/plasteel/tech,
-/area/ruin/space/has_grav/syndicircle/winter)
-"lb" = (
-/obj/structure/flippedtable{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/syndicircle/winter)
-"le" = (
-/obj/structure/barricade/wooden/snowed,
-/obj/effect/turf_decal/snow,
-/obj/machinery/door/airlock/hatch{
- dir = 8
- },
-/obj/structure/fans/tiny/invisible,
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/syndicircle/winter)
-"lg" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating/snowed,
-/area/ruin/space/has_grav/syndicircle/winter)
-"lv" = (
-/obj/machinery/door/poddoor,
-/obj/structure/fans/tiny,
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/space/has_grav/syndicircle/halls)
-"lP" = (
-/obj/machinery/vending/coffee,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/space/has_grav/syndicircle/halls)
-"lX" = (
-/mob/living/simple_animal/hostile/syndicate/ranged/infiltrator{
- name = "REDFOR operative"
- },
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ruin/space/has_grav/syndicircle/research)
-"mc" = (
-/obj/effect/turf_decal/techfloor{
- dir = 9
- },
-/turf/open/floor/mineral/titanium/white,
-/area/ruin/space/has_grav/syndicircle/research)
-"mq" = (
-/obj/effect/turf_decal/techfloor{
- dir = 1
- },
-/turf/open/floor/mineral/titanium/white,
-/area/ruin/space/has_grav/syndicircle/research)
-"mB" = (
-/obj/effect/turf_decal/techfloor{
- dir = 5
- },
-/turf/open/floor/mineral/titanium/white,
-/area/ruin/space/has_grav/syndicircle/research)
-"mC" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/chair/office{
- dir = 4
- },
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ruin/space/has_grav/syndicircle/research)
-"mN" = (
-/obj/structure/table/reinforced,
-/obj/item/ammo_box/magazine/smgm45{
- pixel_y = 5
- },
-/obj/item/ammo_box/magazine/smgm45{
- pixel_x = -4;
- pixel_y = -6
- },
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/syndicircle/winter)
-"na" = (
-/obj/structure/flippedtable,
-/mob/living/simple_animal/hostile/nanotrasen/ranged/smg{
- name = "BLUFOR operative"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/tech,
-/area/ruin/space/has_grav/syndicircle/winter)
-"nm" = (
-/obj/machinery/door/poddoor{
- dir = 4
- },
-/obj/structure/fans/tiny,
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/space/has_grav/syndicircle/halls)
-"nR" = (
-/obj/structure/flippedtable,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/tech,
-/area/ruin/space/has_grav/syndicircle/winter)
-"nU" = (
-/obj/machinery/power/apc/auto_name/directional/west,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/syndicircle/training)
-"nZ" = (
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/syndicircle/winter)
-"ov" = (
-/mob/living/simple_animal/hostile/syndicate/civilian{
- name = "Syndicate Researcher"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/space/has_grav/syndicircle/halls)
-"ow" = (
-/obj/effect/turf_decal/snow,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/syndicircle/winter)
-"oJ" = (
-/obj/structure/fence/door{
- dir = 8
- },
-/turf/open/floor/plating/sandy_dirt,
-/area/ruin/space/has_grav/syndicircle/training)
-"oK" = (
-/obj/structure/fence/door,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/syndicircle/training)
-"oS" = (
-/turf/open/floor/plating/snowed,
-/area/ruin/space/has_grav/syndicircle/winter)
-"oV" = (
-/obj/effect/mob_spawn/human/corpse/nanotrasensoldier,
-/obj/effect/decal/cleanable/blood,
-/obj/effect/decal/cleanable/blood/gibs/old,
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ruin/space/has_grav/syndicircle/research)
-"oW" = (
-/obj/effect/turf_decal/techfloor/corner{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/deployable_turret,
-/turf/open/floor/mineral/titanium/white,
-/area/ruin/space/has_grav/syndicircle/research)
-"pb" = (
-/turf/open/floor/mineral/titanium/white,
-/area/ruin/space/has_grav/syndicircle/research)
-"pk" = (
-/obj/machinery/modular_computer/console/preset,
-/turf/open/floor/mineral/titanium/white,
-/area/ruin/space/has_grav/syndicircle/research)
-"pt" = (
-/obj/effect/turf_decal/techfloor/corner{
- dir = 4
- },
-/turf/open/floor/mineral/titanium/white,
-/area/ruin/space/has_grav/syndicircle/research)
-"pT" = (
-/turf/closed/wall/mineral/plastitanium/nodiagonal,
-/area/ruin/space/has_grav/syndicircle/halls)
-"qm" = (
-/obj/effect/decal/cleanable/blood/gibs,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ruin/space/has_grav/syndicircle/research)
-"qo" = (
-/turf/closed/wall/mineral/plastitanium/nodiagonal,
-/area/ruin/space/has_grav/syndicircle/winter)
-"qv" = (
-/mob/living/simple_animal/hostile/syndicate/ranged/shotgun{
- name = "REDFOR operative"
- },
-/turf/open/floor/plating/ice,
-/area/ruin/space/has_grav/syndicircle/winter)
-"qP" = (
-/obj/item/target,
-/obj/machinery/light/small/directional/south,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating/dirt/jungle/wasteland,
-/area/ruin/space/has_grav/syndicircle/training)
-"qV" = (
-/obj/effect/turf_decal/techfloor{
- dir = 1
- },
-/obj/machinery/camera{
- dir = 5;
- network = list("zonec")
- },
-/turf/open/floor/circuit,
-/area/ruin/space/has_grav/syndicircle/research)
-"rf" = (
-/obj/effect/turf_decal/techfloor{
- dir = 1
- },
-/turf/open/floor/circuit,
-/area/ruin/space/has_grav/syndicircle/research)
-"ru" = (
-/obj/effect/turf_decal/techfloor{
- dir = 5
- },
-/turf/open/floor/circuit,
-/area/ruin/space/has_grav/syndicircle/research)
-"rV" = (
-/obj/effect/turf_decal/techfloor{
- dir = 8
- },
-/turf/open/floor/mineral/titanium/white,
-/area/ruin/space/has_grav/syndicircle/research)
-"sb" = (
-/obj/machinery/modular_computer/console/preset{
- dir = 4
- },
-/turf/open/floor/mineral/titanium/white,
-/area/ruin/space/has_grav/syndicircle/research)
-"st" = (
-/obj/effect/turf_decal/ntlogo{
- dir = 1
- },
-/mob/living/simple_animal/hostile/syndicate/ranged/smg/space{
- name = "REDFOR commando"
- },
-/turf/open/floor/mineral/titanium/white,
-/area/ruin/space/has_grav/syndicircle/research)
-"sC" = (
-/obj/effect/turf_decal/ntlogo{
- dir = 8
- },
-/turf/open/floor/mineral/titanium/white,
-/area/ruin/space/has_grav/syndicircle/research)
-"sE" = (
-/obj/machinery/modular_computer/console/preset{
- dir = 8
- },
-/turf/open/floor/mineral/titanium/white,
-/area/ruin/space/has_grav/syndicircle/research)
-"sI" = (
-/obj/effect/turf_decal/techfloor{
- dir = 4
- },
-/turf/open/floor/mineral/titanium/white,
-/area/ruin/space/has_grav/syndicircle/research)
-"sX" = (
-/obj/effect/mob_spawn/human/corpse/syndicatesoldier,
-/obj/effect/decal/cleanable/blood,
-/obj/effect/decal/cleanable/blood/tracks,
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ruin/space/has_grav/syndicircle/research)
-"ta" = (
-/obj/item/restraints/legcuffs/beartrap,
-/obj/structure/barricade/wooden/snowed,
-/obj/effect/turf_decal/snow,
-/obj/machinery/door/airlock/hatch,
-/obj/structure/fans/tiny/invisible,
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/syndicircle/winter)
-"tf" = (
-/obj/item/mine/pressure/explosive/shrapnel/live,
-/obj/item/stack/tile/mineral/snow,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/asteroid/snow/atmosphere,
-/area/ruin/space/has_grav/syndicircle/winter)
-"tl" = (
-/obj/structure/rack,
-/obj/item/pickaxe,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/space/has_grav/syndicircle/halls)
-"tp" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/space/has_grav/syndicircle/halls)
-"tq" = (
-/obj/structure/rack,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/space/has_grav/syndicircle/halls)
-"tz" = (
-/obj/effect/turf_decal/techfloor{
- dir = 4
- },
-/turf/open/floor/circuit,
-/area/ruin/space/has_grav/syndicircle/research)
-"tE" = (
-/obj/effect/turf_decal/techfloor{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/mineral/titanium/white,
-/area/ruin/space/has_grav/syndicircle/research)
-"tG" = (
-/obj/effect/turf_decal/ntlogo,
-/obj/machinery/nuclearbomb/beer,
-/turf/open/floor/mineral/titanium/white,
-/area/ruin/space/has_grav/syndicircle/research)
-"tN" = (
-/obj/effect/turf_decal/ntlogo{
- dir = 4
- },
-/mob/living/simple_animal/hostile/syndicate/ranged/smg/space{
- name = "REDFOR commando"
- },
-/turf/open/floor/mineral/titanium/white,
-/area/ruin/space/has_grav/syndicircle/research)
-"tV" = (
-/obj/item/ammo_casing/mm712x82/match,
-/turf/open/floor/mineral/titanium/white,
-/area/ruin/space/has_grav/syndicircle/research)
-"tZ" = (
-/obj/effect/turf_decal/techfloor{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/mineral/titanium/white,
-/area/ruin/space/has_grav/syndicircle/research)
-"uc" = (
-/obj/structure/window/plasma/reinforced/plastitanium,
-/obj/structure/grille,
-/obj/machinery/door/poddoor{
- id = 256
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/space/has_grav/syndicircle/halls)
-"up" = (
-/obj/structure/window/plasma/reinforced/plastitanium,
-/obj/structure/grille,
-/obj/machinery/door/poddoor{
- id = 256;
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/space/has_grav/syndicircle/halls)
-"ur" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/space/has_grav/syndicircle/halls)
-"ut" = (
-/obj/machinery/camera/preset{
- network = list("zoned")
- },
-/turf/open/floor/plating/asteroid/snow/atmosphere,
-/area/ruin/space/has_grav/syndicircle/winter)
-"uE" = (
-/obj/effect/turf_decal/number/two,
-/turf/closed/wall/mineral/plastitanium/nodiagonal,
-/area/ruin/space/has_grav/syndicircle/halls)
-"uU" = (
-/obj/machinery/button{
- id = 99;
- name = "Zone Alpha shutters";
- pixel_x = -25;
- dir = 4
- },
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/space/has_grav/syndicircle/halls)
-"vc" = (
-/obj/machinery/light/dim/directional/north,
-/turf/open/floor/plating/asteroid/snow/atmosphere,
-/area/ruin/space/has_grav/syndicircle/winter)
-"vg" = (
-/obj/machinery/modular_computer/console/preset{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/circuit,
-/area/ruin/space/has_grav/syndicircle/research)
-"vx" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/circuit,
-/area/ruin/space/has_grav/syndicircle/research)
-"vB" = (
-/obj/effect/turf_decal/techfloor{
- dir = 10
- },
-/turf/open/floor/mineral/titanium/white,
-/area/ruin/space/has_grav/syndicircle/research)
-"vC" = (
-/obj/effect/turf_decal/techfloor/corner{
- dir = 8
- },
-/turf/open/floor/mineral/titanium/white,
-/area/ruin/space/has_grav/syndicircle/research)
-"vE" = (
-/obj/machinery/modular_computer/console/preset{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/mineral/titanium/white,
-/area/ruin/space/has_grav/syndicircle/research)
-"vQ" = (
-/obj/machinery/light/directional/north,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/space/has_grav/syndicircle/halls)
-"vT" = (
-/obj/machinery/power/terminal{
- dir = 1
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/space/has_grav/syndicircle/halls)
-"wa" = (
-/obj/machinery/modular_computer/console/preset{
- dir = 1
- },
-/turf/open/floor/mineral/titanium/white,
-/area/ruin/space/has_grav/syndicircle/research)
-"wb" = (
-/obj/effect/turf_decal/techfloor/corner,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/mineral/titanium/white,
-/area/ruin/space/has_grav/syndicircle/research)
-"wh" = (
-/obj/structure/sign/warning{
- desc = "WARNING: Clear shoothouse before intiating a drill!";
- name = "Shoothouse Sign";
- sign_change_name = "Warning: Shoothouse"
- },
-/turf/closed/wall,
-/area/ruin/space/has_grav/syndicircle/training)
-"wp" = (
-/obj/effect/turf_decal/techfloor{
- dir = 6
- },
-/turf/open/floor/mineral/titanium/white,
-/area/ruin/space/has_grav/syndicircle/research)
-"ws" = (
-/obj/machinery/modular_computer/console/preset{
- dir = 1
- },
-/turf/open/floor/circuit,
-/area/ruin/space/has_grav/syndicircle/research)
-"wD" = (
-/obj/machinery/camera{
- dir = 8;
- network = list("zonec")
- },
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ruin/space/has_grav/syndicircle/research)
-"wG" = (
-/obj/machinery/button{
- id = 6;
- name = "Zone Delta shutters";
- pixel_x = -25;
- dir = 4
- },
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/space/has_grav/syndicircle/halls)
-"wN" = (
-/obj/structure/flora/rock/icy,
-/obj/machinery/camera/preset{
- dir = 9;
- network = list("zoned")
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating/asteroid/snow/atmosphere,
-/area/ruin/space/has_grav/syndicircle/winter)
-"wU" = (
-/obj/machinery/light/directional/east,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/space/has_grav/syndicircle/halls)
-"xd" = (
-/obj/effect/decal/cleanable/robot_debris,
-/obj/effect/decal/cleanable/plastic,
-/obj/effect/decal/cleanable/oil,
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ruin/space/has_grav/syndicircle/research)
-"xs" = (
-/obj/effect/mob_spawn/human/corpse/nanotrasensoldier,
-/obj/effect/decal/cleanable/blood/gibs/old,
-/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/plasteel/tech/grid,
-/area/ruin/space/has_grav/syndicircle/research)
-"xD" = (
-/obj/machinery/camera{
- dir = 10;
- network = list("zonea")
- },
-/obj/effect/decal/cleanable/oil,
-/turf/open/floor/plating/dirt/jungle/wasteland,
-/area/ruin/space/has_grav/syndicircle/training)
-"xE" = (
-/obj/effect/turf_decal/techfloor,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/mineral/titanium/white,
-/area/ruin/space/has_grav/syndicircle/research)
-"xF" = (
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/syndicircle/spacewalk)
-"xI" = (
-/obj/effect/turf_decal/techfloor,
-/turf/open/floor/mineral/titanium/white,
-/area/ruin/space/has_grav/syndicircle/research)
-"yf" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/syndicircle/training)
-"yG" = (
-/obj/structure/frame/machine,
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ruin/space/has_grav/syndicircle/research)
-"yO" = (
-/obj/structure/flora/rock/pile,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating/asteroid/snow/atmosphere,
-/area/ruin/space/has_grav/syndicircle/winter)
-"yT" = (
-/obj/machinery/button{
- id = 64;
- name = "Zone Bravo shutters";
- pixel_x = -8;
- pixel_y = -2;
- dir = 8
- },
-/turf/closed/wall/mineral/plastitanium/nodiagonal,
-/area/ruin/space/has_grav/syndicircle/halls)
-"zm" = (
-/turf/open/floor/circuit,
-/area/ruin/space/has_grav/syndicircle/research)
-"zn" = (
-/obj/effect/turf_decal/techfloor/corner{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/circuit,
-/area/ruin/space/has_grav/syndicircle/research)
-"zr" = (
-/obj/machinery/door/poddoor{
- dir = 4
- },
-/obj/structure/fans/tiny,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/space/has_grav/syndicircle/halls)
-"zF" = (
-/obj/effect/turf_decal/techfloor{
- dir = 1
- },
-/obj/effect/mob_spawn/human/corpse/nanotrasensoldier,
-/obj/effect/decal/cleanable/blood/splatter,
-/obj/effect/decal/cleanable/blood/tracks,
-/turf/open/floor/circuit,
-/area/ruin/space/has_grav/syndicircle/research)
-"zP" = (
-/obj/effect/decal/cleanable/blood/splatter,
-/obj/machinery/modular_computer/console/preset{
- dir = 4
- },
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ruin/space/has_grav/syndicircle/research)
-"zY" = (
-/obj/structure/statue/snow/snowman,
-/turf/open/floor/plating/asteroid/snow/atmosphere,
-/area/ruin/space/has_grav/syndicircle/winter)
-"Af" = (
-/obj/effect/decal/cleanable/blood/gibs,
-/obj/effect/decal/cleanable/blood/tracks,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/circuit,
-/area/ruin/space/has_grav/syndicircle/research)
-"Aj" = (
-/obj/effect/decal/cleanable/robot_debris,
-/obj/effect/decal/cleanable/plastic,
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ruin/space/has_grav/syndicircle/research)
-"Al" = (
-/obj/machinery/modular_computer/console/preset{
- dir = 4
- },
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ruin/space/has_grav/syndicircle/research)
-"AG" = (
-/obj/effect/mob_spawn/human/corpse/nanotrasensoldier,
-/obj/effect/decal/cleanable/blood/gibs/old,
-/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ruin/space/has_grav/syndicircle/research)
-"AP" = (
-/obj/structure/lattice,
-/turf/open/space,
-/area/template_noop)
-"AQ" = (
-/obj/machinery/light/dim/directional/south,
-/turf/open/floor/plating/asteroid/snow/atmosphere,
-/area/ruin/space/has_grav/syndicircle/winter)
-"AV" = (
-/obj/machinery/power/apc/auto_name/directional/north,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/machinery/blackbox_recorder,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/space/has_grav/syndicircle/halls)
-"Bc" = (
-/obj/machinery/light/directional/west,
-/turf/closed/mineral/random,
-/area/ruin/space/has_grav/syndicircle/spacewalk)
-"Bj" = (
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/space/has_grav/syndicircle/halls)
-"Br" = (
-/obj/effect/turf_decal/techfloor{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/camera{
- dir = 1;
- network = list("zonec")
- },
-/turf/open/floor/circuit,
-/area/ruin/space/has_grav/syndicircle/research)
-"Bw" = (
-/obj/machinery/power/apc/auto_name/directional/south,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ruin/space/has_grav/syndicircle/research)
-"Bx" = (
-/obj/machinery/button{
- id = 4;
- name = "Zone Charlie shutters";
- pixel_x = -25;
- dir = 8
- },
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ruin/space/has_grav/syndicircle/research)
-"BJ" = (
-/obj/effect/turf_decal/number/zero,
-/turf/closed/wall/mineral/plastitanium/nodiagonal,
-/area/ruin/space/has_grav/syndicircle/halls)
-"BV" = (
-/obj/effect/turf_decal/number/one,
-/turf/closed/wall/mineral/plastitanium/nodiagonal,
-/area/ruin/space/has_grav/syndicircle/halls)
-"BY" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/space/has_grav/syndicircle/halls)
-"BZ" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/tech,
-/area/ruin/space/has_grav/syndicircle/winter)
-"Cd" = (
-/obj/structure/window/plasma/reinforced/plastitanium,
-/obj/structure/grille,
-/obj/machinery/door/poddoor{
- id = 9
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/space/has_grav/syndicircle/halls)
-"Ch" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/space/has_grav/syndicircle/halls)
-"Ci" = (
-/obj/effect/turf_decal/snow,
-/obj/machinery/power/apc/auto_name/directional/west,
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/syndicircle/winter)
-"Cj" = (
-/obj/machinery/button{
- id = 6;
- name = "Zone Delta shutters";
- pixel_x = 25;
- dir = 8
- },
-/turf/open/floor/plating/asteroid/snow/atmosphere,
-/area/ruin/space/has_grav/syndicircle/winter)
-"Cu" = (
-/obj/structure/fans/tiny,
-/obj/machinery/door/poddoor{
- dir = 4
- },
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/space/has_grav/syndicircle/halls)
-"CA" = (
-/obj/machinery/button{
- id = 4;
- name = "Zone Charlie shutters";
- pixel_x = 25;
- dir = 8
- },
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/space/has_grav/syndicircle/halls)
-"CC" = (
-/obj/machinery/computer/camera_advanced{
- networks = list("zoned")
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/space/has_grav/syndicircle/halls)
-"CO" = (
-/obj/structure/window/plasma/reinforced/plastitanium,
-/obj/structure/grille,
-/obj/machinery/door/poddoor{
- id = 128;
- dir = 4
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/space/has_grav/syndicircle/halls)
-"Df" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/space/has_grav/syndicircle/halls)
-"Dm" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/space/has_grav/syndicircle/halls)
-"Dn" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/space/has_grav/syndicircle/halls)
-"DG" = (
-/obj/machinery/computer/camera_advanced{
- networks = list("zonec")
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/space/has_grav/syndicircle/halls)
-"DU" = (
-/obj/structure/flora/rock/pile,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/space/has_grav/syndicircle/spacewalk)
-"DW" = (
-/obj/structure/window/plasma/reinforced/plastitanium,
-/obj/structure/grille,
-/obj/machinery/door/poddoor{
- id = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/space/has_grav/syndicircle/halls)
-"Ed" = (
-/obj/machinery/button{
- id = 9;
- name = "Zone Delta shutters";
- pixel_y = -25
- },
-/turf/open/floor/plating/ice,
-/area/ruin/space/has_grav/syndicircle/winter)
-"Ej" = (
-/obj/machinery/button{
- id = 102;
- name = "Zone Charlie shutters";
- pixel_y = -25
- },
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ruin/space/has_grav/syndicircle/research)
-"Ek" = (
-/obj/effect/turf_decal/number/three,
-/turf/closed/wall/mineral/plastitanium/nodiagonal,
-/area/ruin/space/has_grav/syndicircle/halls)
-"EO" = (
-/obj/structure/fans/tiny,
-/obj/machinery/door/airlock/hatch,
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/space/has_grav/syndicircle/halls)
-"EQ" = (
-/obj/machinery/light/directional/north,
-/obj/machinery/vending/sovietsoda,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/space/has_grav/syndicircle/halls)
-"ES" = (
-/obj/structure/table/reinforced,
-/obj/item/clothing/suit/hooded/wintercoat/security,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/space/has_grav/syndicircle/halls)
-"ET" = (
-/obj/structure/rack,
-/obj/item/clothing/gloves/color/brown,
-/obj/item/clothing/shoes/winterboots/ice_boots,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/space/has_grav/syndicircle/halls)
-"Fq" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/chair/office{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ruin/space/has_grav/syndicircle/research)
-"Fr" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/mob/living/simple_animal/hostile/syndicate,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/space/has_grav/syndicircle/halls)
-"Fv" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/space/has_grav/syndicircle/halls)
-"FG" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/firstaid/regular,
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/space/has_grav/syndicircle/halls)
-"FH" = (
-/obj/effect/decal/cleanable/robot_debris,
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ruin/space/has_grav/syndicircle/research)
-"FM" = (
-/mob/living/simple_animal/hostile/syndicate/civilian{
- name = "Syndicate Researcher"
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/space/has_grav/syndicircle/halls)
-"GJ" = (
-/obj/structure/table/reinforced,
-/obj/item/modular_computer/laptop{
- pixel_y = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/space/has_grav/syndicircle/halls)
-"GP" = (
-/obj/structure/window/plasma/reinforced/plastitanium,
-/obj/structure/grille,
-/obj/machinery/door/poddoor{
- id = 64
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/space/has_grav/syndicircle/halls)
-"GV" = (
-/turf/open/space,
-/area/template_noop)
-"GW" = (
-/obj/structure/rack,
-/obj/item/multitool/syndie,
-/obj/item/screwdriver/nuke,
-/obj/item/screwdriver/nuke,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/space/has_grav/syndicircle/halls)
-"GZ" = (
-/obj/structure/rack,
-/obj/item/wirecutters/syndie,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/space/has_grav/syndicircle/halls)
-"Hi" = (
-/obj/machinery/light/directional/north,
-/obj/machinery/vending/cola/shamblers,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/space/has_grav/syndicircle/halls)
-"Hl" = (
-/obj/structure/fans/tiny,
-/obj/machinery/door/airlock/hatch{
- dir = 4
- },
-/turf/open/space/basic,
-/area/ruin/space/has_grav/syndicircle/halls)
-"HC" = (
-/mob/living/simple_animal/hostile/syndicate/civilian{
- name = "Syndicate Researcher"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/space/has_grav/syndicircle/halls)
-"Ik" = (
-/obj/machinery/light/directional/east,
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/space/has_grav/syndicircle/halls)
-"Im" = (
-/obj/structure/table/reinforced,
-/obj/machinery/light/directional/west,
-/obj/item/paper_bin,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/space/has_grav/syndicircle/halls)
-"Ir" = (
-/obj/structure/fans/tiny,
-/obj/machinery/door/airlock/hatch{
- dir = 4
- },
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/space/has_grav/syndicircle/halls)
-"Iv" = (
-/obj/structure/window/plasma/reinforced/plastitanium,
-/obj/structure/grille,
-/obj/machinery/door/poddoor{
- id = 4;
- dir = 8
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/space/has_grav/syndicircle/halls)
-"IE" = (
-/obj/machinery/camera{
- dir = 5;
- network = list("zonea")
- },
-/obj/item/target/alien,
-/turf/open/floor/plating/dirt/jungle/wasteland,
-/area/ruin/space/has_grav/syndicircle/training)
-"IT" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/space/has_grav/syndicircle/halls)
-"IY" = (
-/obj/machinery/power/smes/magical{
- name = "power storage unit"
- },
-/obj/structure/cable,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/space/has_grav/syndicircle/halls)
-"Je" = (
-/obj/structure/table/reinforced,
-/obj/machinery/light/directional/east,
-/obj/item/paper_bin,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/space/has_grav/syndicircle/halls)
-"Ji" = (
-/obj/machinery/light/directional/west,
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/space/has_grav/syndicircle/halls)
-"Jq" = (
-/obj/structure/rack,
-/obj/item/assembly/timer,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/space/has_grav/syndicircle/halls)
-"Jv" = (
-/obj/structure/table/reinforced,
-/obj/item/paper_bin,
-/obj/item/pen/survival,
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/space/has_grav/syndicircle/halls)
-"Jx" = (
-/obj/machinery/door/airlock/centcom{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/space/has_grav/syndicircle/halls)
-"JP" = (
-/obj/structure/window/plasma/reinforced/plastitanium,
-/obj/structure/grille,
-/obj/machinery/door/poddoor{
- id = 32
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/space/has_grav/syndicircle/halls)
-"JT" = (
-/obj/machinery/light/directional/east,
-/turf/open/floor/plating/sandy_dirt,
-/area/ruin/space/has_grav/syndicircle/training)
-"Kb" = (
-/obj/machinery/button{
- id = 32;
- name = "Zone Alpha shutters";
- pixel_x = 7;
- pixel_y = 3;
- dir = 4
- },
-/turf/closed/wall/mineral/plastitanium/nodiagonal,
-/area/ruin/space/has_grav/syndicircle/halls)
-"Kr" = (
-/obj/structure/rack,
-/obj/item/tank/internals/oxygen/red,
-/obj/item/tank/internals/oxygen/red,
-/obj/item/tank/internals/oxygen/red,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/space/has_grav/syndicircle/halls)
-"Kt" = (
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/space/has_grav/syndicircle/escape)
-"KH" = (
-/obj/machinery/button{
- id = 84;
- name = "Zone Bravo shutters";
- pixel_x = -25;
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/syndicircle/spacewalk)
-"KR" = (
-/obj/machinery/button{
- id = 909;
- name = "Zone Bravo shutters";
- pixel_y = -25
- },
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/space/has_grav/syndicircle/escape)
-"KY" = (
-/obj/structure/rack,
-/obj/item/clothing/suit/space/eva,
-/obj/item/clothing/head/helmet/space/eva,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/space/has_grav/syndicircle/halls)
-"Lb" = (
-/obj/structure/sign/warning/securearea,
-/turf/closed/wall/mineral/plastitanium/nodiagonal,
-/area/ruin/space/has_grav/syndicircle/halls)
-"Lh" = (
-/obj/structure/window/plasma/reinforced/plastitanium,
-/obj/structure/grille,
-/obj/machinery/door/poddoor{
- id = 45
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/space/has_grav/syndicircle/halls)
-"Li" = (
-/obj/effect/decal/cleanable/robot_debris,
-/obj/structure/frame/machine,
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ruin/space/has_grav/syndicircle/research)
-"Lt" = (
-/obj/machinery/light/directional/south,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/oil,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/syndicircle/training)
-"LF" = (
-/obj/machinery/button{
- id = 45;
- name = "Zone Alpha Shutters";
- pixel_y = 8
- },
-/turf/closed/wall/mineral/plastitanium,
-/area/ruin/space/has_grav/syndicircle/halls)
-"Mf" = (
-/obj/machinery/computer/camera_advanced{
- dir = 1;
- networks = list("zonea")
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/space/has_grav/syndicircle/halls)
-"Mr" = (
-/obj/machinery/computer/camera_advanced{
- dir = 1;
- networks = list("zoneb")
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/space/has_grav/syndicircle/halls)
-"Mt" = (
-/turf/closed/wall/mineral/plastitanium,
-/area/ruin/space/has_grav/syndicircle/escape)
-"Mu" = (
-/obj/machinery/door/poddoor,
-/obj/structure/fans/tiny,
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/space/has_grav/syndicircle/escape)
-"Mv" = (
-/obj/machinery/button{
- id = 99;
- name = "Zone Alpha shutters";
- pixel_x = -25
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/syndicircle/training)
-"MP" = (
-/obj/effect/decal/cleanable/dirt,
-/mob/living/simple_animal/hostile/syndicate/ranged/smg/space{
- name = "REDFOR commando"
- },
-/obj/item/storage/backpack/duffelbag/syndie/c4,
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/space/has_grav/syndicircle/spacewalk)
-"MV" = (
-/turf/closed/wall/rust,
-/area/ruin/space/has_grav/syndicircle/training)
-"MW" = (
-/obj/item/target,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating/dirt/jungle/wasteland,
-/area/ruin/space/has_grav/syndicircle/training)
-"Na" = (
-/obj/machinery/computer/helm{
- dir = 1
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/ruin/space/has_grav/syndicircle/escape)
-"Ng" = (
-/turf/open/floor/plating/sandy_dirt,
-/area/ruin/space/has_grav/syndicircle/training)
-"NT" = (
-/obj/machinery/camera{
- network = list("zonea")
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating/sandy_dirt,
-/area/ruin/space/has_grav/syndicircle/training)
-"NV" = (
-/obj/machinery/light/directional/south,
-/turf/open/space,
-/area/ruin/space/has_grav/syndicircle/spacewalk)
-"Oc" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating/sandy_dirt,
-/area/ruin/space/has_grav/syndicircle/training)
-"Ox" = (
-/turf/closed/wall,
-/area/ruin/space/has_grav/syndicircle/training)
-"OB" = (
-/obj/structure/table/reinforced,
-/obj/item/clothing/glasses/night,
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/space/has_grav/syndicircle/halls)
-"OE" = (
-/obj/structure/filingcabinet/chestdrawer,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/space/has_grav/syndicircle/halls)
-"OH" = (
-/turf/closed/mineral/random,
-/area/ruin/space/has_grav/syndicircle/spacewalk)
-"OW" = (
-/turf/closed/wall/mineral/titanium,
-/area/ruin/space/has_grav/syndicircle/escape)
-"OY" = (
-/obj/machinery/power/apc/auto_name/directional/west,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/mineral/titanium,
-/area/ruin/space/has_grav/syndicircle/escape)
-"Pq" = (
-/obj/machinery/door/airlock/centcom{
- dir = 4
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/space/has_grav/syndicircle/halls)
-"Pv" = (
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/machinery/power/port_gen/pacman,
-/obj/item/stack/sheet/mineral/plasma/twenty,
-/turf/open/floor/mineral/titanium/blue,
-/area/ruin/space/has_grav/syndicircle/escape)
-"Qc" = (
-/obj/machinery/light/directional/north,
-/turf/open/floor/mineral/titanium,
-/area/ruin/space/has_grav/syndicircle/escape)
-"Qd" = (
-/turf/open/floor/mineral/titanium/blue,
-/area/ruin/space/has_grav/syndicircle/escape)
-"Qy" = (
-/obj/machinery/button{
- id = 909;
- name = "Zone Bravo shutters";
- pixel_x = 25
- },
-/turf/open/floor/mineral/titanium,
-/area/ruin/space/has_grav/syndicircle/escape)
-"QT" = (
-/obj/machinery/light/directional/south,
-/turf/open/floor/plating/dirt/jungle/wasteland,
-/area/ruin/space/has_grav/syndicircle/training)
-"Rj" = (
-/mob/living/simple_animal/hostile/syndicate,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/space/has_grav/syndicircle/halls)
-"Rs" = (
-/obj/structure/window/plasma/reinforced/plastitanium,
-/obj/structure/grille,
-/obj/machinery/door/poddoor{
- id = 256;
- dir = 4
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/space/has_grav/syndicircle/halls)
-"Rw" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating/dirt/jungle/wasteland,
-/area/ruin/space/has_grav/syndicircle/training)
-"Rz" = (
-/obj/effect/decal/cleanable/oil,
-/turf/open/floor/plating/dirt/jungle/wasteland,
-/area/ruin/space/has_grav/syndicircle/training)
-"RH" = (
-/obj/structure/barricade/sandbags,
-/turf/open/floor/plating/dirt/jungle/wasteland,
-/area/ruin/space/has_grav/syndicircle/training)
-"RR" = (
-/obj/item/target,
-/turf/open/floor/plating/dirt/jungle/wasteland,
-/area/ruin/space/has_grav/syndicircle/training)
-"RV" = (
-/turf/open/floor/plating/dirt/jungle/wasteland,
-/area/ruin/space/has_grav/syndicircle/training)
-"Sb" = (
-/obj/structure/flippedtable{
- icon_state = "table"
- },
-/obj/item/target/clown,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating/dirt/jungle/wasteland,
-/area/ruin/space/has_grav/syndicircle/training)
-"Sf" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/space/has_grav/syndicircle/spacewalk)
-"Sh" = (
-/obj/structure/fans/tiny,
-/obj/machinery/door/airlock/titanium,
-/turf/open/floor/mineral/titanium/blue,
-/area/ruin/space/has_grav/syndicircle/escape)
-"Sl" = (
-/turf/open/floor/mineral/titanium,
-/area/ruin/space/has_grav/syndicircle/escape)
-"Sr" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/mineral/titanium/blue,
-/area/ruin/space/has_grav/syndicircle/escape)
-"Sz" = (
-/obj/structure/window/reinforced/spawner{
- dir = 4
- },
-/obj/structure/chair/comfy/shuttle{
- dir = 8
- },
-/mob/living/simple_animal/hostile/nanotrasen/ranged{
- name = "BLUFOR operative"
- },
-/turf/open/floor/mineral/titanium,
-/area/ruin/space/has_grav/syndicircle/escape)
-"SC" = (
-/obj/machinery/light/directional/south,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating/sandy_dirt,
-/area/ruin/space/has_grav/syndicircle/training)
-"SF" = (
-/obj/item/target/syndicate,
-/obj/effect/decal/cleanable/oil,
-/turf/open/floor/plating/dirt/jungle/wasteland,
-/area/ruin/space/has_grav/syndicircle/training)
-"SQ" = (
-/obj/structure/flora/rock,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/space/has_grav/syndicircle/spacewalk)
-"Tj" = (
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/space/has_grav/syndicircle/spacewalk)
-"Tl" = (
-/obj/structure/lattice,
-/turf/open/space,
-/area/ruin/space/has_grav/syndicircle/spacewalk)
-"To" = (
-/obj/structure/window/reinforced/spawner{
- dir = 8
- },
-/obj/structure/chair/comfy/shuttle{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/mob/living/simple_animal/hostile/nanotrasen/ranged{
- name = "BLUFOR operative"
- },
-/turf/open/floor/mineral/titanium,
-/area/ruin/space/has_grav/syndicircle/escape)
-"Tw" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/firstaid/ancient{
- pixel_x = -5;
- pixel_y = 8
- },
-/obj/item/storage/firstaid/ancient{
- pixel_x = 6
- },
-/turf/open/floor/mineral/titanium,
-/area/ruin/space/has_grav/syndicircle/escape)
-"Tz" = (
-/obj/structure/window/reinforced/spawner{
- dir = 4
- },
-/obj/structure/chair/comfy/shuttle{
- dir = 8
- },
-/turf/open/floor/mineral/titanium,
-/area/ruin/space/has_grav/syndicircle/escape)
-"TF" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/syndicircle/spacewalk)
-"TG" = (
-/obj/structure/fence/door,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating/sandy_dirt,
-/area/ruin/space/has_grav/syndicircle/training)
-"TP" = (
-/obj/structure/fence{
- dir = 8
- },
-/turf/open/floor/plating/sandy_dirt,
-/area/ruin/space/has_grav/syndicircle/training)
-"TQ" = (
-/obj/structure/fence/door,
-/turf/open/floor/plating/dirt/jungle/wasteland,
-/area/ruin/space/has_grav/syndicircle/training)
-"Ua" = (
-/obj/machinery/light/directional/south,
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/space/has_grav/syndicircle/halls)
-"UA" = (
-/mob/living/simple_animal/hostile/syndicate,
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/space/has_grav/syndicircle/halls)
-"UI" = (
-/obj/item/target,
-/turf/open/floor/plating/sandy_dirt,
-/area/ruin/space/has_grav/syndicircle/training)
-"UL" = (
-/obj/machinery/camera{
- dir = 5;
- network = list("zonea")
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating/dirt/jungle/wasteland,
-/area/ruin/space/has_grav/syndicircle/training)
-"Vd" = (
-/obj/machinery/camera{
- dir = 8;
- network = list("zonea")
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating/dirt/jungle/wasteland,
-/area/ruin/space/has_grav/syndicircle/training)
-"Vn" = (
-/turf/open/space,
-/area/ruin/space/has_grav/syndicircle/spacewalk)
-"Vp" = (
-/obj/structure/table/reinforced,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/mineral/titanium/blue,
-/area/ruin/space/has_grav/syndicircle/escape)
-"Vu" = (
-/obj/structure/window/reinforced/spawner{
- dir = 8
- },
-/obj/structure/chair/comfy/shuttle{
- dir = 4
- },
-/mob/living/simple_animal/hostile/nanotrasen/ranged{
- name = "BLUFOR operative"
- },
-/turf/open/floor/mineral/titanium,
-/area/ruin/space/has_grav/syndicircle/escape)
-"VH" = (
-/obj/structure/table/reinforced,
-/turf/open/floor/mineral/titanium/blue,
-/area/ruin/space/has_grav/syndicircle/escape)
-"VW" = (
-/obj/item/target,
-/obj/structure/flippedtable{
- dir = 4
- },
-/obj/structure/flippedtable{
- icon_state = "table"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating/sandy_dirt,
-/area/ruin/space/has_grav/syndicircle/training)
-"VZ" = (
-/obj/machinery/camera{
- network = list("zonea")
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating/dirt/jungle/wasteland,
-/area/ruin/space/has_grav/syndicircle/training)
-"Wt" = (
-/obj/machinery/light/directional/north,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating/sandy_dirt,
-/area/ruin/space/has_grav/syndicircle/training)
-"Wv" = (
-/obj/item/target,
-/obj/structure/flippedtable{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating/dirt/jungle/wasteland,
-/area/ruin/space/has_grav/syndicircle/training)
-"Wx" = (
-/obj/machinery/camera{
- dir = 8;
- network = list("zoneb")
- },
-/turf/open/space,
-/area/ruin/space/has_grav/syndicircle/spacewalk)
-"WH" = (
-/obj/machinery/button{
- id = 102;
- name = "Zone Charlie shutters";
- pixel_y = 25
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/space/has_grav/syndicircle/halls)
-"WU" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/button{
- id = 9;
- name = "Zone Delta shutters";
- pixel_y = 25
- },
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/space/has_grav/syndicircle/halls)
-"WV" = (
-/obj/structure/table/reinforced,
-/obj/item/clothing/head/helmet/riot{
- pixel_y = 9
- },
-/obj/item/clothing/suit/armor/vest/bulletproof{
- pixel_x = -4;
- pixel_y = -2
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/space/has_grav/syndicircle/halls)
-"WY" = (
-/obj/structure/window/plasma/reinforced/plastitanium,
-/obj/structure/grille,
-/obj/machinery/door/poddoor{
- id = 84;
- dir = 4
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/space/has_grav/syndicircle/halls)
-"Xb" = (
-/obj/structure/table/reinforced,
-/obj/item/ammo_box/magazine/co9mm{
- pixel_x = 8
- },
-/obj/item/ammo_box/magazine/co9mm,
-/obj/item/gun/ballistic/automatic/pistol/commander,
-/turf/open/floor/mineral/titanium/blue,
-/area/ruin/space/has_grav/syndicircle/escape)
-"Xf" = (
-/obj/machinery/button{
- id = 84;
- name = "Zone Bravo shutters";
- pixel_x = 25;
- dir = 8
- },
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/space/has_grav/syndicircle/halls)
-"Xo" = (
-/obj/structure/table/reinforced,
-/obj/item/clothing/head/helmet{
- pixel_x = -3;
- pixel_y = 8
- },
-/obj/item/clothing/head/helmet,
-/obj/machinery/camera{
- dir = 8;
- network = list("zoneb")
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/ruin/space/has_grav/syndicircle/escape)
-"Xt" = (
-/obj/structure/barricade/sandbags,
-/turf/open/floor/plating/sandy_dirt,
-/area/ruin/space/has_grav/syndicircle/training)
-"XA" = (
-/obj/structure/rack,
-/obj/item/ammo_box/foambox/riot,
-/obj/item/gun/ballistic/automatic/toy/pistol/riot,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/space/has_grav/syndicircle/halls)
-"XW" = (
-/mob/living/simple_animal/hostile/syndicate/melee/space{
- name = "REDFOR commando"
- },
-/turf/open/space,
-/area/ruin/space/has_grav/syndicircle/spacewalk)
-"XX" = (
-/obj/machinery/power/emitter/welded,
-/obj/structure/railing{
- dir = 10
- },
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/syndicircle/escape)
-"Yh" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile/shuttle/tinted,
-/turf/open/floor/mineral/titanium/blue,
-/area/ruin/space/has_grav/syndicircle/escape)
-"Yr" = (
-/obj/structure/chair/comfy/shuttle,
-/mob/living/simple_animal/hostile/syndicate/mecha_pilot/no_mech/nanotrasen{
- name = "BLUFOR Pilot"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/ruin/space/has_grav/syndicircle/escape)
-"Yx" = (
-/obj/machinery/power/emitter/welded,
-/obj/structure/railing{
- dir = 6
- },
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/syndicircle/escape)
-"YB" = (
-/obj/effect/decal/cleanable/oil,
-/turf/open/floor/plating/sandy_dirt,
-/area/ruin/space/has_grav/syndicircle/training)
-"YD" = (
-/obj/structure/barricade/sandbags,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating/sandy_dirt,
-/area/ruin/space/has_grav/syndicircle/training)
-"YJ" = (
-/obj/structure/fence/cut/large{
- dir = 8
- },
-/turf/open/floor/plating/sandy_dirt,
-/area/ruin/space/has_grav/syndicircle/training)
-"YV" = (
-/obj/structure/table/greyscale,
-/obj/item/assembly/timer{
- pixel_x = 5;
- pixel_y = 3
- },
-/obj/item/assembly/timer{
- pixel_x = -4;
- pixel_y = -3
- },
-/obj/machinery/camera{
- network = list("zonea")
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/syndicircle/training)
-"Zf" = (
-/obj/machinery/light/directional/west,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/space/has_grav/syndicircle/halls)
-"Zk" = (
-/obj/machinery/vending/toyliberationstation,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/syndicircle/training)
-"Zq" = (
-/obj/machinery/door/airlock/centcom,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/space/has_grav/syndicircle/halls)
-"Zt" = (
-/obj/machinery/button{
- id = 99;
- name = "Zone Alpha shutters";
- pixel_x = 8;
- dir = 4
- },
-/turf/closed/wall/mineral/plastitanium,
-/area/ruin/space/has_grav/syndicircle/halls)
-"ZH" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/space/has_grav/syndicircle/halls)
-"ZU" = (
-/obj/effect/decal/cleanable/dirt,
-/mob/living/simple_animal/hostile/syndicate/ranged/smg/space{
- name = "REDFOR commando"
- },
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/space/has_grav/syndicircle/spacewalk)
-"ZW" = (
-/turf/template_noop,
-/area/template_noop)
-"ZZ" = (
-/obj/machinery/camera{
- dir = 5;
- network = list("zoneb")
- },
-/obj/machinery/power/apc/auto_name/directional/west,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/syndicircle/spacewalk)
-
-(1,1,1) = {"
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-AP
-GV
-GV
-GV
-AP
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-"}
-(2,1,1) = {"
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-AP
-GV
-AP
-GV
-AP
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-"}
-(3,1,1) = {"
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-pT
-Ir
-pT
-Hl
-pT
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-"}
-(4,1,1) = {"
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-AP
-BJ
-ay
-ay
-ay
-pT
-AP
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-"}
-(5,1,1) = {"
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-AP
-BV
-ay
-Ik
-ay
-Lb
-AP
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-"}
-(6,1,1) = {"
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-pT
-pT
-pT
-pT
-Ir
-am
-Ir
-pT
-pT
-pT
-pT
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-"}
-(7,1,1) = {"
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-pT
-pT
-pT
-pT
-ap
-ap
-ay
-ap
-ay
-ap
-ay
-ap
-ap
-pT
-pT
-pT
-pT
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-"}
-(8,1,1) = {"
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-pT
-pT
-pT
-pT
-ap
-ap
-ap
-Df
-ur
-ur
-IT
-wU
-ay
-ap
-ap
-ap
-ap
-ap
-ap
-pT
-pT
-pT
-pT
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-"}
-(9,1,1) = {"
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-pT
-pT
-pT
-Df
-ur
-ur
-ur
-ur
-ur
-Ch
-pT
-pT
-Jx
-pT
-Pq
-pT
-pT
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-pT
-pT
-pT
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-"}
-(10,1,1) = {"
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-pT
-pT
-ay
-ap
-jx
-ap
-ap
-pT
-pT
-pT
-pT
-pT
-pT
-Dm
-ap
-ap
-pT
-pT
-pT
-pT
-pT
-pT
-ap
-ap
-ay
-ap
-ay
-pT
-pT
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-"}
-(11,1,1) = {"
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-pT
-pT
-jo
-ur
-BY
-Ch
-qo
-qo
-qo
-aW
-aW
-aW
-aW
-pT
-Dm
-ap
-ap
-pT
-MV
-Rw
-MV
-MV
-pT
-pT
-pT
-ap
-ay
-ap
-ay
-pT
-pT
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-"}
-(12,1,1) = {"
-ZW
-ZW
-ZW
-ZW
-ZW
-pT
-bo
-dN
-jx
-ay
-pT
-pT
-qo
-aW
-bL
-eh
-en
-aW
-aW
-pT
-EQ
-ap
-ap
-bS
-MW
-Rz
-Ng
-TG
-Oc
-RV
-pT
-pT
-pT
-ay
-ay
-Ua
-Kb
-pT
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-"}
-(13,1,1) = {"
-ZW
-ZW
-ZW
-ZW
-pT
-pT
-ay
-ay
-ov
-dP
-pT
-dZ
-dZ
-eh
-eu
-bL
-bL
-bx
-aW
-Cd
-ES
-ap
-eH
-Lh
-MV
-Oc
-Oc
-TP
-Ng
-Oc
-MW
-Ox
-pT
-JP
-UA
-ay
-ay
-pT
-pT
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-"}
-(14,1,1) = {"
-ZW
-ZW
-ZW
-pT
-pT
-ay
-ay
-UA
-uc
-Rs
-kK
-mN
-dZ
-dZ
-ut
-bL
-bL
-bL
-bD
-Cd
-ET
-ay
-tq
-Lh
-Ng
-Ng
-SC
-Ox
-Ng
-Oc
-Oc
-RH
-IE
-kE
-JP
-ay
-ay
-ay
-pT
-pT
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-"}
-(15,1,1) = {"
-ZW
-ZW
-ZW
-pT
-ay
-ap
-ay
-dP
-up
-ir
-BZ
-na
-Ci
-dZ
-vc
-tf
-gz
-bL
-AQ
-am
-WU
-ap
-ay
-LF
-NT
-Ng
-RV
-MV
-Ng
-Oc
-Ng
-RH
-qP
-MV
-kE
-JP
-ay
-ap
-ay
-pT
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-"}
-(16,1,1) = {"
-ZW
-ZW
-pT
-pT
-ap
-ay
-pT
-pT
-gi
-iz
-iH
-nR
-nZ
-ta
-bL
-bL
-bD
-bL
-oS
-lv
-jx
-ay
-ay
-lv
-Ng
-RH
-MV
-MV
-VW
-Ng
-YB
-Ox
-MV
-MV
-MV
-pT
-pT
-ay
-ap
-pT
-pT
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-"}
-(17,1,1) = {"
-ZW
-ZW
-pT
-ap
-ay
-ap
-pT
-dZ
-gp
-iD
-lb
-nZ
-ow
-dZ
-bL
-bL
-bL
-bL
-oS
-lv
-jx
-ay
-ay
-lv
-Oc
-RH
-SF
-MV
-Ng
-Ng
-SC
-MV
-UL
-iy
-Oc
-by
-pT
-ap
-ay
-ap
-pT
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-"}
-(18,1,1) = {"
-ZW
-ZW
-pT
-ap
-ap
-pT
-pT
-dZ
-dZ
-iH
-iz
-ow
-dZ
-dZ
-aW
-bD
-en
-bL
-Ed
-am
-jx
-ap
-ay
-LF
-Ox
-Ox
-Ox
-MV
-VZ
-Xt
-YD
-Ox
-RR
-YD
-Ng
-Ng
-pT
-pT
-ap
-ap
-pT
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-"}
-(19,1,1) = {"
-ZW
-pT
-pT
-ap
-ap
-pT
-aW
-bL
-dZ
-iM
-le
-dZ
-dZ
-aW
-aW
-eh
-bL
-bL
-bL
-Cd
-ET
-ay
-Jq
-Lh
-Ox
-RR
-Rw
-TQ
-Rw
-RH
-RR
-MV
-Oc
-JT
-Ng
-Oc
-MV
-pT
-ap
-ap
-pT
-pT
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-"}
-(20,1,1) = {"
-ZW
-pT
-ap
-ap
-pT
-pT
-bx
-bL
-gv
-iR
-bL
-bD
-eh
-eh
-aW
-aW
-bL
-bL
-en
-Cd
-ES
-ap
-Jv
-Lh
-MV
-Rw
-RV
-Ox
-MV
-Ox
-MV
-MV
-oJ
-MV
-MV
-oJ
-MV
-pT
-pT
-ap
-ap
-pT
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-"}
-(21,1,1) = {"
-ZW
-pT
-ap
-ap
-pT
-aW
-bD
-eh
-bL
-bL
-bL
-aW
-qv
-eh
-eh
-aW
-tf
-bL
-aW
-bS
-Dm
-ap
-at
-am
-MV
-RV
-SC
-Ox
-Wt
-Oc
-YJ
-bz
-Oc
-MV
-RV
-Ng
-Ng
-MW
-pT
-ap
-ap
-pT
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-"}
-(22,1,1) = {"
-pT
-pT
-ap
-ap
-pT
-aW
-bL
-en
-gz
-bL
-bL
-aW
-aW
-bL
-eh
-bL
-bL
-zY
-aW
-am
-Dm
-ap
-ap
-am
-MV
-RV
-Ng
-UI
-Oc
-MV
-MV
-MV
-Ox
-Ox
-Oc
-Ng
-Ng
-xD
-pT
-ap
-ap
-pT
-pT
-ZW
-ZW
-ZW
-ZW
-ZW
-"}
-(23,1,1) = {"
-pT
-ap
-ap
-ap
-pT
-aW
-aW
-eu
-bL
-bL
-bL
-bL
-eh
-bL
-bL
-bL
-yO
-aW
-aW
-am
-Jx
-am
-Pq
-am
-MV
-Sb
-RV
-Oc
-Ng
-Ox
-YV
-nU
-Mv
-oK
-Oc
-Oc
-RV
-QT
-pT
-ap
-ap
-ap
-pT
-ZW
-ZW
-ZW
-ZW
-ZW
-"}
-(24,1,1) = {"
-pT
-ap
-ap
-pT
-pT
-aW
-aW
-aW
-eu
-iZ
-lg
-oS
-Cj
-tf
-bL
-wN
-aW
-aW
-am
-am
-Dm
-Im
-ap
-am
-am
-MV
-RV
-Vd
-Wv
-MV
-Zk
-yf
-Lt
-wh
-RV
-Oc
-MW
-iq
-pT
-pT
-ap
-ap
-pT
-AP
-AP
-ZW
-ZW
-ZW
-"}
-(25,1,1) = {"
-pT
-ap
-ap
-pT
-pT
-pT
-pT
-ew
-ew
-am
-Cu
-Cu
-am
-ew
-ew
-bS
-am
-am
-am
-CC
-Fr
-ap
-FM
-Mf
-am
-am
-am
-am
-ci
-ci
-Zt
-zr
-nm
-am
-ci
-ci
-bS
-pT
-pT
-pT
-ap
-ay
-pT
-uE
-BJ
-pT
-AP
-AP
-"}
-(26,1,1) = {"
-pT
-ap
-ap
-au
-ap
-ap
-bM
-eH
-gF
-wG
-ay
-ay
-ay
-tl
-eH
-ap
-ap
-au
-ap
-Df
-Fv
-ur
-ur
-ur
-ur
-Zq
-ur
-Zf
-WV
-XA
-BY
-tp
-ay
-uU
-tq
-eH
-lP
-ap
-ap
-au
-ay
-ap
-EO
-ay
-ay
-EO
-GV
-GV
-"}
-(27,1,1) = {"
-pT
-ap
-at
-pT
-ap
-ap
-ap
-ap
-ay
-ap
-ay
-ay
-ap
-ay
-ap
-ap
-ap
-am
-AV
-Dm
-Bj
-IY
-vT
-ap
-OE
-am
-ap
-ap
-ap
-ay
-ap
-jx
-ay
-ap
-ay
-ap
-ap
-ap
-ap
-am
-vQ
-ay
-pT
-dN
-ay
-pT
-AP
-GV
-"}
-(28,1,1) = {"
-pT
-ap
-ap
-au
-ap
-ap
-bP
-eJ
-hh
-ay
-ay
-ay
-CA
-tq
-FG
-wU
-ap
-au
-Bj
-Dn
-ZH
-ap
-ap
-ap
-ap
-au
-ap
-ap
-eH
-KY
-Xf
-jx
-ay
-ay
-Kr
-eH
-wU
-ap
-ap
-au
-ay
-ap
-EO
-ay
-ay
-EO
-GV
-GV
-"}
-(29,1,1) = {"
-pT
-ap
-ap
-pT
-pT
-pT
-bS
-Iv
-Iv
-am
-nm
-Cu
-am
-Iv
-Iv
-am
-am
-am
-am
-DG
-HC
-ap
-Rj
-Mr
-am
-am
-am
-bS
-WY
-WY
-am
-zr
-nm
-am
-WY
-WY
-pT
-pT
-pT
-pT
-ap
-ay
-pT
-Lb
-pT
-pT
-AP
-AP
-"}
-(30,1,1) = {"
-pT
-ap
-ap
-pT
-pT
-ba
-bV
-bV
-bV
-Bx
-kc
-bV
-qV
-Li
-vg
-ho
-vg
-ho
-am
-am
-Dm
-Je
-ap
-am
-am
-OH
-SQ
-Tj
-DU
-XW
-ZZ
-TF
-xF
-KH
-Tj
-OH
-Bc
-OH
-pT
-pT
-ap
-ap
-pT
-AP
-AP
-ZW
-ZW
-ZW
-"}
-(31,1,1) = {"
-pT
-ap
-ap
-ap
-pT
-bf
-cC
-ff
-ho
-yG
-FH
-oV
-rf
-ho
-vx
-xd
-zm
-bV
-ho
-am
-Jx
-am
-Pq
-am
-OH
-Sf
-Tj
-Vn
-Vn
-Vn
-Vn
-Vn
-Vn
-Vn
-Vn
-Sf
-OH
-OH
-pT
-ap
-ap
-ap
-pT
-ZW
-ZW
-ZW
-ZW
-ZW
-"}
-(32,1,1) = {"
-pT
-pT
-ap
-ap
-pT
-bf
-cQ
-fI
-FH
-jA
-ho
-bV
-ru
-tz
-tz
-tz
-zn
-zm
-ws
-am
-Dm
-ap
-ap
-am
-OH
-Sf
-Tl
-Vn
-Vn
-Vn
-Vn
-Vn
-Vn
-Vn
-Vn
-ZU
-Sf
-OH
-pT
-ap
-ap
-pT
-pT
-ZW
-ZW
-ZW
-ZW
-ZW
-"}
-(33,1,1) = {"
-ZW
-pT
-ap
-ap
-pT
-ba
-dd
-bV
-ho
-yG
-lX
-mc
-rV
-tE
-vB
-xs
-rf
-Li
-ho
-bS
-Dm
-ap
-at
-Mt
-OW
-Sh
-Sh
-OW
-OW
-XX
-Tl
-Vn
-Vn
-Vn
-Vn
-Sf
-SQ
-OH
-pT
-ap
-ap
-pT
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-"}
-(34,1,1) = {"
-ZW
-pT
-ap
-ap
-pT
-pT
-dh
-bV
-ht
-ht
-mc
-oW
-sb
-sb
-vC
-vB
-zF
-Af
-ws
-fe
-GJ
-ap
-eH
-jG
-OY
-Qd
-Qd
-Vp
-OW
-Yh
-OW
-Tl
-Vn
-Vn
-Tj
-DU
-OH
-pT
-pT
-ap
-ap
-pT
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-"}
-(35,1,1) = {"
-ZW
-pT
-pT
-ap
-ap
-pT
-bV
-dd
-hw
-bV
-mq
-pb
-st
-tG
-vE
-xE
-rf
-bV
-yG
-fe
-GW
-ay
-Kr
-jG
-Pv
-Sl
-To
-Vu
-Xb
-Qd
-Yh
-Yh
-Tj
-Tj
-MP
-OH
-OH
-pT
-ap
-ap
-pT
-pT
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-"}
-(36,1,1) = {"
-ZW
-ZW
-pT
-ap
-ap
-pT
-pT
-fO
-if
-bV
-mq
-pk
-sC
-tN
-wa
-xI
-ru
-tz
-Br
-am
-WH
-ap
-Kt
-Mt
-Qc
-Sr
-Tw
-Qd
-Sr
-Yr
-Na
-Yh
-Sf
-OH
-OH
-OH
-pT
-pT
-ap
-ap
-pT
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-"}
-(37,1,1) = {"
-ZW
-ZW
-pT
-ap
-ay
-ap
-pT
-ba
-bV
-kc
-mB
-pt
-sE
-tV
-wb
-wp
-fO
-sX
-bV
-lv
-jx
-ay
-Kt
-Mu
-Qd
-Sz
-Tz
-Sz
-Xo
-Sr
-Yh
-Yh
-Tl
-SQ
-OH
-OH
-pT
-ap
-ay
-ap
-pT
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-"}
-(38,1,1) = {"
-ZW
-ZW
-pT
-pT
-ap
-ay
-pT
-pT
-bf
-kj
-bV
-mB
-sI
-tZ
-wp
-bV
-FH
-bV
-kc
-lv
-jx
-ay
-Kt
-Mu
-Qy
-Qd
-Sr
-VH
-OW
-Yh
-OW
-Tl
-Vn
-Tj
-DU
-pT
-pT
-ay
-ap
-pT
-pT
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-"}
-(39,1,1) = {"
-ZW
-ZW
-ZW
-pT
-ay
-ap
-du
-fZ
-CO
-kv
-mC
-qm
-bV
-lX
-ws
-ho
-bV
-Aj
-Ej
-am
-jx
-ap
-KR
-Mt
-OW
-Sh
-Sh
-OW
-OW
-Yx
-Tl
-Vn
-XW
-Tl
-bd
-GP
-ay
-ap
-ay
-pT
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-"}
-(40,1,1) = {"
-ZW
-ZW
-ZW
-pT
-pT
-ay
-ay
-ay
-fZ
-in
-kv
-dd
-sX
-fO
-ws
-FH
-yG
-ho
-bV
-fe
-GZ
-ay
-KY
-fe
-DU
-Sf
-Tl
-Vn
-Vn
-Vn
-Vn
-Vn
-Vn
-bd
-GP
-ay
-ay
-ay
-pT
-pT
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-"}
-(41,1,1) = {"
-ZW
-ZW
-ZW
-ZW
-pT
-pT
-ay
-ay
-UA
-fZ
-pT
-ba
-bV
-bV
-bV
-bV
-zP
-Al
-Fq
-DW
-OB
-ap
-eH
-fe
-OH
-Sf
-Sf
-Vn
-Vn
-Vn
-Wx
-NV
-pT
-GP
-UA
-ay
-du
-pT
-pT
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-"}
-(42,1,1) = {"
-ZW
-ZW
-ZW
-ZW
-ZW
-pT
-dx
-dN
-ay
-ay
-pT
-pT
-pT
-dd
-wD
-dd
-cC
-AG
-Bw
-pT
-Hi
-ap
-ap
-bS
-OH
-OH
-Tj
-Tj
-Sf
-DU
-pT
-pT
-pT
-ay
-ay
-Ua
-yT
-pT
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-"}
-(43,1,1) = {"
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-pT
-pT
-ay
-ap
-ay
-ap
-pT
-pT
-pT
-ba
-kv
-kv
-ba
-pT
-ap
-ap
-ap
-pT
-OH
-OH
-Tj
-DU
-pT
-pT
-pT
-ap
-ay
-ap
-ay
-pT
-pT
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-"}
-(44,1,1) = {"
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-pT
-pT
-ay
-ap
-ay
-ap
-ap
-pT
-pT
-pT
-pT
-pT
-pT
-ap
-ap
-ap
-pT
-pT
-pT
-pT
-pT
-pT
-ap
-ap
-ay
-ap
-ay
-pT
-pT
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-"}
-(45,1,1) = {"
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-pT
-pT
-pT
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-pT
-pT
-Pq
-am
-Pq
-pT
-pT
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-pT
-pT
-pT
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-"}
-(46,1,1) = {"
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-pT
-pT
-pT
-pT
-ap
-ap
-ap
-ap
-ap
-ap
-ay
-bM
-ay
-ap
-ap
-ap
-ap
-ap
-ap
-pT
-pT
-pT
-pT
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-"}
-(47,1,1) = {"
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-pT
-pT
-pT
-pT
-ap
-ap
-ay
-ap
-ay
-ap
-ay
-ap
-ap
-pT
-pT
-pT
-pT
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-"}
-(48,1,1) = {"
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-pT
-pT
-pT
-pT
-Ir
-am
-Ir
-pT
-pT
-pT
-pT
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-"}
-(49,1,1) = {"
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-AP
-BJ
-ay
-Ji
-ay
-Lb
-AP
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-"}
-(50,1,1) = {"
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-AP
-Ek
-ay
-ay
-ay
-pT
-AP
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-"}
-(51,1,1) = {"
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-pT
-Ir
-am
-Ir
-pT
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-"}
-(52,1,1) = {"
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-AP
-GV
-AP
-GV
-AP
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-"}
-(53,1,1) = {"
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-AP
-GV
-GV
-GV
-AP
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-ZW
-"}
diff --git a/_maps/RandomRuins/SpaceRuins/scav_mining.dmm b/_maps/RandomRuins/SpaceRuins/scav_mining.dmm
deleted file mode 100644
index cc1e434dc75..00000000000
--- a/_maps/RandomRuins/SpaceRuins/scav_mining.dmm
+++ /dev/null
@@ -1,4471 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"aa" = (
-/turf/open/space,
-/area/space)
-"ab" = (
-/turf/closed/mineral,
-/area/ruin/space/has_grav)
-"ac" = (
-/obj/effect/decal/cleanable/vomit,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/scav_mining/dorm)
-"ae" = (
-/mob/living/simple_animal/hostile/asteroid/hivelord,
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/space/has_grav)
-"af" = (
-/obj/item/stack/medical/bruise_pack,
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/space/has_grav)
-"ag" = (
-/obj/item/stack/ore/gold{
- amount = 2;
- pixel_x = 13
- },
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/space/has_grav)
-"ak" = (
-/obj/machinery/atmospherics/pipe/simple{
- dir = 4
- },
-/obj/machinery/door/airlock/hatch{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/scav_mining/entrance)
-"al" = (
-/obj/item/stack/ore/titanium,
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/space/has_grav)
-"au" = (
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/space/has_grav)
-"ay" = (
-/obj/item/mining_scanner,
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/space/has_grav)
-"aD" = (
-/obj/item/pickaxe/drill,
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/space/has_grav)
-"aM" = (
-/obj/effect/decal/cleanable/ash,
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/scav_mining/entrance)
-"aO" = (
-/obj/machinery/portable_atmospherics/pump,
-/obj/machinery/atmospherics/pipe/manifold/general{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/scav_mining/core)
-"aQ" = (
-/turf/closed/mineral/random,
-/area/ruin/space/has_grav)
-"aS" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/scav_mining/core)
-"aU" = (
-/obj/item/stack/ore/plasma{
- amount = 10;
- pixel_x = -10;
- pixel_y = -10
- },
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/space/has_grav)
-"aW" = (
-/obj/item/stack/ore/diamond{
- pixel_x = 5;
- pixel_y = 10
- },
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/space/has_grav)
-"ba" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/scav_mining/entrance)
-"bu" = (
-/obj/item/flashlight/lantern,
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/space/has_grav)
-"cp" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/ash,
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/scav_mining/entrance)
-"cq" = (
-/obj/machinery/atmospherics/pipe/simple{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/scav_mining/core)
-"cs" = (
-/obj/machinery/airalarm/directional/west{
- pixel_x = -25
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/scav_mining/dorm)
-"dK" = (
-/obj/item/stack/sheet/mineral/wood,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/scav_mining/dorm)
-"ez" = (
-/obj/structure/barricade/wooden,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/scav_mining/dorm)
-"fB" = (
-/obj/effect/decal/cleanable/oil/streak,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/pipe/manifold/general,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/scav_mining/core)
-"ga" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8
- },
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/scav_mining/entrance)
-"gi" = (
-/obj/machinery/atmospherics/pipe/simple{
- dir = 9
- },
-/obj/item/stack/sheet/mineral/wood,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/scav_mining/core)
-"gx" = (
-/turf/closed/wall/material,
-/area/ruin/space/has_grav/scav_mining/entrance)
-"gR" = (
-/obj/item/reagent_containers/food/drinks/waterbottle/large/empty,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/scav_mining/dorm)
-"hl" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/scav_mining/entrance)
-"hU" = (
-/obj/effect/decal/cleanable/ash,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/scav_mining/dorm)
-"kW" = (
-/obj/item/stack/sheet/metal,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/scav_mining/dorm)
-"lr" = (
-/obj/item/trash/boritos,
-/obj/effect/decal/cleanable/vomit,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/scav_mining/dorm)
-"mS" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/portable_atmospherics/pump,
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/space/has_grav)
-"nd" = (
-/obj/machinery/door/airlock/hatch{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/scav_mining/entrance)
-"nw" = (
-/obj/structure/table,
-/obj/machinery/light/small/broken/directional/west,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/scav_mining/dorm)
-"nA" = (
-/obj/item/trash/energybar,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/scav_mining/dorm)
-"nE" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple,
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/scav_mining/entrance)
-"on" = (
-/obj/item/stack/ore/plasma{
- amount = 5;
- pixel_x = -15;
- pixel_y = -10
- },
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/space/has_grav)
-"oB" = (
-/obj/item/grenade,
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/space/has_grav)
-"pn" = (
-/mob/living/simple_animal/hostile/carp,
-/turf/open/space,
-/area/space)
-"pw" = (
-/obj/machinery/light/small/broken/directional/north,
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/scav_mining/entrance)
-"pA" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/scav_mining/dorm)
-"pE" = (
-/mob/living/simple_animal/hostile/asteroid/basilisk,
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/scav_mining/entrance)
-"qb" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/pipe/simple{
- dir = 5
- },
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/scav_mining/entrance)
-"qP" = (
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/scav_mining/core)
-"qX" = (
-/obj/item/stack/medical/ointment,
-/obj/item/pipe{
- dir = 5
- },
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/space/has_grav)
-"rl" = (
-/obj/effect/mob_spawn/human/miner,
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/space/has_grav)
-"rH" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/scav_mining/entrance)
-"rM" = (
-/obj/effect/mob_spawn/human/corpse/cargo_tech,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple,
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/scav_mining/entrance)
-"sr" = (
-/obj/machinery/atmospherics/pipe/simple{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/scav_mining/dorm)
-"tr" = (
-/obj/item/stack/ore/silver{
- amount = 2;
- pixel_x = -16;
- pixel_y = -4
- },
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/space/has_grav)
-"tw" = (
-/obj/item/stack/ore/uranium{
- pixel_x = -10
- },
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/space/has_grav)
-"tY" = (
-/obj/item/stack/ore/silver{
- amount = 5;
- pixel_x = 7;
- pixel_y = -3
- },
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/space/has_grav)
-"ue" = (
-/obj/item/stack/ore/iron{
- amount = 5;
- pixel_x = -10;
- pixel_y = 3
- },
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/space/has_grav)
-"up" = (
-/obj/item/stack/ore/silver{
- amount = 5;
- pixel_x = 6;
- pixel_y = 5
- },
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/space/has_grav)
-"uH" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/pipe/simple{
- dir = 10
- },
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/scav_mining/entrance)
-"vn" = (
-/obj/machinery/power/port_gen/pacman,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/scav_mining/core)
-"vw" = (
-/obj/item/stack/ore/iron{
- amount = 15;
- pixel_x = 15;
- pixel_y = 5
- },
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/space/has_grav)
-"wi" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/scav_mining/core)
-"xv" = (
-/obj/machinery/door/airlock/hatch{
- dir = 4
- },
-/obj/structure/barricade/wooden,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple{
- dir = 6
- },
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/scav_mining/core)
-"xC" = (
-/obj/item/radio,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/general{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/scav_mining/core)
-"zo" = (
-/obj/machinery/atmospherics/pipe/simple{
- dir = 9
- },
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/scav_mining/entrance)
-"zA" = (
-/obj/item/tank/internals/oxygen,
-/obj/item/tank/internals/oxygen,
-/obj/item/tank/jetpack/improvised,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/scav_mining/core)
-"zH" = (
-/obj/machinery/door/airlock/hatch,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple,
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/scav_mining/core)
-"zO" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/scav_mining/core)
-"Ao" = (
-/obj/machinery/portable_atmospherics/canister/air,
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/scav_mining/entrance)
-"Ax" = (
-/mob/living/simple_animal/hostile/asteroid/basilisk,
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/space/has_grav)
-"Cs" = (
-/obj/machinery/light/small/broken/directional/east,
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/space/has_grav)
-"CG" = (
-/obj/structure/closet/crate,
-/obj/machinery/atmospherics/pipe/simple,
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/scav_mining/entrance)
-"Dy" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/pipe/simple{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/scav_mining/entrance)
-"Dz" = (
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/scav_mining/entrance)
-"Et" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/stack/sheet/metal,
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/space/has_grav)
-"EB" = (
-/obj/item/stack/ore/titanium{
- amount = 10;
- pixel_x = 5;
- pixel_y = -2
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/space/has_grav)
-"Fn" = (
-/turf/closed/mineral/random/labormineral,
-/area/ruin/space/has_grav)
-"Fp" = (
-/obj/item/stack/sheet/mineral/wood,
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/scav_mining/entrance)
-"FV" = (
-/obj/effect/decal/remains/human,
-/obj/item/pickaxe/drill,
-/obj/item/mining_scanner,
-/obj/item/clothing/suit/space/hardsuit/mining,
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/space/has_grav)
-"Gx" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/scav_mining/dorm)
-"Hr" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple{
- dir = 5
- },
-/obj/item/stack/sheet/metal,
-/obj/item/stack/sheet/mineral/wood,
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/scav_mining/entrance)
-"Hw" = (
-/obj/item/stack/ore/gold{
- amount = 2;
- pixel_x = 13;
- pixel_y = 10
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/space/has_grav)
-"HQ" = (
-/obj/structure/girder/displaced,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/scav_mining/dorm)
-"Ia" = (
-/obj/effect/decal/cleanable/oil,
-/obj/machinery/door/airlock/hatch{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple{
- dir = 8
- },
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/scav_mining/core)
-"Ii" = (
-/obj/machinery/atmospherics/pipe/simple{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/scav_mining/core)
-"Iu" = (
-/obj/item/stack/medical/bruise_pack,
-/obj/machinery/atmospherics/pipe/manifold/general{
- dir = 1
- },
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/scav_mining/entrance)
-"Ix" = (
-/obj/machinery/atmospherics/pipe/simple{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/scav_mining/core)
-"IA" = (
-/turf/closed/mineral/random/high_chance,
-/area/ruin/space/has_grav)
-"IG" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/scav_mining/core)
-"JB" = (
-/obj/machinery/airalarm/directional/south{
- pixel_y = -25
- },
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/scav_mining/entrance)
-"JK" = (
-/turf/closed/wall/rust,
-/area/ruin/space/has_grav/scav_mining/core)
-"Kp" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/scav_mining/core)
-"KK" = (
-/obj/machinery/portable_atmospherics/scrubber,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/scav_mining/dorm)
-"KU" = (
-/obj/machinery/portable_atmospherics/canister/nitrogen,
-/obj/machinery/atmospherics/components/unary/portables_connector{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/scav_mining/core)
-"Le" = (
-/obj/structure/girder/displaced,
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/space/has_grav)
-"Lm" = (
-/obj/item/stack/sheet/glass/fifty,
-/obj/machinery/atmospherics/components/unary/vent_pump,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/scav_mining/core)
-"LT" = (
-/obj/effect/mob_spawn/human/miner,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/scav_mining/dorm)
-"MZ" = (
-/obj/effect/decal/cleanable/blood,
-/obj/effect/mob_spawn/human/miner,
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/space/has_grav)
-"No" = (
-/obj/machinery/atmospherics/pipe/simple,
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/scav_mining/entrance)
-"ND" = (
-/obj/structure/barricade/sandbags,
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/space/has_grav)
-"NE" = (
-/obj/structure/bed,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/scav_mining/dorm)
-"Oz" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/scav_mining/entrance)
-"OD" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/pipe{
- dir = 8
- },
-/obj/effect/decal/cleanable/ash,
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/space/has_grav)
-"OI" = (
-/obj/structure/closet/crate,
-/obj/machinery/light/small/broken/directional/south,
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/scav_mining/entrance)
-"Pj" = (
-/obj/item/stack/ore/iron{
- amount = 15;
- pixel_x = -10;
- pixel_y = -4
- },
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/space/has_grav)
-"PO" = (
-/obj/item/trash/pistachios,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/scav_mining/dorm)
-"PT" = (
-/obj/structure/closet/crate,
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/scav_mining/entrance)
-"Rp" = (
-/mob/living/simple_animal/hostile/asteroid/goliath/beast/ancient,
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/space/has_grav)
-"RD" = (
-/turf/closed/wall/rust,
-/area/ruin/space/has_grav/scav_mining/entrance)
-"Sd" = (
-/obj/machinery/power/apc/auto_name/directional/east,
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/scav_mining/core)
-"Sq" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/scav_mining/core)
-"Su" = (
-/obj/machinery/atmospherics/pipe/simple{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/scav_mining/entrance)
-"Ti" = (
-/obj/machinery/power/apc/auto_name/directional/east,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/item/stack/sheet/metal,
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/scav_mining/entrance)
-"Tw" = (
-/obj/structure/closet/crate,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/scav_mining/dorm)
-"TJ" = (
-/obj/machinery/atmospherics/pipe/simple{
- dir = 8
- },
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/space/has_grav)
-"TT" = (
-/obj/machinery/suit_storage_unit/open,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/scav_mining/core)
-"Uk" = (
-/obj/machinery/light/small/broken/directional/west,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/scav_mining/dorm)
-"Uz" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/space/has_grav)
-"UR" = (
-/obj/structure/flora/ash/space/voidmelon,
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/space/has_grav)
-"Ve" = (
-/obj/item/stack/ore/bluespace_crystal{
- pixel_x = -5;
- pixel_y = 10
- },
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/space/has_grav)
-"Vw" = (
-/obj/item/trash/can/food/beans,
-/obj/machinery/atmospherics/pipe/simple{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/scav_mining/dorm)
-"Wk" = (
-/turf/closed/wall/material,
-/area/ruin/space/has_grav/scav_mining/core)
-"WC" = (
-/obj/item/stack/sheet/metal,
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/space/has_grav)
-"Xg" = (
-/obj/machinery/airalarm/directional/north{
- pixel_y = 25
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/scav_mining/core)
-"Xn" = (
-/obj/structure/barricade/wooden,
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/scav_mining/dorm)
-"XD" = (
-/obj/machinery/atmospherics/components/trinary/mixer{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/scav_mining/core)
-"YE" = (
-/obj/machinery/portable_atmospherics/canister/air,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/scav_mining/dorm)
-"YF" = (
-/obj/structure/table,
-/obj/machinery/power/apc/auto_name/directional/west,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/scav_mining/dorm)
-"Zb" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/obj/machinery/atmospherics/components/unary/portables_connector{
- dir = 4
- },
-/obj/machinery/light/small/broken/directional/west,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/scav_mining/core)
-"Zi" = (
-/obj/item/trash/can/food/beans,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/scav_mining/dorm)
-"ZC" = (
-/obj/machinery/atmospherics/pipe/simple{
- dir = 4
- },
-/obj/machinery/advanced_airlock_controller{
- pixel_y = 25
- },
-/obj/machinery/light/small/broken/directional/south,
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/scav_mining/entrance)
-"ZH" = (
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/scav_mining/dorm)
-
-(1,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(2,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-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
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(4,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(5,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(6,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-pn
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(7,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(8,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
-"}
-(9,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
-pn
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(10,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-Fn
-Fn
-Fn
-Fn
-Fn
-aa
-aa
-aa
-aa
-aa
-aa
-Fn
-Fn
-Fn
-aQ
-Fn
-Fn
-Fn
-Fn
-Fn
-Fn
-Fn
-Fn
-Fn
-Fn
-Fn
-aa
-Fn
-Fn
-Fn
-Fn
-Fn
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(11,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-Fn
-Fn
-Fn
-Fn
-Fn
-Fn
-Fn
-aa
-Fn
-Fn
-Fn
-Fn
-Fn
-Fn
-Fn
-Fn
-Fn
-Fn
-Fn
-aQ
-Fn
-Fn
-Fn
-Fn
-Fn
-Fn
-aa
-Fn
-Fn
-Fn
-Fn
-Fn
-Fn
-Fn
-aa
-Fn
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(12,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-Fn
-Fn
-Fn
-Fn
-aQ
-aQ
-Fn
-Fn
-Fn
-Fn
-Fn
-Fn
-Fn
-aQ
-aQ
-Fn
-Fn
-Fn
-Fn
-Fn
-Fn
-Fn
-Fn
-Fn
-Fn
-Fn
-Fn
-ab
-Fn
-Fn
-Fn
-Fn
-Fn
-Fn
-Fn
-Fn
-Fn
-Fn
-Fn
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(13,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-Fn
-Fn
-Fn
-aQ
-aQ
-aQ
-aQ
-aQ
-Fn
-Fn
-aQ
-Fn
-Fn
-aQ
-aQ
-aQ
-Fn
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-ab
-aQ
-Fn
-aQ
-aQ
-aQ
-Fn
-aQ
-Fn
-Fn
-Fn
-Fn
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(14,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-Fn
-Fn
-Fn
-aQ
-aQ
-aQ
-aQ
-Fn
-Fn
-Fn
-Fn
-Fn
-aQ
-aQ
-Fn
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-ab
-aQ
-aQ
-Fn
-aQ
-Fn
-Fn
-aQ
-Fn
-Fn
-Fn
-Fn
-Fn
-Fn
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(15,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-Fn
-Fn
-Fn
-Fn
-aQ
-aQ
-Fn
-Fn
-Fn
-Fn
-Fn
-Fn
-aQ
-aQ
-Fn
-au
-au
-au
-au
-au
-Uz
-bu
-au
-au
-au
-au
-au
-au
-au
-au
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-Fn
-Fn
-Fn
-Fn
-Fn
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(16,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-Fn
-Fn
-Fn
-Fn
-au
-au
-au
-aQ
-aQ
-aQ
-Fn
-aQ
-aQ
-aQ
-aQ
-au
-Uz
-aQ
-aQ
-Uz
-Uz
-au
-aQ
-aQ
-aQ
-au
-aQ
-au
-au
-ae
-au
-bu
-Uz
-ND
-af
-Uz
-au
-Le
-au
-Fn
-Fn
-Fn
-Fn
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(17,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-Fn
-Fn
-Fn
-Fn
-Fn
-aQ
-aQ
-au
-au
-aQ
-Fn
-Fn
-aQ
-aQ
-aQ
-au
-ay
-au
-aQ
-aQ
-au
-au
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-au
-au
-au
-au
-ND
-qX
-rl
-Et
-aD
-au
-Fn
-au
-Le
-Fn
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(18,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-Fn
-Fn
-Fn
-Fn
-Fn
-aQ
-aQ
-aQ
-au
-au
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-au
-au
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-up
-au
-Uz
-Uz
-ND
-OD
-Uz
-ae
-au
-WC
-au
-au
-WC
-Fn
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(19,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-Fn
-Fn
-Fn
-aQ
-Fn
-aQ
-au
-au
-aQ
-Uz
-au
-aQ
-aQ
-aQ
-aQ
-au
-Uz
-au
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-au
-au
-Le
-au
-Cs
-TJ
-au
-aQ
-aQ
-Fn
-Fn
-au
-au
-Fn
-Fn
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(20,1,1) = {"
-aa
-aa
-pn
-aa
-aa
-aa
-Fn
-Fn
-Fn
-Fn
-Fn
-aQ
-au
-au
-aQ
-aQ
-Uz
-aQ
-aQ
-aQ
-au
-au
-Uz
-ae
-aQ
-aQ
-aQ
-Ax
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-JK
-Wk
-JK
-Ia
-JK
-JK
-Wk
-Fn
-Fn
-aQ
-au
-Fn
-Fn
-Fn
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(21,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-Fn
-aQ
-Fn
-au
-au
-aQ
-au
-Uz
-Uz
-au
-Uz
-au
-au
-au
-au
-Uz
-au
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-JK
-TT
-Lm
-fB
-Zb
-KU
-Wk
-pw
-Ao
-Dz
-Fp
-Fn
-Fn
-Fn
-Fn
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(22,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-Fn
-Fn
-Fn
-Fn
-au
-au
-aQ
-Uz
-Uz
-au
-au
-au
-au
-au
-au
-aQ
-aQ
-aQ
-aQ
-IA
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-IA
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-Wk
-TT
-Ix
-gi
-XD
-cq
-JK
-Dz
-rH
-rH
-aM
-pE
-Dz
-Fn
-Fn
-Fn
-gx
-aa
-aa
-aa
-aa
-aa
-"}
-(23,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-Fn
-Fn
-Fn
-Fn
-Uz
-Uz
-au
-au
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-Fn
-aQ
-IA
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-Fn
-JK
-TT
-aO
-Sq
-xC
-aS
-zH
-nE
-Hr
-ba
-hl
-Oz
-PT
-PT
-Dz
-JB
-gx
-aa
-aa
-aa
-aa
-aa
-"}
-(24,1,1) = {"
-aa
-aa
-aa
-aa
-Fn
-Fn
-Fn
-aQ
-Fn
-au
-Uz
-au
-au
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-Fn
-aQ
-aQ
-aQ
-aQ
-IA
-aQ
-IA
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-Fn
-JK
-Xg
-Ii
-zO
-qP
-zA
-Wk
-Dz
-Dy
-Dz
-Iu
-rM
-No
-CG
-qb
-OI
-RD
-aa
-aa
-aa
-aa
-aa
-"}
-(25,1,1) = {"
-aa
-aa
-aa
-aa
-Fn
-Fn
-Fn
-aQ
-Fn
-au
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-IA
-IA
-IA
-IA
-aQ
-aQ
-aQ
-aQ
-IA
-aQ
-Fn
-Fn
-JK
-vn
-wi
-Kp
-Sd
-IG
-JK
-cp
-uH
-No
-zo
-Ti
-rH
-Dz
-Su
-Dz
-RD
-aa
-aa
-aa
-aa
-aa
-"}
-(26,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-Fn
-Fn
-Fn
-Fn
-au
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-IA
-aQ
-IA
-IA
-IA
-aQ
-au
-tr
-aQ
-IA
-IA
-aQ
-aQ
-aQ
-aQ
-Fn
-Fn
-Wk
-Wk
-JK
-xv
-JK
-JK
-JK
-aQ
-gx
-gx
-gx
-RD
-RD
-RD
-ak
-gx
-gx
-aa
-aa
-aa
-aa
-aa
-"}
-(27,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-Fn
-Fn
-Fn
-Ax
-au
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-IA
-IA
-IA
-IA
-au
-aW
-ag
-aU
-Uz
-Uz
-au
-ae
-Ve
-au
-aQ
-aQ
-aQ
-Fn
-Fn
-nw
-YF
-Gx
-Xn
-ez
-cs
-Uk
-Fn
-Fn
-aa
-aa
-aa
-aa
-RD
-ZC
-gx
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(28,1,1) = {"
-aa
-aa
-aa
-aa
-Fn
-Fn
-aQ
-Fn
-au
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-IA
-aQ
-IA
-IA
-IA
-au
-ue
-au
-au
-au
-au
-Uz
-UR
-au
-aQ
-aQ
-aQ
-aQ
-aQ
-Fn
-YE
-NE
-lr
-ZH
-Vw
-Tw
-ZH
-Tw
-Fn
-Fn
-aa
-aa
-aa
-aa
-RD
-ga
-RD
-aa
-aa
-pn
-aa
-aa
-aa
-"}
-(29,1,1) = {"
-aa
-aa
-aa
-aa
-Fn
-Fn
-aQ
-au
-oB
-aQ
-aQ
-aQ
-Fn
-IA
-IA
-IA
-aQ
-aQ
-IA
-IA
-IA
-au
-Ax
-au
-EB
-au
-au
-tw
-au
-Uz
-tw
-IA
-IA
-aQ
-aQ
-Fn
-NE
-ZH
-ZH
-ZH
-gR
-sr
-ac
-ZH
-kW
-Fn
-Fn
-aa
-aa
-aa
-aa
-gx
-nd
-gx
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(30,1,1) = {"
-aa
-aa
-aa
-aa
-Fn
-aQ
-Fn
-bu
-MZ
-aQ
-aQ
-aQ
-Fn
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-IA
-tY
-au
-au
-au
-au
-Ve
-Uz
-FV
-al
-au
-aQ
-aQ
-aQ
-aQ
-Fn
-ZH
-ZH
-LT
-kW
-ac
-pA
-nA
-dK
-KK
-Fn
-Fn
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(31,1,1) = {"
-aa
-aa
-aa
-aa
-aQ
-aQ
-au
-au
-au
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-au
-au
-up
-au
-au
-au
-Rp
-au
-au
-Uz
-tY
-aQ
-aQ
-aQ
-Fn
-ZH
-ZH
-dK
-gR
-nA
-hU
-LT
-Tw
-HQ
-Fn
-Fn
-aa
-aa
-aa
-pn
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(32,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-UR
-Uz
-ND
-aQ
-aQ
-aQ
-IA
-aQ
-aQ
-IA
-aQ
-IA
-IA
-aQ
-IA
-au
-au
-au
-tr
-au
-au
-Uz
-au
-Pj
-au
-vw
-au
-aQ
-aQ
-Fn
-Fn
-Fn
-Zi
-ZH
-ZH
-kW
-PO
-ZH
-Fn
-Fn
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(33,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-Uz
-au
-ND
-au
-aQ
-aQ
-aQ
-aQ
-aQ
-IA
-aQ
-aQ
-IA
-IA
-aQ
-au
-aQ
-aQ
-on
-au
-au
-Hw
-au
-vw
-aQ
-au
-au
-mS
-aQ
-Fn
-Fn
-ZH
-ZH
-ZH
-ZH
-NE
-ZH
-NE
-Fn
-Fn
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(34,1,1) = {"
-aa
-aa
-aa
-aa
-pn
-aa
-Fn
-Fn
-Fn
-au
-aQ
-aQ
-aQ
-Fn
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-IA
-IA
-IA
-UR
-au
-IA
-IA
-IA
-aQ
-bu
-Uz
-aQ
-aQ
-Fn
-Fn
-Fn
-Fn
-Fn
-Fn
-HQ
-ZH
-Fn
-Fn
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(35,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aQ
-Fn
-Fn
-Fn
-au
-au
-au
-aQ
-Fn
-aQ
-aQ
-IA
-aQ
-aQ
-IA
-aQ
-Fn
-aQ
-IA
-aQ
-IA
-au
-on
-IA
-IA
-IA
-aQ
-IA
-Uz
-aQ
-aQ
-aQ
-Fn
-Fn
-Fn
-Fn
-Fn
-Fn
-Fn
-Fn
-Fn
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(36,1,1) = {"
-aa
-aa
-aa
-aa
-Fn
-Fn
-Fn
-Fn
-Fn
-Fn
-au
-Uz
-au
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-IA
-IA
-IA
-IA
-aQ
-aQ
-IA
-aQ
-au
-IA
-aQ
-aQ
-aQ
-aQ
-aQ
-Fn
-Fn
-Fn
-Fn
-Fn
-Fn
-Fn
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(37,1,1) = {"
-aa
-aa
-aa
-aa
-Fn
-Fn
-Fn
-aQ
-Fn
-Fn
-au
-au
-au
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-Uz
-au
-aQ
-aQ
-aQ
-aQ
-aQ
-Fn
-Fn
-Fn
-Fn
-Fn
-Fn
-Fn
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(38,1,1) = {"
-aa
-aa
-aa
-aa
-Fn
-Fn
-Fn
-aQ
-aQ
-Fn
-aQ
-au
-ae
-au
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-ae
-aQ
-IA
-IA
-au
-aQ
-IA
-aQ
-aQ
-aQ
-aQ
-aQ
-Fn
-Fn
-Fn
-Fn
-Fn
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(39,1,1) = {"
-aa
-aa
-aa
-aa
-Fn
-Fn
-Fn
-Fn
-aQ
-Fn
-aQ
-aQ
-au
-au
-aQ
-aQ
-au
-au
-aQ
-aQ
-aQ
-aQ
-aQ
-Fn
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-au
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-Fn
-Fn
-Fn
-Fn
-Fn
-Fn
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(40,1,1) = {"
-aa
-aa
-aa
-aa
-aQ
-aQ
-Fn
-Fn
-aQ
-Fn
-aQ
-aQ
-aQ
-au
-IA
-aQ
-au
-au
-au
-aQ
-IA
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-au
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-Fn
-Fn
-Fn
-Fn
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(41,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aQ
-Fn
-Fn
-Fn
-Fn
-Fn
-aQ
-aQ
-au
-au
-au
-au
-au
-au
-au
-au
-au
-aQ
-aQ
-aQ
-aQ
-aQ
-Fn
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-au
-au
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-Fn
-Fn
-Fn
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(42,1,1) = {"
-aa
-aa
-aa
-aa
-aQ
-aQ
-Fn
-Fn
-Fn
-Fn
-Fn
-aQ
-aQ
-aQ
-au
-au
-au
-au
-Fn
-Fn
-au
-au
-au
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-Fn
-aQ
-aQ
-au
-Ax
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-Fn
-Fn
-Fn
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(43,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aQ
-Fn
-Fn
-Fn
-aQ
-aQ
-Fn
-Fn
-aQ
-au
-au
-Fn
-Fn
-Fn
-Fn
-au
-aQ
-au
-au
-au
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-au
-au
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-Fn
-Fn
-Fn
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(44,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-Fn
-Fn
-Fn
-Fn
-Fn
-Fn
-aQ
-Fn
-Fn
-Fn
-aQ
-aQ
-Fn
-au
-aQ
-aQ
-aQ
-au
-au
-au
-au
-au
-aQ
-aQ
-aQ
-IA
-au
-au
-aQ
-aQ
-aQ
-aQ
-aQ
-Fn
-Fn
-Fn
-Fn
-Fn
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(45,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-Fn
-Fn
-Fn
-Fn
-Fn
-Fn
-aQ
-Fn
-aQ
-aQ
-aQ
-aQ
-Fn
-Fn
-aQ
-aQ
-aQ
-aQ
-aQ
-IA
-aQ
-au
-au
-au
-au
-au
-au
-aQ
-aQ
-aQ
-aQ
-aQ
-Fn
-Fn
-Fn
-Fn
-Fn
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(46,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-Fn
-Fn
-Fn
-Fn
-Fn
-Fn
-Fn
-Fn
-Fn
-Fn
-Fn
-aQ
-aQ
-Fn
-Fn
-aQ
-aQ
-aQ
-aQ
-Fn
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-Fn
-Fn
-aQ
-aQ
-aQ
-Fn
-Fn
-Fn
-Fn
-Fn
-aa
-aa
-aa
-aa
-pn
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(47,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aQ
-Fn
-Fn
-aQ
-Fn
-Fn
-Fn
-Fn
-Fn
-Fn
-Fn
-aQ
-Fn
-Fn
-Fn
-Fn
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-Fn
-aQ
-Fn
-Fn
-Fn
-Fn
-Fn
-Fn
-Fn
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-pn
-aa
-aa
-"}
-(48,1,1) = {"
-pn
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aQ
-Fn
-Fn
-aQ
-Fn
-Fn
-aQ
-Fn
-Fn
-Fn
-aQ
-Fn
-Fn
-Fn
-aQ
-aQ
-Fn
-Fn
-aQ
-aQ
-Fn
-Fn
-aQ
-aQ
-aQ
-Fn
-aQ
-aQ
-Fn
-Fn
-Fn
-Fn
-Fn
-Fn
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(49,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aQ
-aQ
-Fn
-aQ
-aQ
-Fn
-Fn
-Fn
-Fn
-aQ
-Fn
-Fn
-Fn
-Fn
-Fn
-Fn
-Fn
-Fn
-Fn
-Fn
-aQ
-aQ
-Fn
-aQ
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(50,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-Fn
-Fn
-Fn
-aQ
-aQ
-Fn
-Fn
-Fn
-Fn
-Fn
-Fn
-Fn
-aQ
-Fn
-aa
-Fn
-Fn
-Fn
-Fn
-Fn
-Fn
-aQ
-aQ
-aQ
-aQ
-aa
-aa
-aa
-aa
-aa
-pn
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(51,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-Fn
-Fn
-Fn
-Fn
-Fn
-aQ
-aQ
-aQ
-Fn
-aa
-aQ
-Fn
-Fn
-aa
-aa
-aa
-aa
-aa
-Fn
-aa
-aQ
-aQ
-aQ
-aQ
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(52,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-Fn
-Fn
-aQ
-Fn
-Fn
-Fn
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-Fn
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(53,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-Fn
-Fn
-Fn
-Fn
-Fn
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(54,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
-pn
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(55,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
-"}
-(56,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-pn
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-Fn
-Fn
-Fn
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(57,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
-"}
-(58,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
-"}
-(59,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
-"}
-(60,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
-"}
diff --git a/_maps/RandomRuins/SpaceRuins/singularity_lab.dmm b/_maps/RandomRuins/SpaceRuins/singularity_lab.dmm
index 202a6c0c0b7..28f84c6dfea 100644
--- a/_maps/RandomRuins/SpaceRuins/singularity_lab.dmm
+++ b/_maps/RandomRuins/SpaceRuins/singularity_lab.dmm
@@ -827,7 +827,7 @@
/obj/structure/spacevine/dense{
pixel_x = -32
},
-/mob/living/simple_animal/hostile/zombie/kudzu{
+/mob/living/simple_animal/hostile/human/zombie/kudzu{
zombiejob = "Assistant"
},
/obj/structure/flora/ausbushes/lavendergrass,
@@ -885,7 +885,7 @@
/area/ruin/space/has_grav/singularitylab/cargo)
"dx" = (
/obj/structure/spacevine/dense,
-/mob/living/simple_animal/hostile/zombie/kudzu{
+/mob/living/simple_animal/hostile/human/zombie/kudzu{
zombiejob = "Assistant"
},
/turf/open/floor/plating/grass/jungle{
@@ -2576,7 +2576,7 @@
},
/obj/structure/window/reinforced/tinted/frosted,
/obj/item/soap/nanotrasen,
-/mob/living/simple_animal/hostile/zombie/kudzu{
+/mob/living/simple_animal/hostile/human/zombie/kudzu{
zombiejob = "Assistant"
},
/turf/open/floor/plasteel/dark,
@@ -2642,7 +2642,7 @@
/turf/open/floor/plating/asteroid/airless,
/area/ruin/space/has_grav)
"kR" = (
-/mob/living/simple_animal/hostile/zombie/kudzu{
+/mob/living/simple_animal/hostile/human/zombie/kudzu{
zombiejob = "Cargo Technician"
},
/obj/effect/turf_decal/siding/yellow{
@@ -2942,7 +2942,7 @@
/area/ruin/space/has_grav/singularitylab/lab)
"lL" = (
/obj/structure/spacevine/dense,
-/mob/living/simple_animal/hostile/zombie/kudzu{
+/mob/living/simple_animal/hostile/human/zombie/kudzu{
zombiejob = "Assistant"
},
/obj/structure/flora/ausbushes/fullgrass,
@@ -3049,7 +3049,7 @@
/area/ruin/space/has_grav/singularitylab/cargo)
"mj" = (
/obj/structure/spacevine/dense,
-/mob/living/simple_animal/hostile/zombie/kudzu{
+/mob/living/simple_animal/hostile/human/zombie/kudzu{
zombiejob = "Assistant"
},
/obj/structure/flora/ausbushes/fullgrass,
@@ -3290,7 +3290,7 @@
/area/ruin/space/has_grav/singularitylab/reactor)
"nd" = (
/obj/effect/turf_decal/corner/opaque/white/full,
-/mob/living/simple_animal/hostile/zombie/kudzu{
+/mob/living/simple_animal/hostile/human/zombie/kudzu{
zombiejob = "Scientist"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
@@ -3610,7 +3610,7 @@
},
/area/ruin/space/has_grav/singularitylab)
"ol" = (
-/mob/living/simple_animal/hostile/zombie/kudzu{
+/mob/living/simple_animal/hostile/human/zombie/kudzu{
zombiejob = "Shaft Miner"
},
/turf/open/floor/plasteel/dark,
@@ -4271,7 +4271,7 @@
dir = 10
},
/obj/structure/railing/corner,
-/mob/living/simple_animal/hostile/zombie/kudzu{
+/mob/living/simple_animal/hostile/human/zombie/kudzu{
zombiejob = "Station Engineer"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4,
@@ -4555,9 +4555,6 @@
},
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/singularitylab/lab)
-"se" = (
-/turf/open/space/basic,
-/area/ruin/space/has_grav)
"sh" = (
/obj/effect/turf_decal/corner/opaque/white/full,
/obj/item/weldingtool/empty,
@@ -5557,7 +5554,7 @@
/area/ruin/space/has_grav/singularitylab)
"wV" = (
/obj/structure/spacevine/dense,
-/mob/living/simple_animal/hostile/zombie/kudzu{
+/mob/living/simple_animal/hostile/human/zombie/kudzu{
zombiejob = "Assistant"
},
/turf/open/floor/plating/grass/jungle{
@@ -6315,7 +6312,7 @@
"zC" = (
/obj/effect/turf_decal/corner/opaque/white/full,
/obj/effect/turf_decal/corner/opaque/white/full,
-/mob/living/simple_animal/hostile/zombie/kudzu{
+/mob/living/simple_animal/hostile/human/zombie/kudzu{
zombiejob = "Scientist"
},
/obj/effect/turf_decal/siding/thinplating/light,
@@ -6899,7 +6896,7 @@
/obj/effect/turf_decal/corner/opaque/purple{
dir = 5
},
-/mob/living/simple_animal/hostile/zombie/kudzu{
+/mob/living/simple_animal/hostile/human/zombie/kudzu{
zombiejob = "Scientist"
},
/turf/open/floor/plasteel,
@@ -7222,7 +7219,7 @@
"CX" = (
/obj/effect/turf_decal/corner/opaque/white/full,
/obj/effect/turf_decal/corner/opaque/white/full,
-/mob/living/simple_animal/hostile/zombie/kudzu{
+/mob/living/simple_animal/hostile/human/zombie/kudzu{
zombiejob = "Scientist"
},
/obj/effect/turf_decal/siding/thinplating/light{
@@ -9024,7 +9021,7 @@
/obj/structure/chair/office{
dir = 8
},
-/mob/living/simple_animal/hostile/zombie/kudzu{
+/mob/living/simple_animal/hostile/human/zombie/kudzu{
zombiejob = "Security Officer"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2,
@@ -9243,9 +9240,7 @@
/turf/open/floor/wood,
/area/ruin/space/has_grav/singularitylab/civvie)
"Ke" = (
-/turf/closed/indestructible/rock{
- base_icon_state = "smoothrocks"
- },
+/turf/closed/indestructible/rock,
/area/ruin/space/has_grav)
"Kf" = (
/obj/structure/cable{
@@ -9452,7 +9447,7 @@
pixel_y = 4
},
/obj/effect/turf_decal/corner/opaque/white/full,
-/mob/living/simple_animal/hostile/zombie/kudzu{
+/mob/living/simple_animal/hostile/human/zombie/kudzu{
zombiejob = "Scientist"
},
/obj/effect/turf_decal/siding/thinplating/light/corner,
@@ -9798,7 +9793,7 @@
/obj/structure/chair{
dir = 1
},
-/mob/living/simple_animal/hostile/zombie/kudzu{
+/mob/living/simple_animal/hostile/human/zombie/kudzu{
zombiejob = "Cargo Technician"
},
/obj/machinery/light/small/directional/south,
@@ -10328,7 +10323,7 @@
/obj/structure/chair{
dir = 8
},
-/mob/living/simple_animal/hostile/zombie/kudzu{
+/mob/living/simple_animal/hostile/human/zombie/kudzu{
zombiejob = "Cargo Technician"
},
/turf/open/floor/carpet/nanoweave/beige,
@@ -11694,7 +11689,7 @@
/obj/structure/chair/office{
dir = 4
},
-/mob/living/simple_animal/hostile/zombie/kudzu{
+/mob/living/simple_animal/hostile/human/zombie/kudzu{
zombiejob = "Quartermaster"
},
/obj/effect/decal/cleanable/blood{
@@ -12894,7 +12889,7 @@
/area/ruin/space/has_grav/singularitylab/civvie)
"WE" = (
/obj/structure/spacevine,
-/mob/living/simple_animal/hostile/zombie/kudzu{
+/mob/living/simple_animal/hostile/human/zombie/kudzu{
zombiejob = "Assistant"
},
/turf/open/floor/plating/grass/jungle{
@@ -13854,15 +13849,13 @@ tq
tq
tq
tq
-tq
-tq
-tq
-tq
-tq
id
tq
tq
tq
+Ke
+Ke
+Ke
tq
tq
tq
@@ -13875,58 +13868,10 @@ tq
tq
tq
tq
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-id
-id
-id
-id
-id
-id
-id
-id
-tq
id
id
tq
tq
-"}
-(2,1,1) = {"
-tq
-tq
-tq
-tq
-tq
-tq
-tq
tq
tq
tq
@@ -13935,19 +13880,6 @@ id
tq
tq
tq
-Ke
-Ke
-Ke
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-tq
tq
tq
tq
@@ -13980,23 +13912,9 @@ tq
tq
tq
tq
-id
-id
-id
-id
-id
-id
-id
-id
-id
-id
-id
-id
-id
-tq
tq
"}
-(3,1,1) = {"
+(2,1,1) = {"
tq
tq
tq
@@ -14025,6 +13943,8 @@ tq
tq
tq
tq
+tq
+id
id
id
tq
@@ -14032,12 +13952,19 @@ tq
tq
tq
tq
+id
+id
+tq
+tq
tq
tq
tq
-id
tq
tq
+id
+id
+id
+id
tq
tq
tq
@@ -14045,6 +13972,11 @@ tq
tq
tq
tq
+id
+id
+id
+id
+id
tq
tq
tq
@@ -14056,24 +13988,10 @@ tq
tq
tq
tq
-id
-id
-id
-id
-id
-id
-id
-id
-id
-id
-id
-id
-id
-id
tq
tq
"}
-(4,1,1) = {"
+(3,1,1) = {"
tq
tq
tq
@@ -14101,6 +14019,7 @@ id
tq
tq
tq
+tq
id
id
id
@@ -14109,11 +14028,10 @@ tq
tq
tq
tq
-tq
-tq
id
id
-tq
+id
+id
tq
tq
tq
@@ -14129,9 +14047,9 @@ tq
tq
tq
tq
-tq
-tq
-tq
+id
+id
+id
id
id
id
@@ -14150,7 +14068,7 @@ tq
tq
tq
"}
-(5,1,1) = {"
+(4,1,1) = {"
tq
tq
tq
@@ -14176,12 +14094,12 @@ Ke
Ke
Ke
id
+Ke
tq
-id
-id
-id
tq
tq
+id
+tq
tq
tq
tq
@@ -14193,12 +14111,10 @@ id
id
tq
tq
-tq
-tq
-id
-id
id
id
+tq
+tq
id
id
tq
@@ -14216,9 +14132,11 @@ id
id
id
id
-tq
-tq
-tq
+id
+id
+id
+id
+id
tq
tq
tq
@@ -14227,7 +14145,7 @@ tq
tq
tq
"}
-(6,1,1) = {"
+(5,1,1) = {"
tq
tq
tq
@@ -14253,9 +14171,8 @@ Ke
id
Ke
id
-tq
-tq
-id
+Ke
+Ke
tq
tq
tq
@@ -14270,15 +14187,14 @@ id
id
tq
tq
-tq
-tq
-tq
-tq
+id
id
id
tq
tq
-tq
+id
+id
+id
tq
tq
tq
@@ -14291,7 +14207,9 @@ id
id
id
id
-id
+tq
+tq
+tq
tq
tq
tq
@@ -14304,7 +14222,7 @@ tq
tq
tq
"}
-(7,1,1) = {"
+(6,1,1) = {"
tq
tq
Ke
@@ -14328,14 +14246,20 @@ id
id
id
id
+id
+id
+id
+Ke
Ke
tq
tq
tq
tq
tq
+Ke
tq
-tq
+id
+id
tq
tq
tq
@@ -14345,18 +14269,8 @@ id
id
id
tq
-tq
-tq
-tq
-tq
-tq
-tq
id
id
-id
-tq
-tq
-tq
tq
tq
tq
@@ -14368,7 +14282,11 @@ id
id
id
id
-kP
+id
+tq
+tq
+tq
+tq
tq
tq
tq
@@ -14381,7 +14299,7 @@ tq
tq
tq
"}
-(8,1,1) = {"
+(7,1,1) = {"
tq
Ke
Ke
@@ -14398,7 +14316,11 @@ id
id
id
id
-id
+Yt
+AB
+dh
+st
+Hr
id
id
id
@@ -14406,29 +14328,21 @@ id
id
id
Ke
+Ke
tq
tq
tq
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-tq
+Ke
+Ke
+Ke
id
id
tq
tq
tq
tq
-tq
-tq
-tq
-tq
-tq
id
+tq
id
tq
tq
@@ -14445,7 +14359,11 @@ id
id
id
id
-kP
+tq
+tq
+tq
+tq
+tq
tq
tq
tq
@@ -14458,7 +14376,7 @@ tq
tq
tq
"}
-(9,1,1) = {"
+(8,1,1) = {"
id
Ke
id
@@ -14474,16 +14392,28 @@ id
id
id
id
+Ue
+AS
+fD
+pd
+pd
+SY
+Tb
+UG
id
id
id
id
id
-id
-id
+Ke
+Ke
+Ke
+Ke
+Ke
id
Ke
Ke
+Ke
tq
tq
tq
@@ -14494,363 +14424,9 @@ tq
tq
tq
tq
-id
-id
-tq
-tq
-tq
-tq
tq
tq
tq
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-id
-id
-id
-id
-id
-id
-id
-id
-kP
-kP
-kP
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-"}
-(10,1,1) = {"
-tq
-Ke
-Ke
-Ke
-id
-id
-id
-id
-id
-id
-id
-id
-id
-id
-id
-id
-id
-id
-id
-id
-id
-id
-id
-id
-Ke
-Ke
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-id
-id
-id
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-id
-id
-id
-id
-id
-id
-id
-id
-kP
-kP
-kP
-kP
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-"}
-(11,1,1) = {"
-tq
-tq
-tq
-Ke
-id
-id
-id
-id
-id
-id
-id
-id
-id
-id
-id
-id
-id
-id
-id
-id
-id
-id
-id
-id
-id
-Ke
-Ke
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-id
-id
-id
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-id
-id
-id
-id
-id
-id
-id
-id
-kP
-kP
-kP
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-"}
-(12,1,1) = {"
-tq
-tq
-Ke
-Ke
-id
-id
-id
-id
-id
-id
-id
-id
-id
-id
-id
-id
-id
-id
-id
-id
-id
-id
-id
-id
-id
-id
-Ke
-Ke
-tq
-tq
-tq
-tq
-tq
-Ke
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-id
-id
-id
-id
-tq
-tq
-tq
-tq
-tq
-tq
-id
-id
-id
-id
-kP
-kP
-id
-id
-kP
-kP
-kP
-kP
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-"}
-(13,1,1) = {"
-tq
-Ke
-Ke
-id
-id
-id
-id
-id
-id
-id
-id
-id
-id
-id
-id
-id
-Yt
-AB
-dh
-st
-Hr
-id
-id
-id
-id
-id
-id
-Ke
-Ke
-tq
-tq
-tq
-Ke
-Ke
-Ke
-tq
-tq
-tq
-tq
-tq
-tq
-id
-tq
-id
-tq
-tq
-tq
-tq
-tq
-tq
-id
-id
-id
-id
-kP
-kP
-kP
-id
-id
-kP
-kP
-kP
-kP
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-"}
-(14,1,1) = {"
-id
-Ke
-id
-id
-id
-id
-id
id
id
id
@@ -14859,54 +14435,11 @@ id
id
id
id
-Ue
-AS
-fD
-pd
-pd
-SY
-Tb
-UG
-id
-id
-id
-id
-id
-Ke
-Ke
-Ke
-Ke
-Ke
-id
-Ke
-Ke
-Ke
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-tq
-tq
+kP
tq
tq
tq
tq
-id
-id
-id
-id
-kP
-kP
-kP
-id
-kP
-kP
-kP
-kP
-kP
tq
tq
tq
@@ -14920,7 +14453,7 @@ tq
tq
tq
"}
-(15,1,1) = {"
+(9,1,1) = {"
id
Ke
id
@@ -14997,7 +14530,7 @@ tq
tq
tq
"}
-(16,1,1) = {"
+(10,1,1) = {"
tq
Ke
Ke
@@ -15074,7 +14607,7 @@ tq
tq
tq
"}
-(17,1,1) = {"
+(11,1,1) = {"
tq
tq
Ke
@@ -15151,7 +14684,7 @@ tq
tq
tq
"}
-(18,1,1) = {"
+(12,1,1) = {"
tq
tq
Ke
@@ -15228,7 +14761,7 @@ tq
tq
tq
"}
-(19,1,1) = {"
+(13,1,1) = {"
tq
Ke
Ke
@@ -15305,7 +14838,7 @@ tq
tq
tq
"}
-(20,1,1) = {"
+(14,1,1) = {"
tq
Ke
Qo
@@ -15382,7 +14915,7 @@ tq
tq
tq
"}
-(21,1,1) = {"
+(15,1,1) = {"
tq
Ke
tq
@@ -15459,7 +14992,7 @@ tq
tq
tq
"}
-(22,1,1) = {"
+(16,1,1) = {"
tq
tq
tq
@@ -15536,7 +15069,7 @@ tq
tq
tq
"}
-(23,1,1) = {"
+(17,1,1) = {"
tq
tq
tq
@@ -15613,7 +15146,7 @@ tq
tq
tq
"}
-(24,1,1) = {"
+(18,1,1) = {"
tq
id
id
@@ -15690,7 +15223,7 @@ tq
tq
tq
"}
-(25,1,1) = {"
+(19,1,1) = {"
tq
tq
id
@@ -15767,7 +15300,7 @@ tq
tq
tq
"}
-(26,1,1) = {"
+(20,1,1) = {"
tq
tq
tq
@@ -15844,7 +15377,7 @@ tq
tq
tq
"}
-(27,1,1) = {"
+(21,1,1) = {"
tq
tq
tq
@@ -15921,7 +15454,7 @@ tq
tq
tq
"}
-(28,1,1) = {"
+(22,1,1) = {"
tq
tq
Ke
@@ -15998,7 +15531,7 @@ tq
tq
tq
"}
-(29,1,1) = {"
+(23,1,1) = {"
tq
tq
Ke
@@ -16075,7 +15608,7 @@ tq
tq
tq
"}
-(30,1,1) = {"
+(24,1,1) = {"
tq
id
Ke
@@ -16152,7 +15685,7 @@ tq
tq
tq
"}
-(31,1,1) = {"
+(25,1,1) = {"
tq
id
Ke
@@ -16229,7 +15762,7 @@ kP
tq
tq
"}
-(32,1,1) = {"
+(26,1,1) = {"
tq
tq
Ke
@@ -16306,7 +15839,7 @@ Ke
tq
tq
"}
-(33,1,1) = {"
+(27,1,1) = {"
tq
tq
Ke
@@ -16383,7 +15916,7 @@ Ke
tq
tq
"}
-(34,1,1) = {"
+(28,1,1) = {"
tq
tq
tq
@@ -16460,7 +15993,7 @@ Ke
tq
tq
"}
-(35,1,1) = {"
+(29,1,1) = {"
tq
Ke
Ke
@@ -16533,11 +16066,11 @@ NB
id
id
Ke
-se
+Qo
tq
tq
"}
-(36,1,1) = {"
+(30,1,1) = {"
tq
Ke
id
@@ -16614,7 +16147,7 @@ Qo
tq
tq
"}
-(37,1,1) = {"
+(31,1,1) = {"
tq
Ke
Ke
@@ -16691,7 +16224,7 @@ Qo
tq
tq
"}
-(38,1,1) = {"
+(32,1,1) = {"
tq
tq
tq
@@ -16768,7 +16301,7 @@ Ke
tq
tq
"}
-(39,1,1) = {"
+(33,1,1) = {"
tq
tq
tq
@@ -16845,7 +16378,7 @@ Ke
tq
tq
"}
-(40,1,1) = {"
+(34,1,1) = {"
tq
tq
tq
@@ -16922,7 +16455,7 @@ Ke
tq
tq
"}
-(41,1,1) = {"
+(35,1,1) = {"
id
id
Ke
@@ -16999,7 +16532,7 @@ Qo
tq
tq
"}
-(42,1,1) = {"
+(36,1,1) = {"
id
id
Ke
@@ -17076,7 +16609,7 @@ tq
tq
tq
"}
-(43,1,1) = {"
+(37,1,1) = {"
tq
tq
Ke
@@ -17153,7 +16686,7 @@ tq
tq
tq
"}
-(44,1,1) = {"
+(38,1,1) = {"
tq
tq
Ke
@@ -17230,7 +16763,7 @@ Ke
tq
tq
"}
-(45,1,1) = {"
+(39,1,1) = {"
tq
tq
Ke
@@ -17307,7 +16840,7 @@ Ke
tq
tq
"}
-(46,1,1) = {"
+(40,1,1) = {"
tq
tq
Ke
@@ -17384,7 +16917,7 @@ Ke
tq
tq
"}
-(47,1,1) = {"
+(41,1,1) = {"
tq
Ke
Ke
@@ -17461,7 +16994,7 @@ Ke
tq
tq
"}
-(48,1,1) = {"
+(42,1,1) = {"
tq
Ke
id
@@ -17538,7 +17071,7 @@ Ke
tq
tq
"}
-(49,1,1) = {"
+(43,1,1) = {"
tq
Ke
id
@@ -17615,7 +17148,7 @@ Ke
tq
tq
"}
-(50,1,1) = {"
+(44,1,1) = {"
tq
Ke
id
@@ -17692,7 +17225,7 @@ Ke
tq
tq
"}
-(51,1,1) = {"
+(45,1,1) = {"
tq
Ke
Ke
@@ -17769,7 +17302,7 @@ Ke
tq
tq
"}
-(52,1,1) = {"
+(46,1,1) = {"
tq
tq
Ke
@@ -17846,7 +17379,7 @@ Ke
Ke
tq
"}
-(53,1,1) = {"
+(47,1,1) = {"
tq
tq
Ke
@@ -17923,7 +17456,7 @@ id
Ke
tq
"}
-(54,1,1) = {"
+(48,1,1) = {"
tq
tq
Ke
@@ -18000,7 +17533,7 @@ Ke
Ke
tq
"}
-(55,1,1) = {"
+(49,1,1) = {"
tq
id
Ke
@@ -18077,7 +17610,7 @@ Ke
tq
tq
"}
-(56,1,1) = {"
+(50,1,1) = {"
tq
id
Ke
@@ -18154,7 +17687,7 @@ Qo
tq
tq
"}
-(57,1,1) = {"
+(51,1,1) = {"
id
id
tq
@@ -18231,7 +17764,7 @@ Qo
tq
tq
"}
-(58,1,1) = {"
+(52,1,1) = {"
tq
tq
tq
@@ -18308,7 +17841,7 @@ Qo
tq
tq
"}
-(59,1,1) = {"
+(53,1,1) = {"
tq
tq
tq
@@ -18385,7 +17918,7 @@ Qo
tq
tq
"}
-(60,1,1) = {"
+(54,1,1) = {"
tq
tq
tq
@@ -18462,7 +17995,7 @@ Ke
tq
tq
"}
-(61,1,1) = {"
+(55,1,1) = {"
tq
tq
tq
@@ -18539,7 +18072,7 @@ Ke
tq
tq
"}
-(62,1,1) = {"
+(56,1,1) = {"
tq
tq
tq
@@ -18616,7 +18149,7 @@ Ke
Ke
tq
"}
-(63,1,1) = {"
+(57,1,1) = {"
tq
id
Ke
@@ -18693,7 +18226,7 @@ id
Ke
tq
"}
-(64,1,1) = {"
+(58,1,1) = {"
tq
tq
Ke
@@ -18770,7 +18303,7 @@ id
Ke
tq
"}
-(65,1,1) = {"
+(59,1,1) = {"
tq
tq
Ke
@@ -18847,7 +18380,7 @@ id
Ke
tq
"}
-(66,1,1) = {"
+(60,1,1) = {"
tq
tq
Ke
@@ -18924,7 +18457,7 @@ id
Ke
tq
"}
-(67,1,1) = {"
+(61,1,1) = {"
tq
tq
Ke
@@ -19001,7 +18534,7 @@ Ke
Ke
tq
"}
-(68,1,1) = {"
+(62,1,1) = {"
tq
Ke
Ke
@@ -19078,7 +18611,7 @@ Ke
tq
tq
"}
-(69,1,1) = {"
+(63,1,1) = {"
Ke
Ke
id
@@ -19155,7 +18688,7 @@ Ke
tq
tq
"}
-(70,1,1) = {"
+(64,1,1) = {"
Ke
id
id
@@ -19232,7 +18765,7 @@ Ke
tq
tq
"}
-(71,1,1) = {"
+(65,1,1) = {"
Ke
id
NB
@@ -19309,7 +18842,7 @@ Ke
tq
tq
"}
-(72,1,1) = {"
+(66,1,1) = {"
Ke
id
id
@@ -19386,7 +18919,7 @@ Ke
tq
tq
"}
-(73,1,1) = {"
+(67,1,1) = {"
Ke
id
id
@@ -19463,7 +18996,7 @@ Ke
tq
tq
"}
-(74,1,1) = {"
+(68,1,1) = {"
Ke
id
id
@@ -19540,7 +19073,7 @@ Ke
Ke
tq
"}
-(75,1,1) = {"
+(69,1,1) = {"
Ke
Ke
id
@@ -19617,7 +19150,7 @@ id
Ke
tq
"}
-(76,1,1) = {"
+(70,1,1) = {"
tq
Ke
id
@@ -19694,7 +19227,7 @@ Ke
Ke
tq
"}
-(77,1,1) = {"
+(71,1,1) = {"
tq
Ke
NB
@@ -19771,7 +19304,7 @@ Ke
tq
tq
"}
-(78,1,1) = {"
+(72,1,1) = {"
tq
Ke
id
@@ -19848,7 +19381,7 @@ Ke
tq
tq
"}
-(79,1,1) = {"
+(73,1,1) = {"
tq
Ke
Ke
@@ -19925,7 +19458,7 @@ Qo
tq
tq
"}
-(80,1,1) = {"
+(74,1,1) = {"
tq
tq
Ke
@@ -20002,7 +19535,7 @@ Qo
tq
tq
"}
-(81,1,1) = {"
+(75,1,1) = {"
tq
tq
Ke
@@ -20079,7 +19612,7 @@ Ke
tq
tq
"}
-(82,1,1) = {"
+(76,1,1) = {"
tq
tq
tq
@@ -20156,7 +19689,7 @@ Ke
Ke
tq
"}
-(83,1,1) = {"
+(77,1,1) = {"
tq
tq
Ke
@@ -20233,7 +19766,7 @@ id
Ke
tq
"}
-(84,1,1) = {"
+(78,1,1) = {"
tq
tq
Ke
@@ -20310,7 +19843,7 @@ Ke
Ke
tq
"}
-(85,1,1) = {"
+(79,1,1) = {"
tq
tq
Ke
@@ -20387,7 +19920,7 @@ Ke
tq
tq
"}
-(86,1,1) = {"
+(80,1,1) = {"
tq
id
Ke
@@ -20464,7 +19997,7 @@ Ke
tq
tq
"}
-(87,1,1) = {"
+(81,1,1) = {"
tq
id
Ke
@@ -20541,7 +20074,7 @@ Ke
tq
tq
"}
-(88,1,1) = {"
+(82,1,1) = {"
tq
tq
Ke
@@ -20618,7 +20151,7 @@ Ke
tq
tq
"}
-(89,1,1) = {"
+(83,1,1) = {"
tq
tq
Ke
@@ -20695,7 +20228,7 @@ Ke
tq
tq
"}
-(90,1,1) = {"
+(84,1,1) = {"
tq
Ke
Ke
@@ -20772,7 +20305,7 @@ Ke
Ke
tq
"}
-(91,1,1) = {"
+(85,1,1) = {"
tq
Ke
id
@@ -20849,7 +20382,7 @@ id
Ke
tq
"}
-(92,1,1) = {"
+(86,1,1) = {"
tq
Ke
Ke
@@ -20926,7 +20459,7 @@ Ke
Ke
tq
"}
-(93,1,1) = {"
+(87,1,1) = {"
tq
id
id
@@ -21003,7 +20536,7 @@ Ke
tq
tq
"}
-(94,1,1) = {"
+(88,1,1) = {"
tq
id
tq
@@ -21080,7 +20613,7 @@ Ke
tq
tq
"}
-(95,1,1) = {"
+(89,1,1) = {"
tq
id
tq
@@ -21157,7 +20690,7 @@ tq
tq
tq
"}
-(96,1,1) = {"
+(90,1,1) = {"
tq
id
tq
@@ -21234,7 +20767,7 @@ tq
tq
tq
"}
-(97,1,1) = {"
+(91,1,1) = {"
tq
id
tq
@@ -21311,7 +20844,7 @@ tq
tq
tq
"}
-(98,1,1) = {"
+(92,1,1) = {"
tq
tq
tq
@@ -21388,7 +20921,7 @@ tq
tq
tq
"}
-(99,1,1) = {"
+(93,1,1) = {"
tq
tq
tq
@@ -21465,7 +20998,7 @@ tq
tq
tq
"}
-(100,1,1) = {"
+(94,1,1) = {"
tq
tq
tq
@@ -21542,7 +21075,7 @@ tq
tq
tq
"}
-(101,1,1) = {"
+(95,1,1) = {"
tq
tq
tq
@@ -21619,7 +21152,7 @@ id
tq
tq
"}
-(102,1,1) = {"
+(96,1,1) = {"
tq
tq
tq
@@ -21696,7 +21229,7 @@ tq
tq
tq
"}
-(103,1,1) = {"
+(97,1,1) = {"
tq
tq
tq
@@ -21773,7 +21306,7 @@ tq
tq
tq
"}
-(104,1,1) = {"
+(98,1,1) = {"
tq
tq
id
@@ -21850,7 +21383,7 @@ tq
tq
tq
"}
-(105,1,1) = {"
+(99,1,1) = {"
tq
tq
id
@@ -21927,7 +21460,7 @@ tq
tq
tq
"}
-(106,1,1) = {"
+(100,1,1) = {"
tq
tq
tq
@@ -22004,7 +21537,7 @@ tq
tq
tq
"}
-(107,1,1) = {"
+(101,1,1) = {"
tq
tq
tq
@@ -22081,7 +21614,7 @@ tq
tq
tq
"}
-(108,1,1) = {"
+(102,1,1) = {"
tq
tq
tq
@@ -22158,7 +21691,7 @@ tq
tq
tq
"}
-(109,1,1) = {"
+(103,1,1) = {"
tq
tq
tq
@@ -22235,7 +21768,7 @@ tq
tq
tq
"}
-(110,1,1) = {"
+(104,1,1) = {"
tq
tq
tq
@@ -22312,7 +21845,7 @@ tq
tq
tq
"}
-(111,1,1) = {"
+(105,1,1) = {"
tq
tq
tq
@@ -22389,7 +21922,7 @@ Ke
tq
tq
"}
-(112,1,1) = {"
+(106,1,1) = {"
tq
tq
tq
@@ -22466,7 +21999,7 @@ Ke
id
tq
"}
-(113,1,1) = {"
+(107,1,1) = {"
tq
tq
tq
@@ -22543,7 +22076,7 @@ Ke
tq
tq
"}
-(114,1,1) = {"
+(108,1,1) = {"
tq
tq
id
@@ -22620,7 +22153,7 @@ tq
tq
tq
"}
-(115,1,1) = {"
+(109,1,1) = {"
tq
id
id
@@ -22697,7 +22230,7 @@ tq
tq
tq
"}
-(116,1,1) = {"
+(110,1,1) = {"
tq
id
id
@@ -22774,7 +22307,7 @@ tq
tq
tq
"}
-(117,1,1) = {"
+(111,1,1) = {"
tq
tq
tq
@@ -22851,7 +22384,7 @@ tq
tq
tq
"}
-(118,1,1) = {"
+(112,1,1) = {"
tq
tq
tq
diff --git a/_maps/RandomRuins/SpaceRuins/spacemall.dmm b/_maps/RandomRuins/SpaceRuins/spacemall.dmm
index eb669d4116e..05d9a042df5 100644
--- a/_maps/RandomRuins/SpaceRuins/spacemall.dmm
+++ b/_maps/RandomRuins/SpaceRuins/spacemall.dmm
@@ -2809,10 +2809,9 @@
/obj/item/clothing/head/collectable/chef,
/obj/item/clothing/head/collectable/HoP,
/obj/item/clothing/head/collectable/rabbitears,
-/obj/item/clothing/head/helmet/chaplain,
+/obj/item/clothing/head/witchunter,
/obj/item/clothing/neck/cloak/trans,
/obj/item/clothing/neck/cloak/cap,
-/obj/item/clothing/head/helmet/chaplain/witchunter_hat,
/obj/item/clothing/neck/beads,
/obj/item/clothing/neck/necklace/dope,
/obj/item/clothing/neck/stripedredscarf,
@@ -11992,7 +11991,6 @@
"Tc" = (
/obj/structure/rack,
/obj/effect/turf_decal/corner/transparent/green/full,
-/obj/effect/spawner/lootdrop/seed_vault,
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/spacemall/maint)
"Td" = (
diff --git a/_maps/RandomRuins/SpaceRuins/transport18.dmm b/_maps/RandomRuins/SpaceRuins/transport18.dmm
deleted file mode 100644
index c42e6366f36..00000000000
--- a/_maps/RandomRuins/SpaceRuins/transport18.dmm
+++ /dev/null
@@ -1,3399 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"ai" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/industrial/fire{
- dir = 8
- },
-/obj/item/trash/can,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/airless,
-/area/ruin/space/has_grav/transport18mid)
-"ax" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/public,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/airless,
-/area/ruin/space/has_grav/transport18mid)
-"aE" = (
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/item/stack/sheet/mineral/wood,
-/obj/item/stack/sheet/mineral/wood,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/greenglow,
-/obj/item/trash/can{
- pixel_y = -8
- },
-/obj/item/trash/can{
- pixel_x = 4;
- pixel_y = 4
- },
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/space/has_grav/transport18mid)
-"aT" = (
-/turf/closed/wall/mineral/titanium,
-/area/ruin/space/transport18aft)
-"aV" = (
-/obj/effect/turf_decal/number/zero{
- color = "#000000";
- dir = 1
- },
-/turf/closed/wall/mineral/titanium/nodiagonal,
-/area/ruin/space/has_grav/transport18mid)
-"aZ" = (
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/space/has_grav/transport18mid)
-"ba" = (
-/obj/structure/lattice,
-/obj/structure/grille/broken,
-/turf/open/space,
-/area/space)
-"bh" = (
-/obj/structure/cable/cyan{
- icon_state = "6-10"
- },
-/obj/item/stack/cable_coil/cut/red,
-/obj/machinery/light/small/built/directional/north,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/ruin/space/transport18aft)
-"bT" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/carpet/blue/airless,
-/area/ruin/space/has_grav/transport18mid)
-"cN" = (
-/obj/structure/lattice,
-/obj/structure/reagent_dispensers/beerkeg,
-/turf/open/space,
-/area/space)
-"dp" = (
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/space/has_grav/transport18mid)
-"dq" = (
-/obj/machinery/door/airlock/hatch,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/barricade/wooden/crude,
-/turf/open/floor/engine/hull/interior,
-/area/ruin/space/has_grav/transport18mid)
-"dy" = (
-/obj/structure/chair,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/airless,
-/area/ruin/space/has_grav/transport18mid)
-"dE" = (
-/obj/machinery/plumbing/input,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/space/has_grav/transport18mid)
-"dH" = (
-/obj/machinery/power/apc/auto_name/directional/east,
-/obj/structure/cable,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/carpet/airless,
-/area/ruin/space/has_grav/transport18mid)
-"dU" = (
-/obj/structure/chair/comfy/shuttle{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/fluff/paper/stack{
- dir = 1
- },
-/turf/open/floor/carpet/blue/airless,
-/area/ruin/space/has_grav/transport18mid)
-"eg" = (
-/turf/template_noop,
-/area/template_noop)
-"et" = (
-/obj/machinery/light/broken/directional/south,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/vomit/old,
-/obj/item/trash/plate{
- pixel_x = 2;
- pixel_y = 9
- },
-/obj/structure/table/glass,
-/turf/open/floor/plasteel/airless,
-/area/ruin/space/has_grav/transport18mid)
-"eJ" = (
-/obj/structure/chair/comfy/shuttle{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/carpet/blue/airless,
-/area/ruin/space/has_grav/transport18mid)
-"eK" = (
-/obj/structure/girder,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/ruin/space/transport18aft)
-"eS" = (
-/obj/structure/reagent_dispensers/beerkeg,
-/obj/effect/turf_decal/industrial/warning/fulltile,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/transport18mid)
-"eY" = (
-/obj/item/wallframe/airalarm{
- pixel_y = 25
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/airless,
-/area/ruin/space/transport18aft)
-"fw" = (
-/obj/machinery/power/smes,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
-/area/ruin/space/transport18aft)
-"fx" = (
-/obj/item/wallframe/extinguisher_cabinet{
- pixel_y = 32
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/light/small/broken/directional/south,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/transport18mid)
-"fy" = (
-/obj/structure/reagent_dispensers/beerkeg,
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/space/has_grav/transport18mid)
-"fE" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/reagent_dispensers/beerkeg,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/space/has_grav/transport18mid)
-"gf" = (
-/obj/effect/turf_decal/number/one,
-/turf/closed/wall,
-/area/ruin/space/has_grav/transport18mid)
-"gm" = (
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/structure/fluff/broken_flooring{
- icon_state = "singular"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/airless,
-/area/ruin/space/transport18aft)
-"go" = (
-/obj/structure/girder,
-/obj/item/stack/sheet/mineral/titanium,
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/transport18mid)
-"gp" = (
-/obj/item/clothing/shoes/magboots,
-/obj/effect/gibspawner/human,
-/turf/open/floor/plating{
- icon_state = "platingdmg2"
- },
-/area/ruin/space/transport18aft)
-"gs" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating{
- icon_state = "platingdmg2"
- },
-/area/ruin/space/transport18aft)
-"gx" = (
-/obj/item/stack/cable_coil/cut/red,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/airless,
-/area/ruin/space/transport18aft)
-"gD" = (
-/obj/machinery/light/broken/directional/north,
-/obj/machinery/suit_storage_unit/open,
-/obj/effect/turf_decal/industrial/fire{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/airless,
-/area/ruin/space/has_grav/transport18mid)
-"gY" = (
-/obj/structure/table/reinforced,
-/obj/item/radio/intercom/directional/north,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/airless,
-/area/ruin/space/has_grav/transport18mid)
-"gZ" = (
-/obj/structure/reagent_dispensers/beerkeg,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/transport18mid)
-"hn" = (
-/obj/structure/sign/warning/enginesafety,
-/turf/closed/wall/mineral/titanium/nodiagonal,
-/area/ruin/space/transport18aft)
-"iy" = (
-/obj/structure/bed,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/carpet/airless,
-/area/ruin/space/has_grav/transport18mid)
-"iD" = (
-/obj/structure/girder,
-/turf/open/floor/plating,
-/area/ruin/space/transport18aft)
-"iE" = (
-/obj/item/trash/can,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/vomit/old,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/space/has_grav/transport18mid)
-"iW" = (
-/obj/machinery/light/small/broken/directional/south,
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/machinery/plumbing/tank,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/space/has_grav/transport18mid)
-"iZ" = (
-/obj/machinery/power/apc/auto_name/directional/west,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/item/trash/can,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/carpet/blue/airless,
-/area/ruin/space/has_grav/transport18mid)
-"jl" = (
-/obj/item/trash/can,
-/turf/open/space,
-/area/space)
-"jq" = (
-/obj/structure/fluff/broken_flooring{
- dir = 4;
- icon_state = "singular"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
-/area/ruin/space/transport18aft)
-"jr" = (
-/obj/item/storage/cans/sixbeer,
-/obj/item/storage/cans/sixbeer,
-/obj/item/storage/cans/sixbeer,
-/obj/item/storage/cans/sixbeer,
-/obj/item/storage/cans/sixbeer,
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/structure/closet/crate/large{
- name = "damp crate"
- },
-/obj/machinery/light/small/directional/south,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/space/has_grav/transport18mid)
-"jz" = (
-/obj/structure/frame/computer{
- anchored = 1;
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/airless,
-/area/ruin/space/has_grav/transport18mid)
-"jP" = (
-/obj/item/trash/can{
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/space/has_grav/transport18mid)
-"jV" = (
-/obj/machinery/power/shuttle/engine/liquid/beer{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/space/transport18aft)
-"km" = (
-/obj/item/stack/sheet/metal,
-/turf/open/space,
-/area/space)
-"kC" = (
-/obj/structure/fluff/broken_flooring{
- dir = 4;
- icon_state = "pile"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
-/area/ruin/space/transport18aft)
-"kK" = (
-/obj/machinery/suit_storage_unit/open,
-/obj/effect/turf_decal/industrial/fire{
- dir = 6
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/plasteel/airless,
-/area/ruin/space/has_grav/transport18mid)
-"kR" = (
-/obj/item/wirecutters,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/space/transport18aft)
-"la" = (
-/obj/structure/reagent_dispensers/beerkeg,
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/greenglow,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/space/has_grav/transport18mid)
-"lf" = (
-/obj/machinery/light/small/directional/north,
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/machinery/plumbing/tank,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/space/has_grav/transport18mid)
-"lK" = (
-/obj/item/storage/cans/sixbeer,
-/obj/item/storage/cans/sixbeer,
-/obj/item/storage/cans/sixbeer,
-/obj/item/storage/cans/sixbeer,
-/obj/item/storage/cans/sixbeer,
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/structure/closet/crate/large{
- name = "damp crate"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/space/has_grav/transport18mid)
-"lN" = (
-/obj/structure/girder,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/transport18mid)
-"lT" = (
-/obj/machinery/power/port_gen/pacman,
-/obj/structure/cable/cyan{
- icon_state = "0-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
-/area/ruin/space/transport18aft)
-"lV" = (
-/obj/structure/table/reinforced,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/wallframe/airalarm{
- pixel_y = 25
- },
-/obj/machinery/button/door{
- id = "transp19";
- name = "Container Blast Door Control";
- pixel_x = 5
- },
-/obj/machinery/button/door{
- id = "transp19_windows";
- name = "Window Shutter Control";
- pixel_x = -5
- },
-/turf/open/floor/plasteel/airless,
-/area/ruin/space/has_grav/transport18mid)
-"lY" = (
-/obj/effect/turf_decal/number/two,
-/turf/closed/wall,
-/area/ruin/space/has_grav/transport18mid)
-"mb" = (
-/obj/machinery/atmospherics/components/unary/shuttle/heater/tank{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/space/transport18aft)
-"md" = (
-/obj/structure/door_assembly/door_assembly_hatch,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/pod,
-/area/ruin/space/transport18aft)
-"me" = (
-/obj/item/trash/can,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/space/has_grav/transport18mid)
-"mj" = (
-/obj/item/stack/rods,
-/turf/open/space,
-/area/space)
-"mt" = (
-/obj/machinery/door/poddoor/multi_tile/three_tile_hor{
- id = "transp19"
- },
-/obj/effect/turf_decal/industrial/warning/fulltile,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/transport18mid)
-"mA" = (
-/obj/machinery/door/airlock/hatch{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/pod,
-/area/ruin/space/has_grav/transport18mid)
-"mI" = (
-/obj/structure/sign/warning/nosmoking,
-/turf/closed/wall/mineral/titanium/nodiagonal,
-/area/ruin/space/transport18aft)
-"mU" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/light/small/directional/north,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/transport18mid)
-"mX" = (
-/obj/item/wrench,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/ruin/space/transport18aft)
-"ne" = (
-/obj/item/storage/cans/sixbeer,
-/obj/item/storage/cans/sixbeer,
-/obj/item/storage/cans/sixbeer,
-/obj/item/storage/cans/sixbeer,
-/obj/item/storage/cans/sixbeer,
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/structure/closet/crate/large{
- name = "damp crate"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/space/has_grav/transport18mid)
-"np" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/carpet/airless,
-/area/ruin/space/has_grav/transport18mid)
-"ns" = (
-/obj/item/stack/ducts/fifty,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel,
-/area/ruin/space/transport18aft)
-"nw" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/airless,
-/area/ruin/space/transport18aft)
-"nx" = (
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/machinery/plumbing/tank,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/space/has_grav/transport18mid)
-"nJ" = (
-/obj/effect/decal/cleanable/food/flour,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/airless,
-/area/ruin/space/has_grav/transport18mid)
-"nL" = (
-/obj/structure/bed,
-/obj/machinery/light/directional/south,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/carpet/airless,
-/area/ruin/space/has_grav/transport18mid)
-"oa" = (
-/obj/item/storage/cans/sixbeer,
-/obj/item/storage/cans/sixbeer,
-/obj/item/storage/cans/sixbeer,
-/obj/item/storage/cans/sixbeer,
-/obj/item/storage/cans/sixbeer,
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/structure/closet/crate/large{
- name = "damp crate"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/space/has_grav/transport18mid)
-"of" = (
-/obj/item/storage/cans/sixbeer,
-/obj/item/storage/cans/sixbeer,
-/obj/item/storage/cans/sixbeer,
-/obj/item/storage/cans/sixbeer,
-/obj/item/storage/cans/sixbeer,
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/machinery/light/small/directional/north,
-/obj/item/stack/sheet/mineral/wood,
-/obj/effect/decal/cleanable/greenglow,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/space/has_grav/transport18mid)
-"ot" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/light/small/broken/directional/south,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/transport18mid)
-"ou" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/trash/can{
- pixel_x = -7;
- pixel_y = -7
- },
-/obj/item/trash/can{
- pixel_x = -11;
- pixel_y = 10
- },
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/space/has_grav/transport18mid)
-"oL" = (
-/obj/machinery/door/airlock/hatch,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/transport18mid)
-"oP" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/reagent_dispensers/beerkeg,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/space/has_grav/transport18mid)
-"oQ" = (
-/obj/structure/tank_dispenser/oxygen,
-/obj/structure/sign/warning/vacuum{
- pixel_x = -32
- },
-/obj/effect/turf_decal/industrial/fire{
- dir = 5
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/transport18mid)
-"oT" = (
-/obj/structure/girder,
-/turf/open/space,
-/area/space)
-"po" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/airless,
-/area/ruin/space/transport18aft)
-"pr" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/ruin/space/transport18aft)
-"pE" = (
-/obj/machinery/power/shuttle/engine/liquid/beer{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/ruin/space/transport18aft)
-"pF" = (
-/obj/effect/turf_decal/industrial/warning/fulltile,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/transport18mid)
-"pN" = (
-/obj/item/stack/rods,
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/transport18mid)
-"pR" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/reagent_dispensers/beerkeg,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/space/has_grav/transport18mid)
-"qf" = (
-/obj/structure/fluff/broken_flooring{
- dir = 2;
- icon_state = "plating"
- },
-/turf/template_noop,
-/area/space)
-"qJ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/vomit/old,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/space/has_grav/transport18mid)
-"qM" = (
-/obj/structure/frame/machine,
-/obj/effect/turf_decal/industrial/fire{
- dir = 9
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel,
-/area/ruin/space/transport18aft)
-"qY" = (
-/obj/machinery/light/broken/directional/south,
-/obj/machinery/power/apc/auto_name/directional/south,
-/obj/structure/cable,
-/obj/effect/turf_decal/industrial/fire,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/airless,
-/area/ruin/space/has_grav/transport18mid)
-"re" = (
-/obj/machinery/door/airlock/hatch,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/engine/hull/interior,
-/area/ruin/space/has_grav/transport18mid)
-"rC" = (
-/turf/closed/wall/rust,
-/area/ruin/space/has_grav/transport18mid)
-"rF" = (
-/obj/structure/fluff/broken_flooring,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
-/area/ruin/space/transport18aft)
-"rV" = (
-/obj/structure/table/reinforced,
-/obj/machinery/light/dim/directional/north,
-/obj/item/trash/plate{
- pixel_x = -5
- },
-/obj/item/trash/plate{
- pixel_x = 5;
- pixel_y = 7
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/airless,
-/area/ruin/space/has_grav/transport18mid)
-"sr" = (
-/obj/effect/turf_decal/number/five{
- dir = 1
- },
-/turf/closed/wall/rust,
-/area/ruin/space/has_grav/transport18mid)
-"tb" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/light/small/broken/directional/north,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/transport18mid)
-"tJ" = (
-/obj/structure/girder,
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/transport18mid)
-"tK" = (
-/obj/structure/table_frame,
-/obj/item/shard{
- icon_state = "tiny"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/carpet/airless,
-/area/ruin/space/has_grav/transport18mid)
-"tY" = (
-/obj/effect/spawner/structure/window/shuttle,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "transp19_windows"
- },
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/transport18mid)
-"uj" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/carpet/airless,
-/area/ruin/space/has_grav/transport18mid)
-"uo" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/space/has_grav/transport18mid)
-"ur" = (
-/obj/machinery/light/small/directional/north,
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/space/has_grav/transport18mid)
-"uC" = (
-/obj/item/storage/cans/sixbeer,
-/obj/item/storage/cans/sixbeer,
-/obj/item/storage/cans/sixbeer,
-/obj/item/storage/cans/sixbeer,
-/obj/item/storage/cans/sixbeer,
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/structure/closet/crate/large{
- name = "damp crate"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/space/has_grav/transport18mid)
-"uQ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/trash/can{
- pixel_x = 4;
- pixel_y = 4
- },
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/space/has_grav/transport18mid)
-"vg" = (
-/obj/structure/chair/comfy/shuttle{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/shard,
-/turf/open/floor/carpet/blue/airless,
-/area/ruin/space/has_grav/transport18mid)
-"vo" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- icon_state = "platingdmg2"
- },
-/area/ruin/space/transport18aft)
-"vr" = (
-/obj/structure/lattice,
-/obj/structure/fluff/broken_flooring{
- dir = 4;
- icon_state = "pile"
- },
-/turf/template_noop,
-/area/space)
-"vN" = (
-/obj/item/clothing/gloves/color/fyellow/old,
-/obj/item/stack/cable_coil/cyan,
-/obj/effect/turf_decal/industrial/fire{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel,
-/area/ruin/space/transport18aft)
-"wb" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/space/transport18aft)
-"wi" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/industrial/fire{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel,
-/area/ruin/space/transport18aft)
-"wj" = (
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "transp19_windows";
- dir = 4
- },
-/obj/structure/grille,
-/obj/item/shard,
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/transport18mid)
-"wu" = (
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
-/area/ruin/space/transport18aft)
-"wC" = (
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/structure/reagent_dispensers/beerkeg,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/space/has_grav/transport18mid)
-"wD" = (
-/obj/structure/grille/broken,
-/obj/item/shard,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "transp19_windows";
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/transport18mid)
-"wN" = (
-/obj/item/trash/can{
- pixel_x = 9;
- pixel_y = 3
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/vomit/old,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/space/has_grav/transport18mid)
-"wU" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/ruin/space/transport18aft)
-"xm" = (
-/obj/item/stack/cable_coil/cut/red,
-/obj/machinery/holopad,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel,
-/area/ruin/space/transport18aft)
-"xq" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/closed/wall/rust,
-/area/ruin/space/has_grav/transport18mid)
-"xz" = (
-/obj/effect/turf_decal/number/one{
- color = "#000000"
- },
-/turf/closed/wall/mineral/titanium/nodiagonal,
-/area/ruin/space/has_grav/transport18mid)
-"xA" = (
-/obj/structure/fluff/broken_flooring{
- dir = 2;
- icon_state = "plating"
- },
-/obj/structure/lattice,
-/turf/open/space,
-/area/space)
-"xD" = (
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/space/has_grav/transport18mid)
-"yk" = (
-/obj/structure/fluff/broken_flooring{
- dir = 4;
- icon_state = "pile"
- },
-/turf/open/space,
-/area/space)
-"yv" = (
-/obj/structure/girder,
-/turf/open/floor/plating{
- broken = 1;
- icon_state = "platingdmg1"
- },
-/area/ruin/space/transport18aft)
-"yy" = (
-/obj/item/stack/rods,
-/obj/item/stack/rods,
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/transport18mid)
-"yG" = (
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "transp19_windows"
- },
-/obj/structure/grille,
-/obj/item/shard,
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/transport18mid)
-"yI" = (
-/obj/item/trash/can{
- pixel_y = 9
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/space/has_grav/transport18mid)
-"zp" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/door_assembly/door_assembly_public,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/transport18mid)
-"zr" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/airless,
-/area/ruin/space/has_grav/transport18mid)
-"zB" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/vomit/old,
-/turf/open/floor/carpet/blue/airless,
-/area/ruin/space/has_grav/transport18mid)
-"zE" = (
-/obj/structure/frame/computer,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/airless,
-/area/ruin/space/has_grav/transport18mid)
-"zG" = (
-/obj/structure/fluff/broken_flooring{
- dir = 4;
- icon_state = "singular"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/space/transport18aft)
-"zL" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
-/area/ruin/space/transport18aft)
-"zN" = (
-/obj/item/stack/cable_coil/cut/red,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/ruin/space/transport18aft)
-"zY" = (
-/obj/structure/reagent_dispensers/beerkeg,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/space/has_grav/transport18mid)
-"Ah" = (
-/obj/structure/table/reinforced,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/radio/intercom/wideband/table{
- dir = 1
- },
-/turf/open/floor/plasteel/airless,
-/area/ruin/space/has_grav/transport18mid)
-"AU" = (
-/obj/structure/fluff/broken_flooring,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/airless,
-/area/ruin/space/transport18aft)
-"Bh" = (
-/obj/item/trash/can{
- pixel_y = -4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/space/has_grav/transport18mid)
-"Bv" = (
-/obj/structure/reagent_dispensers/beerkeg,
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/machinery/light/small/broken/directional/south,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/space/has_grav/transport18mid)
-"BD" = (
-/obj/item/stack/ducts/fifty,
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/structure/rack,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/space/has_grav/transport18mid)
-"BM" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/space/has_grav/transport18mid)
-"BO" = (
-/obj/effect/turf_decal/number/five{
- dir = 1
- },
-/turf/closed/wall,
-/area/ruin/space/has_grav/transport18mid)
-"CH" = (
-/obj/machinery/light/small/directional/south,
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/space/has_grav/transport18mid)
-"CK" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/door_assembly/door_assembly_hatch,
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/transport18mid)
-"CX" = (
-/obj/structure/lattice,
-/obj/structure/fluff/broken_flooring{
- dir = 4;
- icon_state = "singular"
- },
-/turf/open/space,
-/area/space)
-"Dh" = (
-/obj/structure/cable/cyan{
- icon_state = "4-8"
- },
-/obj/structure/cable/cyan{
- icon_state = "2-4"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/space/transport18aft)
-"Dk" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/number/eight{
- color = "#000000"
- },
-/turf/closed/wall/mineral/titanium/nodiagonal,
-/area/ruin/space/has_grav/transport18mid)
-"Do" = (
-/obj/effect/turf_decal/number/three{
- dir = 1
- },
-/turf/closed/wall/rust,
-/area/ruin/space/has_grav/transport18mid)
-"Dr" = (
-/obj/machinery/light/dim/directional/north,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/carpet/airless,
-/area/ruin/space/has_grav/transport18mid)
-"Dy" = (
-/obj/structure/closet/secure_closet/freezer/fridge/open,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/turf/open/floor/plasteel/airless,
-/area/ruin/space/has_grav/transport18mid)
-"DF" = (
-/obj/structure/reagent_dispensers/beerkeg,
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/machinery/light/small/directional/north,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/space/has_grav/transport18mid)
-"DM" = (
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/machinery/light/small/broken/directional/north,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/space/has_grav/transport18mid)
-"EB" = (
-/obj/machinery/light/small/broken/directional/north,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/airless,
-/area/ruin/space/transport18aft)
-"ES" = (
-/obj/item/stack/cable_coil/cut/cyan,
-/obj/structure/fluff/broken_flooring{
- dir = 4;
- icon_state = "pile"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/ruin/space/transport18aft)
-"EW" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/shard{
- icon_state = "tiny"
- },
-/obj/structure/table_frame,
-/turf/open/floor/plasteel/airless,
-/area/ruin/space/has_grav/transport18mid)
-"Fc" = (
-/obj/effect/turf_decal/number/eight{
- color = "#000000"
- },
-/turf/closed/wall/mineral/titanium/nodiagonal,
-/area/ruin/space/has_grav/transport18mid)
-"Fq" = (
-/obj/structure/girder,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/transport18mid)
-"FF" = (
-/obj/structure/cable/cyan{
- icon_state = "2-4"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating{
- broken = 1;
- icon_state = "platingdmg1"
- },
-/area/ruin/space/transport18aft)
-"Go" = (
-/obj/effect/mob_spawn/human/corpse/cargo_tech,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/vomit/old,
-/obj/item/organ/stomach,
-/obj/item/trash/can{
- pixel_x = -11;
- pixel_y = 10
- },
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/space/has_grav/transport18mid)
-"Gp" = (
-/obj/structure/fluff/broken_flooring{
- dir = 4;
- icon_state = "singular"
- },
-/turf/open/space,
-/area/space)
-"Gq" = (
-/obj/structure/grille,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "transp19_windows";
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/transport18mid)
-"Hd" = (
-/obj/machinery/light/dim/directional/west,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/vomit/old,
-/obj/item/shard,
-/turf/open/floor/plasteel/airless,
-/area/ruin/space/has_grav/transport18mid)
-"Hr" = (
-/turf/closed/wall/mineral/titanium/nodiagonal,
-/area/ruin/space/transport18aft)
-"Hy" = (
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "transp19_windows";
- dir = 4
- },
-/obj/structure/grille,
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/transport18mid)
-"HN" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/paper/crumpled/fluff{
- default_raw_text = "Well, journal, it's just you, me, and twelve tons of beer. Haven't heard back from the engineer in about a day since he cooked up that crazy plan to fuel the thrusters with beer, so I reckon I'll go out with a bang. At least I'll die happy."
- },
-/obj/item/trash/can{
- pixel_x = -7;
- pixel_y = -7
- },
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/space/has_grav/transport18mid)
-"Io" = (
-/obj/structure/girder,
-/obj/item/stack/sheet/metal,
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/transport18mid)
-"Ir" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/transport18mid)
-"Iy" = (
-/obj/machinery/door/poddoor/multi_tile/three_tile_hor{
- id = "transp19";
- state_open = 1
- },
-/obj/structure/reagent_dispensers/beerkeg,
-/obj/effect/turf_decal/industrial/warning/fulltile,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/transport18mid)
-"IF" = (
-/obj/item/stack/sheet/metal,
-/turf/template_noop,
-/area/space)
-"IG" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/structure/fluff/broken_flooring,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/transport18mid)
-"IT" = (
-/turf/closed/wall,
-/area/ruin/space/has_grav/transport18mid)
-"Jk" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/airless,
-/area/ruin/space/has_grav/transport18mid)
-"Jl" = (
-/obj/machinery/power/apc/auto_name/directional/east,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/item/trash/candy,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/airless,
-/area/ruin/space/has_grav/transport18mid)
-"Jx" = (
-/obj/item/stack/cable_coil/cut/yellow,
-/turf/template_noop,
-/area/space)
-"JM" = (
-/obj/item/construction/plumbing,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/space/has_grav/transport18mid)
-"JR" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/public{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/airless,
-/area/ruin/space/has_grav/transport18mid)
-"JV" = (
-/obj/structure/fluff/broken_flooring{
- icon_state = "pile";
- pixel_x = 11;
- pixel_y = 1
- },
-/obj/item/broken_bottle,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/transport18mid)
-"Kv" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/transport18mid)
-"KZ" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/trash/can{
- pixel_x = -3
- },
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/space/has_grav/transport18mid)
-"Le" = (
-/turf/open/space,
-/area/space)
-"Lg" = (
-/obj/structure/chair/comfy/shuttle,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/trash/can,
-/turf/open/floor/plasteel/airless,
-/area/ruin/space/has_grav/transport18mid)
-"Lq" = (
-/obj/structure/table/reinforced,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/airless,
-/area/ruin/space/has_grav/transport18mid)
-"LD" = (
-/obj/structure/girder,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/ruin/space/transport18aft)
-"LE" = (
-/obj/structure/fluff/broken_flooring{
- dir = 4;
- icon_state = "plating"
- },
-/turf/open/space,
-/area/space)
-"LI" = (
-/obj/structure/door_assembly/door_assembly_hatch,
-/obj/item/stack/cable_coil/cut/red,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/space/transport18aft)
-"Mi" = (
-/obj/machinery/atmospherics/components/unary/shuttle/heater/tank{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/ruin/space/transport18aft)
-"Mz" = (
-/obj/effect/spawner/structure/window/shuttle,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "transp19_windows";
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/transport18mid)
-"MA" = (
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/machinery/light/small/built/directional/north,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/space/has_grav/transport18mid)
-"MV" = (
-/obj/structure/table/reinforced,
-/obj/machinery/microwave,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/plasteel/airless,
-/area/ruin/space/has_grav/transport18mid)
-"NA" = (
-/obj/structure/chair,
-/obj/structure/fluff/broken_flooring,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/transport18mid)
-"ND" = (
-/obj/structure/reagent_dispensers/beerkeg,
-/turf/open/space,
-/area/space)
-"NH" = (
-/obj/structure/chair/comfy/shuttle{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/airless,
-/area/ruin/space/has_grav/transport18mid)
-"Oi" = (
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "transp19_windows";
- dir = 4
- },
-/obj/structure/grille/broken,
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/transport18mid)
-"OS" = (
-/obj/structure/frame/computer{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/airless,
-/area/ruin/space/has_grav/transport18mid)
-"Pm" = (
-/obj/structure/girder,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
-/area/ruin/space/transport18aft)
-"Pq" = (
-/obj/machinery/power/terminal{
- dir = 4
- },
-/obj/structure/cable/cyan{
- icon_state = "0-5"
- },
-/obj/item/stack/cable_coil/cut/yellow,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/ruin/space/transport18aft)
-"PC" = (
-/obj/structure/lattice,
-/obj/structure/fluff/broken_flooring{
- dir = 8;
- icon_state = "plating"
- },
-/turf/open/space,
-/area/space)
-"PJ" = (
-/obj/structure/lattice,
-/turf/open/space,
-/area/space)
-"PV" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/trash/can,
-/turf/open/floor/carpet/blue/airless,
-/area/ruin/space/has_grav/transport18mid)
-"PW" = (
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/structure/rack,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/space/has_grav/transport18mid)
-"PZ" = (
-/obj/structure/table/reinforced,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/airless,
-/area/ruin/space/has_grav/transport18mid)
-"Qh" = (
-/obj/item/stack/sheet/cardboard,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/airless,
-/area/ruin/space/has_grav/transport18mid)
-"Qi" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel,
-/area/ruin/space/transport18aft)
-"Qu" = (
-/obj/structure/cable/cyan{
- icon_state = "1-9"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating{
- icon_state = "platingdmg2"
- },
-/area/ruin/space/transport18aft)
-"QP" = (
-/obj/structure/door_assembly/door_assembly_hatch,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/transport18mid)
-"QS" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/trash/can{
- pixel_x = -11;
- pixel_y = 10
- },
-/obj/item/trash/can{
- pixel_y = -8
- },
-/obj/effect/decal/cleanable/vomit/old,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/space/has_grav/transport18mid)
-"Ro" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/space/has_grav/transport18mid)
-"Sd" = (
-/obj/machinery/door/airlock/hatch,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/transport18mid)
-"Si" = (
-/obj/effect/turf_decal/industrial/warning/fulltile,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/transport18mid)
-"Sr" = (
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/structure/rack,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/space/has_grav/transport18mid)
-"SI" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/storage/cans/sixbeer,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/space/has_grav/transport18mid)
-"SQ" = (
-/obj/structure/mirror{
- broken = 1;
- desc = "Oh no, seven years of bad luck!";
- icon_state = "mirror_broke";
- pixel_y = 25
- },
-/obj/structure/sink{
- pixel_y = 20
- },
-/obj/item/shard{
- icon_state = "tiny"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/vomit/old,
-/turf/open/floor/carpet/airless,
-/area/ruin/space/has_grav/transport18mid)
-"Tp" = (
-/obj/machinery/holopad,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/carpet/blue/airless,
-/area/ruin/space/has_grav/transport18mid)
-"Tu" = (
-/obj/structure/reagent_dispensers/beerkeg,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/space/has_grav/transport18mid)
-"TD" = (
-/obj/machinery/light/broken/directional/west,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/fluff/paper/stack{
- dir = 8
- },
-/turf/open/floor/plasteel/airless,
-/area/ruin/space/has_grav/transport18mid)
-"TU" = (
-/obj/item/wallframe/apc,
-/obj/effect/turf_decal/industrial/fire{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel,
-/area/ruin/space/transport18aft)
-"TZ" = (
-/turf/closed/wall/mineral/titanium/nodiagonal,
-/area/ruin/space/has_grav/transport18mid)
-"Uu" = (
-/obj/machinery/door/airlock/hatch,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel,
-/area/ruin/space/transport18aft)
-"Ux" = (
-/obj/structure/door_assembly/door_assembly_hatch,
-/obj/item/stack/cable_coil/cut/red,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
-/area/ruin/space/transport18aft)
-"UB" = (
-/obj/item/stack/ducts/fifty,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/space/has_grav/transport18mid)
-"Va" = (
-/obj/structure/reagent_dispensers/beerkeg,
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/machinery/light/small/broken/directional/south,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/space/has_grav/transport18mid)
-"Vm" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/carpet/airless,
-/area/ruin/space/has_grav/transport18mid)
-"VG" = (
-/obj/structure/fluff/broken_flooring{
- dir = 1;
- icon_state = "plating"
- },
-/obj/structure/lattice,
-/turf/open/space,
-/area/space)
-"Wb" = (
-/obj/structure/girder,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/space/transport18aft)
-"Wf" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/greenglow,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/space/has_grav/transport18mid)
-"Wr" = (
-/obj/effect/turf_decal/number/zero{
- color = "#000000"
- },
-/turf/closed/wall/mineral/titanium/nodiagonal,
-/area/ruin/space/has_grav/transport18mid)
-"Wx" = (
-/obj/structure/table/reinforced,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/obj/structure/fluff/paper/stack{
- dir = 5
- },
-/turf/open/floor/plasteel/airless,
-/area/ruin/space/has_grav/transport18mid)
-"WA" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/portable_atmospherics/canister/air,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/space/has_grav/transport18mid)
-"Xb" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/ruin/space/transport18aft)
-"Xc" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/fluff/paper/stack,
-/turf/open/floor/carpet/blue/airless,
-/area/ruin/space/has_grav/transport18mid)
-"XQ" = (
-/obj/item/storage/cans/sixbeer,
-/obj/item/storage/cans/sixbeer,
-/obj/item/storage/cans/sixbeer,
-/obj/item/storage/cans/sixbeer,
-/obj/item/storage/cans/sixbeer,
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/structure/closet/crate/large{
- name = "damp crate"
- },
-/obj/machinery/light/small/broken/directional/south,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/space/has_grav/transport18mid)
-"XU" = (
-/turf/closed/wall/mineral/titanium,
-/area/ruin/space/has_grav/transport18mid)
-"YC" = (
-/obj/effect/turf_decal/number/one{
- color = "#000000";
- dir = 1
- },
-/turf/closed/wall/mineral/titanium/nodiagonal,
-/area/ruin/space/has_grav/transport18mid)
-"YJ" = (
-/obj/structure/reagent_dispensers/beerkeg,
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/space/has_grav/transport18mid)
-"Zl" = (
-/obj/item/stack/cable_coil/cut/red,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/space/transport18aft)
-"Zn" = (
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/machinery/plumbing/tank,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/space/has_grav/transport18mid)
-"Zz" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
-/area/ruin/space/transport18aft)
-"ZH" = (
-/obj/item/stack/sheet/mineral/titanium,
-/turf/open/space,
-/area/space)
-"ZX" = (
-/obj/structure/girder,
-/obj/item/stack/sheet/mineral/titanium,
-/turf/open/floor/plating,
-/area/ruin/space/transport18aft)
-
-(1,1,1) = {"
-eg
-eg
-eg
-eg
-eg
-mj
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-Hr
-eg
-Gp
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-"}
-(2,1,1) = {"
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-Hr
-aT
-eg
-eg
-eg
-eg
-mj
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-"}
-(3,1,1) = {"
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-PJ
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-"}
-(4,1,1) = {"
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-vo
-PJ
-eg
-eg
-eg
-eg
-eg
-jl
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-"}
-(5,1,1) = {"
-eg
-eg
-mj
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-ZH
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-"}
-(6,1,1) = {"
-eg
-eg
-eg
-eg
-eg
-eg
-ZH
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-"}
-(7,1,1) = {"
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-oT
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-"}
-(8,1,1) = {"
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-ZH
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-"}
-(9,1,1) = {"
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-Gp
-eg
-eg
-eg
-zL
-eg
-eg
-eg
-eg
-eg
-eg
-jV
-jV
-eg
-eg
-eg
-ZH
-eg
-eg
-eg
-eg
-eg
-"}
-(10,1,1) = {"
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-LD
-eg
-PJ
-eg
-eg
-eg
-wU
-eg
-eg
-mb
-mb
-Hr
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-"}
-(11,1,1) = {"
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-Hr
-Hr
-eg
-eg
-Jx
-PJ
-eg
-PJ
-eg
-eg
-Xb
-wu
-ZX
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-"}
-(12,1,1) = {"
-eg
-eg
-eg
-eg
-pE
-pE
-eg
-eg
-eg
-eg
-Jx
-eg
-eg
-IF
-PJ
-eg
-PJ
-CX
-PJ
-zL
-Zl
-PC
-eg
-yk
-eg
-eg
-eg
-eg
-eg
-eg
-"}
-(13,1,1) = {"
-eg
-eg
-eg
-Hr
-Mi
-Mi
-Hr
-eg
-PJ
-PJ
-eg
-eg
-PJ
-PJ
-iD
-eg
-Hr
-pr
-eg
-wU
-PJ
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-"}
-(14,1,1) = {"
-eg
-eg
-eg
-Hr
-nw
-nw
-Hr
-eg
-yv
-xA
-PJ
-gp
-eg
-eg
-Hr
-eg
-Hr
-PJ
-PJ
-PJ
-PJ
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-"}
-(15,1,1) = {"
-eg
-eg
-eg
-Hr
-gx
-nw
-Hr
-eg
-Hr
-jq
-Pq
-PJ
-eg
-vr
-Hr
-eg
-hn
-PJ
-eg
-eg
-PJ
-eg
-mj
-eg
-eg
-eg
-eg
-ND
-eg
-eg
-"}
-(16,1,1) = {"
-eg
-eg
-eg
-Hr
-EB
-gx
-Hr
-Hr
-Hr
-bh
-fw
-PJ
-VG
-mX
-Wb
-Hr
-Hr
-wb
-qf
-eg
-PJ
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-"}
-(17,1,1) = {"
-eg
-eg
-eg
-Hr
-eY
-gm
-Uu
-po
-Ux
-FF
-Qu
-jq
-Xb
-Zz
-LI
-PJ
-zL
-zN
-zG
-PJ
-Hr
-aT
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-"}
-(18,1,1) = {"
-eg
-eg
-eg
-Hr
-AU
-Qi
-Hr
-Hr
-Pm
-Dh
-ES
-xm
-kR
-rF
-Hr
-Le
-LE
-kC
-Xb
-eg
-PJ
-Hr
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-"}
-(19,1,1) = {"
-eg
-eg
-eg
-Hr
-ns
-Qi
-Hr
-eg
-Hr
-lT
-vN
-wi
-TU
-qM
-eK
-PJ
-cN
-Hr
-Hr
-eg
-eg
-Hr
-eg
-eg
-eg
-eg
-eg
-jl
-eg
-eg
-"}
-(20,1,1) = {"
-eg
-eg
-eg
-aT
-Hr
-Hr
-aT
-eg
-aT
-yv
-mI
-md
-Hr
-Hr
-gs
-eg
-PJ
-eg
-PJ
-eg
-eg
-PJ
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-"}
-(21,1,1) = {"
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-TZ
-Ir
-TZ
-eg
-PJ
-eg
-tJ
-gZ
-IT
-IT
-Fq
-rC
-IT
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-"}
-(22,1,1) = {"
-eg
-eg
-eg
-IT
-IT
-xq
-IT
-Fq
-lN
-IT
-TZ
-Ir
-TZ
-eg
-eg
-eg
-tJ
-xD
-Tu
-dp
-Tu
-fy
-IT
-eg
-eg
-ND
-eg
-eg
-eg
-eg
-"}
-(23,1,1) = {"
-eg
-eg
-eg
-rC
-Zn
-BM
-Zn
-uo
-dp
-IT
-TZ
-fx
-TZ
-eg
-eg
-eg
-IT
-MA
-uo
-dp
-BM
-Bv
-lY
-eg
-ND
-eg
-eg
-eg
-eg
-eg
-"}
-(24,1,1) = {"
-eg
-eg
-eg
-Do
-lf
-BM
-Zn
-UB
-iW
-rC
-TZ
-Kv
-TZ
-PJ
-PJ
-PJ
-IT
-dp
-BM
-dp
-BM
-dp
-Iy
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-"}
-(25,1,1) = {"
-eg
-eg
-eg
-mt
-xD
-BM
-dp
-BM
-dp
-rC
-TZ
-Kv
-TZ
-eg
-PJ
-eg
-QP
-uo
-BM
-BM
-zY
-uo
-pF
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-"}
-(26,1,1) = {"
-eg
-eg
-eg
-Si
-BM
-dE
-BM
-BM
-BM
-Sd
-oL
-Kv
-CK
-PJ
-PJ
-ba
-IT
-dp
-zY
-dp
-BM
-wC
-eS
-ND
-eg
-eg
-eg
-eg
-eg
-eg
-"}
-(27,1,1) = {"
-eg
-eg
-eg
-Si
-xD
-JM
-dp
-BM
-PW
-IT
-TZ
-Kv
-TZ
-ZH
-eg
-eg
-IT
-DM
-BM
-dp
-uo
-Bv
-lY
-eg
-eg
-eg
-eg
-eg
-eg
-ND
-"}
-(28,1,1) = {"
-eg
-eg
-eg
-Do
-ur
-BM
-Sr
-BM
-CH
-IT
-TZ
-tb
-tJ
-mj
-eg
-eg
-rC
-dp
-uo
-fy
-uo
-YJ
-IT
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-"}
-(29,1,1) = {"
-eg
-eg
-eg
-IT
-nx
-uo
-BD
-uo
-YJ
-rC
-TZ
-Kv
-pN
-eg
-mj
-PJ
-rC
-IT
-rC
-rC
-IT
-IT
-IT
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-"}
-(30,1,1) = {"
-eg
-jl
-eg
-IT
-IT
-rC
-rC
-rC
-IT
-IT
-TZ
-Kv
-TZ
-PJ
-eg
-eg
-eg
-PJ
-eg
-PJ
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-"}
-(31,1,1) = {"
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-TZ
-Kv
-TZ
-eg
-eg
-eg
-eg
-PJ
-eg
-PJ
-eg
-km
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-"}
-(32,1,1) = {"
-eg
-eg
-eg
-IT
-rC
-rC
-IT
-IT
-rC
-rC
-TZ
-Ir
-TZ
-IT
-IT
-rC
-rC
-IT
-tJ
-tJ
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-"}
-(33,1,1) = {"
-eg
-eg
-eg
-IT
-lK
-WA
-ne
-me
-ne
-IT
-TZ
-Ir
-TZ
-IT
-fy
-oP
-fy
-BM
-la
-Io
-eg
-eg
-eg
-eg
-jl
-eg
-eg
-eg
-eg
-eg
-"}
-(34,1,1) = {"
-eg
-eg
-jl
-sr
-oa
-yI
-uC
-QS
-jr
-IT
-TZ
-ot
-TZ
-rC
-YJ
-BM
-fy
-uo
-Va
-IT
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-"}
-(35,1,1) = {"
-jl
-eg
-eg
-mt
-oa
-KZ
-oa
-Wf
-oa
-IT
-TZ
-Kv
-TZ
-IT
-xD
-qJ
-aZ
-pR
-wC
-mt
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-"}
-(36,1,1) = {"
-eg
-eg
-eg
-pF
-KZ
-SI
-wN
-uQ
-ou
-dq
-oL
-Kv
-Sd
-re
-BM
-BM
-Ro
-fE
-uo
-pF
-eg
-jl
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-"}
-(37,1,1) = {"
-eg
-eg
-eg
-pF
-oa
-Bh
-aE
-Go
-oa
-rC
-TZ
-Kv
-TZ
-rC
-la
-BM
-dp
-uo
-wC
-pF
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-"}
-(38,1,1) = {"
-eg
-eg
-eg
-BO
-of
-BM
-ne
-HN
-XQ
-rC
-TZ
-Ir
-TZ
-rC
-DF
-BM
-YJ
-BM
-Va
-gf
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-"}
-(39,1,1) = {"
-eg
-eg
-eg
-rC
-ne
-iE
-oa
-jP
-oa
-IT
-TZ
-mU
-TZ
-rC
-fy
-uo
-fy
-uo
-YJ
-IT
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-jl
-eg
-"}
-(40,1,1) = {"
-eg
-eg
-eg
-rC
-rC
-rC
-IT
-IT
-rC
-IT
-TZ
-Ir
-TZ
-IT
-rC
-Io
-tJ
-IT
-IT
-IT
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-"}
-(41,1,1) = {"
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-ZH
-eg
-TZ
-Ir
-TZ
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-jl
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-"}
-(42,1,1) = {"
-eg
-eg
-eg
-eg
-TZ
-TZ
-wj
-tJ
-TZ
-TZ
-TZ
-mA
-TZ
-TZ
-TZ
-TZ
-tY
-TZ
-TZ
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-"}
-(43,1,1) = {"
-eg
-eg
-eg
-eg
-Dk
-MV
-JV
-NA
-EW
-TZ
-kK
-ai
-oQ
-TZ
-SQ
-uj
-uj
-tK
-Wr
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-"}
-(44,1,1) = {"
-eg
-eg
-eg
-eg
-YC
-rV
-nJ
-dy
-et
-TZ
-gD
-Jk
-qY
-TZ
-Dr
-np
-np
-nL
-xz
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-"}
-(45,1,1) = {"
-eg
-eg
-eg
-eg
-aV
-Dy
-Qh
-Jl
-zr
-ax
-zr
-IG
-zr
-zp
-Vm
-dH
-uj
-iy
-Fc
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-"}
-(46,1,1) = {"
-eg
-eg
-eg
-eg
-XU
-TZ
-TZ
-TZ
-TZ
-TZ
-TZ
-JR
-TZ
-TZ
-TZ
-TZ
-TZ
-go
-tJ
-eg
-ZH
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-"}
-(47,1,1) = {"
-eg
-eg
-eg
-eg
-eg
-TZ
-TZ
-TZ
-lV
-TD
-iZ
-bT
-PV
-Hd
-Lq
-TZ
-TZ
-tJ
-eg
-mj
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-"}
-(48,1,1) = {"
-eg
-eg
-eg
-eg
-eg
-XU
-TZ
-TZ
-zE
-NH
-zB
-Tp
-Xc
-Lg
-OS
-TZ
-tJ
-yy
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-"}
-(49,1,1) = {"
-eg
-eg
-eg
-eg
-eg
-eg
-XU
-TZ
-Wx
-Ah
-dU
-vg
-eJ
-gY
-PZ
-TZ
-XU
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-"}
-(50,1,1) = {"
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-XU
-Mz
-tY
-jz
-jz
-jz
-yG
-Mz
-XU
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-"}
-(51,1,1) = {"
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-Mz
-Hy
-Gq
-wD
-Oi
-mj
-eg
-eg
-ZH
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-eg
-"}
diff --git a/_maps/RandomRuins/SpaceRuins/vaporwave.dmm b/_maps/RandomRuins/SpaceRuins/vaporwave.dmm
deleted file mode 100644
index cca20b75c27..00000000000
--- a/_maps/RandomRuins/SpaceRuins/vaporwave.dmm
+++ /dev/null
@@ -1,525 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"a" = (
-/turf/open/space,
-/area/space)
-"b" = (
-/obj/structure/lattice,
-/turf/open/space,
-/area/space/nearstation)
-"c" = (
-/obj/structure/lattice,
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/unpowered/no_grav)
-"d" = (
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/unpowered/no_grav)
-"e" = (
-/obj/structure/lattice,
-/turf/open/floor/plating/airless,
-/area/ruin/unpowered/no_grav)
-"f" = (
-/turf/closed/wall,
-/area/ruin/space/has_grav/powered/aesthetic)
-"g" = (
-/turf/closed/wall/rust,
-/area/ruin/space/has_grav/powered/aesthetic)
-"h" = (
-/obj/effect/overlay/palmtree_r,
-/turf/open/floor/holofloor/beach,
-/area/ruin/space/has_grav/powered/aesthetic)
-"i" = (
-/obj/structure/musician/piano,
-/obj/structure/window{
- dir = 8
- },
-/turf/open/floor/plasteel/vaporwave,
-/area/ruin/space/has_grav/powered/aesthetic)
-"j" = (
-/obj/structure/chair/stool,
-/obj/machinery/light/small/directional/north,
-/turf/open/floor/plasteel/vaporwave,
-/area/ruin/space/has_grav/powered/aesthetic)
-"k" = (
-/turf/open/floor/plasteel/vaporwave,
-/area/ruin/space/has_grav/powered/aesthetic)
-"l" = (
-/obj/structure/chair/comfy/grey/directional/east,
-/turf/open/floor/plasteel/vaporwave,
-/area/ruin/space/has_grav/powered/aesthetic)
-"m" = (
-/obj/structure/table/reinforced,
-/obj/item/taperecorder,
-/turf/open/floor/plasteel/vaporwave,
-/area/ruin/space/has_grav/powered/aesthetic)
-"n" = (
-/obj/structure/chair/comfy/grey/directional/west,
-/turf/open/floor/plasteel/vaporwave,
-/area/ruin/space/has_grav/powered/aesthetic)
-"o" = (
-/obj/structure/window{
- dir = 4
- },
-/turf/open/floor/plasteel/vaporwave,
-/area/ruin/space/has_grav/powered/aesthetic)
-"p" = (
-/obj/effect/overlay/palmtree_l,
-/turf/open/floor/holofloor/beach,
-/area/ruin/space/has_grav/powered/aesthetic)
-"q" = (
-/turf/open/floor/holofloor/beach,
-/area/ruin/space/has_grav/powered/aesthetic)
-"r" = (
-/obj/structure/window{
- dir = 8
- },
-/turf/open/floor/plasteel/vaporwave,
-/area/ruin/space/has_grav/powered/aesthetic)
-"s" = (
-/obj/structure/table/reinforced,
-/obj/item/clothing/glasses/sunglasses/big{
- name = "aesthetic sunglasses"
- },
-/turf/open/floor/plasteel/vaporwave,
-/area/ruin/space/has_grav/powered/aesthetic)
-"t" = (
-/obj/item/instrument/eguitar,
-/turf/open/floor/holofloor/beach,
-/area/ruin/space/has_grav/powered/aesthetic)
-"u" = (
-/turf/open/floor/holofloor/beach/coast_t,
-/area/ruin/space/has_grav/powered/aesthetic)
-"v" = (
-/obj/item/statuebust,
-/turf/open/floor/plasteel/vaporwave,
-/area/ruin/space/has_grav/powered/aesthetic)
-"w" = (
-/mob/living/simple_animal/butterfly,
-/turf/open/floor/plasteel/vaporwave,
-/area/ruin/space/has_grav/powered/aesthetic)
-"x" = (
-/obj/structure/closet/crate/bin,
-/obj/item/tape/random,
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/unpowered/no_grav)
-"y" = (
-/turf/open/floor/holofloor/beach/coast_b,
-/area/ruin/space/has_grav/powered/aesthetic)
-"z" = (
-/obj/structure/fans/tiny,
-/obj/machinery/door/airlock/hatch,
-/turf/open/floor/pod/dark,
-/area/ruin/space/has_grav/powered/aesthetic)
-"A" = (
-/obj/effect/turf_decal/sand,
-/obj/effect/turf_decal/sand/plating,
-/turf/open/floor/plating{
- initial_gas_mix = "TEMP=2.7"
- },
-/area/ruin/unpowered/no_grav)
-"B" = (
-/obj/effect/turf_decal/sand/plating,
-/turf/open/floor/plating{
- initial_gas_mix = "TEMP=2.7"
- },
-/area/ruin/unpowered/no_grav)
-"C" = (
-/obj/structure/statue/sandstone/venus{
- desc = "Ugh, this is merely an ugly amateurish replica of the other statue! The letters RIPGOAT are scribbled onto the base.";
- dir = 8
- },
-/obj/effect/turf_decal/sand/plating,
-/turf/open/floor/plating{
- initial_gas_mix = "TEMP=2.7"
- },
-/area/ruin/unpowered/no_grav)
-"E" = (
-/obj/effect/turf_decal/sand,
-/turf/open/floor/plasteel/airless,
-/area/ruin/unpowered/no_grav)
-"F" = (
-/obj/structure/statue/sandstone/venus{
- dir = 4
- },
-/obj/effect/turf_decal/sand/plating,
-/turf/open/floor/plating{
- initial_gas_mix = "TEMP=2.7"
- },
-/area/ruin/unpowered/no_grav)
-"G" = (
-/obj/effect/turf_decal/industrial/warning/dust,
-/obj/effect/turf_decal/sand/plating,
-/turf/open/floor/plating{
- initial_gas_mix = "TEMP=2.7"
- },
-/area/ruin/unpowered/no_grav)
-"H" = (
-/obj/effect/overlay/palmtree_l,
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/unpowered/no_grav)
-"I" = (
-/obj/effect/turf_decal/sand,
-/obj/effect/turf_decal/sand,
-/turf/open/floor/plasteel/airless,
-/area/ruin/unpowered/no_grav)
-"J" = (
-/obj/effect/turf_decal/sand,
-/turf/open/floor/plasteel/airless{
- icon_state = "stairs-l"
- },
-/area/ruin/unpowered/no_grav)
-"K" = (
-/obj/effect/turf_decal/sand,
-/turf/open/floor/plasteel/airless{
- icon_state = "stairs-m"
- },
-/area/ruin/unpowered/no_grav)
-"L" = (
-/obj/effect/turf_decal/sand,
-/turf/open/floor/plasteel/airless{
- icon_state = "stairs-r"
- },
-/area/ruin/unpowered/no_grav)
-"M" = (
-/obj/effect/overlay/palmtree_r,
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/unpowered/no_grav)
-"O" = (
-/obj/structure/chair/comfy/grey/directional/west,
-/obj/machinery/light/small/directional/north,
-/turf/open/floor/plasteel/vaporwave,
-/area/ruin/space/has_grav/powered/aesthetic)
-"P" = (
-/obj/machinery/light/small/directional/south,
-/turf/open/floor/plasteel/vaporwave,
-/area/ruin/space/has_grav/powered/aesthetic)
-"R" = (
-/obj/machinery/light/small/directional/north,
-/obj/effect/turf_decal/sand/plating,
-/turf/open/floor/plating{
- initial_gas_mix = "TEMP=2.7"
- },
-/area/ruin/unpowered/no_grav)
-
-(1,1,1) = {"
-a
-a
-a
-a
-a
-a
-b
-a
-a
-a
-a
-a
-a
-a
-a
-"}
-(2,1,1) = {"
-a
-a
-a
-a
-a
-d
-c
-d
-a
-b
-a
-a
-a
-a
-a
-"}
-(3,1,1) = {"
-a
-a
-a
-a
-d
-d
-c
-d
-d
-c
-d
-d
-a
-a
-a
-"}
-(4,1,1) = {"
-a
-a
-a
-d
-d
-d
-e
-c
-d
-e
-d
-d
-d
-a
-a
-"}
-(5,1,1) = {"
-a
-a
-a
-d
-f
-f
-g
-g
-g
-f
-g
-A
-d
-d
-a
-"}
-(6,1,1) = {"
-a
-a
-c
-d
-f
-h
-q
-h
-u
-y
-f
-R
-d
-d
-a
-"}
-(7,1,1) = {"
-a
-b
-c
-e
-g
-i
-r
-r
-r
-r
-f
-B
-H
-d
-d
-"}
-(8,1,1) = {"
-a
-a
-d
-d
-f
-j
-k
-k
-v
-P
-f
-C
-I
-A
-d
-"}
-(9,1,1) = {"
-a
-a
-d
-d
-f
-k
-k
-k
-k
-k
-f
-E
-J
-E
-d
-"}
-(10,1,1) = {"
-a
-a
-d
-c
-f
-l
-l
-k
-k
-k
-z
-E
-K
-E
-I
-"}
-(11,1,1) = {"
-a
-a
-d
-c
-g
-m
-s
-k
-k
-k
-f
-E
-L
-E
-I
-"}
-(12,1,1) = {"
-a
-a
-d
-c
-g
-O
-n
-k
-w
-P
-g
-F
-I
-A
-A
-"}
-(13,1,1) = {"
-b
-b
-c
-e
-f
-o
-o
-o
-o
-o
-f
-G
-M
-d
-d
-"}
-(14,1,1) = {"
-a
-a
-d
-d
-g
-p
-t
-p
-u
-y
-g
-R
-d
-d
-a
-"}
-(15,1,1) = {"
-a
-a
-d
-d
-f
-f
-g
-f
-g
-g
-g
-A
-d
-d
-a
-"}
-(16,1,1) = {"
-a
-a
-a
-d
-d
-d
-e
-c
-x
-e
-d
-d
-d
-a
-a
-"}
-(17,1,1) = {"
-a
-a
-a
-a
-a
-d
-c
-d
-d
-c
-d
-d
-d
-a
-a
-"}
-(18,1,1) = {"
-a
-a
-a
-a
-a
-a
-b
-d
-d
-d
-d
-a
-a
-a
-a
-"}
-(19,1,1) = {"
-a
-a
-a
-a
-a
-a
-b
-a
-a
-a
-a
-a
-a
-a
-a
-"}
diff --git a/_maps/RandomRuins/WasteRuins/wasteplanet_abandoned_mechbay.dmm b/_maps/RandomRuins/WasteRuins/wasteplanet_abandoned_mechbay.dmm
index 20301b38114..31c53d09a82 100644
--- a/_maps/RandomRuins/WasteRuins/wasteplanet_abandoned_mechbay.dmm
+++ b/_maps/RandomRuins/WasteRuins/wasteplanet_abandoned_mechbay.dmm
@@ -480,7 +480,7 @@
/area/ruin/wasteplanet/abandoned_mechbay/bay1)
"fe" = (
/obj/effect/decal/cleanable/dirt/dust,
-/mob/living/simple_animal/hostile/syndicate/melee{
+/mob/living/simple_animal/hostile/human/syndicate/melee{
name = "Syndicate Mech Pilot"
},
/turf/open/floor/concrete/slab_1,
@@ -1376,7 +1376,7 @@
dir = 4
},
/obj/effect/decal/cleanable/plastic,
-/mob/living/simple_animal/hostile/syndicate/ranged/shotgun,
+/mob/living/simple_animal/hostile/human/syndicate/ranged/shotgun,
/turf/open/floor/plasteel/dark,
/area/ruin/wasteplanet/abandoned_mechbay/mechlab)
"pA" = (
@@ -1499,7 +1499,7 @@
/obj/structure/cable{
icon_state = "1-2"
},
-/mob/living/simple_animal/hostile/syndicate{
+/mob/living/simple_animal/hostile/human/syndicate{
name = "Syndicate Engineer";
desc = "Death to bad mechanics."
},
@@ -1558,7 +1558,7 @@
/area/ruin/wasteplanet/abandoned_mechbay/bay1)
"rT" = (
/obj/structure/chair/sofa/brown/right/directional/south,
-/mob/living/simple_animal/hostile/syndicate{
+/mob/living/simple_animal/hostile/human/syndicate{
name = "Syndicate Engineer";
desc = "Death to bad mechanics."
},
@@ -1779,7 +1779,7 @@
/obj/machinery/camera/autoname{
dir = 4
},
-/mob/living/simple_animal/hostile/syndicate/ranged/smg/space,
+/mob/living/simple_animal/hostile/human/syndicate/ranged/smg/space,
/turf/open/floor/plasteel/tech/techmaint,
/area/ruin/wasteplanet/abandoned_mechbay/crewquarters)
"uM" = (
@@ -1907,7 +1907,7 @@
/obj/structure/cable{
icon_state = "1-2"
},
-/mob/living/simple_animal/hostile/syndicate/ranged/shotgun,
+/mob/living/simple_animal/hostile/human/syndicate/ranged/shotgun,
/turf/open/floor/plasteel/dark,
/area/ruin/wasteplanet/abandoned_mechbay/mechlab)
"vS" = (
@@ -2047,7 +2047,7 @@
/obj/structure/cable{
icon_state = "0-4"
},
-/mob/living/simple_animal/hostile/syndicate{
+/mob/living/simple_animal/hostile/human/syndicate{
name = "Syndicate Launderer";
desc = "Death to Dirty Laundry?"
},
@@ -2180,7 +2180,7 @@
dir = 8
},
/obj/machinery/light/floor,
-/mob/living/simple_animal/hostile/syndicate/ranged/smg/space,
+/mob/living/simple_animal/hostile/human/syndicate/ranged/smg/space,
/obj/machinery/door/firedoor/border_only{
dir = 8
},
@@ -2473,7 +2473,7 @@
pixel_y = 19
},
/obj/structure/curtain,
-/mob/living/simple_animal/hostile/syndicate/civilian{
+/mob/living/simple_animal/hostile/human/syndicate/civilian{
desc = "Can an armored mook not shower in peace?"
},
/turf/open/floor/carpet/blue,
@@ -2722,7 +2722,7 @@
dir = 1
},
/obj/effect/decal/cleanable/dirt,
-/mob/living/simple_animal/hostile/syndicate/melee{
+/mob/living/simple_animal/hostile/human/syndicate/melee{
name = "Syndicate Mech Pilot"
},
/turf/open/floor/plasteel/tech/techmaint,
@@ -2770,7 +2770,7 @@
/area/overmap_encounter/planetoid/cave/explored)
"Hj" = (
/obj/machinery/light/dim/directional/south,
-/mob/living/simple_animal/hostile/syndicate/melee{
+/mob/living/simple_animal/hostile/human/syndicate/melee{
name = "Syndicate Mech Pilot"
},
/turf/open/floor/plasteel/tech/techmaint,
@@ -3015,7 +3015,7 @@
},
/obj/effect/decal/cleanable/dirt/dust,
/obj/machinery/light/directional/south,
-/mob/living/simple_animal/hostile/syndicate/melee{
+/mob/living/simple_animal/hostile/human/syndicate/melee{
name = "Syndicate Mech Pilot"
},
/turf/open/floor/plasteel/dark,
@@ -3056,7 +3056,7 @@
/obj/effect/turf_decal/industrial/warning{
dir = 8
},
-/mob/living/simple_animal/hostile/syndicate{
+/mob/living/simple_animal/hostile/human/syndicate{
name = "Syndicate Engineer";
desc = "Death to bad mechanics."
},
@@ -3375,7 +3375,7 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/item/radio/intercom/directional/west,
-/mob/living/simple_animal/hostile/syndicate{
+/mob/living/simple_animal/hostile/human/syndicate{
name = "Syndicate Engineer";
desc = "Death to bad mechanics."
},
diff --git a/_maps/RandomRuins/WasteRuins/wasteplanet_clowncrash.dmm b/_maps/RandomRuins/WasteRuins/wasteplanet_clowncrash.dmm
deleted file mode 100644
index ae2434a3ca4..00000000000
--- a/_maps/RandomRuins/WasteRuins/wasteplanet_clowncrash.dmm
+++ /dev/null
@@ -1,432 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"a" = (
-/obj/structure/fence/corner{
- dir = 9
- },
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/cave/explored)
-"b" = (
-/obj/machinery/modular_computer/console/preset/civilian,
-/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/noslip,
-/area/overmap_encounter/planetoid/cave/explored)
-"c" = (
-/obj/machinery/power/floodlight,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/cave/explored)
-"d" = (
-/obj/item/grown/bananapeel,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/cave/explored)
-"e" = (
-/obj/machinery/power/smes/shuttle/precharged{
- dir = 1
- },
-/obj/structure/window/plasma/reinforced{
- name = "clowning grade window"
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plating,
-/area/overmap_encounter/planetoid/cave/explored)
-"f" = (
-/obj/effect/decal/cleanable/oil/slippery,
-/obj/item/grown/bananapeel,
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/cave/explored)
-"g" = (
-/obj/structure/fence/door,
-/obj/item/toy/snappop/phoenix,
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/cave/explored)
-"h" = (
-/obj/machinery/door/airlock/titanium,
-/obj/item/toy/snappop/phoenix,
-/turf/open/floor/noslip,
-/area/overmap_encounter/planetoid/cave/explored)
-"i" = (
-/obj/structure/table/reinforced,
-/obj/item/flashlight/lamp/bananalamp,
-/obj/machinery/power/terminal,
-/obj/structure/cable,
-/turf/open/floor/noslip,
-/area/overmap_encounter/planetoid/cave/explored)
-"j" = (
-/mob/living/simple_animal/bot/honkbot,
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/cave/explored)
-"k" = (
-/turf/closed/mineral/random/wasteplanet,
-/area/overmap_encounter/planetoid/cave/explored)
-"l" = (
-/obj/item/grown/bananapeel,
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/cave/explored)
-"m" = (
-/obj/structure/fence/corner{
- dir = 6
- },
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/cave/explored)
-"o" = (
-/obj/structure/table/reinforced,
-/obj/item/bikehorn/airhorn,
-/obj/item/nullrod/clown,
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/cave/explored)
-"q" = (
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/effect/turf_decal/box/white,
-/turf/open/floor/noslip,
-/area/overmap_encounter/planetoid/cave/explored)
-"r" = (
-/obj/structure/table/reinforced,
-/obj/item/stack/ore/bananium,
-/turf/open/floor/plating/asteroid,
-/area/overmap_encounter/planetoid/cave/explored)
-"s" = (
-/obj/structure/sign/poster/official/foam_force_ad,
-/turf/closed/wall/mineral/titanium,
-/area/overmap_encounter/planetoid/cave/explored)
-"t" = (
-/obj/item/bedsheet/clown,
-/obj/structure/bed,
-/turf/open/floor/noslip,
-/area/overmap_encounter/planetoid/cave/explored)
-"u" = (
-/obj/structure/mecha_wreckage/honker,
-/obj/effect/decal/cleanable/greenglow,
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/cave/explored)
-"w" = (
-/obj/structure/sign/poster/contraband/clown,
-/turf/closed/wall/mineral/titanium,
-/area/overmap_encounter/planetoid/cave/explored)
-"x" = (
-/obj/structure/chair/comfy/shuttle{
- dir = 1
- },
-/mob/living/simple_animal/hostile/retaliate/clown,
-/turf/open/floor/noslip,
-/area/overmap_encounter/planetoid/cave/explored)
-"y" = (
-/obj/structure/sign/poster/official/high_class_martini,
-/turf/closed/wall/mineral/titanium,
-/area/overmap_encounter/planetoid/cave/explored)
-"z" = (
-/obj/structure/window/reinforced/fulltile/shuttle,
-/obj/structure/grille,
-/turf/open/floor/noslip,
-/area/overmap_encounter/planetoid/cave/explored)
-"B" = (
-/turf/closed/wall/mineral/titanium,
-/area/overmap_encounter/planetoid/cave/explored)
-"C" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/noslip,
-/area/overmap_encounter/planetoid/cave/explored)
-"D" = (
-/obj/item/wrench,
-/obj/structure/rack,
-/obj/item/stack/sheet/mineral/plasma/five,
-/obj/item/stack/sheet/mineral/plasma/five,
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/cave/explored)
-"E" = (
-/obj/machinery/power/shuttle/engine/electric{
- dir = 1
- },
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/overmap_encounter/planetoid/cave/explored)
-"F" = (
-/obj/structure/fence{
- dir = 8
- },
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/cave/explored)
-"G" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/cave/explored)
-"H" = (
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/cave/explored)
-"I" = (
-/obj/item/clothing/suit/space/hardsuit/clown,
-/obj/item/clothing/head/helmet/space/hardsuit/clown,
-/obj/structure/rack,
-/obj/machinery/power/terminal,
-/obj/structure/cable,
-/turf/open/floor/noslip,
-/area/overmap_encounter/planetoid/cave/explored)
-"J" = (
-/obj/machinery/power/floodlight,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/cave/explored)
-"K" = (
-/obj/structure/closet/crate/trashcart,
-/obj/effect/spawner/lootdrop/maintenance/seven,
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/cave/explored)
-"L" = (
-/obj/structure/fence/corner,
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/cave/explored)
-"M" = (
-/obj/structure/fence,
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/cave/explored)
-"N" = (
-/obj/effect/decal/cleanable/oil/slippery,
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/cave/explored)
-"O" = (
-/obj/structure/table/reinforced,
-/obj/item/pickaxe/drill,
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/cave/explored)
-"P" = (
-/turf/open/floor/noslip,
-/area/overmap_encounter/planetoid/cave/explored)
-"Q" = (
-/turf/template_noop,
-/area/template_noop)
-"R" = (
-/obj/machinery/power/port_gen/pacman,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/cave/explored)
-"S" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/cave/explored)
-"T" = (
-/obj/structure/fence/corner{
- dir = 8
- },
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/cave/explored)
-"U" = (
-/obj/structure/fence{
- dir = 4
- },
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/cave/explored)
-"V" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/noslip,
-/area/overmap_encounter/planetoid/cave/explored)
-"W" = (
-/obj/structure/table/reinforced,
-/obj/item/seeds/banana/bluespace,
-/obj/item/circuitboard/computer/arcade/orion_trail,
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/cave/explored)
-"X" = (
-/obj/effect/decal/cleanable/oil/slippery,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/cave/explored)
-"Y" = (
-/obj/structure/statue/bananium/clown,
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/obj/structure/window/reinforced/survival_pod{
- dir = 8
- },
-/obj/structure/window/reinforced/survival_pod,
-/turf/open/floor/noslip,
-/area/overmap_encounter/planetoid/cave/explored)
-"Z" = (
-/obj/structure/table/reinforced,
-/obj/item/reagent_containers/food/snacks/honkdae,
-/turf/open/floor/plating/asteroid,
-/area/overmap_encounter/planetoid/cave/explored)
-
-(1,1,1) = {"
-Q
-Q
-Q
-Q
-k
-k
-k
-k
-k
-M
-M
-a
-"}
-(2,1,1) = {"
-Q
-Q
-k
-k
-k
-k
-u
-H
-D
-H
-c
-U
-"}
-(3,1,1) = {"
-Q
-k
-k
-k
-Z
-r
-H
-H
-l
-H
-X
-U
-"}
-(4,1,1) = {"
-k
-k
-W
-l
-H
-N
-H
-H
-H
-H
-S
-g
-"}
-(5,1,1) = {"
-k
-k
-B
-z
-y
-h
-B
-B
-B
-R
-d
-U
-"}
-(6,1,1) = {"
-k
-B
-b
-x
-P
-V
-i
-e
-E
-H
-S
-F
-"}
-(7,1,1) = {"
-k
-w
-Y
-t
-q
-C
-I
-e
-E
-H
-S
-F
-"}
-(8,1,1) = {"
-k
-k
-B
-z
-s
-h
-B
-B
-B
-K
-S
-F
-"}
-(9,1,1) = {"
-Q
-k
-k
-o
-l
-H
-H
-H
-H
-f
-G
-U
-"}
-(10,1,1) = {"
-Q
-Q
-k
-k
-O
-j
-H
-H
-H
-J
-T
-m
-"}
-(11,1,1) = {"
-Q
-Q
-Q
-k
-k
-k
-M
-M
-M
-M
-L
-Q
-"}
diff --git a/_maps/RandomRuins/WasteRuins/wasteplanet_crash_kitchen.dmm b/_maps/RandomRuins/WasteRuins/wasteplanet_crash_kitchen.dmm
deleted file mode 100644
index 18e6bdb2fbd..00000000000
--- a/_maps/RandomRuins/WasteRuins/wasteplanet_crash_kitchen.dmm
+++ /dev/null
@@ -1,724 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"aq" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/fancy/donut_box,
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/obj/effect/turf_decal/corner/transparent/bar/diagonal{
- dir = 4
- },
-/obj/machinery/door/poddoor/shutters,
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"br" = (
-/obj/structure/sign/donk{
- pixel_y = 32
- },
-/turf/open/floor/carpet/nanoweave/purple,
-/area/ruin/unpowered)
-"cl" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 8
- },
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/ruin/unpowered)
-"dr" = (
-/turf/closed/wall/mineral/titanium,
-/area/ruin/unpowered)
-"fE" = (
-/obj/structure/curtain/bounty,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/turf/open/floor/eighties,
-/area/ruin/unpowered)
-"ga" = (
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"gg" = (
-/turf/open/floor/plating{
- icon_state = "platingdmg2"
- },
-/area/ruin/unpowered)
-"gO" = (
-/obj/structure/table,
-/turf/open/floor/carpet/nanoweave/purple,
-/area/ruin/unpowered)
-"gS" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/machinery/firealarm/directional/south,
-/turf/open/floor/carpet/nanoweave/purple,
-/area/ruin/unpowered)
-"im" = (
-/obj/structure/curtain/bounty,
-/turf/open/floor/eighties,
-/area/ruin/unpowered)
-"iH" = (
-/turf/template_noop,
-/area/template_noop)
-"ju" = (
-/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
- },
-/turf/open/floor/carpet/nanoweave/purple,
-/area/ruin/unpowered)
-"jX" = (
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/ruin/unpowered)
-"lN" = (
-/obj/structure/table/reinforced,
-/obj/item/reagent_containers/food/condiment/saltshaker{
- pixel_x = -6;
- pixel_y = 2
- },
-/obj/item/reagent_containers/food/condiment/peppermill{
- pixel_y = 2
- },
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/obj/effect/turf_decal/corner/transparent/bar/diagonal{
- dir = 4
- },
-/obj/machinery/door/poddoor/shutters,
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"me" = (
-/obj/structure/frame/machine,
-/obj/structure/table,
-/obj/item/circuitboard/machine/chem_dispenser/drinks/beer,
-/turf/open/floor/plating{
- icon_state = "platingdmg2"
- },
-/area/ruin/unpowered)
-"pa" = (
-/turf/closed/wall/mineral/titanium/nodiagonal,
-/area/ruin/unpowered)
-"pc" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 4
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/obj/effect/turf_decal/corner/transparent/bar/diagonal{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"sI" = (
-/mob/living/simple_animal/hostile/hivebot/rapid,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/ruin/unpowered)
-"sQ" = (
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/ruin/unpowered)
-"sV" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"tm" = (
-/obj/structure/table,
-/obj/machinery/reagentgrinder{
- pixel_x = -2;
- pixel_y = 2
- },
-/obj/item/reagent_containers/glass/beaker/large{
- pixel_x = 6;
- pixel_y = 6
- },
-/obj/machinery/firealarm/directional/west,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/obj/effect/turf_decal/corner/transparent/bar/diagonal{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"tI" = (
-/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/structure/sign/solgov_seal{
- pixel_x = -27;
- pixel_y = 0
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"ut" = (
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"uM" = (
-/obj/effect/decal/fakelattice,
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"vc" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/light/directional/south,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/carpet/nanoweave/purple,
-/area/ruin/unpowered)
-"wq" = (
-/mob/living/simple_animal/hostile/hivebot/rapid,
-/turf/open/floor/plating{
- icon_state = "platingdmg2"
- },
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"xh" = (
-/obj/structure/girder,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/ruin/unpowered)
-"xi" = (
-/obj/structure/girder,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"xD" = (
-/obj/structure/table,
-/obj/item/storage/bag/tray,
-/obj/item/reagent_containers/food/drinks/shaker,
-/obj/item/reagent_containers/glass/rag,
-/obj/item/reagent_containers/food/condiment/enzyme,
-/obj/item/kitchen/knife,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/obj/effect/turf_decal/corner/transparent/bar/diagonal{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"xU" = (
-/obj/machinery/door/airlock/public/glass{
- name = "Crew Quarters"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/door/firedoor/border_only{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"yB" = (
-/obj/machinery/door/firedoor/border_only{
- dir = 4
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 8
- },
-/obj/machinery/door/airlock/public/glass{
- dir = 4
- },
-/turf/open/floor/plasteel/tech/grid,
-/area/ruin/unpowered)
-"yE" = (
-/obj/structure/sign/warning/docking,
-/turf/closed/wall/mineral/titanium,
-/area/ruin/unpowered)
-"Al" = (
-/obj/structure/window/reinforced/tinted/frosted{
- dir = 1
- },
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/ruin/unpowered)
-"DF" = (
-/obj/machinery/door/window/westleft,
-/obj/structure/sink{
- dir = 8;
- pixel_x = 12
- },
-/obj/structure/mirror{
- pixel_x = 24
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-"EU" = (
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"Fq" = (
-/obj/item/electronics/apc,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/ruin/unpowered)
-"Hv" = (
-/obj/structure/table,
-/obj/machinery/chem_dispenser/drinks,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/obj/effect/turf_decal/corner/transparent/bar/diagonal{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"HU" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/structure/extinguisher_cabinet/directional/south,
-/turf/open/floor/carpet/nanoweave/purple,
-/area/ruin/unpowered)
-"HV" = (
-/obj/structure/curtain,
-/obj/machinery/shower{
- pixel_y = 8
- },
-/obj/structure/window/reinforced/tinted/frosted{
- dir = 8
- },
-/obj/item/soap,
-/mob/living/simple_animal/hostile/hivebot/rapid,
-/turf/open/floor/plasteel/white,
-/area/ruin/unpowered)
-"Ka" = (
-/obj/machinery/power/terminal{
- dir = 8
- },
-/obj/structure/cable,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"KR" = (
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"Lz" = (
-/obj/item/ammo_casing/spent{
- dir = 1;
- pixel_x = 7;
- pixel_y = 4
- },
-/obj/effect/decal/cleanable/blood/gibs,
-/obj/item/gun/ballistic/automatic/pistol/commander{
- pixel_y = 7
- },
-/obj/effect/mob_spawn/human/corpse/assistant,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/ruin/unpowered)
-"Mi" = (
-/obj/structure/grille,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"Nb" = (
-/obj/structure/girder,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/ruin/unpowered)
-"Qz" = (
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"QS" = (
-/obj/structure/chair/comfy/blue/directional/south,
-/obj/machinery/airalarm/directional/north,
-/turf/open/floor/wood,
-/area/ruin/unpowered)
-"Rt" = (
-/obj/effect/spawner/structure/window/shuttle,
-/obj/machinery/door/firedoor/window,
-/obj/structure/grille,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "sgwindowshut";
- name = "External Shutters"
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"RL" = (
-/obj/structure/lattice,
-/obj/structure/girder,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/ruin/unpowered)
-"Sh" = (
-/obj/machinery/light/small/directional/east,
-/obj/machinery/door/window/westright,
-/obj/structure/window/reinforced/spawner,
-/obj/machinery/atmospherics/components/binary/pump/layer2,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/ruin/unpowered)
-"Te" = (
-/obj/structure/table,
-/obj/machinery/microwave,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/obj/effect/turf_decal/corner/transparent/bar/diagonal{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"TX" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/siphon/layer4{
- dir = 8
- },
-/obj/item/oar,
-/obj/machinery/advanced_airlock_controller{
- pixel_y = -24
- },
-/obj/structure/closet/emcloset/wall/directional/east,
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered)
-"TZ" = (
-/obj/machinery/door/airlock/public/glass{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 8
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/plasteel/tech/grid,
-/area/ruin/unpowered)
-"UA" = (
-/obj/machinery/gibber,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/obj/effect/turf_decal/corner/transparent/bar/diagonal{
- dir = 4
- },
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/ruin/unpowered)
-"Vn" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- 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/carpet/nanoweave/purple,
-/area/ruin/unpowered)
-"Vy" = (
-/obj/structure/table,
-/obj/effect/spawner/lootdrop/donkpockets,
-/obj/machinery/button/door{
- id = "sgkitchen";
- name = "Kitchen Shutters";
- pixel_y = -22
- },
-/obj/machinery/camera/autoname{
- dir = 1;
- network = list("cricket")
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/obj/effect/turf_decal/corner/transparent/bar/diagonal{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"VG" = (
-/obj/machinery/atmospherics/components/unary/tank/air{
- piping_layer = 2
- },
-/obj/structure/window/reinforced/spawner/west,
-/obj/machinery/camera/autoname{
- dir = 8;
- network = list("cricket")
- },
-/turf/open/floor/plasteel/tech,
-/area/ruin/unpowered)
-"WP" = (
-/mob/living/simple_animal/hostile/hivebot/rapid,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-
-(1,1,1) = {"
-ut
-iH
-ut
-uM
-uM
-uM
-wq
-Qz
-EU
-uM
-uM
-ut
-iH
-ut
-iH
-iH
-"}
-(2,1,1) = {"
-yE
-VG
-Sh
-TX
-pa
-yB
-TZ
-pa
-pa
-Nb
-dr
-dr
-uM
-iH
-iH
-iH
-"}
-(3,1,1) = {"
-Nb
-Nb
-dr
-pa
-pa
-KR
-Vn
-ju
-xU
-tI
-Ka
-fE
-KR
-uM
-ut
-iH
-"}
-(4,1,1) = {"
-Nb
-UA
-tm
-Te
-xh
-sQ
-jX
-gS
-dr
-QS
-cl
-im
-gg
-sQ
-uM
-ut
-"}
-(5,1,1) = {"
-Rt
-xD
-pc
-WP
-lN
-sV
-sQ
-gO
-dr
-Fq
-ga
-Al
-jX
-KR
-uM
-uM
-"}
-(6,1,1) = {"
-Rt
-me
-jX
-Lz
-aq
-sQ
-jX
-HU
-pa
-HV
-DF
-pa
-sQ
-uM
-iH
-ut
-"}
-(7,1,1) = {"
-Mi
-Hv
-KR
-Vy
-dr
-br
-vc
-Nb
-pa
-Nb
-pa
-pa
-uM
-ut
-iH
-iH
-"}
-(8,1,1) = {"
-RL
-pa
-pa
-xi
-Nb
-gg
-jX
-jX
-sQ
-Nb
-uM
-ut
-ut
-iH
-iH
-iH
-"}
-(9,1,1) = {"
-ut
-ut
-uM
-uM
-sQ
-KR
-sI
-sQ
-uM
-uM
-ut
-iH
-iH
-iH
-iH
-iH
-"}
-(10,1,1) = {"
-iH
-iH
-ut
-iH
-ut
-uM
-uM
-uM
-ut
-iH
-ut
-iH
-iH
-iH
-iH
-iH
-"}
-(11,1,1) = {"
-iH
-iH
-iH
-iH
-iH
-ut
-uM
-ut
-iH
-iH
-iH
-iH
-iH
-iH
-iH
-iH
-"}
diff --git a/_maps/RandomRuins/WasteRuins/wasteplanet_fortress_of_solitide.dmm b/_maps/RandomRuins/WasteRuins/wasteplanet_fortress_of_solitide.dmm
deleted file mode 100644
index 73735c65542..00000000000
--- a/_maps/RandomRuins/WasteRuins/wasteplanet_fortress_of_solitide.dmm
+++ /dev/null
@@ -1,7591 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"aa" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"ad" = (
-/mob/living/simple_animal/hostile/rat,
-/obj/effect/decal/cleanable/generic,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"am" = (
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance/three,
-/obj/item/flashlight/glowstick,
-/obj/item/hand_labeler_refill,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"as" = (
-/obj/effect/decal/cleanable/oil,
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/obj/effect/decal/cleanable/cobweb,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"av" = (
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"az" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"aE" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Funny Creature Storage";
- dir = 4
- },
-/obj/structure/barricade/wooden,
-/obj/item/restraints/legcuffs/beartrap{
- armed = 1;
- trap_damage = 1
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"aH" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood/footprints,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"aM" = (
-/obj/structure/closet/crate/hydroponics,
-/obj/item/reagent_containers/food/snacks/grown/banana,
-/obj/item/reagent_containers/food/snacks/grown/banana,
-/obj/item/reagent_containers/food/snacks/grown/banana,
-/obj/item/reagent_containers/food/snacks/grown/banana,
-/obj/item/reagent_containers/food/snacks/grown/banana,
-/obj/item/reagent_containers/food/snacks/grown/banana,
-/obj/item/reagent_containers/food/snacks/grown/banana,
-/obj/item/reagent_containers/food/snacks/grown/banana,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"aP" = (
-/obj/effect/decal/cleanable/food/flour,
-/obj/effect/decal/cleanable/generic,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"aT" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"aY" = (
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/item/poster/random_contraband,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"bb" = (
-/obj/structure/sign/poster/contraband/punch_shit,
-/turf/closed/wall/rust,
-/area/ruin/powered)
-"bj" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/blood/old,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/carpet/royalblack,
-/area/ruin/powered)
-"br" = (
-/obj/effect/mob_spawn/human/corpse/assistant,
-/obj/effect/decal/cleanable/blood,
-/obj/machinery/light/directional/south,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"bs" = (
-/obj/structure/statue/sandstone/assistant,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"bt" = (
-/obj/structure/sign/poster/contraband/rip_badger,
-/turf/closed/wall/r_wall/rust,
-/area/ruin/powered)
-"bv" = (
-/obj/machinery/door/airlock/maintenance{
- name = "The Grey Fortress";
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"bz" = (
-/obj/effect/decal/cleanable/blood/splatter,
-/obj/item/chair/plastic,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"bC" = (
-/obj/structure/sign/poster/contraband/clown,
-/turf/closed/wall/r_wall/rust,
-/area/ruin/powered)
-"bF" = (
-/obj/item/gun/ballistic/shotgun/doublebarrel/improvised,
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"bG" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/closed/wall/r_wall/rust,
-/area/ruin/powered)
-"bH" = (
-/obj/effect/decal/cleanable/food/tomato_smudge,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"bI" = (
-/obj/machinery/door/airlock/maintenance,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"bN" = (
-/obj/structure/sign/poster/contraband/donut_corp,
-/turf/closed/wall/rust,
-/area/ruin/powered)
-"bR" = (
-/obj/effect/decal/cleanable/oil/streak,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"bS" = (
-/obj/effect/decal/cleanable/blood,
-/obj/effect/decal/cleanable/blood/gibs/limb,
-/obj/effect/decal/cleanable/blood/innards,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"bT" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/rack,
-/obj/item/trash/plate,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/item/toner,
-/obj/item/mop,
-/obj/item/weldingtool/empty,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"cf" = (
-/obj/effect/decal/cleanable/blood/splatter,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/carpet/royalblack,
-/area/ruin/powered)
-"cj" = (
-/obj/structure/window/plasma/spawner/east,
-/obj/item/clothing/gloves/color/yellow,
-/obj/effect/decal/cleanable/glass/plasma,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"cm" = (
-/obj/effect/mob_spawn/human/engineer,
-/obj/item/crowbar/power{
- pixel_x = -1;
- pixel_y = -13
- },
-/obj/effect/decal/cleanable/blood/old,
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/item/pipe_dispenser{
- pixel_x = 2;
- pixel_y = 7
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"co" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/oil,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"ct" = (
-/obj/structure/window/spawner,
-/mob/living/carbon/monkey,
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"cD" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"cE" = (
-/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/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"cF" = (
-/obj/item/ammo_casing{
- dir = 5;
- pixel_x = -3;
- pixel_y = 9
- },
-/obj/item/chair/plastic,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"cP" = (
-/obj/item/trash/boritos,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"cS" = (
-/obj/structure/table/wood/fancy/orange,
-/obj/item/reagent_containers/food/snacks/store/cake/clown_cake,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"cU" = (
-/obj/item/toy/figure/secofficer,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/generic,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"cX" = (
-/obj/structure/statue/bananium/clown,
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/turf/open/floor/mineral/bananium,
-/area/ruin/powered)
-"dg" = (
-/obj/structure/sign/poster/contraband/eat,
-/turf/closed/wall/r_wall/rust,
-/area/ruin/powered)
-"dn" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/closed/wall/r_wall/rust,
-/area/ruin/powered)
-"dp" = (
-/obj/structure/headpike,
-/obj/effect/decal/cleanable/generic,
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"dv" = (
-/obj/structure/reagent_dispensers/water_cooler,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"dC" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"dH" = (
-/obj/effect/decal/cleanable/greenglow,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"dI" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/sign/poster/contraband/have_a_puff,
-/turf/closed/wall/rust,
-/area/ruin/powered)
-"dK" = (
-/obj/effect/decal/cleanable/generic,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"dM" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/oil/streak,
-/obj/item/trash/cheesie,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"dP" = (
-/obj/effect/gibspawner/human,
-/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 = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/carpet/royalblack,
-/area/ruin/powered)
-"dT" = (
-/obj/structure/table/wood,
-/obj/machinery/fax/ruin,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"dU" = (
-/obj/structure/table,
-/obj/item/stack/tape/industrial/electrical,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"dY" = (
-/obj/effect/decal/cleanable/blood/old,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/light/small/directional/west,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"ec" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/carpet/royalblack,
-/area/ruin/powered)
-"ed" = (
-/obj/item/trash/cheesie,
-/turf/open/floor/mineral/bananium,
-/area/ruin/powered)
-"ee" = (
-/obj/machinery/photocopier,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"eh" = (
-/obj/effect/mob_spawn/human/corpse/assistant,
-/obj/effect/decal/cleanable/blood,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"ej" = (
-/obj/machinery/door/airlock/maintenance{
- name = "The Throneroom";
- dir = 4
- },
-/obj/effect/decal/cleanable/blood,
-/obj/item/assembly/mousetrap/armed,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/carpet/royalblack,
-/area/ruin/powered)
-"ep" = (
-/obj/effect/spawner/lootdrop/maintenance/two,
-/obj/item/reagent_containers/food/snacks/butterdog,
-/obj/structure/table,
-/obj/item/coin/plastic,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"er" = (
-/obj/structure/table/wood,
-/obj/item/paper_bin,
-/obj/item/poster/random_contraband,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"et" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/closed/wall/r_wall/rust,
-/area/ruin/powered)
-"ev" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/blood/old,
-/mob/living/simple_animal/hostile/rat{
- dir = 8
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"ez" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/rack,
-/obj/item/trash/plate,
-/obj/item/trash/sosjerky,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/item/assembly/igniter,
-/obj/item/clipboard,
-/obj/item/electronics/airlock,
-/obj/item/hand_labeler_refill,
-/obj/item/photo,
-/obj/item/wrench/old,
-/obj/item/poster/random_contraband,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"eI" = (
-/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"eL" = (
-/mob/living/simple_animal/hostile/rat,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"eM" = (
-/obj/structure/chair/wood{
- dir = 4
- },
-/obj/effect/mob_spawn/human/corpse/frontier,
-/obj/effect/decal/cleanable/blood,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/wood,
-/area/ruin/powered)
-"eO" = (
-/obj/effect/gibspawner/human,
-/obj/structure/statue/sandstone/assistant,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"eS" = (
-/obj/item/storage/toolbox/mechanical,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"eT" = (
-/obj/effect/decal/cleanable/generic,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/visible/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"eW" = (
-/obj/effect/decal/cleanable/oil/streak,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"ff" = (
-/obj/structure/closet/crate/bin,
-/obj/item/clothing/mask/gas/mime,
-/obj/item/clothing/under/rank/civilian/mime,
-/obj/item/clothing/head/frenchberet,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"fh" = (
-/obj/structure/closet/emcloset,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"fi" = (
-/obj/structure/sign/poster/contraband/random,
-/turf/closed/wall/r_wall/rust,
-/area/ruin/powered)
-"fj" = (
-/obj/effect/decal/cleanable/glass,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"fk" = (
-/obj/machinery/door/airlock/bananium{
- name = "Clown Embassy";
- dir = 4
- },
-/obj/item/grown/bananapeel,
-/turf/open/floor/mineral/bananium,
-/area/ruin/powered)
-"fn" = (
-/obj/effect/gibspawner/human,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"fr" = (
-/obj/structure/table,
-/obj/item/stack/sheet/mineral/wood,
-/obj/item/stack/sheet/mineral/wood,
-/obj/item/stack/sheet/mineral/wood,
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/obj/item/trash/waffles,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/item/flashlight/glowstick,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"fw" = (
-/obj/structure/table,
-/obj/effect/spawner/lootdrop/maintenance/five,
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/obj/item/toner/extreme,
-/obj/item/poster/random_contraband,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"fy" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"fB" = (
-/obj/effect/decal/cleanable/blood/drip,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"fE" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"fI" = (
-/obj/structure/closet/crate,
-/obj/item/spear,
-/obj/item/spear,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/trash/tray,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"fJ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/spawner/lootdrop/grille_or_trash,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"ga" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/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 = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"gi" = (
-/obj/structure/rack,
-/obj/item/clothing/gloves/color/fyellow,
-/obj/item/clothing/gloves/color/fyellow,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"go" = (
-/obj/machinery/light/small/directional/west,
-/turf/open/floor/mineral/bananium,
-/area/ruin/powered)
-"gp" = (
-/mob/living/simple_animal/hostile/rat,
-/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 = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"gq" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/item/coin,
-/obj/machinery/light/small/directional/south,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"gr" = (
-/obj/structure/rack,
-/obj/item/trash/sosjerky,
-/obj/item/trash/raisins,
-/obj/item/folder/blue,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"gG" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"gL" = (
-/turf/open/floor/mineral/bananium,
-/area/ruin/powered)
-"gM" = (
-/obj/structure/rack,
-/obj/item/clothing/gloves/color/fyellow,
-/obj/item/clothing/gloves/color/fyellow,
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"gQ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"gW" = (
-/obj/structure/table/wood,
-/obj/item/paper/crumpled{
- default_raw_text = "Please leave money and pawned items on this table. Thank you! -R";
- pixel_x = 5;
- pixel_y = 4
- },
-/obj/item/spacecash/bundle/c100,
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"hd" = (
-/obj/item/reagent_containers/food/snacks/cakeslice/clown_slice,
-/turf/open/floor/mineral/bananium,
-/area/ruin/powered)
-"he" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"hf" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Self-Service Shoppery"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"hD" = (
-/obj/structure/sign/poster/contraband/steppyflag,
-/turf/closed/wall/r_wall/rust,
-/area/ruin/powered)
-"hH" = (
-/obj/structure/table,
-/obj/item/pizzabox/pineapple,
-/obj/item/pizzabox/pineapple{
- pixel_y = 3
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"hO" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood/old,
-/obj/item/trash/can/food/beans,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"hV" = (
-/obj/effect/mob_spawn/human/corpse/assistant,
-/obj/effect/decal/cleanable/blood,
-/obj/machinery/light/directional/west,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"hW" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"hZ" = (
-/obj/effect/mob_spawn/human/corpse/assistant,
-/obj/effect/decal/cleanable/blood,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"ik" = (
-/obj/structure/filingcabinet,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"in" = (
-/turf/template_noop,
-/area/template_noop)
-"is" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/glass,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"iv" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/trash/can/food/beans,
-/obj/structure/closet/crate,
-/obj/item/trash/candy,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/item/assembly/prox_sensor,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/item/poster/random_contraband,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"iw" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 8;
- pixel_x = -7;
- pixel_y = 9
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"iH" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/blood/old,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"iI" = (
-/mob/living/simple_animal/hostile/rat,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"iK" = (
-/obj/structure/curtain/cloth/fancy,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"iR" = (
-/mob/living/simple_animal/hostile/rat,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"iZ" = (
-/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 = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/carpet/royalblack,
-/area/ruin/powered)
-"ja" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"jh" = (
-/obj/effect/decal/cleanable/ash,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"jl" = (
-/obj/structure/chair/office{
- dir = 8
- },
-/obj/effect/decal/cleanable/blood/old,
-/obj/item/broken_bottle,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"jn" = (
-/mob/living/simple_animal/hostile/retaliate/clown/mutant/blob,
-/obj/effect/gibspawner/human,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"jr" = (
-/obj/structure/table/reinforced,
-/obj/item/slime_cookie/green,
-/obj/item/toy/figure/chef,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"jy" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"jz" = (
-/obj/effect/decal/cleanable/blood,
-/obj/effect/mob_spawn/human/clown/corpse,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"jA" = (
-/obj/structure/reagent_dispensers/cooking_oil,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"jD" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"jF" = (
-/mob/living/simple_animal/hostile/rat,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/glass,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"jG" = (
-/obj/structure/closet/cabinet,
-/obj/item/clothing/accessory/holster/detective,
-/obj/item/clothing/under/rank/security/detective,
-/obj/item/clothing/suit/det_suit,
-/obj/item/clothing/neck/tie/detective,
-/obj/item/clothing/head/fedora/det_hat,
-/obj/item/cartridge/detective,
-/obj/item/evidencebag,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"jH" = (
-/obj/machinery/light/directional/north,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"jM" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/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 = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"jS" = (
-/obj/structure/chair/sofa/brown/right/directional/north,
-/mob/living/simple_animal/hostile/retaliate/goose/vomit{
- dir = 1
- },
-/obj/effect/decal/cleanable/vomit/old,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"jU" = (
-/obj/structure/sign/poster/contraband/space_cube,
-/turf/closed/wall/r_wall/rust,
-/area/ruin/powered)
-"jY" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Armoire";
- dir = 4
- },
-/obj/item/restraints/legcuffs/beartrap{
- armed = 1;
- trap_damage = 1
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"kb" = (
-/obj/machinery/door/airlock/maintenance{
- name = "The Grey Fortress"
- },
-/obj/structure/fans/tiny,
-/obj/item/assembly/mousetrap/armed,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"kd" = (
-/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"kf" = (
-/obj/structure/table,
-/obj/item/stack/rods/ten,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"ki" = (
-/obj/effect/decal/cleanable/blood,
-/mob/living/simple_animal/hostile/rat,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"kj" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/ash,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"kl" = (
-/obj/structure/sign/poster/contraband/space_cola,
-/turf/closed/wall/r_wall/rust,
-/area/ruin/powered)
-"kn" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"kp" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Detective Halligan's Office"
- },
-/obj/structure/barricade/wooden/crude,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"kw" = (
-/obj/machinery/vending/sovietsoda,
-/turf/open/floor/wood,
-/area/ruin/powered)
-"kD" = (
-/obj/structure/statue/sandstone/assistant,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"kE" = (
-/obj/structure/sign/poster/contraband/xenofauna_parasite,
-/turf/closed/wall/r_wall/rust,
-/area/ruin/powered)
-"kK" = (
-/obj/effect/decal/cleanable/blood,
-/obj/effect/mob_spawn/human/clown/corpse,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/mineral/bananium,
-/area/ruin/powered)
-"kO" = (
-/obj/item/trash/chips,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"kR" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/mineral/bananium,
-/area/ruin/powered)
-"kS" = (
-/obj/effect/decal/cleanable/blood,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"kT" = (
-/obj/structure/closet/crate/secure/science,
-/obj/item/laser_pointer/upgraded,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/obj/item/trash/plate,
-/obj/effect/spawner/lootdrop/maintenance/two,
-/obj/item/electronics/airlock,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"kX" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"lf" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/generic,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"lk" = (
-/obj/effect/decal/cleanable/blood,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"ll" = (
-/obj/structure/headpike,
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"lp" = (
-/obj/effect/decal/cleanable/blood/old,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"lr" = (
-/obj/machinery/deepfryer,
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"ls" = (
-/obj/structure/table,
-/obj/item/gun/energy/laser/retro,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"lv" = (
-/obj/item/flashlight/lamp/bananalamp,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"lz" = (
-/obj/effect/decal/cleanable/generic,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"lA" = (
-/obj/effect/decal/cleanable/blood/gibs/up,
-/obj/effect/decal/cleanable/ash,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"lI" = (
-/obj/structure/chair/comfy/beige{
- dir = 8
- },
-/obj/effect/decal/cleanable/blood,
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"lK" = (
-/mob/living/simple_animal/hostile/rat{
- dir = 8
- },
-/obj/machinery/light/directional/south,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"lL" = (
-/obj/item/mecha_parts/mecha_equipment/generator,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"lM" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"lO" = (
-/obj/structure/bed,
-/obj/item/bedsheet/random,
-/obj/effect/mob_spawn/human/corpse/assistant,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"lQ" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/glass,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"lX" = (
-/obj/structure/chair/stool{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"mc" = (
-/obj/structure/closet/crate,
-/obj/item/trash/raisins,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/item/flashlight/glowstick,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"md" = (
-/obj/effect/spawner/lootdrop/grille_or_trash,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"mh" = (
-/obj/effect/decal/cleanable/vomit/old,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"mk" = (
-/obj/effect/decal/cleanable/blood/old,
-/obj/effect/decal/cleanable/ash,
-/obj/item/c_tube{
- pixel_x = -12;
- pixel_y = 3
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"mo" = (
-/obj/item/spear,
-/obj/structure/sign/poster/contraband/random{
- pixel_y = 28
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"mv" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/sign/poster/contraband/missing_gloves,
-/turf/closed/wall/r_wall/rust,
-/area/ruin/powered)
-"mx" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/wood{
- icon_state = "wood-broken2"
- },
-/area/ruin/powered)
-"mG" = (
-/obj/structure/table/wood,
-/obj/item/reagent_containers/food/drinks/flask/det,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/folder{
- pixel_x = -6;
- pixel_y = 5
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"mM" = (
-/obj/structure/sign/poster/contraband/peacemaker,
-/turf/closed/wall/r_wall/rust,
-/area/ruin/powered)
-"mP" = (
-/obj/effect/mob_spawn/human/corpse/assistant,
-/obj/effect/decal/cleanable/blood,
-/obj/item/spear,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"mV" = (
-/obj/structure/closet/cabinet,
-/obj/item/clothing/suit/jacket/leather,
-/obj/item/clothing/suit/jacket/leather,
-/obj/item/clothing/suit/jacket/leather,
-/obj/item/clothing/suit/jacket/leather,
-/obj/item/clothing/glasses/cheapsuns,
-/obj/item/clothing/glasses/cheapsuns,
-/obj/item/clothing/glasses/cheapsuns,
-/obj/item/clothing/glasses/cheapsuns,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"mW" = (
-/obj/effect/decal/cleanable/blood,
-/obj/effect/mob_spawn/human/corpse/assistant,
-/obj/effect/decal/cleanable/vomit/old,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"na" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/window/brigdoor,
-/obj/machinery/door/window/brigdoor/northleft,
-/obj/item/paper_bin,
-/obj/item/trash/tray,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"nc" = (
-/obj/structure/table/reinforced,
-/obj/item/reagent_containers/food/snacks/cakeslice/brain,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"nd" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"nh" = (
-/obj/effect/decal/cleanable/glass,
-/obj/item/cigbutt,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"nk" = (
-/obj/structure/table,
-/obj/item/stock_parts/micro_laser/ultra,
-/obj/item/reagent_containers/glass/beaker{
- name = "standard-sized beaker";
- pixel_x = -9;
- pixel_y = 3
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"nt" = (
-/obj/effect/decal/cleanable/blood,
-/mob/living/simple_animal/hostile/rat,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/trash/cheesie,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"nv" = (
-/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/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"nw" = (
-/obj/effect/mob_spawn/human/clown/corpse,
-/obj/effect/decal/cleanable/blood,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"nz" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"nE" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/oil,
-/obj/effect/decal/cleanable/blood/footprints,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"nF" = (
-/obj/machinery/door/airlock/maintenance{
- dir = 4
- },
-/obj/item/assembly/mousetrap/armed,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"nH" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/generic,
-/obj/effect/decal/cleanable/ash,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"nJ" = (
-/obj/structure/rack,
-/obj/item/pneumatic_cannon/pie,
-/obj/item/reagent_containers/spray/waterflower/lube,
-/obj/machinery/light/small/directional/east,
-/turf/open/floor/mineral/bananium,
-/area/ruin/powered)
-"nK" = (
-/obj/structure/table,
-/obj/effect/spawner/lootdrop/maintenance/five,
-/obj/item/shovel/spoon,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"nM" = (
-/obj/structure/curtain/cloth/fancy,
-/obj/effect/mob_spawn/human/corpse/frontier,
-/obj/effect/decal/cleanable/blood,
-/obj/effect/decal/cleanable/vomit/old,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"nN" = (
-/obj/structure/closet/cardboard,
-/obj/item/toy/plush/carpplushie/dehy_carp,
-/obj/item/toy/plush/carpplushie,
-/obj/item/toy/plush/carpplushie,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/item/poster/random_contraband,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"nS" = (
-/obj/structure/rack,
-/obj/item/melee/baton/cattleprod,
-/obj/item/restraints/handcuffs/cable/pink,
-/obj/item/clothing/mask/muzzle,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"oa" = (
-/obj/machinery/door/airlock/maintenance{
- name = "The Barracks Part 3"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"oe" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/closet/crate,
-/obj/item/trash/sosjerky,
-/obj/item/trash/candy,
-/obj/item/assembly/igniter,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"oj" = (
-/obj/effect/spawner/lootdrop/grille_or_trash,
-/obj/effect/decal/cleanable/oil,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"oq" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/food/egg_smudge,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"ow" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood/drip,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/spawner/lootdrop/grille_or_trash,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"oB" = (
-/obj/structure/bed,
-/obj/item/bedsheet/random,
-/obj/effect/gibspawner/human,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"oD" = (
-/obj/effect/decal/cleanable/blood,
-/obj/effect/decal/cleanable/greenglow,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"oJ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"oM" = (
-/obj/structure/bed,
-/obj/item/bedsheet/random,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"oQ" = (
-/obj/structure/table/wood,
-/obj/item/toy/plush/snakeplushie,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/obj/item/trash/waffles,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"oS" = (
-/obj/structure/bed,
-/obj/item/bedsheet/random,
-/obj/machinery/light/small/directional/east,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"oU" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/oil/streak,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"oW" = (
-/obj/structure/flora/rock,
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"oX" = (
-/obj/structure/sign/poster/contraband/pgf,
-/turf/closed/wall/rust,
-/area/ruin/powered)
-"oY" = (
-/obj/effect/decal/cleanable/blood/footprints,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"ph" = (
-/obj/effect/decal/cleanable/insectguts,
-/obj/structure/rack,
-/obj/item/folder/yellow,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/item/electronics/airlock,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"pp" = (
-/obj/effect/decal/cleanable/oil/streak,
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"pq" = (
-/obj/effect/decal/cleanable/blood/old,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"py" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/item/trash/semki,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"pz" = (
-/obj/structure/fluff/paper/stack{
- dir = 5
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"pD" = (
-/obj/effect/decal/cleanable/blood/old,
-/obj/item/ammo_casing/shotgun/techshell,
-/obj/effect/decal/cleanable/generic,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"pE" = (
-/obj/structure/chair/comfy/orange/directional/south,
-/obj/effect/decal/cleanable/blood,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"pM" = (
-/obj/effect/decal/cleanable/generic,
-/obj/structure/rack,
-/obj/item/trash/sosjerky,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/item/assembly/prox_sensor,
-/obj/item/photo,
-/obj/item/poster/random_contraband,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"pN" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/vomit/old,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"pP" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"pR" = (
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"pS" = (
-/obj/structure/sign/poster/contraband/engis_unite,
-/turf/closed/wall/r_wall/rust,
-/area/ruin/powered)
-"pW" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"pY" = (
-/obj/structure/table,
-/obj/item/ammo_box/c9mm{
- pixel_y = 6
- },
-/obj/item/gun/ballistic/automatic/zip_pistol,
-/obj/item/ammo_box/magazine/zip_ammo_9mm,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"qi" = (
-/obj/structure/closet/body_bag,
-/obj/item/clothing/under/costume/pirate,
-/obj/item/clothing/suit/pirate,
-/obj/item/clothing/head/pirate,
-/obj/item/clothing/head/helmet/space/pirate/bandana,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"qn" = (
-/obj/effect/decal/cleanable/blood,
-/obj/effect/mob_spawn/human/corpse/assistant,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"qo" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/broken_bottle,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"qr" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"qs" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Laboratorium Storage"
- },
-/obj/item/assembly/mousetrap/armed,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"qx" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/glass,
-/obj/machinery/light/directional/south,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"qE" = (
-/obj/effect/decal/cleanable/oil/streak,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"qF" = (
-/obj/machinery/door/airlock/maintenance{
- name = "The Gambling Hall"
- },
-/turf/open/floor/wood,
-/area/ruin/powered)
-"qI" = (
-/obj/structure/table,
-/obj/item/holochip{
- pixel_x = -7;
- pixel_y = 7
- },
-/obj/item/clothing/suit/toggle/owlwings/griffinwings{
- pixel_y = 5
- },
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"qR" = (
-/obj/structure/grille,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/restraints/legcuffs/beartrap{
- armed = 1;
- trap_damage = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"qT" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"ra" = (
-/obj/effect/decal/cleanable/generic,
-/obj/structure/sign/poster/contraband/random{
- pixel_y = -28
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"rl" = (
-/obj/structure/table/wood,
-/obj/item/reagent_containers/food/snacks/grown/cannabis{
- pixel_x = -6;
- pixel_y = 4
- },
-/obj/item/reagent_containers/food/snacks/grown/cannabis{
- pixel_x = 3;
- pixel_y = 9
- },
-/obj/item/storage/fancy/cigarettes/cigpack_carp{
- pixel_x = 4
- },
-/obj/item/storage/fancy/cigarettes/cigpack_carp{
- pixel_x = -6;
- pixel_y = 5
- },
-/obj/item/lighter,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"rn" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"rp" = (
-/obj/effect/mob_spawn/human/corpse/assistant,
-/obj/effect/decal/cleanable/blood,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"ru" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/glass,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"rx" = (
-/obj/structure/bed,
-/obj/item/bedsheet/random,
-/obj/effect/decal/cleanable/blood,
-/mob/living/simple_animal/hostile/rat,
-/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"rE" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/generic,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"rJ" = (
-/obj/structure/falsewall/reinforced,
-/obj/structure/sign/poster/retro/smile,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"rO" = (
-/obj/structure/curtain/cloth/fancy,
-/obj/item/trash/tray,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"rR" = (
-/obj/machinery/light/directional/south,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"rU" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/oil,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"sg" = (
-/mob/living/simple_animal/hostile/rat{
- dir = 1
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"sl" = (
-/mob/living/simple_animal/hostile/rat,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/spawner/lootdrop/grille_or_trash,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"so" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/generic,
-/turf/open/floor/wood,
-/area/ruin/powered)
-"sr" = (
-/obj/item/rack_parts,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"sB" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/paper/crumpled{
- default_raw_text = "You know you want to do it. Give in to your pyromaniacal urges. DO IT."
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"sE" = (
-/mob/living/simple_animal/hostile/asteroid/goliath{
- desc = "Douglas! Everyone's pal! What a guy!";
- dir = 1;
- faction = list("neutral");
- name = "Douglas the Friendly Maintenance Goliath"
- },
-/obj/structure/chair/sofa/brown/left/directional/north,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"sH" = (
-/obj/effect/decal/cleanable/blood,
-/obj/effect/mob_spawn/human/corpse/assistant,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"sQ" = (
-/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"sR" = (
-/obj/machinery/door/airlock/maintenance{
- name = "The Glovebox"
- },
-/obj/item/assembly/mousetrap/armed,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"sU" = (
-/obj/effect/decal/cleanable/blood/footprints{
- pixel_x = 1;
- pixel_y = -6
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"tc" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/trash/sosjerky,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"tf" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/wood,
-/area/ruin/powered)
-"tA" = (
-/obj/structure/table/reinforced,
-/obj/item/reagent_containers/glass/mortar/gold,
-/obj/item/pestle,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"tB" = (
-/obj/structure/chair/comfy/grey/directional/west,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"tF" = (
-/obj/structure/chair/wood{
- dir = 8
- },
-/mob/living/simple_animal/hostile/frontier{
- dir = 8
- },
-/turf/open/floor/wood,
-/area/ruin/powered)
-"tI" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/spawner/lootdrop/grille_or_trash,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"tK" = (
-/obj/effect/decal/cleanable/blood,
-/obj/item/reagent_containers/food/snacks/deadmouse,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"tP" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/light/directional/north,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"tR" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"tT" = (
-/obj/machinery/door/airlock/maintenance{
- name = "The Barracks"
- },
-/obj/effect/decal/cleanable/blood,
-/obj/effect/decal/cleanable/oil/slippery,
-/obj/item/assembly/mousetrap/armed,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"tY" = (
-/obj/structure/statue/sandstone/assistant,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"ub" = (
-/obj/structure/sign/poster/contraband/donut_corp,
-/turf/closed/wall/r_wall/rust,
-/area/ruin/powered)
-"ul" = (
-/obj/structure/table,
-/obj/item/reagent_containers/food/snacks/chewable/bubblegum,
-/obj/item/reagent_containers/food/snacks/chewable/bubblegum{
- pixel_y = 5
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"ut" = (
-/obj/effect/decal/cleanable/blood/gibs/core,
-/obj/effect/decal/cleanable/blood,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"uB" = (
-/obj/structure/table/wood,
-/obj/item/switchblade{
- pixel_x = -3;
- pixel_y = 4
- },
-/obj/item/coin/antagtoken{
- pixel_x = 4;
- pixel_y = -2
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"uD" = (
-/obj/structure/rack,
-/obj/effect/mob_spawn/drone,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/trash/raisins,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/item/airlock_painter,
-/obj/item/tape/random,
-/obj/item/poster/random_contraband,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"uJ" = (
-/obj/structure/table/wood,
-/obj/item/toy/figure/lawyer{
- pixel_x = 7;
- pixel_y = 3
- },
-/obj/item/toy/figure/secofficer{
- pixel_x = -8;
- pixel_y = 8
- },
-/obj/item/toy/figure/warden{
- pixel_x = -4;
- pixel_y = -1
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"uP" = (
-/obj/machinery/door/airlock/maintenance{
- name = "The Laboratorium";
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"uS" = (
-/obj/effect/decal/cleanable/glass,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"va" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"vc" = (
-/obj/structure/closet/crate,
-/obj/item/trash/can/food,
-/obj/item/trash/sosjerky,
-/obj/item/trash/raisins,
-/obj/item/airlock_painter,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"ve" = (
-/obj/effect/decal/cleanable/glass,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"vh" = (
-/obj/effect/decal/cleanable/blood/old,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/trash/raisins,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"vl" = (
-/obj/structure/curtain/cloth/fancy,
-/obj/effect/decal/cleanable/blood,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"vm" = (
-/obj/machinery/icecream_vat,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"vp" = (
-/obj/structure/bed,
-/obj/item/bedsheet/random,
-/obj/effect/decal/cleanable/blood,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"vt" = (
-/obj/structure/sign/poster/contraband/shamblers_juice,
-/turf/closed/wall/r_wall/rust,
-/area/ruin/powered)
-"vw" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"vy" = (
-/obj/effect/decal/cleanable/oil,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/oil/streak,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"vD" = (
-/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 = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"vE" = (
-/mob/living/carbon/monkey,
-/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"vF" = (
-/obj/structure/fluff/paper/stack{
- dir = 8
- },
-/obj/effect/decal/cleanable/blood,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"vG" = (
-/obj/effect/decal/cleanable/blood,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/carpet/royalblack,
-/area/ruin/powered)
-"vI" = (
-/obj/effect/decal/cleanable/blood/drip,
-/obj/item/trash/chips,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/visible/layer2{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"vJ" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/template_noop,
-/area/template_noop)
-"vM" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"vP" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/item/trash/pistachios,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"vR" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"vW" = (
-/obj/structure/bed,
-/obj/item/bedsheet/clown,
-/obj/effect/decal/cleanable/blood,
-/obj/effect/mob_spawn/human/clown/corpse,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/mineral/bananium,
-/area/ruin/powered)
-"vX" = (
-/obj/item/ammo_casing,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"wb" = (
-/obj/effect/decal/cleanable/oil/streak,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"we" = (
-/obj/effect/decal/cleanable/greenglow/filled,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"wg" = (
-/obj/machinery/door/airlock/maintenance{
- name = "The Galley";
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/grown/bananapeel,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"wi" = (
-/obj/structure/window/spawner/north,
-/mob/living/carbon/monkey,
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"wj" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"wk" = (
-/obj/effect/decal/cleanable/food/pie_smudge,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"wq" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/oil/streak,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"wu" = (
-/obj/effect/decal/cleanable/vomit/old,
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"wv" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/obj/item/trash/can/food/beans,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"wx" = (
-/obj/effect/gibspawner/human,
-/obj/structure/statue/sandstone/assistant,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"wz" = (
-/obj/structure/rack,
-/obj/item/circuitboard/machine/dnascanner,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/trash/semki,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/item/photo,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"wJ" = (
-/obj/machinery/door/airlock/maintenance{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"wM" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"wP" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/weldingtool/mini,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"xd" = (
-/obj/structure/grille,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"xj" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/glass,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"xm" = (
-/obj/effect/spawner/lootdrop/grille_or_trash,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"xu" = (
-/obj/effect/decal/cleanable/vomit/old,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"xx" = (
-/turf/closed/wall/r_wall/rust,
-/area/ruin/powered)
-"xy" = (
-/obj/machinery/porta_turret/syndicate/energy,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"xC" = (
-/obj/structure/sign/poster/contraband/ntos,
-/turf/closed/wall/rust,
-/area/ruin/powered)
-"xI" = (
-/obj/structure/table/wood/fancy/orange,
-/obj/item/reagent_containers/food/snacks/pie/cream,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"xL" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"xW" = (
-/obj/effect/decal/cleanable/blood,
-/obj/item/storage/toolbox/mechanical,
-/obj/machinery/light/directional/south,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"yb" = (
-/obj/item/nullrod/hypertool,
-/obj/effect/decal/cleanable/blood/old,
-/obj/effect/decal/cleanable/generic,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"yd" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/generic,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"yl" = (
-/obj/structure/falsewall/gold,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"yp" = (
-/obj/structure/sign/poster/contraband/random{
- pixel_y = 28
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"yw" = (
-/obj/structure/sign/poster/contraband/masked_men,
-/turf/closed/wall/r_wall/rust,
-/area/ruin/powered)
-"yy" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood/old,
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/item/book/manual/random,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"yz" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/ash,
-/obj/item/cigbutt,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"yK" = (
-/obj/structure/closet/crate,
-/obj/item/folder/yellow,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"yS" = (
-/obj/effect/decal/cleanable/greenglow/filled,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/spawner/lootdrop/grille_or_trash,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"yV" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/oil/streak,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"yZ" = (
-/obj/structure/sign/poster/contraband/tools,
-/turf/closed/wall/r_wall/rust,
-/area/ruin/powered)
-"za" = (
-/obj/structure/reagent_dispensers/watertank,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"zf" = (
-/obj/effect/decal/cleanable/blood,
-/obj/effect/decal/cleanable/generic,
-/turf/open/floor/wood,
-/area/ruin/powered)
-"zg" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"zh" = (
-/obj/effect/decal/cleanable/blood,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"zp" = (
-/obj/item/kitchen/rollingpin,
-/obj/effect/decal/cleanable/blood/old,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"zs" = (
-/obj/structure/sign/poster/contraband/grey_tide,
-/turf/closed/wall/r_wall/rust,
-/area/ruin/powered)
-"zv" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/greenglow/filled,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"zw" = (
-/obj/effect/gibspawner/human,
-/obj/structure/statue/sandstone/assistant,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"zy" = (
-/obj/effect/decal/cleanable/ash,
-/obj/effect/decal/cleanable/ash/large,
-/obj/item/cigbutt,
-/obj/item/cigbutt{
- pixel_x = -8;
- pixel_y = 2
- },
-/obj/item/cigbutt{
- pixel_x = 11
- },
-/obj/item/cigbutt{
- pixel_y = 15
- },
-/obj/item/cigbutt{
- pixel_y = -8
- },
-/obj/item/cigbutt{
- pixel_x = -12;
- pixel_y = 7
- },
-/obj/item/cigbutt{
- pixel_x = 8;
- pixel_y = -8
- },
-/obj/machinery/light/small/directional/east,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"zC" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood/drip,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"zE" = (
-/obj/item/mecha_parts/mecha_equipment/weapon/energy/laser,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"zG" = (
-/obj/item/gun/ballistic/automatic/pistol/commander,
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"zK" = (
-/turf/closed/indestructible/reinforced,
-/area/ruin/powered)
-"zL" = (
-/obj/effect/decal/cleanable/blood/old,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/carpet/royalblack,
-/area/ruin/powered)
-"zV" = (
-/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 = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"zW" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/generic,
-/obj/item/trash/cheesie,
-/turf/open/floor/mineral/bananium,
-/area/ruin/powered)
-"Aa" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/glass,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Ab" = (
-/obj/item/toy/figure/hos,
-/obj/effect/decal/cleanable/ash,
-/obj/effect/decal/cleanable/ash,
-/obj/effect/decal/cleanable/ash,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"As" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/greenglow,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"At" = (
-/obj/structure/closet,
-/obj/item/clothing/suit/armor/riot/knight/greyscale,
-/obj/item/clothing/head/helmet/knight/greyscale,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Av" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Az" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"AC" = (
-/obj/effect/decal/cleanable/ash,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"AD" = (
-/obj/structure/falsewall/gold,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"AE" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/generic,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"AH" = (
-/obj/structure/rack,
-/obj/item/trash/raisins,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/item/toner,
-/obj/item/assembly/prox_sensor,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"AN" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/carpet/royalblack,
-/area/ruin/powered)
-"AP" = (
-/obj/effect/decal/cleanable/glass,
-/obj/structure/closet/crate,
-/obj/item/trash/semki,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/item/airlock_painter,
-/obj/item/hand_labeler_refill,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"AY" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Bd" = (
-/obj/structure/sign/poster/contraband/random,
-/turf/closed/wall/rust,
-/area/ruin/powered)
-"Bk" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/oil,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Bl" = (
-/obj/effect/decal/cleanable/oil,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Bm" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/c_tube,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Bn" = (
-/obj/effect/decal/cleanable/blood,
-/obj/effect/mob_spawn/human/corpse/damaged,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Bp" = (
-/obj/structure/table/wood,
-/obj/effect/mob_spawn/human/clown/corpse,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Br" = (
-/obj/structure/mirror{
- pixel_y = 30
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Bv" = (
-/obj/structure/closet/crate,
-/obj/item/trash/sosjerky,
-/obj/item/trash/syndi_cakes,
-/obj/effect/spawner/lootdrop/maintenance/two,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Bw" = (
-/obj/effect/decal/cleanable/vomit/old,
-/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/wood{
- icon_state = "wood-broken6"
- },
-/area/ruin/powered)
-"By" = (
-/obj/machinery/door/airlock/maintenance{
- name = "The Gauntlet";
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/assembly/mousetrap/armed,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"BA" = (
-/obj/machinery/door/airlock/maintenance{
- name = "The Other Serpentorium"
- },
-/obj/effect/decal/cleanable/glass,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"BF" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/spawner/lootdrop/grille_or_trash,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"BI" = (
-/mob/living/simple_animal/hostile/rat,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"BK" = (
-/obj/structure/sign/poster/contraband/d_day_promo,
-/turf/closed/wall/r_wall/rust,
-/area/ruin/powered)
-"BP" = (
-/obj/structure/sign/poster/ripped,
-/turf/closed/wall/rust,
-/area/ruin/powered)
-"BU" = (
-/obj/effect/decal/cleanable/oil/streak,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"BV" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"BY" = (
-/obj/structure/bed,
-/obj/item/bedsheet/random,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Cc" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/oil/streak,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Ce" = (
-/obj/effect/decal/cleanable/blood/old,
-/turf/closed/wall/r_wall/rust,
-/area/ruin/powered)
-"Cf" = (
-/obj/structure/table,
-/obj/item/paper_bin,
-/obj/item/poster/random_contraband,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Cu" = (
-/obj/effect/decal/cleanable/insectguts,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Cw" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/visible/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Cy" = (
-/obj/structure/closet/cardboard,
-/obj/item/coin/bananium,
-/obj/item/reagent_containers/food/snacks/soup/clownstears,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"CE" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Chirurgeon's Theatre";
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"CF" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"CM" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood/old,
-/obj/effect/decal/cleanable/generic,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"CN" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"CT" = (
-/obj/effect/gibspawner/human,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"CU" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/closet/crate,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Db" = (
-/mob/living/simple_animal/hostile/rat{
- dir = 8
- },
-/obj/effect/decal/cleanable/blood,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Dc" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/sign/poster/contraband/random,
-/turf/closed/wall/r_wall/rust,
-/area/ruin/powered)
-"Dg" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/generic,
-/obj/item/extendohand,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Di" = (
-/obj/structure/plaque/static_plaque/golden,
-/turf/closed/wall/r_wall/rust,
-/area/ruin/powered)
-"Dl" = (
-/mob/living/simple_animal/hostile/rat{
- dir = 8
- },
-/obj/effect/decal/cleanable/blood,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/carpet/royalblack,
-/area/ruin/powered)
-"Do" = (
-/obj/structure/sign/poster/contraband/ss13,
-/turf/closed/wall/r_wall/rust,
-/area/ruin/powered)
-"DI" = (
-/obj/effect/decal/cleanable/cobweb,
-/obj/item/toy/talking/griffin,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"DJ" = (
-/obj/structure/closet/crate/trashcart,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"DR" = (
-/obj/effect/mob_spawn/human/corpse/assistant,
-/obj/effect/decal/cleanable/blood,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"DS" = (
-/obj/structure/table/wood,
-/obj/structure/bedsheetbin,
-/obj/item/dualsaber/toy,
-/obj/item/poster/random_contraband,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"DW" = (
-/obj/effect/decal/cleanable/glass,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"DX" = (
-/obj/structure/table,
-/obj/effect/spawner/lootdrop/maintenance/five,
-/obj/item/toner/extreme,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"DY" = (
-/obj/structure/table,
-/obj/item/paper/pamphlet{
- pixel_x = -4;
- pixel_y = 3
- },
-/obj/item/paper/pamphlet{
- pixel_x = 5;
- pixel_y = 1
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Eb" = (
-/obj/item/spear,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Ed" = (
-/obj/structure/rack,
-/obj/item/clothing/under/color/grey,
-/obj/item/clothing/under/color/grey,
-/obj/item/clothing/under/color/grey,
-/obj/item/trash/sosjerky,
-/obj/item/folder/yellow,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/item/book/manual/random,
-/obj/item/poster/random_contraband,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Ef" = (
-/obj/effect/decal/cleanable/blood/drip,
-/obj/structure/closet/crate,
-/obj/item/trash/sosjerky,
-/obj/item/trash/candy,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/item/book/manual/random,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Eg" = (
-/obj/machinery/light/directional/west,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Ei" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/blood/old,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"El" = (
-/obj/effect/decal/cleanable/oil/streak,
-/obj/effect/decal/cleanable/generic,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Ex" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/visible/layer2{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Ey" = (
-/obj/structure/table/wood,
-/obj/item/storage/box/drinkingglasses{
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/item/coin,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"ED" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"EE" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"EH" = (
-/obj/effect/decal/cleanable/blood/old,
-/obj/effect/decal/cleanable/generic,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"EJ" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/layer4{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"ET" = (
-/turf/open/floor/wood,
-/area/ruin/powered)
-"Fb" = (
-/obj/effect/decal/cleanable/blood/old,
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/obj/item/cigbutt,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Fc" = (
-/mob/living/simple_animal/hostile/rat{
- dir = 4
- },
-/obj/effect/decal/cleanable/oil/streak,
-/obj/machinery/light/directional/north,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Fh" = (
-/obj/effect/decal/remains/human,
-/obj/item/clothing/head/helmet{
- pixel_y = 1
- },
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"Fl" = (
-/obj/effect/decal/cleanable/robot_debris,
-/mob/living/simple_animal/hostile/rat{
- dir = 8
- },
-/obj/effect/decal/cleanable/oil,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Fm" = (
-/obj/effect/decal/cleanable/blood,
-/mob/living/simple_animal/hostile/rat,
-/obj/effect/decal/cleanable/oil,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Fn" = (
-/obj/effect/decal/cleanable/blood/old,
-/obj/item/trash/candy,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Fs" = (
-/obj/effect/decal/cleanable/oil/streak,
-/obj/effect/decal/cleanable/vomit/old,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Fw" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"FG" = (
-/mob/living/simple_animal/hostile/rat,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"FH" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"FT" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/generic,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"FV" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Automatonatron"
- },
-/obj/item/restraints/legcuffs/beartrap{
- armed = 1;
- trap_damage = 1
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Gd" = (
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Gg" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/oil/streak,
-/obj/effect/decal/cleanable/glass,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Gq" = (
-/mob/living/simple_animal/hostile/retaliate/clown/fleshclown,
-/obj/effect/gibspawner/human,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Gt" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Gw" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/cobweb,
-/obj/effect/decal/cleanable/generic,
-/obj/effect/decal/cleanable/ash,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Gz" = (
-/obj/structure/table/wood/fancy/orange,
-/obj/item/toy/figure/clown,
-/obj/item/trash/candle,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"GF" = (
-/obj/structure/table/bronze,
-/obj/item/clothing/suit/jacket/letterman_red,
-/obj/item/clothing/head/chicken{
- pixel_y = 11
- },
-/obj/item/kitchen/knife{
- pixel_x = -9
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"GN" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/oil,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"GP" = (
-/obj/machinery/door/airlock/maintenance_hatch{
- name = "The Reliquary";
- dir = 8
- },
-/obj/effect/mapping_helpers/airlock/locked,
-/obj/item/assembly/mousetrap/armed,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"GR" = (
-/obj/effect/decal/cleanable/blood,
-/obj/effect/decal/cleanable/glass,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"GY" = (
-/obj/structure/sign/poster/contraband/fun_police,
-/turf/closed/wall/r_wall/rust,
-/area/ruin/powered)
-"Ha" = (
-/mob/living/carbon/monkey,
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Hp" = (
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Hw" = (
-/obj/structure/window/plasma/spawner/west,
-/obj/item/storage/toolbox/syndicate,
-/obj/effect/decal/cleanable/glass,
-/obj/effect/decal/cleanable/ash,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"HC" = (
-/obj/effect/mob_spawn/human/corpse/damaged,
-/obj/effect/decal/cleanable/blood,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"HD" = (
-/obj/effect/decal/cleanable/blood,
-/obj/effect/mob_spawn/human/clown/corpse,
-/mob/living/simple_animal/hostile/rat,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"HH" = (
-/obj/effect/gibspawner/human,
-/mob/living/simple_animal/hostile/rat,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/trash/can/food/beans,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"HL" = (
-/obj/structure/filingcabinet/security,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"HR" = (
-/obj/structure/table,
-/obj/item/clothing/gloves/color/captain,
-/obj/item/storage/belt/utility/chief/full,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"HV" = (
-/obj/structure/falsewall/gold,
-/obj/effect/decal/cleanable/generic,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"HY" = (
-/obj/structure/sign/poster/contraband/hacking_guide,
-/turf/closed/wall/r_wall/rust,
-/area/ruin/powered)
-"Ia" = (
-/obj/effect/decal/cleanable/ash,
-/turf/closed/wall/rust,
-/area/ruin/powered)
-"Ib" = (
-/obj/structure/table/wood/poker,
-/obj/item/gun/ballistic/revolver/russian,
-/turf/open/floor/wood,
-/area/ruin/powered)
-"Ie" = (
-/obj/structure/closet/cardboard,
-/mob/living/simple_animal/hostile/retaliate/poison/snake,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Im" = (
-/obj/structure/closet/crate/trashcart,
-/obj/item/toy/plush/among{
- pixel_x = 4;
- pixel_y = -1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"In" = (
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/carpet/royalblack,
-/area/ruin/powered)
-"Is" = (
-/obj/structure/table,
-/obj/item/storage/fancy/donut_box,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Iv" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/generic,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Iz" = (
-/obj/item/trash/chips,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"IA" = (
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"IB" = (
-/obj/item/storage/fancy/cigarettes/cigpack_robustgold,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"IE" = (
-/obj/structure/statue/sandstone/assistant,
-/obj/effect/decal/cleanable/blood,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/generic,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"IG" = (
-/obj/structure/table,
-/obj/item/paper/crumpled{
- default_raw_text = "Everything on a table or in a container is altogether 100 credits or an item of equivalent value."
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"IK" = (
-/obj/machinery/door/airlock/maintenance,
-/obj/effect/decal/cleanable/glass,
-/obj/item/restraints/legcuffs/beartrap{
- armed = 1;
- trap_damage = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"IM" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/layer2{
- dir = 1
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"IO" = (
-/obj/structure/kitchenspike,
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"IU" = (
-/obj/structure/filingcabinet/security,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"IV" = (
-/obj/structure/table,
-/obj/item/clothing/mask/gas,
-/obj/item/clothing/under/color/grey/ancient,
-/obj/item/spear/grey_tide,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"IY" = (
-/mob/living/simple_animal/hostile/rat,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Jc" = (
-/obj/structure/table/wood,
-/obj/item/detective_scanner,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Jg" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood/old,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Jj" = (
-/obj/structure/chair/office{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Jm" = (
-/obj/structure/chair/comfy/orange/directional/west,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Jn" = (
-/obj/structure/sign/poster/contraband/pwr_game,
-/turf/closed/wall/rust,
-/area/ruin/powered)
-"Jp" = (
-/obj/structure/closet/cardboard,
-/mob/living/simple_animal/hostile/retaliate/poison/snake,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Jx" = (
-/obj/item/storage/toolbox/mechanical/old,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Jz" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/sign/poster/contraband/inteq,
-/turf/closed/wall/r_wall/rust,
-/area/ruin/powered)
-"JA" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/spawner/lootdrop/grille_or_trash,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"JK" = (
-/obj/structure/closet/crate,
-/obj/item/trash/plate,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/item/clipboard,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"JW" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/visible/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"JX" = (
-/obj/effect/decal/remains/human,
-/obj/item/clothing/head/crown/fancy{
- pixel_x = 2;
- pixel_y = 12
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"JZ" = (
-/obj/structure/curtain/cloth/fancy,
-/obj/effect/mob_spawn/human/corpse/cargo_tech,
-/obj/effect/decal/cleanable/blood,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Ke" = (
-/obj/structure/table,
-/obj/item/bikehorn/golden{
- pixel_x = -7;
- pixel_y = 7
- },
-/obj/item/clothing/shoes/clown_shoes/banana_shoes/combat{
- pixel_y = 5
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Kg" = (
-/obj/structure/reagent_dispensers/beerkeg{
- desc = "For drunk science."
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Kq" = (
-/obj/structure/grille,
-/obj/item/assembly/mousetrap/armed,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Ky" = (
-/mob/living/simple_animal/hostile/rat{
- dir = 8
- },
-/obj/effect/decal/cleanable/blood,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"KB" = (
-/obj/structure/closet/crate,
-/obj/item/spear,
-/obj/item/spear,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/trash/boritos,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"KC" = (
-/obj/effect/decal/cleanable/oil,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"KF" = (
-/obj/structure/table,
-/obj/item/screwdriver,
-/obj/item/kitchen/fork,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"KN" = (
-/obj/structure/barricade/wooden,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"KR" = (
-/obj/effect/decal/cleanable/blood,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"KS" = (
-/obj/structure/table,
-/obj/item/relic,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"KX" = (
-/obj/effect/decal/cleanable/blood,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Lb" = (
-/obj/machinery/door/airlock/maintenance{
- name = "The Grey Fortress";
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Lc" = (
-/obj/effect/gibspawner/robot,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Ld" = (
-/obj/effect/mob_spawn/human/corpse/assistant,
-/obj/item/clothing/head/chefhat,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Lj" = (
-/obj/effect/decal/cleanable/oil,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Lr" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Lu" = (
-/obj/machinery/door/airlock/maintenance{
- name = "The Barracks Part 4";
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Lv" = (
-/obj/effect/decal/cleanable/blood/old,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"LN" = (
-/obj/structure/showcase/cyborg/old{
- dir = 4
- },
-/obj/effect/decal/cleanable/blood,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"LQ" = (
-/obj/structure/closet/cabinet,
-/obj/item/clothing/under/misc/assistantformal,
-/obj/item/clothing/under/misc/assistantformal,
-/obj/item/clothing/under/misc/assistantformal,
-/obj/item/clothing/under/misc/assistantformal,
-/obj/item/clothing/under/misc/assistantformal,
-/obj/item/clothing/under/misc/assistantformal,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"LR" = (
-/obj/structure/sign/poster/contraband/steppyflag,
-/turf/closed/wall/rust,
-/area/ruin/powered)
-"LU" = (
-/obj/effect/decal/remains/human,
-/obj/effect/decal/cleanable/vomit/old,
-/obj/effect/decal/cleanable/blood/old,
-/obj/item/paper/crumpled/bloody{
- default_raw_text = "this place is hell. im done. meet me there, guys.";
- pixel_x = -8;
- pixel_y = 6
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"LY" = (
-/obj/item/mine/pressure/sound/live,
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Mk" = (
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/machinery/power/smes/engineering,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Mm" = (
-/obj/structure/bed,
-/obj/effect/decal/cleanable/blood,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Mo" = (
-/obj/structure/closet/cardboard,
-/mob/living/simple_animal/hostile/retaliate/poison/snake,
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Mv" = (
-/obj/structure/curtain/cloth/fancy,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"MA" = (
-/obj/structure/sign/poster/contraband/lusty_xenomorph,
-/turf/closed/wall/r_wall/rust,
-/area/ruin/powered)
-"MC" = (
-/obj/structure/filingcabinet/medical,
-/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Nc" = (
-/obj/effect/decal/cleanable/blood/old,
-/obj/structure/sign/poster/contraband/random{
- pixel_y = -28
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Nd" = (
-/obj/structure/bed,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Ni" = (
-/obj/structure/table,
-/obj/item/organ/ears/cat,
-/obj/item/organ/tail/cat,
-/obj/item/restraints/handcuffs/cable,
-/obj/item/restraints/handcuffs/cable,
-/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Nj" = (
-/obj/structure/grille,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/item/grown/bananapeel,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Nl" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Nr" = (
-/obj/effect/mob_spawn/human/clown/corpse,
-/obj/effect/decal/cleanable/blood,
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/carpet/royalblack,
-/area/ruin/powered)
-"Nt" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/rack,
-/obj/item/trash/sosjerky,
-/obj/item/trash/candy,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Ny" = (
-/obj/structure/rack,
-/obj/item/clothing/gloves/color/fyellow,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"NA" = (
-/obj/machinery/door/airlock/maintenance{
- name = "The Grey Fortress"
- },
-/obj/structure/fans/tiny,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"NC" = (
-/obj/structure/sign/poster/contraband/eat,
-/turf/closed/wall/rust,
-/area/ruin/powered)
-"NI" = (
-/obj/structure/closet/cardboard,
-/mob/living/simple_animal/hostile/retaliate/poison/snake,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"NK" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"NN" = (
-/obj/machinery/vending/cigarette/beach,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"NO" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/oil,
-/obj/structure/rack,
-/obj/item/trash/candy,
-/obj/item/folder/yellow,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/item/electronics/airlock,
-/obj/item/hot_potato/harmless/toy,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"NP" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/oil,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"NR" = (
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"NS" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/turf/closed/wall/r_wall/rust,
-/area/ruin/powered)
-"NT" = (
-/obj/structure/bed,
-/obj/item/bedsheet/random,
-/obj/effect/decal/cleanable/blood,
-/obj/effect/mob_spawn/human/corpse/damaged,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"NV" = (
-/obj/structure/chair/plastic{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"NW" = (
-/obj/item/reagent_containers/food/drinks/beer,
-/obj/item/reagent_containers/food/drinks/beer,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Og" = (
-/obj/item/trash/waffles,
-/obj/item/broken_bottle,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Ol" = (
-/obj/structure/curtain/cloth/fancy,
-/obj/effect/gibspawner/human,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Oo" = (
-/mob/living/simple_animal/hostile/rat,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/item/rcl/ghetto,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Op" = (
-/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Oq" = (
-/obj/structure/closet/cardboard,
-/mob/living/simple_animal/hostile/retaliate/poison/snake,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/light/small/directional/west,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Or" = (
-/obj/effect/decal/cleanable/blood,
-/turf/open/floor/wood,
-/area/ruin/powered)
-"Ot" = (
-/mob/living/carbon/monkey,
-/obj/effect/decal/cleanable/blood/old,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Ou" = (
-/obj/structure/curtain/cloth/fancy,
-/mob/living/simple_animal/hostile/rat,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/generic,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Ow" = (
-/obj/structure/table/wood/fancy/orange,
-/obj/item/clothing/under/rank/civilian/clown/rainbow,
-/turf/open/floor/mineral/bananium,
-/area/ruin/powered)
-"Ox" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/spawner/lootdrop/grille_or_trash,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"OE" = (
-/obj/effect/decal/cleanable/food/pie_smudge,
-/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"OI" = (
-/obj/structure/statue/sandstone/assistant,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"OM" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"OO" = (
-/obj/structure/closet,
-/obj/item/gun/ballistic/automatic/zip_pistol,
-/obj/item/ammo_box/magazine/zip_ammo_9mm,
-/obj/item/ammo_box/magazine/zip_ammo_9mm,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"OQ" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"OV" = (
-/obj/structure/closet/cardboard,
-/mob/living/simple_animal/hostile/retaliate/poison/snake,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Pb" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/generic,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Pe" = (
-/obj/structure/chair/wood,
-/obj/effect/mob_spawn/human/corpse/frontier,
-/obj/effect/decal/cleanable/blood,
-/turf/open/floor/wood,
-/area/ruin/powered)
-"Pf" = (
-/mob/living/carbon/monkey,
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Pg" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Pq" = (
-/obj/structure/curtain/cloth/fancy,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Pr" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/mineral/bananium,
-/area/ruin/powered)
-"Px" = (
-/mob/living/simple_animal/hostile/rat,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"PA" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/spawner/lootdrop/grille_or_trash,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"PE" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"PJ" = (
-/obj/machinery/door/airlock/maintenance/glass{
- name = "Waiting Lobby";
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"PM" = (
-/obj/structure/closet/cardboard,
-/mob/living/simple_animal/hostile/retaliate/poison/snake,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/generic,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"PS" = (
-/obj/structure/curtain/cloth/fancy,
-/obj/effect/mob_spawn/human/corpse/damaged,
-/obj/effect/decal/cleanable/blood,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"PT" = (
-/obj/structure/sign/poster/contraband/robustmore_drinkfoods,
-/turf/closed/wall/r_wall/rust,
-/area/ruin/powered)
-"PW" = (
-/obj/effect/decal/cleanable/oil,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Qc" = (
-/obj/effect/gibspawner/generic,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Qf" = (
-/obj/structure/table/wood,
-/obj/machinery/chem_dispenser/drinks/beer{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Qh" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/blood/footprints,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Qm" = (
-/obj/structure/statue/sandstone/assistant,
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Qt" = (
-/obj/structure/grille,
-/obj/item/restraints/legcuffs/beartrap{
- armed = 1;
- trap_damage = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Qu" = (
-/obj/structure/closet/crate,
-/obj/item/trash/sosjerky,
-/obj/item/trash/raisins,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/item/toner,
-/obj/item/flashlight/glowstick,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Qx" = (
-/obj/effect/decal/cleanable/oil,
-/obj/effect/decal/cleanable/generic,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Qy" = (
-/obj/structure/table,
-/obj/item/paicard,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"QH" = (
-/obj/effect/decal/cleanable/blood,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"QI" = (
-/obj/structure/bed,
-/obj/item/bedsheet/random,
-/obj/effect/mob_spawn/human/corpse/damaged,
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"QK" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/rack,
-/obj/item/trash/plate,
-/obj/item/trash/raisins,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/item/book/manual/random,
-/obj/item/paper,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"QT" = (
-/obj/effect/mob_spawn/human/corpse/pirate,
-/obj/effect/decal/cleanable/blood,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Rc" = (
-/obj/effect/decal/cleanable/blood/old,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Re" = (
-/obj/structure/rack,
-/obj/item/clothing/accessory/medal/silver/security,
-/obj/item/clothing/accessory/medal/silver/bureaucracy{
- pixel_x = 8
- },
-/obj/item/clothing/accessory/medal/bronze_heart{
- pixel_x = -8
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Ro" = (
-/obj/effect/decal/cleanable/blood/old,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/visible/layer2{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Ru" = (
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Rw" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/glass,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"RG" = (
-/obj/machinery/door/airlock/maintenance{
- name = "The Serpentorium";
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"RR" = (
-/obj/effect/decal/cleanable/blood,
-/obj/effect/decal/cleanable/generic,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"RU" = (
-/mob/living/carbon/monkey/punpun,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"RX" = (
-/obj/effect/spawner/lootdrop/maintenance/four,
-/obj/structure/table/wood/poker,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"RY" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/closed/wall/rust,
-/area/ruin/powered)
-"Sa" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/ash,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Sb" = (
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance/two,
-/obj/item/assembly/prox_sensor,
-/obj/item/camera,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"So" = (
-/obj/structure/sign/poster/contraband/backdoor_xeno_babes_6,
-/turf/closed/wall/r_wall/rust,
-/area/ruin/powered)
-"Sr" = (
-/obj/structure/punching_bag,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Sv" = (
-/obj/effect/decal/cleanable/greenglow,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Sy" = (
-/obj/structure/headpike,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"SC" = (
-/obj/machinery/door/airlock/maintenance{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"SD" = (
-/obj/item/target/clown,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"SF" = (
-/obj/effect/decal/cleanable/blood,
-/obj/effect/mob_spawn/human/corpse/damaged,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"SG" = (
-/obj/structure/sign/poster/official/science,
-/turf/closed/wall/rust,
-/area/ruin/powered)
-"SM" = (
-/obj/structure/table/reinforced,
-/obj/item/clothing/mask/fakemoustache/italian,
-/obj/item/kitchen/spoon/plastic{
- name = "normal-sized spoon"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"ST" = (
-/obj/structure/window/reinforced/spawner{
- dir = 8
- },
-/obj/structure/window/reinforced/spawner{
- dir = 1
- },
-/obj/machinery/computer/med_data,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Ta" = (
-/obj/structure/table/wood,
-/obj/item/toy/plush/snakeplushie,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Tb" = (
-/obj/effect/decal/cleanable/generic,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Tc" = (
-/obj/structure/chair/office{
- dir = 1
- },
-/obj/effect/decal/cleanable/blood,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Te" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Tf" = (
-/obj/effect/mob_spawn/human/corpse/damaged,
-/obj/effect/decal/cleanable/blood,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Ti" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Tj" = (
-/obj/structure/chair/wood{
- dir = 8
- },
-/obj/effect/mob_spawn/human/corpse/frontier,
-/obj/effect/decal/cleanable/blood,
-/turf/open/floor/wood,
-/area/ruin/powered)
-"Tk" = (
-/obj/structure/closet/crate,
-/obj/item/trash/popcorn,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/item/assembly/prox_sensor,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Tl" = (
-/obj/structure/toilet{
- dir = 8;
- name = "The Great Throne"
- },
-/mob/living/simple_animal/hostile/regalrat{
- dir = 8
- },
-/obj/effect/decal/cleanable/blood,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/carpet/royalblack,
-/area/ruin/powered)
-"Tq" = (
-/obj/structure/rack,
-/obj/item/trash/boritos,
-/obj/item/trash/can/food/peaches/maint,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/item/decal_painter,
-/obj/item/poster/random_retro,
-/obj/item/poster/random_contraband,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Tu" = (
-/obj/structure/table,
-/obj/item/hatchet,
-/obj/item/lighter,
-/obj/item/surgicaldrill,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"TA" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"TC" = (
-/obj/structure/bed,
-/obj/item/bedsheet/random,
-/mob/living/simple_animal/hostile/rat{
- dir = 4
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"TD" = (
-/obj/structure/sign/poster/contraband/random{
- pixel_y = 28
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"TE" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/glass,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"TF" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/trash/can/food/beans,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"TH" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/spawner/lootdrop/grille_or_trash,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"TJ" = (
-/obj/structure/dresser,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"TM" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/oil/streak,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"TO" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"TX" = (
-/obj/structure/table/reinforced,
-/obj/effect/mob_spawn/human/corpse/damaged,
-/obj/effect/decal/cleanable/blood,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Ub" = (
-/mob/living/simple_animal/hostile/rat,
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Ue" = (
-/mob/living/simple_animal/hostile/mimic/crate,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/trash/waffles,
-/obj/item/trash/sosjerky,
-/obj/item/trash/plate,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Uk" = (
-/obj/effect/decal/cleanable/blood/gibs/down,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Ul" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/sign/poster/contraband/the_griffin,
-/turf/closed/wall/r_wall/rust,
-/area/ruin/powered)
-"Uq" = (
-/obj/structure/rack,
-/obj/item/clothing/gloves/color/fyellow,
-/obj/item/clothing/gloves/color/fyellow,
-/obj/item/clothing/gloves/color/fyellow,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Uv" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Throneroom Desk";
- dir = 4
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"UA" = (
-/obj/effect/decal/cleanable/generic,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/spawner/lootdrop/grille_or_trash,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"UF" = (
-/obj/effect/mob_spawn/human/corpse/cargo_tech,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"UH" = (
-/obj/effect/decal/cleanable/glass,
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"UJ" = (
-/obj/effect/spawner/lootdrop/grille_or_trash,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/glass,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"UK" = (
-/obj/machinery/light/directional/north,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"UM" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Throneroom Reception";
- dir = 4
- },
-/obj/item/assembly/mousetrap/armed,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"UR" = (
-/obj/structure/falsewall/reinforced,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"UT" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/glass,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"UU" = (
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"UW" = (
-/obj/item/spear,
-/obj/machinery/light/directional/south,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Vd" = (
-/obj/effect/mob_spawn/human/corpse/damaged,
-/obj/effect/decal/cleanable/blood,
-/obj/effect/decal/cleanable/blood/old,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/carpet/royalblack,
-/area/ruin/powered)
-"Ve" = (
-/obj/structure/sign/poster/contraband/twelve_gauge,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/closed/wall/r_wall/rust,
-/area/ruin/powered)
-"Vf" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/oil/streak,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Vm" = (
-/obj/structure/closet/firecloset,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Vn" = (
-/obj/structure/bed,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Vo" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/blood/splatter,
-/obj/item/trash/can/food/beans,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Vp" = (
-/obj/structure/sign/poster/contraband/red_rum,
-/turf/closed/wall/r_wall/rust,
-/area/ruin/powered)
-"Vu" = (
-/mob/living/simple_animal/hostile/rat,
-/obj/effect/decal/cleanable/food/salt,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"VF" = (
-/obj/structure/bed,
-/obj/item/bedsheet/random,
-/obj/effect/decal/cleanable/blood,
-/obj/effect/mob_spawn/human/corpse/pirate,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"VH" = (
-/obj/machinery/door/airlock/maintenance{
- name = "The Barracks Part 2";
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"VJ" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/restraints/legcuffs/beartrap{
- armed = 1;
- trap_damage = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"VK" = (
-/obj/effect/decal/cleanable/oil,
-/obj/effect/decal/cleanable/generic,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Wl" = (
-/obj/machinery/door/airlock/maintenance_hatch{
- name = "The Reliquary";
- dir = 4
- },
-/obj/effect/mapping_helpers/airlock/locked,
-/obj/item/assembly/mousetrap/armed,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Wn" = (
-/obj/vehicle/ridden/wheelchair,
-/obj/effect/decal/cleanable/blood,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Wt" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/structure/grille,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Wv" = (
-/obj/structure/table,
-/obj/item/melee/greykingsword,
-/obj/item/clothing/head/delinquent,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"WD" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/ash,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"WL" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/spawner/lootdrop/grille_or_trash,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"WM" = (
-/obj/effect/decal/cleanable/generic,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"WN" = (
-/mob/living/simple_animal/hostile/retaliate/clown/fleshclown,
-/obj/effect/decal/cleanable/blood,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"WO" = (
-/obj/structure/sign/poster/contraband/twelve_gauge,
-/turf/closed/wall/r_wall/rust,
-/area/ruin/powered)
-"WZ" = (
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 8
- },
-/turf/closed/wall/r_wall/rust,
-/area/ruin/powered)
-"Xd" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Xe" = (
-/turf/closed/wall/rust,
-/area/ruin/powered)
-"Xg" = (
-/obj/structure/mecha_wreckage/phazon,
-/obj/effect/decal/cleanable/oil,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Xi" = (
-/obj/effect/decal/cleanable/oil,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Xm" = (
-/obj/item/storage/toolbox/mechanical,
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Xp" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/rack,
-/obj/item/trash/plate,
-/obj/effect/spawner/lootdrop/maintenance/two,
-/obj/item/assembly/prox_sensor,
-/obj/item/hand_labeler_refill,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Xs" = (
-/obj/effect/decal/cleanable/insectguts,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Xt" = (
-/obj/effect/decal/cleanable/blood,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Xx" = (
-/obj/item/flashlight/glowstick,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"XF" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"XK" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"XL" = (
-/obj/effect/decal/cleanable/blood,
-/obj/machinery/light/directional/north,
-/obj/effect/mob_spawn/human/corpse/damaged/whitesands/survivor,
-/obj/effect/decal/cleanable/blood,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"XR" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"XS" = (
-/obj/structure/rack,
-/obj/item/trash/can/food/peaches,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/item/fakeartefact,
-/obj/item/poster/random_retro,
-/obj/item/poster/random_contraband,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"XW" = (
-/mob/living/simple_animal/hostile/rat,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"XY" = (
-/mob/living/simple_animal/hostile/rat,
-/obj/effect/decal/cleanable/oil/streak,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Yb" = (
-/obj/item/storage/toolbox/mechanical,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Yd" = (
-/obj/structure/rack,
-/obj/item/trash/plate,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/item/assembly/igniter,
-/obj/item/camera,
-/obj/item/tape/random,
-/obj/item/weldingtool/empty,
-/obj/item/poster/random_contraband,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Yf" = (
-/obj/structure/chair/comfy/beige{
- dir = 8
- },
-/mob/living/simple_animal/hostile/rat,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Yr" = (
-/obj/structure/chair/stool{
- dir = 8
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Yu" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/vomit/old,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Yy" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/blood/old,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"YB" = (
-/obj/structure/sign/poster/contraband{
- desc = "You forgot to download CS Source, didn't you.";
- name = "black and pink poster"
- },
-/turf/closed/wall/r_wall/rust,
-/area/ruin/powered)
-"YC" = (
-/obj/structure/spirit_board,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"YE" = (
-/obj/structure/rack,
-/obj/item/trash/can/food,
-/obj/item/trash/popcorn,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/item/toner,
-/obj/item/clipboard,
-/obj/item/flashlight/glowstick,
-/obj/item/hand_labeler,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"YF" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/blood/splatter,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"YJ" = (
-/obj/structure/table,
-/obj/item/shard,
-/obj/item/wirecutters,
-/obj/item/trash/tray,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"YL" = (
-/obj/machinery/grill/cat,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"YO" = (
-/obj/structure/bed,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"YP" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/closed/wall/rust,
-/area/ruin/powered)
-"YS" = (
-/obj/effect/decal/cleanable/blood,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/light/directional/north,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"YT" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"YU" = (
-/obj/structure/musician/piano,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"YW" = (
-/obj/structure/sign/poster/contraband/ambrosia_vulgaris,
-/turf/closed/wall/rust,
-/area/ruin/powered)
-"YZ" = (
-/obj/structure/sign/poster/contraband/the_griffin,
-/turf/closed/wall/r_wall/rust,
-/area/ruin/powered)
-"Zb" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/sign/poster/contraband/random,
-/turf/closed/wall/r_wall/rust,
-/area/ruin/powered)
-"Ze" = (
-/obj/structure/rack,
-/obj/item/clothing/gloves/color/fyellow,
-/obj/item/clothing/gloves/color/fyellow,
-/obj/item/clothing/gloves/color/fyellow,
-/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Zf" = (
-/obj/effect/decal/cleanable/blood,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Zg" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/closet/crate,
-/obj/item/trash/plate,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/item/assembly/igniter,
-/obj/item/flashlight/glowstick,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Zo" = (
-/mob/living/simple_animal/hostile/cat_butcherer{
- dir = 4
- },
-/obj/effect/decal/cleanable/blood,
-/obj/effect/decal/cleanable/blood/gibs,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"Zt" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/oil/streak,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"ZC" = (
-/obj/structure/table/wood,
-/obj/item/reagent_containers/food/snacks/pizza/sassysage,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"ZE" = (
-/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"ZJ" = (
-/obj/structure/filingcabinet/employment,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"ZL" = (
-/mob/living/simple_animal/hostile/retaliate/clown/fleshclown,
-/obj/effect/decal/cleanable/blood,
-/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"ZN" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/ruin/powered)
-"ZR" = (
-/obj/effect/decal/cleanable/oil,
-/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"ZZ" = (
-/obj/structure/sign/poster/contraband/smoke,
-/turf/closed/wall/rust,
-/area/ruin/powered)
-
-(1,1,1) = {"
-in
-in
-in
-xx
-xx
-fi
-xx
-xx
-xx
-xx
-xx
-xx
-xx
-fi
-xx
-xx
-et
-xx
-xx
-xx
-in
-in
-in
-in
-in
-in
-in
-in
-in
-in
-in
-in
-in
-in
-in
-in
-in
-in
-in
-in
-in
-in
-"}
-(2,1,1) = {"
-in
-in
-in
-xx
-Hp
-rE
-iR
-pR
-Yd
-Tk
-Xs
-cP
-fj
-xm
-FH
-yz
-pp
-ez
-Hp
-xx
-xx
-xx
-xx
-xx
-xx
-xx
-xx
-xx
-xx
-xx
-xx
-bG
-xx
-xx
-xx
-in
-in
-in
-in
-in
-in
-in
-"}
-(3,1,1) = {"
-in
-in
-in
-xx
-oY
-ED
-ow
-Gg
-wj
-nE
-aa
-YT
-wu
-aH
-GN
-Ef
-Rw
-sr
-wj
-YT
-vI
-hO
-aa
-lM
-XR
-Iv
-Yu
-YT
-UT
-iH
-ED
-TM
-BV
-rn
-xx
-xx
-xx
-xx
-in
-in
-in
-in
-"}
-(4,1,1) = {"
-xx
-BK
-xx
-xx
-UM
-xx
-xx
-xx
-fi
-Xe
-Xe
-xx
-xx
-Xe
-xx
-Xe
-pS
-xx
-xx
-xx
-zV
-xx
-Bd
-Xe
-dn
-dn
-xx
-xx
-bC
-fk
-bC
-xx
-bG
-hW
-av
-Vf
-Lj
-fi
-in
-in
-in
-in
-"}
-(5,1,1) = {"
-xx
-Ti
-At
-xx
-EE
-Xe
-MC
-ZJ
-xx
-rx
-Vn
-YU
-NT
-dH
-xx
-DI
-Mm
-DS
-VF
-Ia
-Sa
-xx
-ik
-HL
-xx
-ZL
-hd
-Gq
-Xe
-av
-HD
-ff
-bC
-Qu
-NK
-XW
-wP
-xx
-in
-in
-in
-in
-"}
-(6,1,1) = {"
-xx
-zh
-At
-xx
-lk
-Jz
-bz
-kS
-Ul
-lv
-Bm
-Fm
-Dg
-TC
-xx
-BY
-iI
-qn
-av
-xx
-sl
-ub
-Jj
-vh
-bG
-jn
-KR
-WN
-bC
-Ru
-gL
-Cy
-xx
-vD
-Pb
-sB
-gG
-xx
-xx
-in
-in
-in
-"}
-(7,1,1) = {"
-xx
-NK
-At
-xx
-hW
-na
-Tc
-ad
-bG
-Nd
-Vo
-mk
-qo
-kS
-oa
-Xt
-Te
-wv
-pR
-xx
-Tb
-Xe
-er
-mh
-Xe
-xx
-rJ
-xx
-xx
-fk
-bC
-Xe
-Xe
-fJ
-bG
-RY
-bG
-RY
-xx
-xx
-in
-in
-"}
-(8,1,1) = {"
-fi
-bR
-GR
-xx
-zV
-ST
-nh
-SF
-bG
-UU
-sH
-oS
-TJ
-YO
-xx
-Br
-dK
-Mm
-oB
-et
-XK
-mM
-jl
-XF
-dT
-bC
-OE
-go
-Hp
-av
-zh
-ed
-xx
-ve
-bG
-lL
-dU
-Cf
-ul
-xx
-in
-in
-"}
-(9,1,1) = {"
-xx
-kd
-fI
-xx
-Yy
-bG
-ee
-pR
-RY
-Lu
-bG
-Xe
-So
-xx
-xx
-VH
-xx
-Xe
-PT
-YP
-cD
-WZ
-fj
-cU
-jG
-xx
-ed
-eL
-zW
-Pr
-yd
-gL
-bC
-KC
-bG
-Sv
-vy
-OQ
-sg
-fi
-in
-in
-"}
-(10,1,1) = {"
-xx
-av
-KB
-bG
-hW
-xx
-IU
-av
-bG
-Xt
-Nd
-Nd
-Sr
-lO
-xx
-av
-kS
-YO
-LN
-Di
-fB
-kp
-av
-LU
-mG
-xx
-jz
-gL
-gL
-wk
-dM
-kK
-Xe
-hW
-xx
-FG
-RR
-pz
-Bl
-xx
-in
-in
-"}
-(11,1,1) = {"
-xx
-jY
-dn
-xx
-PJ
-xx
-RY
-Uv
-MA
-kO
-av
-HH
-TA
-ki
-Jn
-Xt
-OQ
-XF
-XF
-tT
-hW
-xx
-NN
-Ab
-uJ
-xx
-xI
-Gz
-Ow
-cS
-kR
-aM
-Xe
-Ei
-FV
-av
-Lc
-Bn
-Xg
-xx
-in
-in
-"}
-(12,1,1) = {"
-xx
-kS
-FG
-dv
-hW
-av
-dC
-kS
-bG
-NR
-oM
-YC
-vW
-LQ
-xx
-QI
-iI
-vp
-YO
-xx
-hW
-xx
-Fb
-zy
-Jc
-xx
-cX
-we
-VK
-nt
-Pr
-nJ
-xx
-zV
-HY
-Zf
-Jx
-vF
-fj
-xx
-in
-in
-"}
-(13,1,1) = {"
-xx
-Hp
-wq
-pR
-mW
-is
-iI
-wb
-bG
-bG
-Xe
-fi
-bG
-xx
-xx
-Xe
-RY
-xx
-xx
-Xe
-lp
-xx
-GY
-xx
-xx
-xx
-bC
-xx
-Xe
-xx
-bC
-xx
-xx
-zV
-bG
-av
-XF
-Lj
-El
-xx
-in
-in
-"}
-(14,1,1) = {"
-xx
-lI
-Is
-tB
-hW
-pE
-DY
-Jm
-dn
-Xe
-nv
-YT
-XR
-pq
-XR
-fE
-ED
-UA
-XR
-YT
-Cw
-Az
-Az
-YT
-BF
-pq
-ED
-Ex
-eW
-ED
-ED
-uS
-ED
-he
-RY
-fr
-zE
-kf
-Fl
-xx
-in
-in
-"}
-(15,1,1) = {"
-xx
-xx
-bG
-xx
-ej
-xx
-xx
-xx
-bG
-bG
-wJ
-xx
-xx
-xx
-bG
-bG
-xx
-Bd
-bG
-xx
-xx
-xx
-xx
-Xe
-Xe
-xx
-xx
-wJ
-fi
-xx
-xx
-xx
-Xe
-yw
-xx
-xx
-Do
-Xe
-xx
-xx
-in
-in
-"}
-(16,1,1) = {"
-xx
-Hp
-tY
-hV
-vG
-Eg
-tY
-av
-bG
-aY
-hW
-Ox
-dC
-CM
-XF
-OQ
-av
-Hp
-Op
-py
-md
-av
-pR
-lz
-YE
-vc
-FG
-zC
-vP
-TE
-NR
-Og
-Xe
-eI
-fj
-xx
-Bw
-zf
-eM
-bG
-in
-in
-"}
-(17,1,1) = {"
-xx
-XL
-Ol
-av
-ec
-kS
-vl
-qx
-bG
-cE
-JW
-ZN
-oe
-jD
-tc
-Xp
-Bv
-pW
-EH
-Qh
-Aa
-ja
-DJ
-WM
-jD
-qE
-oJ
-qT
-jD
-pW
-rU
-yS
-bI
-Av
-KN
-qF
-tf
-mx
-Ib
-xx
-in
-in
-"}
-(18,1,1) = {"
-xx
-Xm
-Qm
-XF
-cf
-XF
-Qm
-QT
-bG
-wJ
-bG
-xx
-Xe
-bG
-xx
-dn
-RY
-av
-FG
-Xe
-dn
-Dc
-xx
-Xe
-ZZ
-bG
-NS
-hW
-Xe
-Xe
-xx
-bG
-bG
-zg
-Nt
-RY
-tf
-so
-tF
-xx
-in
-in
-"}
-(19,1,1) = {"
-xx
-mo
-Ou
-av
-Vd
-XF
-Pq
-Hp
-bG
-eT
-jD
-pW
-JA
-xL
-IK
-rn
-Xe
-gr
-pR
-bG
-ep
-dC
-av
-av
-nS
-GF
-RY
-ve
-vw
-av
-NW
-jS
-xx
-jy
-XF
-bb
-Pe
-Ib
-ET
-fi
-in
-in
-"}
-(20,1,1) = {"
-xx
-YS
-kD
-Xt
-iZ
-Yb
-wx
-UW
-xx
-YF
-xx
-bG
-Zb
-xx
-bG
-CF
-jU
-av
-XF
-hf
-XF
-WD
-hH
-PW
-Ue
-XF
-xx
-AE
-vw
-UU
-IB
-sE
-Xe
-NO
-Fs
-xx
-Or
-Tj
-xx
-xx
-in
-in
-"}
-(21,1,1) = {"
-xx
-Lr
-JZ
-Hp
-vG
-av
-Mv
-ra
-Ce
-vD
-xx
-Ta
-rl
-NV
-Xe
-Lv
-bG
-av
-IG
-dn
-qi
-XF
-Bp
-XF
-av
-dC
-kl
-zV
-xx
-Xe
-LR
-xx
-vt
-iv
-PA
-xx
-kw
-xx
-xx
-in
-in
-in
-"}
-(22,1,1) = {"
-xx
-DR
-zw
-av
-AN
-DR
-bs
-wb
-xx
-vD
-RY
-cF
-Fn
-xu
-YW
-ru
-xx
-Yf
-Hp
-xx
-gW
-av
-nN
-Re
-RX
-OO
-xx
-CF
-xx
-Ze
-Ny
-Uq
-xx
-lQ
-iR
-xx
-xx
-xx
-in
-in
-in
-in
-"}
-(23,1,1) = {"
-xx
-tP
-Pq
-HC
-AN
-av
-iK
-rR
-bG
-TH
-Vp
-TF
-jF
-Qf
-Xe
-oU
-bG
-bG
-bG
-Xe
-xx
-bt
-Xe
-Xe
-xx
-xx
-RY
-oj
-HY
-lz
-kd
-Ub
-BP
-BU
-FH
-xx
-zG
-oW
-in
-in
-in
-in
-"}
-(24,1,1) = {"
-xx
-TD
-bs
-XF
-In
-kS
-OI
-nw
-xx
-CF
-xx
-Cc
-va
-Ey
-RY
-vD
-fi
-vE
-Pf
-lz
-ct
-Hp
-Ld
-pR
-Pf
-RU
-bG
-CF
-sR
-wb
-Qc
-jh
-xx
-TO
-dK
-xx
-oW
-IA
-IA
-ll
-IA
-in
-"}
-(25,1,1) = {"
-xx
-fj
-Pq
-Hp
-Nr
-av
-Pq
-av
-xx
-jM
-BA
-av
-zv
-gq
-xx
-CF
-RY
-Ot
-Hp
-Ha
-Rc
-Bk
-UH
-wi
-pR
-Pf
-xx
-zV
-mv
-Hp
-Ub
-Xs
-xx
-bv
-RY
-xx
-zs
-ll
-IA
-IA
-IA
-IA
-"}
-(26,1,1) = {"
-xx
-UK
-IE
-wq
-dP
-XF
-kD
-lK
-xx
-jM
-xx
-pR
-kj
-lX
-YP
-Cu
-Xe
-xx
-dn
-bG
-RY
-dg
-aE
-et
-bN
-xx
-xx
-zV
-Xe
-gM
-gi
-gi
-xx
-PE
-VJ
-NA
-IA
-tR
-IA
-IA
-ll
-IA
-"}
-(27,1,1) = {"
-xx
-Xt
-Pq
-mP
-zL
-av
-nM
-Nc
-xx
-vD
-dI
-av
-uB
-Ta
-xx
-zV
-fy
-dC
-fh
-xx
-IO
-dY
-oq
-FH
-SM
-nc
-xx
-gp
-WO
-xx
-xx
-Xe
-xx
-xx
-xd
-pS
-dp
-tR
-tR
-IA
-IA
-IA
-"}
-(28,1,1) = {"
-xx
-yp
-kD
-eS
-Dl
-Hp
-eO
-av
-xx
-Lv
-xx
-vM
-Yr
-ZC
-bG
-bT
-Fs
-iI
-za
-xx
-jA
-jh
-zp
-bH
-Rc
-Vu
-NC
-sU
-UR
-mh
-pR
-bF
-et
-Gw
-WL
-kb
-IA
-IA
-Sy
-IA
-IA
-IA
-"}
-(29,1,1) = {"
-xx
-jH
-PS
-Ky
-bj
-Db
-rO
-br
-xx
-CF
-xx
-FH
-av
-XF
-fi
-CF
-OQ
-NR
-Vm
-xx
-lr
-aP
-jr
-Hp
-YL
-tA
-xx
-iw
-Ve
-av
-pD
-UF
-xx
-EE
-Ed
-YZ
-IA
-IA
-IA
-Fh
-IA
-ll
-"}
-(30,1,1) = {"
-xx
-CT
-tY
-av
-Tl
-Tf
-tY
-av
-xx
-nz
-xx
-oQ
-iI
-mV
-xx
-nF
-xx
-xx
-dn
-xx
-xx
-Xe
-Xe
-wg
-xx
-xx
-et
-UJ
-xx
-xx
-Xe
-Xe
-xx
-Lb
-xx
-hD
-Im
-IA
-IA
-IA
-IA
-IA
-"}
-(31,1,1) = {"
-xx
-Hp
-ZE
-AD
-yl
-HV
-DW
-av
-xx
-SC
-et
-xx
-xx
-xx
-xx
-fJ
-Xx
-vX
-aT
-yK
-QK
-NR
-av
-Rc
-vm
-Sb
-co
-ga
-vM
-CU
-av
-ut
-Fw
-he
-xx
-in
-IA
-ll
-IA
-IA
-IA
-IA
-"}
-(32,1,1) = {"
-xx
-Fc
-hZ
-av
-hW
-Eb
-av
-xW
-xx
-PE
-IY
-ja
-xL
-Zt
-Ro
-Cw
-vR
-AH
-pW
-vR
-Xi
-vR
-tI
-IY
-vR
-Xd
-pW
-Cw
-qE
-Jg
-KX
-Uk
-am
-Bd
-xx
-in
-IA
-IA
-IA
-IA
-IA
-IA
-"}
-(33,1,1) = {"
-xx
-UU
-av
-Xt
-fn
-AY
-hZ
-Hp
-xx
-Hp
-XF
-yy
-JK
-dC
-zV
-dC
-xx
-xx
-bG
-xx
-xx
-uP
-xx
-SG
-xx
-xx
-xx
-Xe
-Xe
-Xe
-CE
-xx
-xx
-xx
-xx
-xx
-in
-IA
-IA
-IA
-ll
-IA
-"}
-(34,1,1) = {"
-xx
-xx
-xx
-xx
-xx
-Wl
-xx
-xx
-xx
-xx
-bG
-xx
-YP
-bG
-By
-RY
-bG
-wz
-SD
-xC
-ZR
-QH
-pP
-iI
-Sv
-Qy
-xx
-Ni
-Wn
-lA
-Xt
-RY
-OV
-Oq
-Jp
-xx
-in
-in
-in
-in
-in
-in
-"}
-(35,1,1) = {"
-xx
-zK
-zK
-zK
-xx
-GP
-xx
-zK
-zK
-zK
-zK
-zK
-fi
-sQ
-OM
-dC
-Xe
-uD
-oD
-xx
-pR
-Xs
-eh
-NP
-kS
-nk
-xx
-Tu
-Xt
-tK
-As
-oX
-Ie
-PM
-NI
-xx
-in
-in
-in
-in
-in
-in
-"}
-(36,1,1) = {"
-xx
-zK
-xx
-xx
-xx
-Wl
-xx
-xx
-xx
-xx
-xx
-zK
-bG
-Nl
-ga
-ph
-Xe
-XY
-PW
-qs
-FT
-iR
-av
-wb
-nH
-ls
-Xe
-Hp
-Zo
-ZE
-YJ
-xx
-Mo
-Ie
-Ie
-xx
-in
-in
-in
-in
-in
-in
-"}
-(37,1,1) = {"
-xx
-zK
-xx
-Tq
-dC
-OM
-DW
-av
-dH
-DX
-xx
-zK
-xx
-gQ
-fJ
-Zg
-bG
-kT
-Kg
-bG
-xy
-DW
-dH
-ZE
-rp
-KS
-So
-Xt
-TX
-bS
-KF
-bG
-bG
-RG
-xx
-xx
-in
-in
-in
-in
-in
-in
-"}
-(38,1,1) = {"
-xx
-zK
-xx
-qI
-pR
-Gt
-qr
-pY
-XF
-av
-xx
-zK
-xx
-pP
-zV
-dC
-xx
-dn
-bG
-NS
-xx
-xx
-xx
-kE
-Xe
-xx
-xx
-bG
-xx
-Xe
-xx
-xx
-pM
-XF
-iI
-xx
-in
-in
-in
-in
-in
-in
-"}
-(39,1,1) = {"
-xx
-zK
-YB
-av
-XF
-JX
-wM
-wM
-IM
-HR
-xx
-zK
-xx
-FH
-yV
-Iz
-az
-BI
-lf
-qR
-YT
-Qx
-kX
-ED
-uS
-LY
-ED
-iH
-kX
-eW
-ED
-Kq
-AC
-nd
-xj
-xx
-in
-in
-in
-in
-in
-in
-"}
-(40,1,1) = {"
-xx
-zK
-xx
-Hp
-Ke
-kn
-Pb
-nK
-pN
-av
-xx
-zK
-xx
-Gd
-vM
-Lj
-xx
-xx
-Dc
-xx
-xx
-xx
-xx
-xx
-cj
-xx
-yZ
-bG
-xx
-xx
-xx
-fi
-xm
-OM
-pp
-bG
-in
-in
-in
-in
-in
-in
-"}
-(41,1,1) = {"
-xx
-zK
-xx
-Mk
-CN
-EJ
-wb
-XF
-Pb
-pR
-xx
-zK
-xx
-AP
-ev
-av
-xx
-xx
-xx
-xx
-xx
-xx
-xx
-xx
-Hw
-xx
-bG
-xx
-xx
-xx
-xx
-xx
-xu
-AE
-mc
-bG
-in
-in
-in
-in
-in
-in
-"}
-(42,1,1) = {"
-xx
-zK
-xx
-fw
-av
-IV
-av
-XS
-OQ
-Wv
-bG
-zK
-xx
-av
-XF
-Hp
-xx
-cm
-Oo
-Wt
-yb
-YT
-Wt
-as
-ED
-Nj
-ED
-ED
-Qt
-ED
-BI
-Pg
-ED
-Px
-av
-bG
-in
-in
-in
-in
-in
-in
-"}
-(43,1,1) = {"
-xx
-zK
-xx
-xx
-xx
-xx
-zs
-xx
-xx
-xx
-xx
-zK
-xx
-xx
-fi
-xx
-xx
-xx
-xx
-xx
-xx
-xx
-xx
-fi
-xx
-xx
-xx
-xx
-xx
-xx
-xx
-xx
-xx
-xx
-bG
-bG
-in
-in
-in
-in
-in
-in
-"}
-(44,1,1) = {"
-xx
-zK
-zK
-zK
-zK
-zK
-zK
-zK
-zK
-zK
-zK
-zK
-xx
-in
-in
-in
-in
-in
-in
-in
-in
-in
-in
-in
-in
-in
-in
-in
-in
-in
-in
-in
-in
-in
-vJ
-in
-in
-in
-in
-in
-in
-in
-"}
-(45,1,1) = {"
-xx
-xx
-xx
-xx
-xx
-xx
-xx
-xx
-xx
-xx
-xx
-xx
-xx
-in
-in
-in
-in
-in
-in
-in
-in
-in
-in
-in
-in
-in
-in
-in
-in
-in
-in
-in
-in
-in
-in
-in
-in
-in
-in
-in
-in
-in
-"}
diff --git a/_maps/RandomRuins/WasteRuins/wasteplanet_lab.dmm b/_maps/RandomRuins/WasteRuins/wasteplanet_lab.dmm
index c1ba42b3c41..81a8e67a345 100644
--- a/_maps/RandomRuins/WasteRuins/wasteplanet_lab.dmm
+++ b/_maps/RandomRuins/WasteRuins/wasteplanet_lab.dmm
@@ -88,10 +88,6 @@
},
/turf/open/floor/plasteel,
/area/ruin/powered)
-"ej" = (
-/obj/machinery/vending/mining_equipment,
-/turf/open/floor/plasteel,
-/area/ruin/powered)
"eV" = (
/obj/structure/closet/cardboard,
/obj/item/paper,
@@ -1214,7 +1210,7 @@ Zi
uW
iy
Rt
-ej
+Rt
GR
"}
(10,1,1) = {"
diff --git a/_maps/RandomRuins/WasteRuins/wasteplanet_ore_proccessing_facility.dmm b/_maps/RandomRuins/WasteRuins/wasteplanet_ore_proccessing_facility.dmm
deleted file mode 100644
index e251b79dc71..00000000000
--- a/_maps/RandomRuins/WasteRuins/wasteplanet_ore_proccessing_facility.dmm
+++ /dev/null
@@ -1,1605 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"am" = (
-/obj/structure/table,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"aD" = (
-/obj/item/borg/upgrade/modkit/cooldown,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"aL" = (
-/obj/machinery/conveyor/auto{
- dir = 4;
- id = "rockplanet_ore_process"
- },
-/obj/machinery/door/poddoor/crusher/automatic,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"bE" = (
-/turf/closed/indestructible/reinforced{
- base_icon_state = "rusty_reinforced_wall";
- icon = 'icons/turf/walls/rusty_reinforced_wall.dmi';
- icon_state = "rusty_reinforced_wall-0"
- },
-/area/ruin/powered)
-"bO" = (
-/obj/machinery/conveyor/auto{
- dir = 4;
- id = "rockplanet_ore_process"
- },
-/obj/structure/railing/corner{
- dir = 1
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"ce" = (
-/obj/machinery/door/poddoor/crusher/automatic,
-/obj/machinery/conveyor/auto{
- dir = 4;
- id = "rockplanet_ore_process"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"ch" = (
-/obj/machinery/light/small/directional/north,
-/obj/machinery/conveyor/auto{
- id = "rockplanet_ore_process"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"cA" = (
-/obj/machinery/conveyor/auto{
- dir = 4;
- id = "rockplanet_ore_process"
- },
-/obj/structure/plasticflaps,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"cJ" = (
-/obj/structure/railing{
- dir = 4
- },
-/mob/living/simple_animal/bot/medbot,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"cO" = (
-/obj/item/borg/upgrade/modkit/damage,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"db" = (
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"ed" = (
-/obj/machinery/door/poddoor/crusher/automatic,
-/obj/machinery/conveyor/auto{
- id = "rockplanet_ore_process"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"eo" = (
-/obj/machinery/vending/mining_equipment,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"ey" = (
-/obj/structure/railing{
- dir = 5
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"he" = (
-/obj/structure/catwalk,
-/obj/machinery/conveyor/auto{
- dir = 4;
- id = "rockplanet_ore_process"
- },
-/obj/machinery/door/poddoor/crusher/automatic/preopen,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"hv" = (
-/obj/structure/railing,
-/obj/structure/rack,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"hy" = (
-/obj/structure/railing{
- dir = 10
- },
-/obj/structure/lattice/lava{
- icon = 'icons/obj/smooth_structures/catwalk.dmi'
- },
-/turf/open/lava/smooth{
- smoothing_flags = 0;
- smoothing_groups = null
- },
-/area/ruin/powered)
-"iG" = (
-/obj/machinery/conveyor/auto{
- dir = 1;
- id = "rockplanet_ore_process"
- },
-/obj/machinery/light/small/directional/south,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"jA" = (
-/obj/structure/table,
-/obj/effect/spawner/lootdrop/donkpockets,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"jE" = (
-/obj/machinery/conveyor/auto,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"ka" = (
-/obj/machinery/conveyor/auto{
- dir = 4;
- id = "rockplanet_ore_process"
- },
-/obj/structure/railing{
- dir = 1
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"kI" = (
-/obj/item/borg/upgrade/modkit/range,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"kL" = (
-/obj/structure/railing{
- dir = 4
- },
-/obj/structure/closet/syndicate/resources{
- name = "Resource storage"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"kW" = (
-/obj/structure/railing{
- dir = 4
- },
-/obj/structure/railing/corner{
- dir = 1
- },
-/obj/structure/lattice/lava{
- icon = 'icons/obj/smooth_structures/catwalk.dmi'
- },
-/turf/open/lava/smooth{
- smoothing_flags = 0;
- smoothing_groups = null
- },
-/area/ruin/powered)
-"lC" = (
-/obj/machinery/door/airlock/mining{
- dir = 4
- },
-/obj/effect/mapping_helpers/airlock/locked,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"lW" = (
-/obj/structure/flora/rock/pile,
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"mg" = (
-/obj/effect/mob_spawn/human/corpse/cargo_tech,
-/obj/machinery/light/small/directional/north,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"mE" = (
-/obj/machinery/conveyor/auto{
- dir = 8;
- id = "rockplanet_ore_process"
- },
-/obj/structure/railing{
- dir = 8
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"ns" = (
-/obj/structure/ore_box,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"nU" = (
-/obj/structure/plasticflaps,
-/obj/machinery/conveyor/auto{
- id = "rockplanet_ore_process"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"oq" = (
-/obj/machinery/conveyor/auto{
- dir = 8;
- id = "rockplanet_ore_process"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"pb" = (
-/obj/item/borg/upgrade/modkit/aoe,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"pk" = (
-/obj/machinery/conveyor_switch{
- id = "rockplanet_ore_process"
- },
-/mob/living/simple_animal/bot/medbot,
-/turf/open/floor/plating,
-/area/ruin/powered)
-"pm" = (
-/obj/machinery/conveyor/auto{
- dir = 4;
- id = "rockplanet_ore_process"
- },
-/obj/structure/railing{
- dir = 8
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"pv" = (
-/obj/machinery/light/small/broken/directional/south,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"pJ" = (
-/obj/structure/catwalk,
-/obj/machinery/conveyor/auto{
- dir = 4;
- id = "rockplanet_ore_process"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"pO" = (
-/obj/structure/catwalk,
-/obj/machinery/conveyor/auto{
- dir = 8;
- id = "rockplanet_ore_process"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"qb" = (
-/obj/machinery/light/small/directional/east,
-/obj/structure/railing{
- dir = 8
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"qj" = (
-/obj/structure/railing{
- dir = 10
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"qk" = (
-/obj/machinery/conveyor/auto{
- dir = 4;
- id = "rockplanet_ore_process"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"rx" = (
-/turf/closed/wall/r_wall/rust,
-/area/ruin/powered)
-"rz" = (
-/obj/structure/catwalk,
-/obj/machinery/conveyor/auto{
- id = "rockplanet_ore_process"
- },
-/obj/machinery/door/poddoor/crusher/automatic,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"rH" = (
-/obj/structure/closet/malf/suits,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"sY" = (
-/obj/structure/railing{
- dir = 1
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"te" = (
-/obj/structure/railing{
- dir = 6
- },
-/obj/structure/lattice/lava{
- icon = 'icons/obj/smooth_structures/catwalk.dmi'
- },
-/turf/open/lava/smooth{
- smoothing_flags = 0;
- smoothing_groups = null
- },
-/area/ruin/powered)
-"tq" = (
-/obj/structure/catwalk,
-/obj/machinery/conveyor/auto{
- dir = 1;
- id = "rockplanet_ore_process"
- },
-/obj/structure/railing/corner{
- dir = 8
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"uy" = (
-/obj/structure/railing,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"uB" = (
-/obj/machinery/light/small/directional/south,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"vV" = (
-/obj/machinery/conveyor/auto{
- dir = 4;
- id = "rockplanet_ore_process"
- },
-/obj/machinery/light/small/directional/south,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"wi" = (
-/obj/structure/catwalk,
-/obj/machinery/conveyor/auto{
- dir = 4;
- id = "rockplanet_ore_process"
- },
-/obj/structure/railing{
- dir = 1
- },
-/obj/structure/railing,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"wy" = (
-/obj/structure/catwalk,
-/obj/machinery/conveyor/auto{
- id = "rockplanet_ore_process"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"wB" = (
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"wE" = (
-/obj/structure/table,
-/obj/machinery/microwave,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"wW" = (
-/obj/machinery/conveyor/auto{
- dir = 1;
- id = "rockplanet_ore_process"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"wZ" = (
-/obj/machinery/conveyor/auto{
- dir = 1;
- id = "rockplanet_ore_process"
- },
-/obj/structure/railing{
- dir = 1
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"xf" = (
-/obj/item/borg/upgrade/modkit/tracer,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"xz" = (
-/obj/structure/railing,
-/obj/structure/lattice/lava{
- icon = 'icons/obj/smooth_structures/catwalk.dmi'
- },
-/turf/open/lava/smooth{
- smoothing_flags = 0;
- smoothing_groups = null
- },
-/area/ruin/powered)
-"xD" = (
-/obj/structure/closet/crate/secure/gear{
- req_access_txt = "1"
- },
-/obj/item/gun/ballistic/revolver/detective,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"xO" = (
-/obj/machinery/conveyor/auto{
- dir = 4;
- id = "rockplanet_ore_process"
- },
-/obj/machinery/recycler/deathtrap{
- color = "red"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"yy" = (
-/obj/structure/railing{
- dir = 8
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"zd" = (
-/obj/machinery/mineral/processing_unit{
- dir = 1
- },
-/obj/structure/catwalk,
-/turf/open/lava/smooth{
- smoothing_flags = 0;
- smoothing_groups = null
- },
-/area/ruin/powered)
-"zK" = (
-/mob/living/simple_animal/bot/secbot/ed209/rockplanet,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Af" = (
-/obj/structure/railing{
- dir = 10
- },
-/obj/machinery/conveyor/auto{
- id = "rockplanet_ore_process"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"AP" = (
-/turf/open/lava/smooth{
- smoothing_flags = 0;
- smoothing_groups = null
- },
-/area/ruin/powered)
-"Bi" = (
-/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Cj" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"DL" = (
-/obj/machinery/conveyor/auto{
- dir = 4;
- id = "rockplanet_ore_process"
- },
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Ff" = (
-/obj/item/pickaxe/drill/diamonddrill{
- pixel_y = 3
- },
-/obj/item/pickaxe/drill/diamonddrill,
-/obj/item/pickaxe/drill/diamonddrill{
- pixel_y = -3
- },
-/obj/structure/rack,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Fs" = (
-/obj/structure/catwalk,
-/obj/machinery/conveyor/auto{
- dir = 1;
- id = "rockplanet_ore_process"
- },
-/obj/machinery/light/small/directional/west,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"FH" = (
-/obj/machinery/mineral/unloading_machine,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Gd" = (
-/obj/machinery/recycler/deathtrap{
- color = "red"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Gv" = (
-/obj/machinery/door/airlock/mining,
-/obj/effect/mapping_helpers/airlock/locked,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Hr" = (
-/obj/machinery/conveyor/auto{
- id = "rockplanet_ore_process"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"HI" = (
-/obj/structure/railing{
- dir = 4
- },
-/obj/structure/railing{
- dir = 8
- },
-/obj/structure/lattice/lava{
- icon = 'icons/obj/smooth_structures/catwalk.dmi'
- },
-/turf/open/lava/smooth{
- smoothing_flags = 0;
- smoothing_groups = null
- },
-/area/ruin/powered)
-"HP" = (
-/obj/structure/railing/corner{
- dir = 4
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"HR" = (
-/obj/structure/railing{
- dir = 9
- },
-/obj/structure/railing/corner,
-/obj/structure/lattice/lava{
- icon = 'icons/obj/smooth_structures/catwalk.dmi'
- },
-/turf/open/lava/smooth{
- smoothing_flags = 0;
- smoothing_groups = null
- },
-/area/ruin/powered)
-"Is" = (
-/obj/structure/railing{
- dir = 9
- },
-/obj/structure/lattice/lava{
- icon = 'icons/obj/smooth_structures/catwalk.dmi'
- },
-/turf/open/lava/smooth{
- smoothing_flags = 0;
- smoothing_groups = null
- },
-/area/ruin/powered)
-"JS" = (
-/obj/structure/closet/firecloset,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"JY" = (
-/obj/structure/catwalk,
-/obj/machinery/conveyor/auto{
- dir = 1;
- id = "rockplanet_ore_process"
- },
-/obj/machinery/door/poddoor/crusher/automatic,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Ka" = (
-/obj/structure/railing{
- dir = 4
- },
-/obj/structure/lattice/lava{
- icon = 'icons/obj/smooth_structures/catwalk.dmi'
- },
-/turf/open/lava/smooth{
- smoothing_flags = 0;
- smoothing_groups = null
- },
-/area/ruin/powered)
-"Kq" = (
-/obj/structure/railing{
- dir = 4
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"KZ" = (
-/obj/structure/catwalk,
-/obj/machinery/conveyor/auto{
- dir = 8;
- id = "rockplanet_ore_process"
- },
-/obj/machinery/door/poddoor/crusher/automatic,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Lc" = (
-/obj/machinery/door/poddoor/crusher/automatic/preopen,
-/obj/structure/railing,
-/obj/structure/railing{
- dir = 1
- },
-/obj/structure/lattice/lava{
- icon = 'icons/obj/smooth_structures/catwalk.dmi'
- },
-/turf/open/lava/smooth{
- smoothing_flags = 0;
- smoothing_groups = null
- },
-/area/ruin/powered)
-"Lp" = (
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"LN" = (
-/obj/machinery/conveyor/auto{
- dir = 8;
- id = "rockplanet_ore_process"
- },
-/obj/machinery/door/poddoor/crusher/automatic/preopen,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"LR" = (
-/obj/structure/plasticflaps,
-/obj/machinery/conveyor/auto,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"MX" = (
-/obj/structure/plasticflaps,
-/obj/machinery/conveyor/auto{
- dir = 8;
- id = "rockplanet_ore_process"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Nf" = (
-/obj/structure/catwalk,
-/obj/machinery/conveyor/auto{
- id = "rockplanet_ore_process"
- },
-/obj/machinery/door/poddoor/crusher/automatic/preopen,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"NV" = (
-/obj/machinery/conveyor/auto{
- id = "rockplanet_ore_process"
- },
-/obj/machinery/door/poddoor/crusher/automatic,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"NZ" = (
-/obj/machinery/light/small/directional/south,
-/obj/structure/closet/secure_closet/miner,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"OA" = (
-/obj/machinery/conveyor/auto{
- dir = 8;
- id = "rockplanet_ore_process"
- },
-/obj/machinery/light/small/directional/north,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Pd" = (
-/obj/item/pickaxe/mini,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"PX" = (
-/obj/machinery/conveyor/auto{
- dir = 1;
- id = "rockplanet_ore_process"
- },
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Ql" = (
-/obj/machinery/conveyor/auto{
- dir = 4;
- id = "rockplanet_ore_process"
- },
-/obj/structure/railing,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Sg" = (
-/obj/structure/railing{
- dir = 1
- },
-/obj/structure/lattice/lava{
- icon = 'icons/obj/smooth_structures/catwalk.dmi'
- },
-/turf/open/lava/smooth{
- smoothing_flags = 0;
- smoothing_groups = null
- },
-/area/ruin/powered)
-"Ta" = (
-/obj/structure/plasticflaps,
-/obj/machinery/conveyor/auto{
- dir = 4;
- id = "rockplanet_ore_process"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Vf" = (
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/structure/railing{
- dir = 4
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"VL" = (
-/obj/machinery/conveyor/auto{
- dir = 8;
- id = "rockplanet_ore_process"
- },
-/obj/machinery/door/poddoor/crusher/automatic,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"VR" = (
-/obj/machinery/conveyor/auto{
- dir = 8;
- id = "rockplanet_ore_process"
- },
-/obj/machinery/light/small/directional/east,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"WV" = (
-/obj/machinery/conveyor/auto{
- dir = 1;
- id = "rockplanet_ore_process"
- },
-/obj/machinery/door/poddoor/crusher/automatic,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Yk" = (
-/obj/machinery/mineral/processing_unit{
- dir = 1
- },
-/obj/structure/catwalk,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Yo" = (
-/obj/structure/mopbucket,
-/obj/item/mop,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Yq" = (
-/turf/template_noop,
-/area/template_noop)
-"Zp" = (
-/obj/structure/catwalk,
-/obj/machinery/conveyor/auto{
- dir = 1;
- id = "rockplanet_ore_process"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-"Zt" = (
-/obj/structure/railing{
- dir = 8
- },
-/obj/structure/lattice/lava{
- icon = 'icons/obj/smooth_structures/catwalk.dmi'
- },
-/turf/open/lava/smooth{
- smoothing_flags = 0;
- smoothing_groups = null
- },
-/area/ruin/powered)
-"ZL" = (
-/obj/machinery/light/small/directional/north,
-/turf/open/floor/plating/rust,
-/area/ruin/powered)
-
-(1,1,1) = {"
-Yq
-Yq
-Yq
-Yq
-Yq
-Lp
-Lp
-Lp
-Lp
-Lp
-Lp
-lW
-Lp
-Lp
-Yq
-Yq
-Yq
-Yq
-Yq
-Yq
-Yq
-Yq
-Yq
-Yq
-Yq
-Yq
-"}
-(2,1,1) = {"
-Yq
-Yq
-Yq
-Yq
-Lp
-Lp
-lW
-Lp
-Lp
-Lp
-Lp
-Lp
-Lp
-Lp
-lW
-Yq
-Yq
-Yq
-Yq
-Yq
-Yq
-Yq
-Yq
-Yq
-Yq
-Yq
-"}
-(3,1,1) = {"
-Yq
-Yq
-Yq
-Yq
-Lp
-lW
-Lp
-rx
-ns
-db
-wB
-ns
-rx
-Lp
-Lp
-Yq
-Yq
-Yq
-Yq
-Yq
-Yq
-Yq
-Yq
-Yq
-Yq
-Yq
-"}
-(4,1,1) = {"
-Yq
-Yq
-Yq
-rx
-rx
-rx
-rx
-rx
-wB
-qk
-FH
-wB
-rx
-rx
-rx
-rx
-rx
-rx
-rx
-rx
-rx
-rx
-rx
-Yq
-Yq
-Yq
-"}
-(5,1,1) = {"
-Yq
-Yq
-Yq
-rx
-qk
-wW
-wW
-rx
-rx
-Ta
-Ta
-rx
-rx
-ed
-Hr
-Hr
-aL
-Hr
-Hr
-Hr
-Hr
-qk
-rx
-rx
-rx
-Yq
-"}
-(6,1,1) = {"
-Yq
-Yq
-Yq
-rx
-qk
-rx
-oq
-wW
-wW
-PX
-jE
-jE
-LR
-mE
-yy
-yy
-Af
-Hr
-Hr
-Hr
-Hr
-Hr
-qk
-Pd
-rx
-Yq
-"}
-(7,1,1) = {"
-rx
-rx
-rx
-rx
-cA
-rx
-rx
-rx
-rx
-rx
-rx
-rx
-rx
-rx
-lC
-rx
-rx
-rx
-rx
-rx
-rx
-rx
-Ta
-rx
-rx
-Yq
-"}
-(8,1,1) = {"
-rx
-xO
-wZ
-wW
-qk
-rx
-xD
-hv
-wB
-wB
-wB
-wB
-db
-wB
-wB
-wB
-rx
-Hr
-Hr
-Hr
-Hr
-Hr
-Hr
-qk
-rx
-Yq
-"}
-(9,1,1) = {"
-rx
-pm
-bO
-wW
-ka
-rx
-rx
-rx
-zK
-am
-wB
-db
-wB
-rH
-Cj
-NZ
-rx
-OA
-rx
-rx
-rx
-rx
-rx
-cA
-rx
-Yq
-"}
-(10,1,1) = {"
-rx
-ch
-Hr
-qk
-ey
-HP
-uB
-rx
-ZL
-jA
-uB
-rx
-rx
-rx
-rx
-rx
-rx
-oq
-rx
-mg
-uy
-wW
-wW
-wW
-rx
-Yq
-"}
-(11,1,1) = {"
-rx
-qk
-wW
-wW
-qk
-sY
-wB
-Gv
-wB
-wE
-wB
-rx
-wW
-wW
-wW
-wW
-rx
-VL
-rx
-rx
-rx
-aL
-rx
-rx
-rx
-Yq
-"}
-(12,1,1) = {"
-rx
-qk
-qk
-qk
-wW
-sY
-pv
-rx
-wB
-db
-wB
-rx
-Ta
-rx
-rx
-oq
-wW
-oq
-wW
-WV
-rx
-qk
-rx
-Yq
-Yq
-Yq
-"}
-(13,1,1) = {"
-rx
-qk
-qk
-wW
-iG
-rx
-rx
-rx
-rx
-lC
-rx
-rx
-qk
-AP
-rx
-rx
-rx
-rx
-rx
-LN
-rx
-qk
-rx
-Yq
-Yq
-Yq
-"}
-(14,1,1) = {"
-rx
-Gd
-ka
-DL
-qk
-rx
-he
-Zp
-Zp
-Zp
-Fs
-Zp
-Zp
-AP
-Nf
-wy
-wy
-pJ
-rx
-VL
-rx
-vV
-rx
-Yq
-Yq
-Yq
-"}
-(15,1,1) = {"
-rx
-ch
-Hr
-qk
-wW
-rx
-pJ
-AP
-AP
-AP
-AP
-AP
-AP
-AP
-pO
-AP
-AP
-pJ
-rx
-LN
-rx
-qk
-rx
-rx
-rx
-rx
-"}
-(16,1,1) = {"
-rx
-qk
-qk
-qk
-qk
-rx
-wy
-wy
-wy
-rz
-wy
-wy
-wy
-wy
-pO
-AP
-Yk
-pJ
-rx
-VL
-rx
-Hr
-Hr
-Hr
-qk
-rx
-"}
-(17,1,1) = {"
-rx
-Hr
-Hr
-qk
-iG
-rx
-AP
-AP
-AP
-pO
-AP
-AP
-AP
-AP
-AP
-AP
-AP
-pJ
-rx
-LN
-rx
-rx
-rx
-rx
-ce
-rx
-"}
-(18,1,1) = {"
-rx
-rx
-rx
-Ta
-rx
-rx
-zd
-Nf
-wy
-pO
-AP
-Is
-Zt
-hy
-AP
-pJ
-Zp
-JY
-rx
-OA
-Gv
-Yo
-Bi
-rx
-qk
-rx
-"}
-(19,1,1) = {"
-Yq
-Yq
-rx
-Ql
-Hr
-nU
-Hr
-pO
-AP
-AP
-AP
-Sg
-pk
-xz
-AP
-pJ
-AP
-AP
-rx
-VL
-rx
-rx
-rx
-rx
-qk
-rx
-"}
-(20,1,1) = {"
-Yq
-Yq
-rx
-Ql
-oq
-rx
-AP
-pO
-AP
-HR
-HI
-kW
-Ka
-te
-AP
-pJ
-AP
-AP
-rx
-oq
-wW
-wW
-wW
-WV
-qk
-rx
-"}
-(21,1,1) = {"
-Yq
-Yq
-rx
-Ql
-oq
-rx
-wy
-pO
-AP
-Lc
-AP
-AP
-AP
-AP
-AP
-pJ
-AP
-AP
-rx
-rx
-rx
-rx
-rx
-VL
-wW
-rx
-"}
-(22,1,1) = {"
-Yq
-Yq
-rx
-Ql
-oq
-rx
-pO
-AP
-AP
-Sg
-Zp
-Zp
-Zp
-Zp
-Zp
-Zp
-Zp
-Zp
-KZ
-rx
-Yq
-Yq
-rx
-rx
-rx
-rx
-"}
-(23,1,1) = {"
-Yq
-Yq
-rx
-NV
-VR
-rx
-pO
-AP
-AP
-wi
-AP
-AP
-AP
-AP
-AP
-AP
-AP
-AP
-pO
-rx
-Yq
-Yq
-Yq
-Yq
-Yq
-Yq
-"}
-(24,1,1) = {"
-Yq
-Yq
-rx
-rx
-bE
-bE
-JY
-Zp
-Zp
-tq
-qb
-qj
-AP
-oq
-wy
-wy
-wy
-wy
-pO
-rx
-Yq
-Yq
-Yq
-Yq
-Yq
-Yq
-"}
-(25,1,1) = {"
-Yq
-Yq
-Yq
-Yq
-bE
-bE
-bE
-bE
-bE
-bE
-bE
-bE
-bE
-MX
-bE
-bE
-bE
-rx
-rx
-rx
-Yq
-Yq
-Yq
-Yq
-Yq
-Yq
-"}
-(26,1,1) = {"
-Yq
-Yq
-Yq
-Yq
-bE
-Ff
-wB
-kI
-db
-Cj
-JS
-wB
-bE
-MX
-bE
-Yq
-Yq
-Yq
-Yq
-Yq
-Yq
-Yq
-Yq
-Yq
-Yq
-Yq
-"}
-(27,1,1) = {"
-Yq
-Yq
-Yq
-Yq
-bE
-eo
-pb
-kI
-aD
-wB
-wB
-wB
-bE
-MX
-bE
-Yq
-Yq
-Yq
-Yq
-Yq
-Yq
-Yq
-Yq
-Yq
-Yq
-Yq
-"}
-(28,1,1) = {"
-Yq
-Yq
-Yq
-Yq
-bE
-bE
-aD
-cO
-cJ
-Vf
-Kq
-kL
-bE
-MX
-bE
-Yq
-Yq
-Yq
-Yq
-Yq
-Yq
-Yq
-Yq
-Yq
-Yq
-Yq
-"}
-(29,1,1) = {"
-Yq
-Yq
-Yq
-Yq
-Yq
-bE
-xf
-wB
-Hr
-Hr
-Hr
-Hr
-Hr
-Hr
-bE
-Yq
-Yq
-Yq
-Yq
-Yq
-Yq
-Yq
-Yq
-Yq
-Yq
-Yq
-"}
-(30,1,1) = {"
-Yq
-Yq
-Yq
-Yq
-Yq
-bE
-bE
-bE
-bE
-bE
-bE
-bE
-bE
-bE
-bE
-Yq
-Yq
-Yq
-Yq
-Yq
-Yq
-Yq
-Yq
-Yq
-Yq
-Yq
-"}
diff --git a/_maps/RandomRuins/WasteRuins/wasteplanet_pandora.dmm b/_maps/RandomRuins/WasteRuins/wasteplanet_pandora.dmm
index b6298e29f39..207d91d4219 100644
--- a/_maps/RandomRuins/WasteRuins/wasteplanet_pandora.dmm
+++ b/_maps/RandomRuins/WasteRuins/wasteplanet_pandora.dmm
@@ -424,7 +424,7 @@
"qo" = (
/obj/structure/closet/cabinet,
/obj/item/spear/bonespear,
-/obj/item/clothing/suit/armor/riot/chaplain/studentuni,
+/obj/item/clothing/suit/armor/witchhunter,
/obj/item/reagent_containers/food/snacks/grown/berries/death,
/turf/open/floor/wood/waste,
/area/ruin/wasteplanet)
@@ -461,7 +461,7 @@
/area/ruin/wasteplanet)
"qU" = (
/obj/structure/closet/cabinet,
-/obj/item/clothing/suit/armor/riot/chaplain/studentuni,
+/obj/item/clothing/suit/armor/witchhunter,
/turf/open/floor/wood/waste,
/area/ruin/wasteplanet)
"rh" = (
@@ -492,7 +492,7 @@
"sV" = (
/obj/structure/closet/cabinet,
/obj/item/claymore/bone,
-/obj/item/clothing/suit/armor/riot/chaplain/studentuni,
+/obj/item/clothing/suit/armor/witchhunter,
/turf/open/floor/wood/waste,
/area/ruin/wasteplanet)
"tB" = (
@@ -659,7 +659,7 @@
/turf/open/floor/mineral/titanium/white,
/area/ruin/wasteplanet)
"Bb" = (
-/mob/living/simple_animal/hostile/skeleton{
+/mob/living/simple_animal/hostile/human/skeleton{
desc = "A villager resurrected by the power of an unknown deity, eternally seeking vengeance for its people."
},
/turf/open/floor/plating/dirt/old/waste,
@@ -791,7 +791,7 @@
/turf/open/indestructible/hierophant/waste,
/area/ruin/wasteplanet)
"Fc" = (
-/mob/living/simple_animal/hostile/skeleton{
+/mob/living/simple_animal/hostile/human/skeleton{
desc = "A villager resurrected by the power of an unknown deity, eternally seeking vengeance for its people."
},
/turf/open/floor/wood/waste,
@@ -1378,7 +1378,7 @@
/turf/open/indestructible/hierophant/waste,
/area/ruin/wasteplanet)
"Xq" = (
-/mob/living/simple_animal/hostile/skeleton{
+/mob/living/simple_animal/hostile/human/skeleton{
desc = "A villager resurrected by the power of an unknown deity, eternally seeking vengeance for its people."
},
/turf/open/floor/plating/grass/wasteplanet,
diff --git a/_maps/RandomRuins/WasteRuins/wasteplanet_pod.dmm b/_maps/RandomRuins/WasteRuins/wasteplanet_pod.dmm
deleted file mode 100644
index aadddfe1c2a..00000000000
--- a/_maps/RandomRuins/WasteRuins/wasteplanet_pod.dmm
+++ /dev/null
@@ -1,181 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"a" = (
-/turf/template_noop,
-/area/template_noop)
-"f" = (
-/obj/structure/closet/crate/grave/loot,
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"g" = (
-/turf/open/floor/pod/dark,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"h" = (
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"j" = (
-/obj/structure/table/reinforced,
-/obj/item/gun/energy/plasmacutter/adv,
-/turf/open/floor/pod/dark,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"l" = (
-/obj/machinery/stasis/survival_pod,
-/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/pod/dark,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"m" = (
-/obj/structure/ore_box,
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"n" = (
-/obj/structure/table/reinforced,
-/obj/structure/closet/secure_closet/freezer/gulag_fridge,
-/turf/open/floor/pod/dark,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"o" = (
-/obj/machinery/smartfridge/survival_pod,
-/turf/open/floor/pod/dark,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"r" = (
-/obj/effect/decal/fakelattice,
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"u" = (
-/obj/structure/closet/secure_closet/miner/unlocked,
-/turf/open/floor/pod/dark,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"v" = (
-/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"w" = (
-/mob/living/simple_animal/hostile/asteroid/goliath/beast/ancient/crystal,
-/turf/open/floor/pod/dark,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"x" = (
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/pod/dark,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"A" = (
-/obj/effect/decal/remains/human,
-/turf/open/floor/pod/dark,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"C" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/closet/emcloset/anchored,
-/obj/effect/decal/fakelattice,
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"I" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/pod/dark,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"J" = (
-/obj/effect/decal/cleanable/oil/slippery,
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"M" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/pod/dark,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"Q" = (
-/turf/closed/wall/mineral/titanium/survival/pod,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"T" = (
-/obj/structure/closet/crate/miningcar,
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"X" = (
-/obj/structure/table/reinforced,
-/obj/machinery/microwave,
-/turf/open/floor/pod/dark,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"Z" = (
-/obj/structure/table/reinforced,
-/obj/item/t_scanner/adv_mining_scanner,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/turf/open/floor/pod/dark,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-
-(1,1,1) = {"
-Q
-Q
-Q
-Q
-Q
-Q
-Q
-a
-"}
-(2,1,1) = {"
-Q
-l
-I
-u
-n
-X
-Q
-f
-"}
-(3,1,1) = {"
-Q
-o
-g
-x
-M
-g
-r
-a
-"}
-(4,1,1) = {"
-Q
-Q
-A
-M
-g
-g
-r
-a
-"}
-(5,1,1) = {"
-Q
-j
-g
-M
-w
-r
-Q
-a
-"}
-(6,1,1) = {"
-Q
-Z
-x
-M
-r
-a
-h
-a
-"}
-(7,1,1) = {"
-Q
-Q
-Q
-Q
-C
-a
-a
-m
-"}
-(8,1,1) = {"
-a
-T
-J
-a
-a
-v
-a
-a
-"}
diff --git a/_maps/RandomRuins/WasteRuins/wasteplanet_tarpit.dmm b/_maps/RandomRuins/WasteRuins/wasteplanet_tarpit.dmm
deleted file mode 100644
index 945c2a49521..00000000000
--- a/_maps/RandomRuins/WasteRuins/wasteplanet_tarpit.dmm
+++ /dev/null
@@ -1,1672 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"ax" = (
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/concrete/slab_1,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"bQ" = (
-/turf/open/floor/concrete/pavement,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"cb" = (
-/obj/effect/turf_decal/road,
-/obj/effect/turf_decal/road/stripes,
-/turf/open/floor/concrete/pavement,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"ci" = (
-/obj/structure/fence/door,
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"cA" = (
-/obj/effect/turf_decal/number/one,
-/turf/open/floor/concrete,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"cS" = (
-/obj/effect/turf_decal/road{
- dir = 1
- },
-/obj/item/grenade/frag,
-/turf/open/floor/concrete/pavement,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"cT" = (
-/obj/structure/barricade/sandbags,
-/obj/effect/turf_decal/road,
-/obj/effect/turf_decal/road/stripes,
-/turf/open/floor/concrete/pavement,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"dl" = (
-/obj/effect/turf_decal/road/line/edge/opaque/yellow,
-/turf/open/floor/concrete/pavement,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"dp" = (
-/obj/structure/flippedtable,
-/turf/open/floor/concrete,
-/area/ruin/unpowered)
-"dA" = (
-/obj/effect/turf_decal/road{
- dir = 5
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/concrete/pavement,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"dU" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/concrete/slab_1,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"eh" = (
-/obj/structure/fence,
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"eC" = (
-/obj/effect/turf_decal/number/one{
- dir = 1
- },
-/turf/open/floor/concrete,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"eN" = (
-/obj/structure/barricade/sandbags,
-/obj/effect/turf_decal/road{
- dir = 8
- },
-/turf/open/floor/concrete/pavement,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"ff" = (
-/turf/open/floor/concrete,
-/area/ruin/unpowered)
-"gj" = (
-/obj/item/gun/ballistic/automatic/pistol/commander/no_mag,
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"gn" = (
-/obj/effect/turf_decal/road{
- dir = 1
- },
-/obj/structure/barricade/sandbags,
-/turf/open/floor/concrete/pavement,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"gT" = (
-/obj/effect/turf_decal/road{
- dir = 8
- },
-/obj/effect/turf_decal/road/stripes{
- dir = 4
- },
-/turf/open/floor/concrete/pavement,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"hT" = (
-/obj/structure/marker_beacon,
-/turf/open/floor/concrete,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"iB" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/concrete,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"iH" = (
-/obj/structure/barricade/sandbags,
-/obj/effect/turf_decal/road{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/concrete/pavement,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"iM" = (
-/obj/structure/fence/corner{
- dir = 9
- },
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"iN" = (
-/obj/effect/turf_decal/road/line/edge/opaque/yellow{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"iV" = (
-/obj/effect/turf_decal/road/line/opaque/yellow{
- dir = 8
- },
-/obj/structure/barricade/sandbags,
-/turf/open/floor/concrete/pavement,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"jf" = (
-/obj/structure/fence/corner,
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"kj" = (
-/obj/structure/marker_beacon,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/concrete,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"ku" = (
-/obj/effect/turf_decal/industrial/hatch,
-/turf/open/floor/concrete,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"kV" = (
-/obj/vehicle/ridden/atv,
-/obj/effect/turf_decal/siding/white{
- dir = 4
- },
-/obj/machinery/light/dim/directional/west,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/concrete,
-/area/ruin/unpowered)
-"lC" = (
-/obj/effect/turf_decal/road/line/edge/opaque/yellow,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/concrete/pavement,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"mk" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/concrete,
-/area/ruin/unpowered)
-"mr" = (
-/obj/effect/turf_decal/road/line/edge/opaque/yellow{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/concrete/pavement,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"my" = (
-/obj/machinery/light/dim/directional/south,
-/turf/open/floor/concrete,
-/area/ruin/unpowered)
-"mM" = (
-/obj/machinery/door/airlock/engineering,
-/obj/effect/mapping_helpers/airlock/locked,
-/turf/open/floor/concrete,
-/area/ruin/unpowered)
-"nI" = (
-/obj/effect/turf_decal/road/stripes{
- dir = 4
- },
-/turf/open/floor/concrete/pavement,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"oc" = (
-/obj/item/reagent_containers/glass/bucket,
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"qe" = (
-/obj/structure/barricade/sandbags,
-/turf/open/floor/concrete/slab_1,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"qI" = (
-/obj/structure/barricade/sandbags,
-/obj/effect/turf_decal/road{
- dir = 1
- },
-/obj/effect/turf_decal/road/stripes,
-/turf/open/floor/concrete/pavement,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"rb" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/concrete,
-/area/ruin/unpowered)
-"rw" = (
-/obj/effect/turf_decal/road/line/opaque/yellow{
- dir = 8
- },
-/turf/open/floor/concrete/pavement,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"rV" = (
-/obj/effect/turf_decal/road/line/edge/opaque/yellow{
- dir = 4
- },
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/concrete/pavement,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"sE" = (
-/obj/effect/turf_decal/road{
- dir = 1
- },
-/turf/open/floor/concrete/pavement,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"sW" = (
-/obj/effect/turf_decal/road/line/opaque/yellow,
-/turf/open/floor/concrete/pavement,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"th" = (
-/obj/effect/turf_decal/road/line/edge/opaque/yellow{
- dir = 8
- },
-/turf/open/floor/concrete/pavement,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"ts" = (
-/obj/effect/turf_decal/road/line/opaque/yellow{
- dir = 1
- },
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/concrete/pavement,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"tH" = (
-/obj/effect/turf_decal/road{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/concrete/pavement,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"ub" = (
-/obj/effect/turf_decal/siding/white{
- dir = 4
- },
-/turf/open/floor/concrete,
-/area/ruin/unpowered)
-"uf" = (
-/obj/effect/turf_decal/road,
-/obj/structure/barricade/sandbags,
-/turf/open/floor/concrete/pavement,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"uA" = (
-/obj/machinery/door/poddoor/shutters,
-/turf/open/floor/concrete/tiles,
-/area/ruin/unpowered)
-"uJ" = (
-/obj/effect/turf_decal/road{
- dir = 4
- },
-/obj/effect/turf_decal/road/stripes{
- dir = 4
- },
-/turf/open/floor/concrete/pavement,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"uO" = (
-/obj/effect/turf_decal/road/line/edge/opaque/yellow{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/concrete/pavement,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"vp" = (
-/obj/effect/turf_decal/road/stop{
- dir = 8
- },
-/turf/open/floor/concrete/pavement,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"vT" = (
-/obj/effect/turf_decal/road/line/opaque/yellow,
-/obj/structure/barricade/sandbags,
-/turf/open/floor/concrete/pavement,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"wz" = (
-/obj/structure/fence/corner{
- dir = 10
- },
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"wI" = (
-/turf/open/floor/concrete,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"wN" = (
-/obj/effect/turf_decal/road{
- dir = 8
- },
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/concrete/pavement,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"wR" = (
-/obj/structure/table,
-/obj/item/weldingtool/hugetank/empty,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/concrete,
-/area/ruin/unpowered)
-"xt" = (
-/obj/effect/turf_decal/road{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/concrete/pavement,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"xF" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/turf/open/floor/concrete,
-/area/ruin/unpowered)
-"xM" = (
-/obj/effect/turf_decal/road{
- dir = 4
- },
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"xQ" = (
-/turf/template_noop,
-/area/template_noop)
-"xV" = (
-/obj/effect/turf_decal/road,
-/turf/open/floor/concrete/pavement,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"xZ" = (
-/obj/effect/turf_decal/siding/white{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/concrete,
-/area/ruin/unpowered)
-"yv" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/paper{
- default_raw_text = "First, take a scoop out of the pit. Go ahead,d try it out! Second, mix it with raw cement. Then simply add some sand to it, doesn't matter. Then you got yourself some pavement. Simply pour it on some catwalk and you got yourself some roadway. More efficent this way too. Enjoy. On a side note, I hear something outside, better check that out. I'll finish his later."
- },
-/turf/open/floor/concrete,
-/area/ruin/unpowered)
-"yG" = (
-/obj/effect/turf_decal/road/line/opaque/yellow{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/concrete/pavement,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"yW" = (
-/obj/machinery/light/dim/directional/east,
-/turf/open/floor/concrete,
-/area/ruin/unpowered)
-"zu" = (
-/obj/effect/turf_decal/road/line/opaque/yellow{
- dir = 4
- },
-/turf/open/floor/concrete/pavement,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"zU" = (
-/obj/effect/turf_decal/number/one{
- dir = 1
- },
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"AO" = (
-/obj/machinery/light/dim/directional/west,
-/turf/open/floor/concrete,
-/area/ruin/unpowered)
-"Bk" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/concrete/slab_1,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"BB" = (
-/obj/effect/turf_decal/road/line/edge/opaque/yellow,
-/obj/item/clothing/head/helmet,
-/turf/open/floor/concrete/pavement,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"BS" = (
-/obj/structure/flippedtable,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/concrete,
-/area/ruin/unpowered)
-"Cj" = (
-/obj/structure/barricade/sandbags,
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"Di" = (
-/obj/effect/turf_decal/road/line/edge/opaque/yellow{
- dir = 4
- },
-/turf/open/floor/concrete/pavement,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"DC" = (
-/obj/effect/turf_decal/road{
- dir = 4
- },
-/obj/structure/barricade/sandbags,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/concrete/pavement,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"Eh" = (
-/obj/effect/turf_decal/road/edge{
- dir = 1
- },
-/turf/open/floor/concrete/pavement,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"Eu" = (
-/obj/effect/turf_decal/road{
- dir = 8
- },
-/obj/structure/barricade/sandbags,
-/turf/open/floor/concrete/pavement,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"EX" = (
-/obj/effect/turf_decal/road/stripes{
- dir = 8
- },
-/turf/open/floor/concrete/pavement,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"Ff" = (
-/obj/structure/sign/warning/fire{
- pixel_y = 32
- },
-/obj/structure/reagent_dispensers/fueltank,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/concrete,
-/area/ruin/unpowered)
-"GD" = (
-/obj/effect/turf_decal/road/line/opaque/yellow,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/concrete/pavement,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"Hv" = (
-/obj/effect/turf_decal/road/line/edge/opaque/yellow{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/item/clothing/head/helmet,
-/turf/open/floor/concrete/pavement,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"Hw" = (
-/obj/effect/turf_decal/road,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/concrete/pavement,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"Io" = (
-/obj/structure/barricade/sandbags,
-/obj/effect/turf_decal/road/stop,
-/turf/open/floor/concrete/pavement,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"Jo" = (
-/obj/effect/turf_decal/road/line/opaque/yellow,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/concrete/pavement,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"JF" = (
-/obj/effect/turf_decal/road/line/edge/opaque/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/road/stripes,
-/turf/open/floor/concrete/pavement,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"JI" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"JZ" = (
-/obj/effect/turf_decal/road/line/opaque/yellow{
- dir = 1
- },
-/obj/structure/barricade/sandbags,
-/turf/open/floor/concrete/pavement,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"Ka" = (
-/obj/effect/turf_decal/road/line/edge/opaque/yellow{
- dir = 1
- },
-/turf/open/floor/concrete/pavement,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"Kd" = (
-/obj/effect/turf_decal/road/line/opaque/yellow{
- dir = 1
- },
-/turf/open/floor/concrete/pavement,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"KX" = (
-/turf/closed/wall/concrete,
-/area/ruin/unpowered)
-"Li" = (
-/obj/effect/turf_decal/road/line/opaque/yellow{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/concrete/pavement,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"Lm" = (
-/obj/effect/turf_decal/road{
- dir = 4
- },
-/obj/effect/turf_decal/road/stripes{
- dir = 8
- },
-/turf/open/floor/concrete/pavement,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"LY" = (
-/obj/structure/barricade/sandbags,
-/turf/open/floor/concrete,
-/area/ruin/unpowered)
-"OR" = (
-/obj/effect/turf_decal/road/line/edge/opaque/yellow{
- dir = 1
- },
-/obj/structure/barricade/sandbags,
-/turf/open/floor/concrete/pavement,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"Pu" = (
-/obj/effect/turf_decal/road/line/edge/opaque/yellow{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/concrete/pavement,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"PD" = (
-/obj/effect/turf_decal/road{
- dir = 9
- },
-/turf/open/floor/concrete/pavement,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"PF" = (
-/obj/effect/turf_decal/siding/white{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/concrete,
-/area/ruin/unpowered)
-"Qk" = (
-/obj/effect/turf_decal/road/stripes{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/concrete/pavement,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"Re" = (
-/obj/effect/turf_decal/road{
- dir = 6
- },
-/turf/open/floor/concrete/pavement,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"Rw" = (
-/obj/effect/turf_decal/number/one{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/concrete,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"Ry" = (
-/obj/effect/turf_decal/road/line/edge/opaque/yellow{
- dir = 4
- },
-/obj/structure/barricade/sandbags,
-/turf/open/floor/concrete/pavement,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"RO" = (
-/obj/effect/turf_decal/road/stop{
- dir = 4
- },
-/turf/open/floor/concrete/pavement,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"RP" = (
-/obj/effect/turf_decal/road{
- dir = 1
- },
-/obj/effect/turf_decal/road/stripes,
-/turf/open/floor/concrete/pavement,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"RT" = (
-/obj/structure/table,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/concrete,
-/area/ruin/unpowered)
-"Sx" = (
-/obj/structure/fence{
- dir = 8
- },
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"Ty" = (
-/obj/structure/fence/corner{
- dir = 4
- },
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"UZ" = (
-/obj/structure/table,
-/obj/item/pickaxe/drill,
-/obj/machinery/light/dim/directional/east,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/concrete,
-/area/ruin/unpowered)
-"Vf" = (
-/obj/structure/barricade/sandbags,
-/obj/effect/turf_decal/road/stripes,
-/turf/open/floor/concrete/pavement,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"VD" = (
-/obj/structure/table,
-/turf/open/floor/concrete,
-/area/ruin/unpowered)
-"VE" = (
-/obj/effect/turf_decal/road/line/edge/opaque/yellow,
-/obj/effect/turf_decal/road/stripes,
-/turf/open/floor/concrete/pavement,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"Wr" = (
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"WP" = (
-/obj/effect/turf_decal/road/line/edge/opaque/yellow{
- dir = 1
- },
-/obj/effect/decal/cleanable/blood/old,
-/obj/item/gun/ballistic/automatic/pistol/commander/no_mag,
-/turf/open/floor/concrete/pavement,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"Xn" = (
-/obj/effect/turf_decal/road{
- dir = 8
- },
-/turf/open/floor/concrete/pavement,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"XC" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/concrete,
-/area/ruin/unpowered)
-"XN" = (
-/obj/effect/turf_decal/road{
- dir = 1
- },
-/obj/item/clothing/head/helmet,
-/turf/open/floor/concrete/pavement,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"XT" = (
-/obj/effect/turf_decal/road{
- dir = 8
- },
-/obj/effect/turf_decal/road/stripes{
- dir = 8
- },
-/turf/open/floor/concrete/pavement,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"Yc" = (
-/obj/effect/turf_decal/road{
- dir = 4
- },
-/turf/open/floor/concrete/pavement,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"YB" = (
-/turf/open/water/tar,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"YO" = (
-/obj/effect/turf_decal/road/line/edge/opaque/yellow{
- dir = 4
- },
-/obj/item/clothing/head/helmet,
-/turf/open/floor/concrete/pavement,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"YX" = (
-/turf/open/floor/concrete/slab_1,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"Zc" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/concrete/pavement,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"Zk" = (
-/obj/effect/turf_decal/road/edge,
-/turf/open/floor/concrete/pavement,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"Zo" = (
-/obj/effect/turf_decal/road/line/opaque/yellow{
- dir = 4
- },
-/obj/structure/barricade/sandbags,
-/turf/open/floor/concrete/pavement,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"ZV" = (
-/obj/effect/turf_decal/road/edge{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/concrete/pavement,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-
-(1,1,1) = {"
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-Wr
-Xn
-xQ
-"}
-(2,1,1) = {"
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-YX
-Wr
-Wr
-bQ
-Wr
-Wr
-YX
-"}
-(3,1,1) = {"
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-Bk
-tH
-Zc
-Wr
-Xn
-Wr
-"}
-(4,1,1) = {"
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-YX
-Wr
-YX
-YX
-Bk
-Wr
-YX
-YX
-YX
-xQ
-YX
-YX
-uJ
-nI
-RO
-gT
-YX
-"}
-(5,1,1) = {"
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-Wr
-PD
-xV
-xV
-xV
-Hw
-Hw
-Wr
-xV
-Hw
-Hw
-xV
-cT
-Zk
-bQ
-bQ
-Xn
-YX
-"}
-(6,1,1) = {"
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-YX
-Yc
-JI
-lC
-zu
-th
-lC
-zu
-Hv
-lC
-zu
-Wr
-Io
-Wr
-bQ
-Zc
-xt
-YX
-"}
-(7,1,1) = {"
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-Bk
-tH
-Zc
-Di
-rw
-Ka
-Di
-Li
-iN
-Di
-rw
-WP
-Vf
-bQ
-bQ
-bQ
-xt
-Wr
-"}
-(8,1,1) = {"
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-JI
-tH
-dl
-th
-Wr
-cS
-sE
-sE
-sE
-sE
-sE
-Wr
-qI
-Eh
-bQ
-Wr
-Xn
-YX
-"}
-(9,1,1) = {"
-xQ
-iM
-eh
-eh
-eh
-eh
-eh
-eh
-eh
-eh
-eh
-wz
-YX
-tH
-sW
-Kd
-Xn
-Wr
-YX
-YX
-Wr
-YX
-YX
-YX
-YX
-Lm
-vp
-EX
-XT
-YX
-"}
-(10,1,1) = {"
-xQ
-Sx
-YB
-Wr
-Wr
-YB
-YB
-Wr
-oc
-Wr
-Wr
-Sx
-YX
-tH
-Di
-Ka
-Xn
-YX
-kj
-Rw
-iB
-wI
-cA
-hT
-YX
-Yc
-dl
-th
-xt
-YX
-"}
-(11,1,1) = {"
-xQ
-Sx
-YB
-Wr
-YB
-YB
-YB
-YB
-Wr
-Wr
-Wr
-ci
-YX
-tH
-dl
-Wr
-Xn
-YX
-Wr
-wI
-iB
-iB
-wI
-ku
-Wr
-Yc
-sW
-yG
-xt
-Wr
-"}
-(12,1,1) = {"
-xQ
-Sx
-YB
-YB
-YB
-YB
-YB
-YB
-YB
-Wr
-Wr
-Sx
-YX
-DC
-vT
-JZ
-Eu
-Cj
-ku
-wI
-iB
-wI
-wI
-ku
-YX
-Yc
-uO
-mr
-Xn
-YX
-"}
-(13,1,1) = {"
-xQ
-Sx
-YB
-YB
-YB
-YB
-YB
-YB
-YB
-YB
-YB
-Sx
-YX
-Yc
-rV
-mr
-xt
-qe
-ku
-wI
-iB
-wI
-wI
-ku
-Bk
-xM
-dl
-th
-Xn
-YX
-"}
-(14,1,1) = {"
-xQ
-Sx
-Wr
-YB
-YB
-YB
-YB
-YB
-YB
-YB
-Wr
-Sx
-Wr
-Yc
-BB
-Pu
-wN
-qe
-hT
-eC
-iB
-iB
-cA
-hT
-YX
-tH
-sW
-Kd
-Xn
-YX
-"}
-(15,1,1) = {"
-xQ
-Sx
-Wr
-YB
-YB
-YB
-YB
-YB
-YB
-YB
-Wr
-Sx
-YX
-Yc
-sW
-Kd
-Xn
-qe
-ku
-wI
-wI
-iB
-Wr
-ku
-YX
-tH
-Di
-Ka
-Xn
-Wr
-"}
-(16,1,1) = {"
-xQ
-Sx
-YB
-YB
-YB
-YB
-YB
-YB
-YB
-YB
-Wr
-Sx
-YX
-Wr
-Di
-Ka
-gj
-qe
-ku
-wI
-wI
-iB
-iB
-ku
-YX
-tH
-lC
-th
-Xn
-YX
-"}
-(17,1,1) = {"
-xQ
-Sx
-YB
-YB
-YB
-YB
-YB
-YB
-YB
-YB
-Wr
-Sx
-YX
-Yc
-dl
-th
-Xn
-YX
-ku
-iB
-wI
-wI
-wI
-ku
-YX
-Yc
-GD
-Wr
-Xn
-YX
-"}
-(18,1,1) = {"
-xQ
-Sx
-YB
-YB
-YB
-YB
-YB
-YB
-YB
-YB
-YB
-Sx
-YX
-Yc
-Jo
-Kd
-Xn
-YX
-hT
-Rw
-wI
-wI
-cA
-hT
-YX
-Yc
-Di
-Ka
-Xn
-YX
-"}
-(19,1,1) = {"
-xQ
-Sx
-Wr
-YB
-YB
-YB
-YB
-YB
-YB
-Wr
-Wr
-Sx
-YX
-tH
-uO
-Wr
-Xn
-Wr
-ku
-JI
-iB
-wI
-wI
-ku
-Wr
-tH
-lC
-Pu
-Xn
-Wr
-"}
-(20,1,1) = {"
-xQ
-Sx
-YB
-YB
-YB
-YB
-YB
-YB
-oc
-Wr
-oc
-ci
-Bk
-tH
-dl
-th
-Xn
-Bk
-ku
-wI
-Wr
-iB
-Wr
-ku
-YX
-Yc
-sW
-Kd
-Xn
-Bk
-"}
-(21,1,1) = {"
-xQ
-Sx
-Wr
-Wr
-Wr
-Wr
-Wr
-Wr
-YB
-Wr
-Wr
-Sx
-YX
-tH
-Wr
-yG
-xt
-Bk
-ku
-wI
-Wr
-wI
-wI
-ku
-YX
-Yc
-YO
-Ka
-Xn
-Bk
-"}
-(22,1,1) = {"
-xQ
-Ty
-eh
-eh
-eh
-eh
-eh
-eh
-eh
-eh
-eh
-jf
-Bk
-tH
-Di
-mr
-Xn
-Wr
-hT
-zU
-wI
-Wr
-cA
-hT
-Wr
-tH
-lC
-th
-Xn
-Bk
-"}
-(23,1,1) = {"
-KX
-KX
-KX
-KX
-KX
-KX
-KX
-KX
-YX
-YX
-Bk
-YX
-YX
-tH
-dl
-Pu
-Xn
-YX
-ku
-Wr
-wI
-wI
-Wr
-Wr
-YX
-tH
-sW
-ts
-xt
-Bk
-"}
-(24,1,1) = {"
-KX
-kV
-xZ
-rb
-mk
-AO
-LY
-uA
-cb
-xV
-Hw
-Hw
-uf
-Zk
-sW
-Kd
-Xn
-YX
-ku
-wI
-Wr
-Wr
-wI
-ku
-Bk
-iH
-Ry
-OR
-eN
-YX
-"}
-(25,1,1) = {"
-KX
-xZ
-xZ
-yv
-XC
-mk
-LY
-uA
-VE
-zu
-th
-dl
-Zo
-th
-uO
-mr
-Xn
-Bk
-Wr
-Wr
-wI
-wI
-Wr
-ku
-Wr
-Yc
-dl
-th
-Xn
-YX
-"}
-(26,1,1) = {"
-KX
-xZ
-PF
-rb
-VD
-BS
-LY
-uA
-JF
-rw
-Ka
-Di
-iV
-Ka
-Zc
-bQ
-Xn
-Bk
-Wr
-eC
-Wr
-Wr
-cA
-hT
-Wr
-Wr
-sW
-Kd
-Xn
-Wr
-"}
-(27,1,1) = {"
-KX
-ub
-xZ
-xF
-RT
-dp
-LY
-uA
-RP
-sE
-sE
-sE
-gn
-ZV
-bQ
-bQ
-Xn
-Bk
-ku
-Wr
-xQ
-xQ
-Wr
-ku
-YX
-Yc
-Di
-mr
-xt
-Bk
-"}
-(28,1,1) = {"
-KX
-Ff
-mk
-xF
-wR
-dp
-my
-KX
-ax
-YX
-dU
-YX
-ax
-Lm
-EX
-Qk
-XT
-YX
-Wr
-xQ
-xQ
-xQ
-xQ
-ku
-Wr
-Wr
-dl
-Wr
-Xn
-YX
-"}
-(29,1,1) = {"
-KX
-UZ
-ff
-xF
-ff
-yW
-mk
-mM
-dU
-dU
-dU
-YX
-YX
-dA
-XN
-sE
-Re
-YX
-ku
-wI
-xQ
-xQ
-wI
-xQ
-xQ
-Yc
-Wr
-Kd
-Wr
-Wr
-"}
-(30,1,1) = {"
-KX
-KX
-KX
-KX
-KX
-KX
-KX
-KX
-YX
-YX
-dU
-YX
-Bk
-Bk
-Bk
-Bk
-YX
-YX
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-xQ
-Di
-Wr
-bQ
-YX
-"}
diff --git a/_maps/RandomRuins/WasteRuins/wasteplanet_tradepost.dmm b/_maps/RandomRuins/WasteRuins/wasteplanet_tradepost.dmm
deleted file mode 100644
index 63cedb497f9..00000000000
--- a/_maps/RandomRuins/WasteRuins/wasteplanet_tradepost.dmm
+++ /dev/null
@@ -1,790 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"aj" = (
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/aimodule_harmless,
-/obj/effect/decal/cleanable/oil,
-/turf/open/floor/plating/rust,
-/area/ruin/unpowered)
-"bY" = (
-/obj/structure/closet/crate/engineering,
-/obj/effect/decal/cleanable/cobweb,
-/obj/machinery/power/terminal{
- dir = 8
- },
-/obj/item/stack/sheet/mineral/plasma/five,
-/turf/open/floor/pod/light,
-/area/ruin/unpowered)
-"ch" = (
-/obj/effect/decal/cleanable/plasma,
-/turf/open/floor/plating/rust,
-/area/ruin/unpowered)
-"cJ" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"cL" = (
-/obj/structure/cable{
- icon_state = "2-5"
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"em" = (
-/obj/structure/chair/plastic,
-/turf/open/floor/plating/rust,
-/area/ruin/unpowered)
-"en" = (
-/obj/machinery/power/port_gen/pacman,
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"fC" = (
-/obj/structure/rack,
-/obj/item/stack/wrapping_paper,
-/obj/effect/spawner/lootdrop/gambling,
-/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/plating/rust,
-/area/ruin/unpowered)
-"gy" = (
-/obj/machinery/suit_storage_unit/mining/eva,
-/obj/effect/decal/cleanable/cobweb,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/rust,
-/area/ruin/unpowered)
-"gA" = (
-/obj/effect/decal/cleanable/glass,
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"im" = (
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/donkpockets,
-/obj/effect/spawner/lootdrop/donkpockets,
-/obj/effect/spawner/lootdrop/mafia_outfit,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"ip" = (
-/obj/structure/chair/plastic{
- dir = 8
- },
-/turf/open/floor/plating/rust,
-/area/ruin/unpowered)
-"iy" = (
-/obj/structure/cable,
-/obj/structure/statue/sandstone/assistant,
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"kf" = (
-/obj/structure/ore_box,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/industrial/warning/full,
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"kF" = (
-/obj/structure/closet/crate/bin,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"kU" = (
-/obj/machinery/computer/helm,
-/turf/open/floor/pod/light,
-/area/ruin/unpowered)
-"kW" = (
-/obj/machinery/power/shuttle/engine/electric{
- dir = 4
- },
-/turf/open/floor/plating/rust,
-/area/ruin/unpowered)
-"mj" = (
-/obj/structure/fluff/oldturret,
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"mK" = (
-/obj/structure/marker_beacon,
-/turf/open/floor/plating/rust,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"np" = (
-/obj/structure/cable,
-/obj/machinery/power/floodlight,
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"nw" = (
-/obj/effect/decal/cleanable/plasma,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"nO" = (
-/obj/structure/barricade/wooden/crude,
-/obj/structure/window/fulltile,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"nV" = (
-/turf/closed/wall,
-/area/ruin/unpowered)
-"pc" = (
-/obj/structure/marker_beacon,
-/turf/open/floor/plating,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"pl" = (
-/obj/machinery/vending/snack,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"rJ" = (
-/obj/machinery/power/smes/shuttle/precharged{
- dir = 4
- },
-/obj/structure/window/reinforced/spawner/west,
-/turf/open/floor/pod/light,
-/area/ruin/unpowered)
-"sT" = (
-/obj/structure/rack,
-/obj/item/stack/wrapping_paper,
-/turf/open/floor/plating/rust,
-/area/ruin/unpowered)
-"sW" = (
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/gambling,
-/obj/effect/decal/cleanable/garbage,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"tl" = (
-/obj/structure/barricade/wooden/crude,
-/obj/structure/window/fulltile,
-/obj/effect/decal/cleanable/glass,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"tm" = (
-/obj/structure/table/reinforced,
-/obj/item/flashlight/lamp/green,
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/turf/open/floor/plating/rust,
-/area/ruin/unpowered)
-"tp" = (
-/turf/open/floor/pod/light,
-/area/ruin/unpowered)
-"ts" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/chair/plastic{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"tU" = (
-/obj/structure/closet/crate,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/industrial/warning/full,
-/obj/item/stack/sheet/mineral/plasma/five,
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"uc" = (
-/obj/machinery/door/airlock/shuttle,
-/turf/open/floor/pod/light,
-/area/ruin/unpowered)
-"un" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/closed/wall/mineral/titanium,
-/area/ruin/unpowered)
-"uL" = (
-/obj/structure/window/fulltile,
-/obj/structure/barricade/wooden/crude,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"wA" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/pod/light,
-/area/ruin/unpowered)
-"wB" = (
-/obj/effect/decal/cleanable/garbage,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"wM" = (
-/obj/item/bot_assembly/medbot,
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"yd" = (
-/obj/structure/statue/sandstone/assistant,
-/obj/structure/cable{
- icon_state = "4-9"
- },
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"ym" = (
-/turf/open/floor/plating/rust,
-/area/ruin/unpowered)
-"yI" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/chair/plastic{
- dir = 8
- },
-/turf/open/floor/plating/rust,
-/area/ruin/unpowered)
-"ze" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"zq" = (
-/obj/machinery/modular_computer/console/preset/civilian,
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/pod/light,
-/area/ruin/unpowered)
-"zY" = (
-/obj/structure/closet/crate,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/gun/ballistic/revolver/detective,
-/turf/open/floor/pod/light,
-/area/ruin/unpowered)
-"Ag" = (
-/obj/effect/decal/cleanable/oil,
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"Ba" = (
-/obj/structure/door_assembly/door_assembly_highsecurity,
-/obj/structure/cable{
- icon_state = "6-8"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/unpowered)
-"BE" = (
-/obj/structure/door_assembly/door_assembly_hatch,
-/obj/structure/cable{
- icon_state = "1-6"
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"Cf" = (
-/obj/structure/rack,
-/obj/item/stack/wrapping_paper,
-/obj/effect/decal/cleanable/garbage,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"Cl" = (
-/obj/mecha/working/ripley/cargo,
-/obj/effect/turf_decal/industrial/warning/full,
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"CC" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/rust,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"De" = (
-/turf/template_noop,
-/area/template_noop)
-"Eg" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/chair/comfy/shuttle{
- dir = 1
- },
-/turf/open/floor/pod/light,
-/area/ruin/unpowered)
-"Fc" = (
-/obj/structure/door_assembly/door_assembly_hatch,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"Ga" = (
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"Gg" = (
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"Ha" = (
-/obj/structure/table/wood/poker,
-/obj/item/storage/bag/money/vault,
-/turf/open/floor/carpet/red,
-/area/ruin/unpowered)
-"Hm" = (
-/obj/effect/decal/fakelattice,
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"IN" = (
-/obj/structure/grille,
-/obj/effect/spawner/structure/window/shuttle,
-/turf/open/floor/pod/light,
-/area/ruin/unpowered)
-"IU" = (
-/obj/machinery/power/floodlight,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"IZ" = (
-/obj/effect/decal/cleanable/robot_debris,
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"Jh" = (
-/obj/machinery/power/terminal{
- dir = 8
- },
-/turf/open/floor/pod/light,
-/area/ruin/unpowered)
-"Lm" = (
-/turf/closed/wall/mineral/titanium,
-/area/ruin/unpowered)
-"Ln" = (
-/turf/open/floor/carpet/red,
-/area/ruin/unpowered)
-"LG" = (
-/obj/effect/turf_decal/industrial/warning/full,
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"LO" = (
-/obj/structure/closet/crate,
-/obj/effect/turf_decal/industrial/warning/full,
-/obj/item/stack/sheet/mineral/plasma/five,
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"Ma" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/oil,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"MR" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"Nl" = (
-/obj/effect/decal/cleanable/greenglow,
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"OC" = (
-/obj/structure/chair/comfy/shuttle{
- dir = 1
- },
-/turf/open/floor/pod/light,
-/area/ruin/unpowered)
-"OV" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/rust,
-/area/ruin/unpowered)
-"OY" = (
-/obj/structure/chair/office{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"OZ" = (
-/obj/structure/cable{
- icon_state = "4-10"
- },
-/turf/open/floor/plating/rust,
-/area/ruin/unpowered)
-"PS" = (
-/obj/structure/rack,
-/obj/effect/decal/cleanable/garbage,
-/obj/item/circuitboard/machine/thermomachine,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"Qp" = (
-/obj/machinery/holopad,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"QD" = (
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/gambling,
-/obj/effect/decal/cleanable/garbage,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/wrench,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"Rc" = (
-/obj/structure/chair/plastic{
- dir = 4
- },
-/turf/open/floor/plating/rust,
-/area/ruin/unpowered)
-"RB" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/effect/decal/cleanable/blood/old,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/carpet/red,
-/area/ruin/unpowered)
-"RE" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
- icon_state = "2-9"
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"Sn" = (
-/turf/open/floor/plating,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"SE" = (
-/obj/effect/decal/cleanable/food/tomato_smudge,
-/turf/open/floor/plating/rust,
-/area/ruin/unpowered)
-"Tk" = (
-/turf/open/floor/plating/rust,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"Tl" = (
-/obj/effect/decal/cleanable/glass,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"TB" = (
-/obj/structure/closet/crate/miningcar,
-/obj/effect/turf_decal/industrial/warning/full,
-/obj/item/stack/sheet/mineral/plasma,
-/obj/item/stack/sheet/mineral/plasma,
-/obj/item/stack/sheet/mineral/plasma,
-/obj/item/stack/sheet/mineral/plasma,
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"Ue" = (
-/turf/closed/wall/rust,
-/area/ruin/unpowered)
-"VU" = (
-/mob/living/simple_animal/pet/cat/kitten,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"Xc" = (
-/obj/structure/filingcabinet/chestdrawer,
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"Ya" = (
-/turf/open/floor/plating/asteroid/wasteplanet,
-/area/overmap_encounter/planetoid/wasteplanet/explored)
-"YH" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/chair/plastic,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"Zq" = (
-/obj/structure/table/wood/poker,
-/obj/item/stack/sheet/mineral/plasma,
-/obj/item/storage/pill_bottle/zoom,
-/turf/open/floor/carpet/red,
-/area/ruin/unpowered)
-
-(1,1,1) = {"
-De
-De
-De
-De
-De
-Ue
-Ue
-Ue
-nV
-nV
-nV
-mj
-Ya
-Ya
-Ya
-Ya
-Ya
-De
-De
-De
-"}
-(2,1,1) = {"
-De
-De
-De
-De
-De
-Ue
-fC
-ch
-im
-Ga
-nV
-IZ
-Ya
-pc
-MR
-Tk
-Tk
-Tk
-mK
-De
-"}
-(3,1,1) = {"
-De
-De
-De
-De
-De
-Ue
-sT
-wB
-QD
-Gg
-tl
-wM
-Ya
-Lm
-CC
-kW
-kW
-MR
-Lm
-De
-"}
-(4,1,1) = {"
-De
-De
-De
-De
-De
-Ue
-sW
-Ga
-Cf
-OV
-tl
-Ya
-Ya
-un
-Lm
-rJ
-rJ
-Lm
-Lm
-De
-"}
-(5,1,1) = {"
-Ue
-uL
-uL
-uL
-Ue
-nV
-PS
-Tl
-aj
-SE
-Ue
-Ya
-Ya
-Lm
-Lm
-bY
-Jh
-Lm
-Lm
-De
-"}
-(6,1,1) = {"
-nV
-cJ
-Rc
-ts
-ym
-nV
-Ma
-Gg
-cJ
-ym
-Ue
-np
-Ya
-Tk
-Lm
-zY
-wA
-un
-CC
-De
-"}
-(7,1,1) = {"
-uL
-YH
-Gg
-Qp
-Gg
-Fc
-Gg
-VU
-cJ
-Gg
-nV
-iy
-Ya
-Tk
-uc
-tp
-tp
-uc
-Tk
-De
-"}
-(8,1,1) = {"
-uL
-em
-Gg
-OV
-cJ
-Ue
-em
-nw
-cL
-ze
-BE
-Hm
-Hm
-Tk
-Lm
-kU
-Eg
-Lm
-Tk
-De
-"}
-(9,1,1) = {"
-nV
-OV
-yI
-ip
-cJ
-Ue
-tm
-OZ
-cJ
-kF
-nV
-yd
-Ya
-Tk
-Lm
-zq
-OC
-Lm
-Tk
-De
-"}
-(10,1,1) = {"
-nV
-uL
-uL
-uL
-Ue
-Ue
-Ue
-Ba
-nV
-nV
-nV
-IU
-Ya
-CC
-Lm
-IN
-IN
-Lm
-CC
-De
-"}
-(11,1,1) = {"
-De
-De
-De
-De
-De
-Ue
-gy
-Gg
-RE
-en
-nV
-Ya
-Ya
-mK
-Tk
-Tk
-CC
-Sn
-pc
-De
-"}
-(12,1,1) = {"
-De
-De
-De
-De
-De
-Ue
-cJ
-Ln
-RB
-Gg
-nO
-Ya
-Ya
-Ya
-Hm
-Ya
-Ya
-Hm
-De
-De
-"}
-(13,1,1) = {"
-De
-De
-De
-De
-De
-nV
-pl
-Ha
-Zq
-cJ
-nO
-gA
-Ya
-Ya
-tU
-LO
-LO
-TB
-Ya
-De
-"}
-(14,1,1) = {"
-De
-De
-De
-De
-De
-nV
-Xc
-cJ
-OY
-ym
-Ue
-Ya
-Nl
-Ya
-Cl
-LO
-kf
-LG
-Ag
-De
-"}
-(15,1,1) = {"
-De
-De
-De
-De
-De
-nV
-nV
-nV
-Ue
-Ue
-Ue
-mj
-Ya
-Ya
-Ya
-Ya
-De
-De
-De
-De
-"}
diff --git a/_maps/RandomRuins/WasteRuins/wasteplanet_unhonorable.dmm b/_maps/RandomRuins/WasteRuins/wasteplanet_unhonorable.dmm
index 194e34a6a83..ddbaaf26271 100644
--- a/_maps/RandomRuins/WasteRuins/wasteplanet_unhonorable.dmm
+++ b/_maps/RandomRuins/WasteRuins/wasteplanet_unhonorable.dmm
@@ -375,7 +375,7 @@
/turf/open/floor/plating/rust,
/area/ruin/wasteplanet/wasteplanet_radiation/maint)
"vV" = (
-/obj/item/clothing/head/helmet/r_trapper{
+/obj/item/clothing/head/helmet{
pixel_x = 1;
pixel_y = 7
},
diff --git a/_maps/configs/independent_beluga.json b/_maps/configs/independent_beluga.json
index 64230b0dc79..6d7926a8e84 100644
--- a/_maps/configs/independent_beluga.json
+++ b/_maps/configs/independent_beluga.json
@@ -13,7 +13,6 @@
],
"starting_funds": 4000,
"limit": 2,
- "roundstart": true,
"job_slots": {
"Captain": {
"outfit": "/datum/outfit/job/independent/captain",
diff --git a/_maps/configs/independent_boyardee.json b/_maps/configs/independent_boyardee.json
deleted file mode 100644
index f099b23952e..00000000000
--- a/_maps/configs/independent_boyardee.json
+++ /dev/null
@@ -1,42 +0,0 @@
-{
- "$schema": "https://raw.githubusercontent.com/shiptest-ss13/Shiptest/master/_maps/ship_config_schema.json",
- "map_name": "Boyardee-class Entertainment Vessel",
- "prefix": "ISV",
- "description": "Named for an ancient Solarian folk hero known for providing food to the masses shortly after the Night of Fire, the Boyardee-class is a remarkably popular civilian vessel, and a welcome sight to any weary travelers tired of synthesized tap water and stale rations for breakfast, lunch and dinner every day. The Boyardee-class features a full bar, an advanced hydroponics setup, a large kitchen and an expansive seating area, perfect for serving hungry customers and thirsty colonists. During the early days of the Syndicate, associated organizations would often create their own retrofits of the Boyardee to serve as recruiting centers or “shore-leave” posts, though these variants have mostly ceased to exist in the Frontier.",
- "tags": [
- "Service",
- "Botany",
- "RP Focus"
- ],
- "namelists": [
- "GENERAL",
- "SPACE",
- "MERCANTILE"
- ],
- "starting_funds": 5000,
- "map_short_name": "Boyardee-class",
- "map_path": "_maps/shuttles/independent/independent_boyardee.dmm",
- "job_slots": {
- "Bartender": {
- "outfit": "/datum/outfit/job/independent/bartender",
- "slots": 1
- },
- "Cook": {
- "outfit": "/datum/outfit/job/independent/cook",
- "slots": 3
- },
- "Botanist": {
- "outfit": "/datum/outfit/job/independent/botanist",
- "slots": 2
- },
- "Janitor": {
- "outfit": "/datum/outfit/job/independent/janitor",
- "slots": 1
- },
- "Waiter": {
- "outfit": "/datum/outfit/job/independent/assistant/waiter",
- "slots": 2
- }
- },
- "enabled": true
-}
diff --git a/_maps/configs/independent_dwayne.json b/_maps/configs/independent_dwayne.json
index 1cd4a3683f0..64f68af6875 100644
--- a/_maps/configs/independent_dwayne.json
+++ b/_maps/configs/independent_dwayne.json
@@ -15,7 +15,6 @@
"Mining",
"Generalist"
],
- "roundstart": true,
"limit": 1,
"job_slots": {
"Captain": {
diff --git a/_maps/configs/independent_lagoon.json b/_maps/configs/independent_lagoon.json
index 017850eef55..313b4cd71d9 100644
--- a/_maps/configs/independent_lagoon.json
+++ b/_maps/configs/independent_lagoon.json
@@ -13,6 +13,7 @@
],
"map_short_name": "Lagoon-class",
"map_path": "_maps/shuttles/independent/independent_lagoon.dmm",
+ "unique_ship_access": false,
"starting_funds": 3000,
"job_slots": {
"Captain": {
diff --git a/_maps/configs/independent_mudskipper.json b/_maps/configs/independent_mudskipper.json
index 1dfd48861d1..9f4cf32e0cf 100644
--- a/_maps/configs/independent_mudskipper.json
+++ b/_maps/configs/independent_mudskipper.json
@@ -14,7 +14,6 @@
"SPACE"
],
"map_path": "_maps/shuttles/independent/independent_mudskipper.dmm",
- "roundstart": true,
"limit": 2,
"starting_funds": 1500,
"job_slots": {
diff --git a/_maps/configs/independent_rigger.json b/_maps/configs/independent_rigger.json
index 3550773cc0e..e36b57ca750 100644
--- a/_maps/configs/independent_rigger.json
+++ b/_maps/configs/independent_rigger.json
@@ -15,7 +15,6 @@
"Generalist"
],
"map_path": "_maps/shuttles/independent/independent_rigger.dmm",
- "roundstart": true,
"limit": 1,
"job_slots": {
"Captain": {
diff --git a/_maps/configs/independent_shetland.json b/_maps/configs/independent_shetland.json
index 344f9a99ee5..de5873f80d7 100644
--- a/_maps/configs/independent_shetland.json
+++ b/_maps/configs/independent_shetland.json
@@ -14,7 +14,6 @@
],
"map_path": "_maps/shuttles/independent/independent_shetland.dmm",
"map_id": "independent_shetland",
- "roundstart": true,
"job_slots": {
"Captain": {
"outfit": "/datum/outfit/job/independent/captain/cheap",
diff --git a/_maps/configs/independent_sunskipper.json b/_maps/configs/independent_sunskipper.json
new file mode 100644
index 00000000000..08a4a56f9fd
--- /dev/null
+++ b/_maps/configs/independent_sunskipper.json
@@ -0,0 +1,36 @@
+{
+ "$schema": "https://raw.githubusercontent.com/shiptest-ss13/Shiptest/master/_maps/ship_config_schema.json",
+ "map_name": "Sunskipper-class Culinary Vessel",
+ "prefix": "ISV",
+ "namelists": ["CRUISE", "NATURAL"],
+ "map_short_name": "Sunskipper-class",
+ "map_path": "_maps/shuttles/independent/independent_sunskipper.dmm",
+ "description": "The Sunskipper-class is a state-of-the-art culinary vessel found in the frontier. It's name is a wordplay between a Kalixcian species of butterfly and ship's unique solar-powered batteries. The Sunskipper is welcomed with open arms by weary spacers of greater paycheks, who are fatigued by the monotony of their everyday meals. The ship features a self-sustaining kitchen with hydroponics and a large, deluxe dining hall, designed to serve starved travelers. It also comes with a fully-stocked bar area that allows them to drink their troubles away, if even for a brief moment.",
+ "tags": [
+ "RP Focus",
+ "Service",
+ "Specialist"
+ ],
+ "starting_funds": 3000,
+ "limit": 1,
+ "job_slots": {
+ "Manager": {
+ "outfit": "/datum/outfit/job/independent/captain/manager",
+ "slots": 1,
+ "officer": true
+ },
+ "Bartender": {
+ "outfit": "/datum/outfit/job/independent/bartender/disarmed",
+ "slots": 1
+ },
+ "Cook": {
+ "outfit": "/datum/outfit/job/independent/cook",
+ "slots": 2
+ },
+ "Waiter": {
+ "outfit": "/datum/outfit/job/independent/assistant/waiter",
+ "slots": 2
+ }
+ },
+ "enabled": true
+}
diff --git a/_maps/configs/minutemen_vela.json b/_maps/configs/minutemen_vela.json
deleted file mode 100644
index 699fed22730..00000000000
--- a/_maps/configs/minutemen_vela.json
+++ /dev/null
@@ -1,54 +0,0 @@
- {
- "$schema": "https://raw.githubusercontent.com/shiptest-ss13/Shiptest/master/_maps/ship_config_schema.json",
- "map_name": "Vela-class Industrial Cruiser",
- "prefix": "CMGSV",
- "namelists": ["GENERAL", "MYTHOLOGICAL", "BEASTS"],
- "description": "The Vela-Class is the designation for a series of semi-modular industrial cruisers created by the CLIP Minutemen in the early 440s. While the original design was created almost exclusively for extracting minerals from asteroid belts, modern examples tend to take on a multi-mission role, with the most common configuration being a mech hanger, and research pod. The ship itself often sees long deployments that encourage modification, leading to Velas taking on a personality as their crews leave their mark.",
- "tags": [
- "Robotics",
- "Construction",
- "Science"
- ],
- "map_short_name": "Vela-class",
- "starting_funds": 1000,
- "map_path": "_maps/shuttles/minutemen/minutemen_vela.dmm",
- "limit": 1,
- "job_slots": {
- "Captain": {
- "outfit": "/datum/outfit/job/clip/minutemen/captain",
- "officer": true,
- "slots": 1
- },
- "Foreman": {
- "outfit": "/datum/outfit/job/clip/ce",
- "officer": true,
- "slots": 1
- },
- "First Officer": {
- "outfit": "/datum/outfit/job/clip/first_officer",
- "officer": true,
- "slots": 1
- },
- "Mech Pilot": {
- "outfit": "/datum/outfit/job/clip/minutemen/vehicle_pilot",
- "slots": 4
- },
- "Minuteman": {
- "outfit": "/datum/outfit/job/clip/minutemen/grunt",
- "slots": 2
- },
- "Engineer": {
- "outfit": "/datum/outfit/job/clip/mechanic",
- "slots": 2
- },
- "Researcher": {
- "outfit": "/datum/outfit/job/clip/scientist",
- "slots": 2
- },
- "Deckhand": {
- "outfit": "/datum/outfit/job/clip/minutemen/deckhand",
- "slots": 1
- }
- },
- "enabled": true
-}
diff --git a/_maps/configs/nanotrasen_delta.json b/_maps/configs/nanotrasen_delta.json
index f367497a820..57e920f77d6 100644
--- a/_maps/configs/nanotrasen_delta.json
+++ b/_maps/configs/nanotrasen_delta.json
@@ -1,7 +1,7 @@
{
"$schema": "https://raw.githubusercontent.com/shiptest-ss13/Shiptest/master/_maps/ship_config_schema.json",
"map_name": "Delta-class Frigate",
- "prefix": "NTSV",
+ "prefix": "NSSV",
"namelists": [
"GENERAL",
"SPACE",
@@ -10,7 +10,7 @@
"NANOTRASEN"
],
"map_short_name": "Delta-class",
- "description": "The Delta is a compact and advanced mining ship that supplements its comparatively small organic crew with a full suite of robotics facilities, including an AI and a host of mining and logistics drones and cyborgs. While much-loved by Nanotrasen logisticians for their minimal upkeep and high cost efficiency, Deltas are far less popular among the crews chosen to operate them, as they are severely lacking in crew accommodations and defensive armament.",
+ "description": "The Delta is a compact and advanced mining ship that supplements its comparatively small organic crew with a full suite of robotics facilities, including an AI and a host of mining and logistics drones and cyborgs. The Delta's low logistical footprint has thoroughly endeared it to N+S Logistics' upper management, but its cramped accomodations and lackluster defensive armament make it distinctly unpopular with the company's spacefaring employees.",
"tags": [
"Science",
"Robotics"
@@ -19,11 +19,11 @@
"starting_funds": 4000,
"job_slots": {
"Captain": {
- "outfit": "/datum/outfit/job/nanotrasen/captain",
+ "outfit": "/datum/outfit/job/nanotrasen/captain/ns",
"officer": true,
"slots": 1
},
- "Roboticist": {
+ "Robotics Contractor": {
"outfit": "/datum/outfit/job/nanotrasen/roboticist",
"slots": 2
},
@@ -31,8 +31,8 @@
"outfit": "/datum/outfit/job/nanotrasen/engineer",
"slots": 1
},
- "Assistant": {
- "outfit": "/datum/outfit/job/nanotrasen/assistant",
+ "Deckhand": {
+ "outfit": "/datum/outfit/job/nanotrasen/cargo_tech",
"slots": 3
}
},
diff --git a/_maps/configs/nanotrasen_skipper.json b/_maps/configs/nanotrasen_skipper.json
index 9ced4c28038..2f61c3afa60 100644
--- a/_maps/configs/nanotrasen_skipper.json
+++ b/_maps/configs/nanotrasen_skipper.json
@@ -17,7 +17,6 @@
"Mining"
],
"starting_funds": 4500,
- "roundstart": true,
"job_slots": {
"Captain": {
"outfit": "/datum/outfit/job/nanotrasen/captain",
diff --git a/_maps/configs/pirate_ember.json b/_maps/configs/pirate_ember.json
deleted file mode 100644
index 29a45c64cd6..00000000000
--- a/_maps/configs/pirate_ember.json
+++ /dev/null
@@ -1,70 +0,0 @@
-{
- "$schema": "https://raw.githubusercontent.com/shiptest-ss13/Shiptest/master/_maps/ship_config_schema.json",
- "map_name": "Ember-class Pirate Raider",
- "prefix": "ISV",
- "namelists": [
- "PIRATES",
- "BRITISH_NAVY"
- ],
- "map_short_name": "Ember-class",
- "map_path": "_maps/shuttles/pirate/pirate_ember.dmm",
- "description": "The Ember class is a red flag in any sector. A giant, slow moving, safety hazard of a ship, makeshift in almost every regard, finds itself favored amongst the most ruthless and cutthroat of pirates and scoundrels galaxy-wide. Simply to be willing to exist on one of these ships shows a hardiness not typically found in most spacers. The best way to deal with Ember vessels is to simply give them a wide berth.",
- "tags": [
- "Combat",
- "Riot",
- "Combat",
- "Engineering"
- ],
- "limit": 1,
- "job_slots": {
- "Captain": {
- "outfit": "/datum/outfit/job/frontiersmen/captain",
- "officer": true,
- "slots": 1
- },
- "Bridge Officer": {
- "outfit": "/datum/outfit/job/frontiersmen/hop",
- "officer": true,
- "slots": 2
- },
- "Shipswain": {
- "outfit": "/datum/outfit/job/frontiersmen/hos",
- "officer": true,
- "slots": 1
- },
- "Senior Sapper" :{
- "outfit": "/datum/outfit/job/frontiersmen/ce",
- "officer": true,
- "slots": 1
- },
- "Cargo Tech": {
- "outfit": "/datum/outfit/job/frontiersmen/cargo_tech",
- "slots": 2
- },
- "Aidman": {
- "outfit": "/datum/outfit/job/frontiersmen/doctor",
- "slots": 1
- },
- "Sapper": {
- "outfit": "/datum/outfit/job/frontiersmen/engineer",
- "slots": 2
- },
- "Atmospheric Technician": {
- "outfit": "/datum/outfit/job/frontiersmen/atmos",
- "slots": 1
- },
- "Steward": {
- "outfit": "/datum/outfit/job/frontiersmen/cook",
- "slots": 1
- },
- "Boarder": {
- "outfit": "/datum/outfit/job/frontiersmen/security",
- "slots": 3
- },
- "Rookie": {
- "outfit": "/datum/outfit/job/frontiersmen/assistant",
- "slots": 3
- }
- },
- "enabled": false
-}
diff --git a/_maps/configs/pirate_libertatia.json b/_maps/configs/pirate_libertatia.json
index f61e421b095..4ed42674651 100644
--- a/_maps/configs/pirate_libertatia.json
+++ b/_maps/configs/pirate_libertatia.json
@@ -12,6 +12,7 @@
"PIRATES",
"NATURAL_AGGRESSIVE"
],
+ "space_spawn": true,
"job_slots": {
"Captain": {
"outfit": "/datum/outfit/job/independent/captain/pirate",
diff --git a/_maps/configs/pirate_noderider.json b/_maps/configs/pirate_noderider.json
index 1341a619763..7863a9d9689 100644
--- a/_maps/configs/pirate_noderider.json
+++ b/_maps/configs/pirate_noderider.json
@@ -15,6 +15,7 @@
"Riot",
"Combat"
],
+ "space_spawn": true,
"job_slots": {
"Command Node": {
"outfit": "/datum/outfit/job/independent/captain/pirate/jupiter",
diff --git a/_maps/configs/pirate_tortuga.json b/_maps/configs/pirate_tortuga.json
new file mode 100644
index 00000000000..702185c0238
--- /dev/null
+++ b/_maps/configs/pirate_tortuga.json
@@ -0,0 +1,46 @@
+{
+ "$schema": "https://raw.githubusercontent.com/shiptest-ss13/Shiptest/master/_maps/ship_config_schema.json",
+ "map_name": "Tortuga-class Converted Cargo Freighter",
+ "prefix": "ISV",
+ "namelists": [
+ "PIRATES",
+ "BRITISH_NAVY"
+ ],
+ "map_short_name": "Tortuga-class",
+ "map_path": "_maps/shuttles/pirate/pirate_tortuga.dmm",
+ "description": "Originally a cargo transport vessel, the Tortuga is an improvised combat vessel used by the Frontiersmen fleet. Civilian transports are modified with shuttle handling facilities, and asteroid rubble is belted to the exterior of the hull as a form of cheap improvised armor and concealment. The Tortuga serves a dual purpose as a reconnaissance element and a vessel capable of establishing forward bases within a sector. While the Brawler-class shuttle carried by the Tortuga offers a surprising degree of speed and range to its boarding parties, the Tortuga itself is sluggish and nearly helpless without its shuttle.",
+ "tags": [
+ "Combat",
+ "Subshuttle"
+ ],
+ "limit": 1,
+ "job_slots": {
+ "Captain": {
+ "outfit": "/datum/outfit/job/frontiersmen/captain",
+ "officer": true,
+ "slots": 1
+ },
+ "Deck Boss": {
+ "outfit": "/datum/outfit/job/frontiersmen/hos",
+ "officer": true,
+ "slots": 1
+ },
+ "Surgeon": {
+ "outfit": "/datum/outfit/job/frontiersmen/doctor",
+ "slots": 1
+ },
+ "Mechanic": {
+ "outfit": "/datum/outfit/job/frontiersmen/engineer",
+ "slots": 1
+ },
+ "Boarder": {
+ "outfit": "/datum/outfit/job/frontiersmen/security",
+ "slots": 2
+ },
+ "Rookie": {
+ "outfit": "/datum/outfit/job/frontiersmen/assistant",
+ "slots": 2
+ }
+ },
+ "enabled": false
+}
diff --git a/_maps/configs/syndicate_gorlex_hyena.json b/_maps/configs/syndicate_gorlex_hyena.json
index 7b72cf208e0..a835e00b1eb 100644
--- a/_maps/configs/syndicate_gorlex_hyena.json
+++ b/_maps/configs/syndicate_gorlex_hyena.json
@@ -18,25 +18,25 @@
"map_path": "_maps/shuttles/syndicate/syndicate_gorlex_hyena.dmm",
"job_slots": {
"Captain": {
- "outfit": "/datum/outfit/job/syndicate/captain/gorlex",
+ "outfit": "/datum/outfit/job/syndicate/captain/ngr",
"officer": true,
"slots": 1
},
"Foreman": {
- "outfit": "/datum/outfit/job/syndicate/ce/gorlex/ngr",
+ "outfit": "/datum/outfit/job/syndicate/ce/ngr",
"officer": true,
"slots": 1
},
"Mechanic": {
- "outfit": "/datum/outfit/job/syndicate/engineer/gorlex",
+ "outfit": "/datum/outfit/job/syndicate/engineer/ngr",
"slots": 1
},
"Wrecker": {
- "outfit": "/datum/outfit/job/syndicate/miner/gorlex",
+ "outfit": "/datum/outfit/job/syndicate/miner/ngr",
"slots": 2
},
- "Junior Agent": {
- "outfit": "/datum/outfit/job/syndicate/assistant/gorlex/ngr",
+ "Initiate": {
+ "outfit": "/datum/outfit/job/syndicate/assistant/ngr",
"slots": 2
}
},
diff --git a/_maps/configs/syndicate_gorlex_komodo.json b/_maps/configs/syndicate_gorlex_komodo.json
index 73ce9263001..2bc7a358b75 100644
--- a/_maps/configs/syndicate_gorlex_komodo.json
+++ b/_maps/configs/syndicate_gorlex_komodo.json
@@ -33,7 +33,7 @@
"slots": 1
},
"Mechanic": {
- "outfit": "/datum/outfit/job/syndicate/miner/gorlex",
+ "outfit": "/datum/outfit/job/syndicate/engineer/gorlex",
"slots": 1
},
"Trooper": {
@@ -45,7 +45,7 @@
"slots": 2
},
"Bridge Officer": {
- "outfit": "/datum/outfit/job/syndicate/head_of_personnel",
+ "outfit": "/datum/outfit/job/syndicate/head_of_personnel/cybersun",
"slots": 1
}
},
diff --git a/_maps/map_catalogue.txt b/_maps/map_catalogue.txt
index f3fbe957688..5d941ef7fd6 100644
--- a/_maps/map_catalogue.txt
+++ b/_maps/map_catalogue.txt
@@ -41,54 +41,10 @@ Find the key for using this catalogue in "map_catalogue_key.txt"
JungleRuins:
- File Name = "_maps\RandomRuins\JungleRuins\jungle_botany.dmm"
- Size = (x = 20)(y = 12)(z = 1)
- Tags = "Minor Combat Challenge", "Medium Loot", "Liveable"
-
- File Name = "_maps\RandomRuins\JungleRuins\jungle_nest.dmm"
- Size = (x = 25)(y = 15)(z = 1)
- Tags = "Boss Combat Challenge", "Medium Loot", "Liveable"
-
- File Name = "_maps\RandomRuins\JungleRuins\jungle_pirate.dmm"
- Size = (x = 20)(y = 15)(z = 1)
- Tags = "Boss Combat Challenge", "Major Loot", "Liveable", "Antag Gear"
-
- File Name = "_maps\RandomRuins\JungleRuins\jungle_seedling.dmm"
- Size = (x = 15)(y = 15)(z = 1)
- Tags = "Medium Combat Challenge", "Medium Loot", "Liveable"
-
- File Name = "_maps\RandomRuins\JungleRuins\jungle_surface_coffinepirate.dmm"
- Size = (x = 14)(y = 15)(z = 1)
- Tags = "No Combat", "Minor Loot", "Liveable"
-
- File Name = "_maps\RandomRuins\JungleRuins\jungle_surface_ikea_ai.dmm"
- Size = (x = 11)(y = 7)(z = 1)
- Tags = "No Combat", "Medium Loot", "Liveable"
-
- File Name = "_maps\RandomRuins\JungleRuins\jungle_surface_ninjashrine.dmm"
- Size = (x = 14)(y = 14)(z = 1)
- Tags = "Boss Combat Challenge", "Medium Loot", "Liveable", "Antag Gear"
-
- File Name = "_maps\RandomRuins\JungleRuins\jungle_surface_roommates.dmm"
- Size = (x = 9)(y = 9)(z = 1)
- Tags = "No Combat", "Minor Loot", "Liveable"
-
- File Name = "_maps\RandomRuins\JungleRuins\jungle_surface_bombmakers_cabin.dmm"
- Size = (x = 15)(y = 15)(z = 1)
- Tags = "Medium Combat", "Major Loot", "Liveable", "Antag Gear"
-
- File Name = "_maps\RandomRuins\JungleRuins\jungle_surface_weed_shack.dmm"
- Size = (x = 16)(y = 17)(z = 1)
- Tags = "No Combat", "Medium Loot", "Liveable"
-
File Name = "_maps\RandomRuins\JungleRuins\jungle_syndicate.dmm"
Size = (x = 15)(y = 15)(z = 1)
Tags = "Medium Combat Challenge", "Medium Loot", "Liveable", "Antag Gear"
- File Name = "_maps\RandomRuins\JungleRuins\jungle_village.dmm"
- Size = (x = 15)(y = 15)(z = 1)
- Tags = "No Combat", "Minor Loot", "Liveable"
-
File Name = "_maps\RandomRuins\JungleRuins\jungle_interceptor.dmm"
Size = (x = 53)(y = 51)(z = 1)
Tags = "No Combat", "Medium Loot", Liveable"
@@ -101,10 +57,6 @@ Find the key for using this catalogue in "map_catalogue_key.txt"
Size = (x = 70)(y = 66)(z = 1)
Tags = "Medium Combat Challenge", "Medium Loot", Liveable", "Hazardous"
- File Name = "_maps\RandomRuins\JungleRuins\jungle_pizzawave.dmm"
- Size = (x = 15)(y = 15)(z = 1)
- Tags = "No Combat", "Minor Loot", Liveable"
-
File Name "_maps\RandomRuins\JungleRuins\jungle_bombed_starport
Size = (x = 100)(y = 75)(z = 1)
Tags = "Medium Combat Challenge", "Major Loot", "Hazardous", "Liveable"
@@ -118,70 +70,30 @@ Find the key for using this catalogue in "map_catalogue_key.txt"
Tags = "Medium Combat Challenge", "Medium Loot", "Antag Gear", "Necropolis Loot", "Liveable"
LavaRuins:
- File Name = "_maps\RandomRuins\LavaRuins\lavaland_biodome_beach.dmm"
- Size = (x = 30)(y = 30)(z = 1)
- Tags = "No Combat", "Medium Loot", "Shelter"
-
- File Name = "_maps\RandomRuins\LavaRuins\lavaland_surface_SPOOKYCRASH.dmm"
- Size = (x = 11)(y = 16)(z = 1)
- Tags = "Minor Combat Challenge", "Medium Loot", "Inhospitable"
-
- File Name = "_maps\RandomRuins\LavaRuins\lavaland_surface_ashwalker_shrine.dmm"
- Size = (x = 48)(y = 50)(z = 1)
- Tags = "No Combat", "Minor Loot", "Inhospitable"
+ File Name = "_maps\RandomRuins\LavaRuins\lavaland_surface_buried_shrine.dmm"
+ Size = (x = 67)(y = 55)(z = 1)
+ Tags = "Medium Combat", "Medium Loot", "Hazardous", "Lava", "Inhospitable"
File Name = "_maps\RandomRuins\LavaRuins\lavaland_surface_biodome_winter.dmm"
- Size = (x = 30)(y = 30)(z = 1)
- Tags = "Minor Combat Challenge", "Minor Loot", "Shelter"
-
- File Name = "_maps\RandomRuins\LavaRuins\lavaland_surface_comm_outpost.dmm"
- Size = (x = 13)(y = 14)(z = 1)
- Tags = "Medium Combat Challenge", "Medium Loot", "Antag Gear", "Shelter"
-
- File Name = "_maps\RandomRuins\LavaRuins\lavaland_surface_dwarffortress.dmm"
- Size = (x = 20)(y = 18)(z = 1)
- Tags = "Medium Combat Challenge", "Minor Loot Level", "Inhospitable"
+ Size = (x = 46)(y = 42)(z = 1)
+ Tags = "Medium Combat Challenge", "Medium Loot", "Shelter"
File Name = "_maps\RandomRuins\LavaRuins\lavaland_surface_elephant_graveyard.dmm"
Size = (x = 29)(y = 35)(z = 1)
Tags = "No Combat", "Minor Loot", "Hazardous", "Inhospitable"
- File Name = "_maps\RandomRuins\LavaRuins\lavaland_surface_hierophant.dmm"
- Size = (x = 23)(y = 23)(z = 1)
- Tags = "Boss Combat Challenge", "Minor Loot", "Megafauna", "Inhospitable"
-
- File Name = "_maps\RandomRuins\LavaRuins\lavaland_surface_pizzaparty.dmm"
- Size = (x = 18)(y = 18)(z = 1)
- Tags = "No Combat", "Minor Loot", "Hazardous", "Inhospitable"
-
- File Name = "_maps\RandomRuins\LavaRuins\lavaland_surface_random_ripley.dmm"
- Size = (x = 5)(y = 5)(z = 1)
- Tags = "No Combat", "Medium Loot", "Inhospitable"
-
- File Name = "_maps\RandomRuins\LavaRuins\lavaland_surface_sloth.dmm"
- Size = (x = 50)(y = 10)(z = 1)
- Tags = "Mark", "No Combat", "Minor Loot", "Shelter", "Lava"
-
- File Name = "_maps\RandomRuins\LavaRuins\lavaland_surface_survivalpod.dmm"
- Size = (x = 10)(y = 11)(z = 1)
- Tags = "No Combat", "Minor Loot", "Shelter"
-
- File Name = "_maps\RandomRuins\LavaRuins\lavaland_surface_xeno_nest.dmm"
- Size = (x = 43)(y = 30)(z = 1)
- Tags = "Boss Combat Challenge", "Medium Loot", "Inhospitable"
-
- File Name = "_maps\RandomRuin\LavaRuins\lavaland_surface_crashed_pinnance"
- Size = (x = 30)(y = 30)(z = 1)
- Tags = "No combat" "Minor loot" "Inhospitable"
-
- File Name = "_maps\RandomRuins\LavaRuins\codelab.dmm"
- Size = (x = 56)(y = 35)(z = 1)
- Tags = "Minor Combat Challenge", "Medium Loot", "Shelter", "Hazardous"
-
File Name = "_maps\RandomRuins\LavaRuins\lavaland_surface_lava_canyon.dmm"
Size = (x = 90)(y = 63)(z = 1)
Tags = "Medium Combat Challenge", "Medium Loot", "Megafauna", "Necropolis Loot", "Inhospitable", "Lava"
+ File Name = "_maps\RandomRuins\LavaRuins\lavaland_surface_wrecked_factory.dmm"
+ Size = (x = 47)(y = 47)(z = 1)
+ Tags = "Boss Combat Challenge", "Major Loot", "Shelter", "Lava"
+
+ File Name = "_maps\RandomRuins\BeachRuins\lavaland_crashed_starwalker.dmm"
+ Size = (x = 33)(y = 56)(z = 1)
+ Tags = "Minor Combat Challenge", "Medium Loot", "Lava"
+
ReebeRuins:
File Name = "_maps\RandomRuins\Ruins\reebe_swarmers.dmm"
Size = (x = 20)(y = 20)(z = 1)
@@ -205,45 +117,13 @@ Find the key for using this catalogue in "map_catalogue_key.txt"
Size = (x = 52)(y = 44)(z = 1)
Tags = "Hard Combat Challenge", "Medium Loot", "hospitable"
- File Name = "_maps\RandomRuins\RockRuins\rockplanet_boxsci.dmm"
- Size = (x = 15)(y = 23)(z = 1)
- Tags = "No Combat", "Medium Loot", "Shelter"
-
- File Name = "_maps\RandomRuins\RockRuins\rockplanet_crash.dmm"
- Size = (x = 26)(y = 18)(z = 1)
- Tags = "Medium Combat Challenge", "Medium Loot", "Inhospitable"
-
- File Name = "_maps\RandomRuins\RockRuins\rockplanet_dangerpod.dmm"
- Size = (x = 5)(y = 5)(z = 1)
- Tags = "Medium Combat Challenge", "Minor Loot", "Shelter"
-
File Name = "_maps\RandomRuins\RockRuins\rockplanet_harmfactory.dmm"
Size = (x = 42)(y = 41)(z = 1)
Tags = "Boss Combat Challenge", "Major Loot", Shelter", "Antag Gear", "Hazardous"
- File Name = "_maps\RandomRuins\RockRuins\rockplanet_heirophant.dmm"
- Size = (x = 23)(y = 23)(z = 1)
- Tags = "Boss Combat Challenge", "Minor Loot", "Megafauna", "Inhospitable"
-
- File Name = "_maps\RandomRuins\RockRuins\rockplanet_house.dmm"
- Size = (x = 8)(y = 7)(z = 1)
- Tags = "No Combat", "Medium Loot", "Shelter"
-
- File Name = "_maps\RandomRuins\RockRuins\rockplanet_miningexpedition.dmm"
- Size = (x = 30)(y = 22)(z = 1)
- Tags = "Medium Combat Challenge", "Medium Loot", "Shelter"
-
- File Name = "_maps\RandomRuins\RockRuins\rockplanet_pioneer.dmm"
- Size = (x = 10)(y = 3)(z = 1)
- Tags = "No Combat", "Minor Loot", "Inhospitable"
-
- File Name = "_maps\RandomRuins\RockRuins\rockplanet_saloon.dmm"
- Size = (x = 30)(y = 20)(z = 1)
- Tags = "Medium combat Challenge", "Medium Loot", "Inhospitable"
-
- File Name = "_maps\RandomRuins\RockRuins\.dmm"
- Size = (x = 9)(y = 9)(z = 1)
- Tags = "Boss Combat Challenge", "Major Loot", "Hazardous", "Inhospitable"
+ File Name = "_maps\RandomRuins\RockRuins\rockplanet_shippingdock.dmm"
+ Size = (x = 85)(y = 73)(z = 1)
+ Tags = "Medium Combat Challenge", "Medium Loot", "Hazardous", "Shelter"
File Name = "_maps\RandomRuins\RockRuins\rockplanet_nomadcrash.dmm"
Size = (x = 58)(y = 48)(z = 1)
@@ -251,14 +131,6 @@ Find the key for using this catalogue in "map_catalogue_key.txt"
SandRuins:
- File Name = "_maps\RandomRuins\Ruins\whitesands_surface_assaultpodcrash.dmm"
- Size = (x = 11)(y = 11)(z = 1)
- Tags = "Medium Combat Challenge", "Medium Loot", "Inhospitable"
-
- File Name = "_maps\RandomRuins\Ruins\whitesands_surface_camp_drugstore.dmm"
- Size = (x = 14)(y = 7)(z = 1)
- Tags = "Medium Combat Challenge", "Medium Loot", "Inhospitable"
-
File Name = "_maps\RandomRuins\Ruins\whitesands_surface_camp_saloon.dmm"
Size = (x = 30)(y = 30)(z = 1)
Tags = "Medium Combat Challenge", "Medium Loot", "Inhospitable"
@@ -267,34 +139,10 @@ Find the key for using this catalogue in "map_catalogue_key.txt"
Size = (x = 59)(y = 59)(z = 1)
Tags = "Medium Combat Challenge", "Medium Loot", "Inhospitable", "Hazardous"
- File Name = "_maps\RandomRuins\Ruins\whitesands_surface_chokepoint.dmm"
- Size = (x = 16)(y = 13)(z = 1)
- Tags = "Medium Combat Challenge", "Medium Loot", "Inhospitable"
-
- File Name = "_maps\RandomRuins\Ruins\whitesands_surface_conveniencestore.dmm"
- Size = (x = 13)(y = 13)(z = 1)
- Tags = "No Combat", "Minor Loot", "Shelter"
-
File Name = "_maps\RandomRuins\Ruins\whitesands_surface_medipen_plant.dmm"
Size = (x = 23)(y = 29)(z = 1)
Tags = "No Combat", "Major Loot", "Shelter"
- File Name = "_maps\RandomRuins\Ruins\whitesands_surface_onlyaspoonful.dmm"
- Size = (x = 17)(y = 18)(z = 1)
- Tags = "Medium Combat Challenge", "Major Loot", "Antag Gear", "Shelter"
-
- File Name = "_maps\RandomRuins\Ruins\whitesands_surface_starfurycrash.dmm"
- Size = (x = 23)(y = 25)(z = 1)
- Tags = "Boss Combat Challenge", "Major Loot", "Antag Gear", "Inhospitable"
-
- File Name = "_maps\RandomRuins\Ruins\whitesands_surface_.dmm"
- Size = (x = 30)(y = 30)(z = 1)
- Tags = "No Combat", "Medium Loot", "Shelter", "Antag Gear"
-
- File Name = "_maps\RandomRuins\Ruins\whitesands_surface_.dmm"
- Size = (x = 7)(y = 9)(z = 1)
- Tags = "No Combat", "Minor Loot", "Inhospitable"
-
File Name = "_maps\RandomRuins\Ruins\whitesands_surface_pubbyslopcrash.dmm"
Size = (x = 40)(y = 25)(z = 1)
Tags = "Minor Combat Challenge", "Medium Loot", "Shelter"
@@ -302,18 +150,10 @@ Find the key for using this catalogue in "map_catalogue_key.txt"
SpaceRuins:
- File Name = "_maps\RandomRuins\SpaceRuins\.dmm"
- Size = (x = 18)(y = 23)(z = 1)
- Tags = "No Combat", "Minor Loot", "Shelter"
-
File Name = "_maps\RandomRuins\SpaceRuins\astraeus.dmm"
Size = (x = 47)(y = 35)(z = 1)
Tags = "Minor Combat Challenge", "Medium Loot", "Inhospitable"
- File Name = "_maps\RandomRuins\SpaceRuins\Fast_Food.dmm"
- Size = (x = 32)(y = 26)(z = 1)
- Tags = "No Combat", "Medium Loot", "Shelter"
-
File Name = "_maps\RandomRuins\SpaceRuins\bigderelict1.dmm"
Size = (x = 40)(y = 34)(z = 1)
Tags = "Minor Combat Challenge", "Medium Loot", "Shelter"
@@ -322,70 +162,14 @@ Find the key for using this catalogue in "map_catalogue_key.txt"
Size = (x = 50)(y = 50)(z = 1)
Tags = "No Combat", "Medium Loot", "Shelter"
- File Name = "_maps\RandomRuins\SpaceRuins\crashedship.dmm"
- Size = (x = 60)(y = 49)(z = 1)
- Tags = "No Combat", "Medium Loot", "Shelter"
-
- File Name = "_maps\RandomRuins\SpaceRuins\cryocontainment.dmm"
- Size = (x = 30)(y = 30)(z = 1)
- Tags = "Medium Combat Challenge", "Major Loot", "Inhospitable", "Hazardous"
-
- File Name = "_maps\RandomRuins\SpaceRuins\dangerous_research.dmm"
- Size = (x = 40)(y = 40)(z = 1)
- Tags = "Medium Combat Challenge", "Medium Loot", "Shelter"
-
- File Name = "_maps\RandomRuins\SpaceRuins\dark_glade.dmm"
- Size = (x = 22)(y = 25)(z = 1)
- Tags = "No Combat", "Minor Loot", "Shelter"
-
- File Name = "_maps\RandomRuins\SpaceRuins\excavator_DK.dmm"
- Size = (x = 35)(y = 30)(z = 1)
- Tags = "No Combat", "Minor Loot", "Inhospitable"
-
- File Name = "_maps\RandomRuins\SpaceRuins\fueldepot.dmm"
- Size = (x = 50)(y = 50)(z = 1)
- Tags = "No Combat", "Minor Loot", "Inhospitable"
-
- File Name = "_maps\RandomRuins\SpaceRuins\hellfactory.dmm"
- Size = (x = 25)(y = 25)(z = 1)
- Tags = "No Combat", "Medium Loot", "Shelter"
-
- File Name = "_maps\RandomRuins\SpaceRuins\ntfacility.dmm"
- Size = (x = 39)(y = 39)(z = 1)
- Tags = "Medium Combat Challenge", "Major Loot", "Shelter"
-
- File Name = "_maps\RandomRuins\SpaceRuins\oldcodeops.dmm"
- Size = (x = 17)(y = 22)(z = 1)
- Tags = "Boss Combat Challenge", "Major Loot", "Shelter", "Antag Gear"
-
File Name = "_maps\RandomRuins\SpaceRuins\onehalf.dmm"
Size = (x = 29)(y = 20)(z = 1)
Tags = "Minor Combat Challenge", "Medium Loot", "inhospitable"
- File Name = "_maps\RandomRuins\SpaceRuins\oretruck.dmm"
- Size = (x = 50)(y = 25)(z = 1)
- Tags = "Minor Combat Challenge", "Medium Loot", "Shelter", "Hazardous"
-
File Name = "_maps\RandomRuins\SpaceRuins\power_puzzle.dmm"
Size = (x = 30)(y = 30)(z = 1)
Tags = "Minor Combat Challenge", "Major Loot", "Shelter", "Hazardous"
- File Name = "_maps\RandomRuins\SpaceRuins\provinggrounds.dmm"
- Size = (x = 53)(y = 48)(z = 1)
- Tags = "Boss Combat Challenge", "Major Loot", "Shelter", "Antag Gear"
-
- File Name = "_maps\RandomRuins\SpaceRuins\scav_mining.dmm"
- Size = (x = 60)(y = 60)(z = 1)
- Tags = "Medium Combat Challenge", "Medium Loot", "Inhospitable"
-
- File Name = "_maps\RandomRuins\SpaceRuins\transport18.dmm"
- Size = (x = 51)(y = 23)(z = 1)
- Tags = "No Combat", "Medium Loot", "Inhospitable"
-
- File Name = "_maps\RandomRuins\SpaceRuins\vaporwave.dmm"
- Size = (x = 19)(y = 15)(z = 1)
- Tags = "No Combat", "Minor Loot", "Shelter"
-
File Name = "_maps\RandomRuins\SpaceRuins\singularitylab.dmm"
Size = (x = 118)(y = 75)(z = 1)
Tags = "Boss Combat Challenge", "Major Loot", "Shelter"
@@ -411,10 +195,6 @@ Find the key for using this catalogue in "map_catalogue_key.txt"
Size = (x = 32)(y = 32)(z = 1)
Tags = "Minor Combat Challenge, "Medium Loot", "Hazardous"
- File Name = "_maps\RandomRuins\BeachRuins\beach_.dmm"
- Size = (x = 18)(y = 14)(z = 1)
- Tags = "Medium Combat Challenge", "Medium Loot", "Liveable"
-
File Name = "_maps\RandomRuins\BeachRuins\beach_pirate_crash.dmm"
Size = (x = 33)(y = 26)(z = 1)
Tags = "Medium Combat Challenge", "Medium Loot", "Liveable"
@@ -423,14 +203,6 @@ Find the key for using this catalogue in "map_catalogue_key.txt"
Size = (x = 80)(y = 83)(z = 1)
Tags = "No Combat", "Minor loot", "Liveable"
- File Name = "_maps\RandomRuins\BeachRuins\beach_crashed_starwalker.dmm"
- Size = (x = 33)(y = 56)(z = 1)
- Tags = "Minor Combat Challenge", "Minor Loot"
-
- File Name = "_maps\RandomRuins\BeachRuins\beach_knights_rest.dmm"
- Size = (x = 48)(y = 48)(z = 1)
- tags = "No Combat", "Medium Loot", "Liveable"
-
File Name = "_maps\RandomRuins\BeachRuins\beach_treasure_cove.dmm"
Size = (x = 37)(y = 43)(z = 1)
Tags = "Medium Combat Challenge", "Medium Loot", "Liveable"
@@ -439,105 +211,19 @@ Find the key for using this catalogue in "map_catalogue_key.txt"
Size = (x = 38)(y = 52)(z = 1)
Tags = "No Combat", "Minor Loot", "Liveable"
- Deprecated:
- File Name = "_maps\RandomRuins\deprecated\jungle_surface_tumblr_sexyman.dmm"
- Size = (x = 30)(y = 20)(z = 1)
- Tags = "No Combat", "Minor Loot", "Liveable"
-
- File Name = "_maps\RandomRuins\deprecated\TheDerelict.dmm"
- Size = (x = 83)(y = 111)(z = 1)
- Tags = "No Combat", "Medium Loot", "Inhospitable"
-
- File Name = "_maps\RandomRuins\deprecated\carvanambush.dmm"
- Size = (x = 97)(y = 50)(z = 1)
- Tags = "Boss Combat Challenge", "Major Loot", "Inhospitable"
-
- File Name = "_maps\RandomRuins\deprecated\deepstorage.dmm"
- Size = (x = 49)(y = 50)(z = 1)
- Tags = "No Combat", "Major Loot", "Antag Gear", "Shelter"
-
- File Name = "_maps\RandomRuins\deprecated\forgottenship.dmm"
- Size = (x = 46)(y = 45)(z = 1)
- Tags = "Boss Combat Challenge", "Major Loot", "Antag Gear", "Shelter"
-
- File Name = "_maps\RandomRuins\deprecated\lavaland_biodome_clown_planet.dmm"
- Size = (x = 31)(y = 32)(z = 1)
- Tags = "Minor Combat Challenge", "Medium Loot", "Hazardous", "Lava", "Shelter"
-
- File Name = "_maps\RandomRuins\deprecated\lavaland_surface_dead_ratvar.dmm"
- Size = (x = 32)(y = 24)(z = 1)
- Tags = "No Combat", "Medium Loot", "Inhospitable"
-
- File Name = "_maps\RandomRuins\deprecated\listeningstation.dmm"
- Size = (x = 32)(y = 38)(z = 1)
- Tags = "No Combat", "Medium Loot", "Antag Gear", "Shelter"
-
- File Name = "_maps\RandomRuins\deprecated\oldAIsat.dmm"
- Size = (x = 53)(y = 57)(z = 1)
- Tags = "No Combat", "Medium Loot", "Shelter"
-
- File Name = "_maps\RandomRuins\deprecated\syndicatewreck01.dmm"
- Size = (x = 20)(y = 24)(z = 1)
- Tags = "No Combat", "Medium Loot", "Inhospitable"
-
- File Name = "_maps\RandomRuins\deprecated\whitesands_surface_abductor_crash.dmm"
- Size = (x = 30)(y = 10)(z = 1)
- Tags = "No Combat", "Major Loot", "Antag Gear", "Shelter"
-
- File Name = "_maps\RandomRuins\deprecated\whitesands_surface_crash_bar.dmm"
- Size = (x = 22)(y = 15)(z = 1)
- Tags = "Medium Combat Challenge", "Medium Loot", "Inhospitable"
-
- File Name = "_maps\RandomRuins\deprecated\whitesands_surface_crash_cargo.dmm"
- Size = (x = 20)(y = 13)(z = 1)
- Tags = "Medium Combat Challenge", "Medium Loot", "Inhospitable"
-
- File Name = "_maps\RandomRuins\deprecated\whiteshipruin_box.dmm"
- Size = (x = 35)(y = 21)(z = 1)
- Tags = "No Combat", "Medium Loot", "Shelter"
-
-
Waste Ruins:
- File name ="_maps\RandomRuins\wasteruins\wasteplanet_clowncrash.dmm"
- Size = (x = 11)(y = 12)(z = 1)
- Tags = "No Combat", "Minor Loot", "Shelter" "hospitable"
-
- File name ="_maps\RandomRuins\wasteruins\wasteplanet_crashed_kitchen.dmm"
- Size = (x = 11)(y = 16)(z = 1)
- Tags = "Minor Combat Challenge", "Medium Loot", "hospitable"
-
- File name ="_maps\RandomRuins\wasteruins\wasteplanet_fortress_of_solitude.dmm"
- Size = (x = 45)(y = 42)(z = 1)
- Tags = "Minor Combat Challenge" "Medium Loot" "hospitable" "shelter"
-
File name ="_maps\RandomRuins\wasteruins\wasteplanet_lab.dmm"
Size = (x = 26)(y = 25)(z = 1)
Tags = "No Combat", "Medium Loot" "Shelter" "hazardous" "hospitable"
- File name ="_maps\RandomRuins\wasteruins\wasteplanet_ore_processing_facility.dmm"
- Size = (x = 30)(y = 26)(z = 1)
- Tags = "No Combat", "Medium Loot" "Hazardous" "Lava" "shelter"
-
File name ="_maps\RandomRuins\wasteruins\wasteplanet_pandora.dmm"
Size = (x = 18)(y = 21)(z = 1)
Tags = "Boss Combat Challenge", "Medium Loot" "Megafauna", "hospitable"
- File name ="_maps\RandomRuins\wasteruins\wasteplanet_pod.dmm"
- Size = (x = 8)(y = 8)(z = 1)
- Tags = "Medium Combat Challenge", "Medium Loot" "hospitable"
-
- File name ="_maps\RandomRuins\wasteruins\wasteplanet_tarpit.dmm"
- Size = (x = 30)(y = 30)(z = 1)
- Tags = "No Combat", "Medium Loot", "hospitable"
-
- File name ="_maps\RandomRuins\wasteruins\wasteplanet_tradepost.dmm"
- Size = (x = 15)(y = 20)(z = 1)
- Tags "No combat", "Medium loot", "hospitable"
-
File name ="_maps\RandomRuins\wasteruins\wasteplanet_unhonorable.dmm"
Size = (x = 34)(y = 34)(z = 1)
Tags = "Minor Combat Challenge", "Medium Loot", "Shelter", "Hazardous"
- File name = "_maps\RandomRuins\wasteruins\wasteplanet_abandoned_mechbay
+ File name = "_maps\RandomRuins\wasteruins\wasteplanet_abandoned_mechbay.dmm"
Size = (x = 45)(y = 47)(z = 1)
Tags = "Boss Combat Challenge", "Medium Loot", "Shelter", "Hazardous"
diff --git a/_maps/map_files/generic/CentCom.dmm b/_maps/map_files/generic/CentCom.dmm
index 19b41ef8018..0f8565b7ece 100644
--- a/_maps/map_files/generic/CentCom.dmm
+++ b/_maps/map_files/generic/CentCom.dmm
@@ -3045,11 +3045,6 @@
/area/wizard_station)
"aEX" = (
/obj/structure/table/wood,
-/obj/item/gun/magic/wand{
- desc = "Used in emergencies to reignite magma engines.";
- max_charges = 0;
- name = "wand of emergency engine ignition"
- },
/turf/open/floor/plasteel,
/area/wizard_station)
"aEY" = (
diff --git a/_maps/shuttles/independent/independent_beluga.dmm b/_maps/shuttles/independent/independent_beluga.dmm
index f1595e0ffaa..3975c649b49 100644
--- a/_maps/shuttles/independent/independent_beluga.dmm
+++ b/_maps/shuttles/independent/independent_beluga.dmm
@@ -2139,10 +2139,6 @@
pixel_x = -2;
pixel_y = 4
},
-/obj/item/paper/pamphlet/ruin/spacehotel{
- pixel_x = 7;
- pixel_y = 2
- },
/turf/open/floor/wood,
/area/ship/crew/library)
"uB" = (
@@ -4857,7 +4853,7 @@
/turf/open/floor/plasteel/tech,
/area/ship/cargo)
"VV" = (
-/obj/machinery/computer/communications{
+/obj/structure/frame/computer{
dir = 8
},
/obj/effect/turf_decal/techfloor{
diff --git a/_maps/shuttles/independent/independent_boyardee.dmm b/_maps/shuttles/independent/independent_boyardee.dmm
deleted file mode 100644
index 4ae94900b25..00000000000
--- a/_maps/shuttles/independent/independent_boyardee.dmm
+++ /dev/null
@@ -1,3488 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"ao" = (
-/obj/machinery/power/smes/engineering,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 4
- },
-/obj/machinery/light/directional/south,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/effect/turf_decal/box,
-/turf/open/floor/plating,
-/area/ship/maintenance)
-"as" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/layer4,
-/turf/open/floor/plating/airless,
-/area/ship/external/dark)
-"az" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/turf/open/floor/carpet/red_gold,
-/area/ship/crew/canteen)
-"aV" = (
-/obj/item/paicard,
-/obj/structure/table/wood/reinforced,
-/turf/open/floor/plasteel/mono/dark,
-/area/ship/crew/canteen)
-"bv" = (
-/obj/machinery/smartfridge/drinks,
-/turf/closed/wall,
-/area/ship/storage)
-"bB" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/mono,
-/area/ship/crew/canteen/kitchen)
-"cc" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/power/apc/auto_name/directional/west,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/plating,
-/area/ship/maintenance)
-"cp" = (
-/obj/machinery/door/poddoor{
- id = "cargoblastdoors"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/power/shieldwallgen/atmos/roundstart{
- dir = 4;
- id = "cargoholofield"
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plating,
-/area/ship/cargo)
-"ct" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/carpet/red_gold,
-/area/ship/crew)
-"cy" = (
-/obj/item/paper_bin,
-/obj/structure/table/wood/reinforced,
-/turf/open/floor/plasteel/mono/dark,
-/area/ship/crew/canteen)
-"cA" = (
-/obj/structure/table/reinforced,
-/obj/item/reagent_containers/food/condiment/rice,
-/obj/item/reagent_containers/food/condiment/flour,
-/obj/item/reagent_containers/food/condiment/sugar,
-/turf/open/floor/plasteel/mono,
-/area/ship/crew/canteen/kitchen)
-"cC" = (
-/turf/closed/wall/r_wall,
-/area/ship/crew/canteen)
-"cJ" = (
-/obj/structure/toilet{
- dir = 1
- },
-/obj/item/storage/firstaid/medical{
- pixel_x = -5;
- pixel_y = -4
- },
-/obj/structure/closet/wall/white/directional/east{
- name = "First Aid"
- },
-/obj/machinery/light/small/directional/south,
-/obj/machinery/newscaster/directional/west,
-/turf/open/floor/plasteel/patterned/brushed,
-/area/ship/crew/canteen)
-"cZ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/light_switch{
- pixel_x = -25;
- pixel_y = 25
- },
-/obj/effect/turf_decal/siding/wood{
- dir = 2;
- color = "#543C30"
- },
-/turf/open/floor/wood/walnut,
-/area/ship/crew)
-"dh" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 1
- },
-/turf/open/floor/plasteel/mono/white,
-/area/ship/crew/canteen/kitchen)
-"di" = (
-/obj/structure/table/wood/poker,
-/obj/item/toy/cards/deck/kotahi,
-/turf/open/floor/carpet/red_gold,
-/area/ship/crew/canteen)
-"dr" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/airalarm/directional/east,
-/obj/effect/turf_decal/siding/wood{
- dir = 8;
- color = "#543C30"
- },
-/turf/open/floor/wood/walnut,
-/area/ship/crew)
-"dt" = (
-/obj/structure/urinal{
- pixel_y = 32
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
- },
-/turf/open/floor/plasteel/patterned,
-/area/ship/crew/canteen)
-"dy" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/carpet/red_gold,
-/area/ship/crew)
-"dF" = (
-/obj/machinery/advanced_airlock_controller{
- locked = 0;
- pixel_x = 25
- },
-/obj/structure/chair,
-/obj/item/radio/intercom/directional/north,
-/turf/open/floor/plasteel/dark,
-/area/ship/crew/canteen)
-"dH" = (
-/turf/closed/wall/r_wall,
-/area/ship/maintenance)
-"dN" = (
-/obj/effect/turf_decal/box,
-/obj/machinery/suit_storage_unit/standard_unit,
-/turf/open/floor/plasteel/dark,
-/area/ship/crew/canteen)
-"dP" = (
-/obj/machinery/vending/cigarette,
-/obj/effect/turf_decal/siding/wood{
- dir = 6
- },
-/turf/open/floor/wood,
-/area/ship/crew/canteen)
-"dU" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 1
- },
-/obj/structure/chair/wood{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/ship/crew/canteen)
-"dV" = (
-/turf/closed/wall,
-/area/ship/maintenance)
-"dW" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/ship/cargo)
-"dZ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 4
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 8
- },
-/obj/machinery/door/airlock/freezer{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/storage)
-"ej" = (
-/obj/structure/table/reinforced,
-/obj/effect/spawner/lootdrop/ration,
-/obj/effect/turf_decal/corner/opaque/white/half,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 4
- },
-/obj/machinery/airalarm/directional/north,
-/turf/open/floor/plasteel/mono/dark,
-/area/ship/crew/canteen/kitchen)
-"ep" = (
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 8
- },
-/obj/machinery/computer/monitor{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/crew/canteen/kitchen)
-"ev" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/wood,
-/area/ship/crew/canteen)
-"ex" = (
-/obj/machinery/airalarm/directional/south,
-/turf/open/floor/plasteel,
-/area/ship/crew/canteen)
-"eE" = (
-/obj/structure/closet/secure_closet/freezer/fridge/open,
-/obj/machinery/light/directional/north,
-/obj/effect/turf_decal/corner/opaque/white/half,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/box,
-/turf/open/floor/plasteel/mono/dark,
-/area/ship/crew/canteen/kitchen)
-"eG" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/catwalk/over/plated_catwalk,
-/turf/open/floor/plating,
-/area/ship/crew/hydroponics)
-"eS" = (
-/obj/machinery/door/poddoor{
- id = "windowlockdown"
- },
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/ship/crew)
-"eZ" = (
-/obj/machinery/door/airlock/glass,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 1
- },
-/obj/machinery/door/firedoor/border_only,
-/turf/open/floor/plasteel/dark,
-/area/ship/crew/hydroponics)
-"fa" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/light_switch{
- pixel_x = -25;
- pixel_y = -25
- },
-/obj/structure/catwalk/over/plated_catwalk,
-/turf/open/floor/plating,
-/area/ship/crew/hydroponics)
-"fs" = (
-/turf/open/floor/plasteel,
-/area/ship/crew/hydroponics)
-"fz" = (
-/obj/machinery/cryopod{
- dir = 1
- },
-/obj/effect/turf_decal/siding/wood/corner{
- color = "#543C30";
- dir = 4
- },
-/turf/open/floor/wood/walnut,
-/area/ship/crew)
-"fG" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/freezer,
-/area/ship/storage)
-"fK" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/turf/open/floor/plasteel/mono/white,
-/area/ship/crew/canteen/kitchen)
-"gq" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/ship/crew/canteen)
-"gL" = (
-/obj/effect/turf_decal/number/two,
-/turf/open/floor/plating/airless,
-/area/ship/external/dark)
-"gQ" = (
-/obj/machinery/door/airlock/external/glass{
- dir = 4;
- name = "Internal Airlock"
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/crew/canteen)
-"gV" = (
-/obj/machinery/vending/dinnerware,
-/obj/effect/turf_decal/corner/opaque/white/half{
- dir = 1
- },
-/obj/effect/turf_decal/box,
-/obj/machinery/firealarm/directional/south,
-/turf/open/floor/plasteel/mono/dark,
-/area/ship/crew/canteen/kitchen)
-"hl" = (
-/obj/effect/turf_decal/ihejirika_small/left{
- dir = 8
- },
-/turf/open/floor/plating/airless,
-/area/ship/external/dark)
-"hs" = (
-/obj/structure/table/glass,
-/obj/machinery/plantgenes,
-/turf/open/floor/plasteel/dark,
-/area/ship/crew/hydroponics)
-"hA" = (
-/obj/effect/turf_decal/ihejirika_small/right{
- dir = 8
- },
-/turf/open/floor/plating/airless,
-/area/ship/external/dark)
-"hJ" = (
-/obj/machinery/firealarm/directional/south,
-/obj/effect/turf_decal/siding/wood{
- dir = 1;
- color = "#543C30"
- },
-/turf/open/floor/wood/walnut,
-/area/ship/crew)
-"hL" = (
-/obj/structure/bed,
-/obj/item/bedsheet/dorms,
-/obj/structure/curtain/bounty,
-/turf/open/floor/wood/walnut,
-/area/ship/crew)
-"hQ" = (
-/obj/structure/window/reinforced/spawner/east,
-/obj/machinery/biogenerator,
-/obj/machinery/door/firedoor,
-/obj/structure/window/reinforced/spawner/west,
-/obj/effect/turf_decal/box,
-/turf/open/floor/plasteel/dark,
-/area/ship/crew/hydroponics)
-"hZ" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/carpet/red_gold,
-/area/ship/crew/canteen)
-"is" = (
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/item/radio/intercom/directional/east,
-/obj/structure/table/reinforced,
-/obj/item/stock_parts/cell/high/plus,
-/obj/item/stock_parts/cell/high/plus,
-/obj/machinery/cell_charger,
-/turf/open/floor/plating,
-/area/ship/maintenance)
-"iB" = (
-/obj/machinery/status_display/shuttle,
-/turf/closed/wall,
-/area/ship/storage)
-"ja" = (
-/obj/machinery/door/poddoor{
- id = "windowlockdown";
- dir = 4
- },
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/ship/crew/canteen)
-"jj" = (
-/turf/open/floor/carpet/red_gold,
-/area/ship/crew/canteen)
-"jl" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ship/crew/canteen)
-"ju" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/catwalk/over/plated_catwalk,
-/turf/open/floor/plating,
-/area/ship/cargo)
-"jA" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/wood,
-/area/ship/crew/canteen)
-"jN" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel,
-/area/ship/cargo)
-"kr" = (
-/obj/structure/sign/warning/chemdiamond,
-/turf/closed/wall,
-/area/ship/maintenance)
-"ku" = (
-/obj/machinery/door/poddoor{
- dir = 4;
- id = "bridgelockdown"
- },
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/ship/crew/canteen/kitchen)
-"kC" = (
-/obj/machinery/light_switch{
- dir = 1;
- pixel_x = 20;
- pixel_y = -20
- },
-/turf/open/floor/plasteel/mono/white,
-/area/ship/crew/canteen/kitchen)
-"kM" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/ship/crew/canteen)
-"kS" = (
-/obj/structure/chair/stool/bar,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/crew/canteen)
-"kZ" = (
-/obj/machinery/door/firedoor/border_only{
- dir = 4
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 8
- },
-/obj/machinery/door/airlock/glass{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/cargo)
-"lg" = (
-/obj/machinery/door/airlock/glass,
-/obj/machinery/door/firedoor/border_only{
- dir = 1
- },
-/obj/machinery/door/firedoor/border_only,
-/turf/open/floor/plasteel/dark,
-/area/ship/crew/hydroponics)
-"ly" = (
-/obj/machinery/advanced_airlock_controller{
- pixel_y = 25
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/siphon/layer4{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ship/maintenance)
-"lD" = (
-/obj/structure/rack,
-/obj/item/storage/bag/ore,
-/obj/item/storage/bag/ore,
-/obj/item/pickaxe/silver,
-/obj/item/pickaxe/silver,
-/obj/item/clothing/head/hardhat/mining,
-/obj/item/clothing/head/hardhat/mining,
-/obj/item/t_scanner/adv_mining_scanner/lesser,
-/obj/item/t_scanner/adv_mining_scanner/lesser,
-/obj/item/gps{
- gpstag = "NTREC1";
- pixel_x = -9;
- pixel_y = 7
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/cargo)
-"lG" = (
-/obj/structure/table/reinforced,
-/obj/machinery/requests_console{
- announcementConsole = 1;
- department = "Cockpit";
- pixel_y = 30
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/obj/machinery/button/door{
- id = "windowlockdown";
- name = "Window Lockdown";
- pixel_x = -5;
- pixel_y = 5
- },
-/obj/machinery/button/door{
- id = "cargoblastdoors";
- name = "Blast Door Control";
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/button/door{
- id = "bridgelockdown";
- name = "Bridge Lockdown";
- pixel_y = -5
- },
-/obj/item/spacecash/bundle/c1000,
-/obj/item/spacecash/bundle/c1000,
-/obj/item/spacecash/bundle/c1000,
-/obj/item/spacecash/bundle/c1000,
-/obj/item/spacecash/bundle/c1000,
-/turf/open/floor/plasteel/dark,
-/area/ship/crew/canteen/kitchen)
-"me" = (
-/obj/structure/window/reinforced/spawner/west,
-/obj/machinery/power/smes/shuttle/precharged{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/plating,
-/area/ship/maintenance)
-"mg" = (
-/obj/machinery/door/airlock/glass,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 1
- },
-/obj/machinery/door/firedoor/border_only,
-/turf/open/floor/plasteel/dark,
-/area/ship/crew/canteen/kitchen)
-"mk" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ship/crew/canteen)
-"mr" = (
-/turf/closed/wall,
-/area/ship/crew/hydroponics)
-"my" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/carpet/red_gold,
-/area/ship/crew/canteen)
-"mH" = (
-/obj/effect/turf_decal/box,
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/structure/reagent_dispensers/watertank/high,
-/obj/item/reagent_containers/glass/bucket,
-/obj/item/reagent_containers/glass/bucket,
-/obj/item/mop,
-/turf/open/floor/plating,
-/area/ship/maintenance)
-"nc" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/ship/cargo)
-"no" = (
-/obj/structure/table/reinforced,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/item/reagent_containers/glass/beaker/large,
-/turf/open/floor/plasteel/mono/white,
-/area/ship/crew/canteen/kitchen)
-"np" = (
-/obj/structure/table/reinforced,
-/obj/machinery/microwave,
-/obj/effect/turf_decal/box,
-/obj/effect/turf_decal/corner/opaque/white/half,
-/turf/open/floor/plasteel/mono/dark,
-/area/ship/crew/canteen/kitchen)
-"ny" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/effect/turf_decal/siding/wood{
- dir = 8
- },
-/turf/open/floor/wood,
-/area/ship/crew/canteen)
-"nA" = (
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/ship/cargo)
-"nF" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/ship/maintenance)
-"of" = (
-/turf/closed/wall/r_wall,
-/area/ship/crew/canteen/kitchen)
-"om" = (
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/obj/machinery/light/small/directional/north,
-/turf/open/floor/plasteel/freezer,
-/area/ship/storage)
-"oX" = (
-/obj/machinery/light/directional/west,
-/obj/effect/turf_decal/siding/wood{
- dir = 8
- },
-/turf/open/floor/wood,
-/area/ship/crew/canteen)
-"pb" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 1
- },
-/obj/structure/table/wood/fancy/black,
-/obj/item/reagent_containers/food/condiment/saltshaker{
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/item/reagent_containers/food/condiment/peppermill,
-/turf/open/floor/wood,
-/area/ship/crew/canteen)
-"pg" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/effect/turf_decal/siding/wood{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/ship/crew/canteen)
-"ph" = (
-/obj/structure/chair/comfy/shuttle{
- dir = 4
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/turf/open/floor/plasteel/mono/dark,
-/area/ship/crew/canteen/kitchen)
-"pt" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/item/stack/sheet/mineral/wood/fifty,
-/turf/open/floor/plating,
-/area/ship/maintenance)
-"px" = (
-/obj/machinery/status_display/shuttle,
-/turf/closed/wall/r_wall,
-/area/ship/crew/canteen/kitchen)
-"pN" = (
-/obj/machinery/atmospherics/components/binary/valve/digital,
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plating,
-/area/ship/maintenance)
-"qe" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/light_switch{
- dir = 8;
- pixel_x = 20;
- pixel_y = -23
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/ship/maintenance)
-"qg" = (
-/obj/machinery/atmospherics/components/unary/tank/toxins{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/ship/maintenance)
-"qq" = (
-/obj/machinery/mineral/ore_redemption,
-/obj/effect/turf_decal/box,
-/turf/open/floor/plasteel/dark,
-/area/ship/cargo)
-"qu" = (
-/obj/machinery/door/poddoor{
- id = "windowlockdown";
- dir = 4
- },
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/ship/crew/hydroponics)
-"qB" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 10
- },
-/obj/structure/chair/sofa/brown/right/directional/east,
-/turf/open/floor/wood,
-/area/ship/crew/canteen)
-"qE" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 4
- },
-/obj/structure/chair/stool/bar{
- dir = 8
- },
-/turf/open/floor/wood,
-/area/ship/crew/canteen)
-"qO" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
- },
-/turf/open/floor/carpet/red_gold,
-/area/ship/crew/canteen)
-"qU" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/ship/maintenance)
-"qZ" = (
-/obj/structure/bed,
-/obj/item/bedsheet/dorms,
-/obj/structure/curtain/bounty,
-/obj/effect/turf_decal/siding/wood{
- dir = 1;
- color = "#543C30"
- },
-/turf/open/floor/wood/walnut,
-/area/ship/crew)
-"rj" = (
-/obj/structure/ore_box,
-/turf/open/floor/plasteel/dark,
-/area/ship/cargo)
-"rk" = (
-/obj/machinery/computer/helm/viewscreen/directional/west,
-/obj/effect/turf_decal/siding/wood{
- dir = 8
- },
-/obj/structure/chair/sofa/brown/left/directional/east,
-/turf/open/floor/wood,
-/area/ship/crew/canteen)
-"rm" = (
-/obj/structure/urinal{
- pixel_y = 32
- },
-/turf/open/floor/plasteel/patterned,
-/area/ship/crew/canteen)
-"ro" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/chair/stool/bar{
- dir = 1
- },
-/turf/open/floor/carpet/red_gold,
-/area/ship/crew/canteen)
-"rr" = (
-/obj/structure/table/reinforced,
-/obj/machinery/chem_dispenser/drinks{
- dir = 8
- },
-/obj/machinery/light/directional/east,
-/turf/open/floor/plasteel/dark,
-/area/ship/crew/canteen)
-"rt" = (
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/corner/transparent/neutral,
-/obj/machinery/door/firedoor/border_only{
- dir = 4
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 8
- },
-/obj/machinery/firealarm/directional/south,
-/turf/open/floor/plasteel/dark,
-/area/ship/crew/canteen)
-"rz" = (
-/obj/structure/chair/office{
- dir = 1
- },
-/obj/effect/turf_decal/siding/wood{
- dir = 4;
- color = "#543C30"
- },
-/turf/open/floor/wood/walnut,
-/area/ship/crew)
-"rA" = (
-/obj/structure/sink/kitchen{
- dir = 4;
- pixel_x = -12
- },
-/obj/effect/turf_decal/corner/opaque/white/half{
- dir = 4
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/turf/open/floor/plasteel/mono/dark,
-/area/ship/crew/canteen/kitchen)
-"rC" = (
-/obj/structure/table/reinforced,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/item/areaeditor/shuttle{
- pixel_x = -11
- },
-/obj/item/radio/intercom/wideband/table{
- dir = 8;
- canhear_range = 5
- },
-/turf/open/floor/plasteel/mono/white,
-/area/ship/crew/canteen/kitchen)
-"rH" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/ship/maintenance)
-"sg" = (
-/turf/closed/wall,
-/area/ship/storage)
-"sn" = (
-/obj/structure/table/wood/reinforced,
-/turf/open/floor/plasteel/mono/dark,
-/area/ship/crew/canteen)
-"sp" = (
-/obj/structure/chair/stool/bar,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/crew/canteen)
-"st" = (
-/obj/structure/chair/stool/bar{
- dir = 1
- },
-/turf/open/floor/carpet/red_gold,
-/area/ship/crew/canteen)
-"sD" = (
-/obj/machinery/door/poddoor{
- id = "windowlockdown";
- dir = 4
- },
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/ship/cargo)
-"sI" = (
-/obj/machinery/status_display/shuttle,
-/turf/closed/wall,
-/area/ship/cargo)
-"sR" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 1
- },
-/obj/structure/chair/wood{
- dir = 8
- },
-/turf/open/floor/wood,
-/area/ship/crew/canteen)
-"sU" = (
-/turf/closed/wall,
-/area/ship/crew/canteen)
-"sX" = (
-/obj/structure/tank_dispenser/oxygen,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/corner/transparent/neutral,
-/obj/effect/turf_decal/box,
-/obj/machinery/light/directional/south,
-/turf/open/floor/plasteel/dark,
-/area/ship/cargo)
-"ta" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 1
- },
-/obj/item/soap/deluxe,
-/obj/machinery/airalarm/directional/south,
-/obj/machinery/light/small/directional/east,
-/turf/open/floor/plasteel/patterned,
-/area/ship/crew/canteen)
-"tP" = (
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/box,
-/obj/machinery/suit_storage_unit/standard_unit,
-/turf/open/floor/plasteel/dark,
-/area/ship/cargo)
-"tT" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/structure/table/wood/fancy/black,
-/obj/item/reagent_containers/food/condiment/peppermill,
-/obj/item/reagent_containers/food/condiment/saltshaker{
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/carpet/red_gold,
-/area/ship/crew/canteen)
-"ua" = (
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 4
- },
-/obj/machinery/airalarm/directional/north,
-/turf/open/floor/plasteel,
-/area/ship/cargo)
-"uI" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/catwalk/over/plated_catwalk,
-/turf/open/floor/plating,
-/area/ship/crew/hydroponics)
-"uP" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/siding/wood{
- dir = 8
- },
-/turf/open/floor/wood,
-/area/ship/crew/canteen)
-"uR" = (
-/turf/closed/wall,
-/area/ship/crew)
-"uS" = (
-/obj/machinery/processor,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
- },
-/obj/effect/turf_decal/corner/opaque/white/half{
- dir = 4
- },
-/obj/effect/turf_decal/box,
-/obj/item/radio/intercom/directional/west,
-/turf/open/floor/plasteel/mono/dark,
-/area/ship/crew/canteen/kitchen)
-"vi" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/siding/wood{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/ship/crew/canteen)
-"vw" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/catwalk/over/plated_catwalk,
-/turf/open/floor/plating,
-/area/ship/crew/hydroponics)
-"vZ" = (
-/turf/template_noop,
-/area/template_noop)
-"we" = (
-/obj/machinery/atmospherics/components/unary/tank/air{
- dir = 1;
- piping_layer = 2
- },
-/obj/effect/turf_decal/box,
-/turf/open/floor/plating,
-/area/ship/crew/canteen)
-"wm" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/holopad/emergency/kitchen,
-/turf/open/floor/plasteel/mono/white,
-/area/ship/crew/canteen/kitchen)
-"wF" = (
-/obj/structure/table/wood,
-/obj/item/paper_bin,
-/obj/item/pen/fountain,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
- },
-/obj/item/megaphone{
- pixel_x = 3;
- pixel_y = 1
- },
-/obj/effect/turf_decal/siding/wood{
- dir = 2;
- color = "#543C30"
- },
-/turf/open/floor/wood/walnut,
-/area/ship/crew)
-"wO" = (
-/obj/machinery/seed_extractor,
-/obj/effect/turf_decal/box,
-/turf/open/floor/plasteel/dark,
-/area/ship/crew/hydroponics)
-"wQ" = (
-/obj/machinery/door/airlock/external/glass{
- dir = 4;
- name = "Internal Airlock"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/crew/canteen)
-"wY" = (
-/obj/machinery/hydroponics/constructable,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 4
- },
-/obj/machinery/airalarm/directional/south,
-/turf/open/floor/plasteel/dark,
-/area/ship/crew/hydroponics)
-"xh" = (
-/obj/structure/window/reinforced/spawner/west,
-/obj/machinery/atmospherics/components/unary/shuttle/heater{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ship/maintenance)
-"xj" = (
-/obj/structure/table/reinforced,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/item/storage/bag/tray,
-/turf/open/floor/plasteel/mono,
-/area/ship/crew/canteen/kitchen)
-"xr" = (
-/obj/machinery/door/poddoor{
- id = "windowlockdown"
- },
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/ship/crew/canteen)
-"xw" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/obj/machinery/firealarm/directional/south,
-/turf/open/floor/plating,
-/area/ship/maintenance)
-"xy" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/table/wood/poker,
-/obj/item/storage/pill_bottle/dice,
-/turf/open/floor/carpet/red_gold,
-/area/ship/crew/canteen)
-"xH" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/turf/open/floor/plasteel/mono,
-/area/ship/crew/canteen/kitchen)
-"xO" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/siding/wood{
- dir = 4;
- color = "#543C30"
- },
-/turf/open/floor/wood/walnut,
-/area/ship/crew)
-"xX" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/ship/crew/canteen)
-"yi" = (
-/turf/open/floor/plating/airless,
-/area/ship/external/dark)
-"yk" = (
-/obj/machinery/door/poddoor{
- id = "cargoblastdoors"
- },
-/turf/open/floor/plating,
-/area/ship/cargo)
-"yn" = (
-/obj/structure/closet/secure_closet/bar{
- req_access = null
- },
-/obj/item/gun/ballistic/shotgun/doublebarrel,
-/obj/item/radio/intercom/directional/south,
-/turf/open/floor/plasteel/mono/dark,
-/area/ship/crew/canteen)
-"ys" = (
-/obj/machinery/door/poddoor{
- id = "cargoblastdoors"
- },
-/obj/machinery/power/shieldwallgen/atmos/roundstart{
- dir = 8;
- id = "cargoholofield"
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plating,
-/area/ship/cargo)
-"yF" = (
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/mob/living/simple_animal/chicken{
- 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 regular chicken, nothing weird about this one .";
- name = "Cluckens"
- },
-/obj/structure/bed/nest{
- color = "#FFFF00";
- desc = "It's a pile of soft, loose hay shaped like a nest.";
- name = "chicken nest"
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/crew/hydroponics)
-"yV" = (
-/obj/item/radio/intercom/directional/east,
-/turf/open/floor/plasteel,
-/area/ship/cargo)
-"zd" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/machinery/light_switch{
- dir = 4;
- pixel_x = -25;
- pixel_y = 25
- },
-/obj/machinery/holopad,
-/turf/open/floor/plasteel/freezer,
-/area/ship/storage)
-"zl" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/mono/white,
-/area/ship/crew/canteen/kitchen)
-"zu" = (
-/obj/machinery/gibber,
-/obj/machinery/power/apc/auto_name/directional/west,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/storage)
-"zy" = (
-/obj/machinery/door/airlock/hatch{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 4
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/maintenance)
-"zP" = (
-/obj/machinery/icecream_vat,
-/turf/open/floor/plasteel/freezer,
-/area/ship/storage)
-"Af" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/carpet/red_gold,
-/area/ship/crew/canteen)
-"Ag" = (
-/turf/closed/wall/r_wall,
-/area/ship/cargo)
-"Au" = (
-/turf/closed/wall/r_wall,
-/area/ship/storage)
-"Av" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/catwalk/over/plated_catwalk,
-/turf/open/floor/plating,
-/area/ship/cargo)
-"AA" = (
-/obj/machinery/computer/helm{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/crew/canteen/kitchen)
-"AF" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/landmark/observer_start,
-/turf/open/floor/carpet/red_gold,
-/area/ship/crew)
-"Ba" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/ship/cargo)
-"Bc" = (
-/obj/structure/table/wood/poker,
-/obj/item/toy/cards/deck/syndicate,
-/turf/open/floor/carpet/red_gold,
-/area/ship/crew/canteen)
-"Bk" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
- },
-/obj/effect/turf_decal/siding/wood,
-/obj/machinery/newscaster/directional/south,
-/turf/open/floor/wood,
-/area/ship/crew/canteen)
-"BC" = (
-/obj/effect/turf_decal/number/zero,
-/turf/open/floor/plating/airless,
-/area/ship/external/dark)
-"BE" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/ship/crew/canteen)
-"BP" = (
-/obj/machinery/power/terminal{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/machinery/light/small/directional/north,
-/turf/open/floor/plating,
-/area/ship/maintenance)
-"BQ" = (
-/obj/structure/table/reinforced,
-/obj/machinery/vending/boozeomat/all_access{
- density = 0;
- pixel_x = 32
- },
-/obj/item/reagent_containers/food/drinks/shaker,
-/obj/machinery/reagentgrinder{
- pixel_y = 5
- },
-/obj/item/reagent_containers/glass/rag,
-/turf/open/floor/plasteel/mono/dark,
-/area/ship/crew/canteen)
-"Ck" = (
-/obj/item/radio/intercom/directional/north,
-/turf/open/floor/plasteel/dark,
-/area/ship/crew/canteen)
-"Cn" = (
-/obj/machinery/power/apc/auto_name/directional/north,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plasteel,
-/area/ship/crew/hydroponics)
-"Cu" = (
-/obj/machinery/door/poddoor{
- id = "bridgelockdown"
- },
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/ship/crew/canteen/kitchen)
-"CP" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/power/apc/auto_name/directional/north,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/corner/transparent/neutral,
-/obj/machinery/door/firedoor/border_only{
- dir = 4
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/crew/canteen)
-"CV" = (
-/obj/effect/turf_decal/box,
-/obj/machinery/power/port_gen/pacman,
-/obj/item/stack/sheet/mineral/plasma/five,
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/turf/open/floor/plating,
-/area/ship/maintenance)
-"Da" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/carpet/red_gold,
-/area/ship/crew/canteen)
-"Dd" = (
-/obj/machinery/grill,
-/obj/effect/turf_decal/corner/opaque/white/half,
-/obj/effect/turf_decal/box,
-/obj/item/stack/sheet/mineral/coal/ten,
-/turf/open/floor/plasteel/mono/dark,
-/area/ship/crew/canteen/kitchen)
-"Df" = (
-/obj/machinery/power/shuttle/engine/electric{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/plating/airless,
-/area/ship/maintenance)
-"Dg" = (
-/obj/structure/sink{
- dir = 4;
- pixel_x = -12
- },
-/obj/structure/mirror{
- pixel_x = -25
- },
-/turf/open/floor/plasteel/patterned,
-/area/ship/crew/canteen)
-"Dj" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/table/wood/poker,
-/obj/item/toy/cards/deck/cas{
- pixel_y = 8
- },
-/obj/item/toy/cards/deck/cas/black,
-/turf/open/floor/carpet/red_gold,
-/area/ship/crew/canteen)
-"Ds" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/layer2{
- dir = 4
- },
-/obj/machinery/light/small/directional/north,
-/turf/open/floor/plating,
-/area/ship/maintenance)
-"Dt" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/corner/opaque/white/half{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white,
-/turf/open/floor/plasteel/mono/dark,
-/area/ship/crew/canteen/kitchen)
-"DA" = (
-/obj/machinery/vending/wardrobe/chef_wardrobe,
-/obj/machinery/light/directional/south,
-/obj/effect/turf_decal/corner/opaque/white/half{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 8
- },
-/obj/effect/turf_decal/box,
-/turf/open/floor/plasteel/mono/dark,
-/area/ship/crew/canteen/kitchen)
-"DC" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 8
- },
-/obj/structure/chair/stool/bar{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/ship/crew/canteen)
-"DD" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4,
-/obj/structure/chair/stool/bar{
- dir = 1
- },
-/turf/open/floor/carpet/red_gold,
-/area/ship/crew/canteen)
-"DF" = (
-/obj/structure/chair/stool/bar,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/crew/canteen)
-"DG" = (
-/obj/machinery/status_display/shuttle,
-/turf/closed/wall,
-/area/ship/maintenance)
-"DI" = (
-/obj/machinery/firealarm/directional/north,
-/turf/open/floor/plasteel,
-/area/ship/cargo)
-"DV" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 8;
- name = "engine fuel pump"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/airalarm/directional/south,
-/turf/open/floor/plating,
-/area/ship/maintenance)
-"DZ" = (
-/obj/machinery/door/poddoor{
- id = "windowlockdown"
- },
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/ship/crew/hydroponics)
-"Ea" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/catwalk/over/plated_catwalk,
-/turf/open/floor/plating,
-/area/ship/cargo)
-"Ed" = (
-/obj/machinery/light/directional/south,
-/obj/effect/turf_decal/siding/wood,
-/turf/open/floor/wood,
-/area/ship/crew/canteen)
-"Ei" = (
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/carpet/red_gold,
-/area/ship/crew)
-"En" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/turf/open/floor/plasteel/patterned,
-/area/ship/crew/canteen)
-"Et" = (
-/obj/item/storage/box/drinkingglasses,
-/obj/machinery/firealarm/directional/south,
-/obj/structure/table/wood/reinforced,
-/turf/open/floor/plasteel/mono/dark,
-/area/ship/crew/canteen)
-"Ex" = (
-/obj/machinery/atmospherics/components/binary/pump/on/layer2{
- dir = 1;
- name = "Air to Distro";
- target_pressure = 500
- },
-/obj/machinery/door/window/southleft,
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/ship/crew/canteen)
-"EF" = (
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/box,
-/obj/machinery/suit_storage_unit/independent/mining/eva,
-/turf/open/floor/plasteel/dark,
-/area/ship/cargo)
-"EH" = (
-/obj/machinery/hydroponics/constructable,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/crew/hydroponics)
-"Fd" = (
-/obj/machinery/power/apc/auto_name/directional/west,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/effect/turf_decal/corner/opaque/white/half{
- dir = 1
- },
-/turf/open/floor/plasteel/mono/dark,
-/area/ship/crew/canteen/kitchen)
-"Fe" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 4
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 8
- },
-/obj/machinery/door/airlock/glass{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/cargo)
-"Fm" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/plating,
-/area/ship/maintenance)
-"Fp" = (
-/obj/structure/table/reinforced,
-/obj/item/table_bell,
-/turf/open/floor/plasteel/dark,
-/area/ship/crew/canteen)
-"FA" = (
-/obj/machinery/door/airlock/glass,
-/obj/machinery/door/firedoor/border_only{
- dir = 1
- },
-/obj/machinery/door/firedoor/border_only,
-/turf/open/floor/plasteel/dark,
-/area/ship/crew/canteen/kitchen)
-"FD" = (
-/obj/machinery/cryopod{
- dir = 1
- },
-/obj/effect/turf_decal/siding/wood{
- dir = 4;
- color = "#543C30"
- },
-/turf/open/floor/wood/walnut,
-/area/ship/crew)
-"FE" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/machinery/holopad,
-/turf/open/floor/carpet/red_gold,
-/area/ship/crew/canteen)
-"FN" = (
-/turf/closed/wall,
-/area/ship/crew/canteen/kitchen)
-"FR" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel,
-/area/ship/crew/hydroponics)
-"FU" = (
-/obj/machinery/power/smes/engineering,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/effect/turf_decal/box,
-/turf/open/floor/plating,
-/area/ship/maintenance)
-"Gd" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/turf/open/floor/plasteel/patterned,
-/area/ship/crew/canteen)
-"Gi" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/layer2{
- dir = 4
- },
-/obj/machinery/light/small/directional/south,
-/turf/open/floor/plasteel,
-/area/ship/crew/canteen)
-"GE" = (
-/obj/structure/table/reinforced,
-/obj/machinery/chem_dispenser/drinks/beer{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/crew/canteen)
-"GG" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/ship/crew/hydroponics)
-"GO" = (
-/turf/open/floor/plasteel/dark,
-/area/ship/crew/canteen)
-"GS" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 1
- },
-/turf/open/floor/plasteel/freezer,
-/area/ship/storage)
-"GZ" = (
-/obj/machinery/power/terminal{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/cable/yellow,
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/turf/open/floor/plating,
-/area/ship/maintenance)
-"Hs" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/holopad/emergency/bar,
-/turf/open/floor/plasteel/mono/dark,
-/area/ship/crew/canteen)
-"HA" = (
-/obj/machinery/deepfryer,
-/obj/effect/turf_decal/corner/opaque/white/half{
- dir = 4
- },
-/obj/effect/turf_decal/box,
-/obj/machinery/light/directional/west,
-/obj/machinery/newscaster/directional/north,
-/turf/open/floor/plasteel/mono/dark,
-/area/ship/crew/canteen/kitchen)
-"HD" = (
-/obj/machinery/power/terminal{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/plating,
-/area/ship/maintenance)
-"HG" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 1
- },
-/obj/effect/turf_decal/siding/wood/corner,
-/turf/open/floor/wood,
-/area/ship/crew/canteen)
-"HY" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/holopad/emergency/botany,
-/turf/open/floor/plasteel,
-/area/ship/crew/hydroponics)
-"Ih" = (
-/obj/machinery/power/apc/auto_name/directional/west,
-/obj/structure/cable,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/cargo)
-"In" = (
-/obj/structure/table/reinforced,
-/turf/open/floor/plasteel/dark,
-/area/ship/crew/canteen)
-"Ix" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/vending/clothing,
-/obj/machinery/light/directional/east,
-/obj/effect/turf_decal/siding/wood{
- dir = 8;
- color = "#543C30"
- },
-/turf/open/floor/wood/walnut,
-/area/ship/crew)
-"IC" = (
-/obj/effect/turf_decal/ihejirika_small{
- dir = 8
- },
-/turf/open/floor/plating/airless,
-/area/ship/external/dark)
-"IQ" = (
-/obj/machinery/hydroponics/constructable{
- layer = 2
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 4
- },
-/obj/structure/sink/kitchen{
- dir = 4;
- layer = 2.04;
- pixel_x = -12
- },
-/obj/machinery/firealarm/directional/south,
-/turf/open/floor/plasteel/dark,
-/area/ship/crew/hydroponics)
-"IV" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 1
- },
-/turf/open/floor/carpet/red_gold,
-/area/ship/crew)
-"IX" = (
-/obj/machinery/status_display/shuttle,
-/turf/closed/wall,
-/area/ship/crew/canteen)
-"JE" = (
-/obj/structure/table/wood,
-/obj/item/flashlight/lamp/green{
- pixel_x = -6;
- pixel_y = 10
- },
-/obj/item/folder,
-/obj/machinery/computer/cryopod/directional/north{
- pixel_y = 17
- },
-/obj/item/radio/intercom/directional/west,
-/obj/effect/turf_decal/siding/wood/corner{
- color = "#543C30"
- },
-/turf/open/floor/wood/walnut,
-/area/ship/crew)
-"JR" = (
-/turf/closed/wall/r_wall,
-/area/ship/crew)
-"JT" = (
-/obj/structure/closet/secure_closet/freezer/kitchen{
- req_access = null
- },
-/obj/effect/turf_decal/box,
-/obj/item/radio/intercom/directional/south,
-/turf/open/floor/plasteel/dark,
-/area/ship/storage)
-"Kk" = (
-/obj/structure/table/reinforced,
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/item/phone{
- pixel_x = 5;
- pixel_y = 8
- },
-/obj/item/gps{
- gpstag = "NTREC1";
- pixel_x = -9;
- pixel_y = 7
- },
-/turf/open/floor/plasteel/mono,
-/area/ship/crew/canteen/kitchen)
-"Kl" = (
-/obj/effect/turf_decal/box,
-/obj/machinery/vending/hydronutrients,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/crew/hydroponics)
-"KD" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/wood/walnut,
-/area/ship/crew)
-"KM" = (
-/obj/structure/table/reinforced,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
- },
-/obj/item/table_bell,
-/obj/item/reagent_containers/food/condiment/enzyme,
-/turf/open/floor/plasteel/mono/white,
-/area/ship/crew/canteen/kitchen)
-"Lg" = (
-/obj/machinery/door/airlock/external{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/crew/canteen)
-"Lj" = (
-/turf/open/floor/plasteel/mono/white,
-/area/ship/crew/canteen/kitchen)
-"LI" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/item/reagent_containers/food/condiment/saltshaker{
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/item/reagent_containers/food/condiment/peppermill,
-/obj/structure/table/wood/reinforced,
-/turf/open/floor/plasteel/mono/dark,
-/area/ship/crew/canteen)
-"Mo" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 1
- },
-/turf/open/floor/plasteel/mono,
-/area/ship/crew/canteen/kitchen)
-"Mp" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 8
- },
-/turf/open/floor/plasteel/mono/white,
-/area/ship/crew/canteen/kitchen)
-"Ng" = (
-/obj/machinery/vending/wardrobe/bar_wardrobe,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/turf/open/floor/plasteel/mono/dark,
-/area/ship/crew/canteen/kitchen)
-"Nr" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
- },
-/obj/machinery/light/small/directional/north,
-/turf/open/floor/plating,
-/area/ship/crew/canteen)
-"Nv" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/turf/open/floor/plasteel/mono/dark,
-/area/ship/crew/canteen)
-"NB" = (
-/obj/structure/chair/comfy/shuttle{
- dir = 4
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/mono/dark,
-/area/ship/crew/canteen/kitchen)
-"NM" = (
-/turf/open/floor/plasteel/mono/dark,
-/area/ship/crew/canteen)
-"NQ" = (
-/obj/structure/closet/secure_closet/freezer/fridge/open,
-/obj/effect/turf_decal/box,
-/obj/machinery/firealarm/directional/south,
-/turf/open/floor/plasteel/dark,
-/area/ship/storage)
-"Od" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/table/wood/poker,
-/turf/open/floor/carpet/red_gold,
-/area/ship/crew/canteen)
-"Of" = (
-/obj/effect/turf_decal/number/five,
-/turf/open/floor/plating/airless,
-/area/ship/external/dark)
-"OI" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ship/crew/canteen)
-"OJ" = (
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 8
- },
-/obj/machinery/modular_computer/console/preset/civilian{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/crew/canteen/kitchen)
-"Qc" = (
-/obj/structure/table/reinforced,
-/obj/effect/spawner/lootdrop/ration,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/mono,
-/area/ship/crew/canteen/kitchen)
-"Qm" = (
-/obj/machinery/door/window/eastright,
-/obj/structure/extinguisher_cabinet/directional/north,
-/turf/open/floor/plasteel/dark,
-/area/ship/crew/canteen)
-"Qs" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/mono,
-/area/ship/crew/canteen/kitchen)
-"Qu" = (
-/obj/machinery/atmospherics/components/binary/pump/on/layer2{
- name = "Air to Distro";
- target_pressure = 500
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/plating,
-/area/ship/maintenance)
-"QR" = (
-/obj/item/storage/toolbox/electrical,
-/obj/item/storage/toolbox/electrical,
-/obj/item/storage/toolbox/mechanical,
-/obj/item/storage/toolbox/mechanical,
-/obj/item/multitool,
-/obj/structure/rack,
-/obj/effect/turf_decal/box,
-/obj/item/multitool,
-/turf/open/floor/plating,
-/area/ship/maintenance)
-"QW" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/structure/catwalk/over/plated_catwalk,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/ship/cargo)
-"Ro" = (
-/obj/machinery/smartfridge/food,
-/turf/closed/wall/mineral/titanium/nodiagonal,
-/area/ship/crew/hydroponics)
-"RR" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel/mono/white,
-/area/ship/crew/canteen/kitchen)
-"RU" = (
-/obj/structure/bed,
-/obj/item/bedsheet/dorms,
-/obj/structure/curtain/bounty,
-/obj/effect/turf_decal/siding/wood/corner{
- color = "#543C30";
- dir = 1
- },
-/turf/open/floor/wood/walnut,
-/area/ship/crew)
-"Sa" = (
-/turf/open/floor/plasteel,
-/area/ship/crew/canteen)
-"Se" = (
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/carpet/red_gold,
-/area/ship/crew/canteen)
-"Sf" = (
-/turf/open/floor/plasteel/mono,
-/area/ship/crew/canteen/kitchen)
-"Si" = (
-/obj/structure/reagent_dispensers/cooking_oil,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/ship/maintenance)
-"Sl" = (
-/obj/structure/table/reinforced,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/reagentgrinder,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel/mono/white,
-/area/ship/crew/canteen/kitchen)
-"Ss" = (
-/obj/machinery/door/airlock,
-/turf/open/floor/plasteel/patterned,
-/area/ship/crew/canteen)
-"SA" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/siphon/layer4{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ship/crew/canteen)
-"SM" = (
-/obj/machinery/light/directional/north,
-/obj/effect/turf_decal/siding/wood{
- dir = 5
- },
-/turf/open/floor/wood,
-/area/ship/crew/canteen)
-"SO" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
-/obj/structure/closet/secure_closet/freezer/meat/open,
-/obj/effect/turf_decal/box,
-/obj/item/reagent_containers/food/snacks/meat/slab/monkey,
-/obj/item/reagent_containers/food/snacks/meat/slab/monkey,
-/obj/item/reagent_containers/food/snacks/meat/slab/monkey,
-/obj/item/reagent_containers/food/snacks/meat/slab/monkey,
-/obj/item/reagent_containers/food/snacks/meat/slab/monkey,
-/obj/item/reagent_containers/food/snacks/meat/slab/monkey,
-/obj/machinery/airalarm/directional/east,
-/turf/open/floor/plasteel/dark,
-/area/ship/storage)
-"Tc" = (
-/obj/machinery/power/terminal{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/structure/cable/yellow,
-/turf/open/floor/plating,
-/area/ship/maintenance)
-"Tl" = (
-/obj/docking_port/mobile{
- can_move_docking_ports = 1;
- name = "diner ship";
- preferred_direction = 4;
- port_direction = 4
- },
-/turf/open/floor/plating/airless,
-/area/ship/external/dark)
-"To" = (
-/obj/item/radio,
-/obj/item/radio,
-/obj/item/radio,
-/obj/item/radio,
-/obj/item/radio,
-/obj/item/radio,
-/obj/structure/closet/crate,
-/obj/machinery/power/apc/auto_name/directional/north,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/item/radio/intercom/directional/east,
-/obj/effect/turf_decal/siding/wood/corner{
- color = "#543C30";
- dir = 8
- },
-/turf/open/floor/wood/walnut,
-/area/ship/crew)
-"Tp" = (
-/obj/effect/turf_decal/siding/wood,
-/turf/open/floor/wood,
-/area/ship/crew/canteen)
-"Ty" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/catwalk/over/plated_catwalk,
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plating,
-/area/ship/cargo)
-"TD" = (
-/turf/closed/wall/r_wall,
-/area/ship/crew/hydroponics)
-"TL" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ship/crew/canteen)
-"TN" = (
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/machinery/power/ship_gravity,
-/turf/open/floor/plating,
-/area/ship/maintenance)
-"Uf" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/catwalk/over/plated_catwalk,
-/turf/open/floor/plating,
-/area/ship/cargo)
-"Um" = (
-/obj/machinery/chem_master/condimaster,
-/obj/item/storage/box/beakers,
-/obj/effect/turf_decal/corner/opaque/white/half{
- dir = 4
- },
-/obj/effect/turf_decal/box,
-/obj/structure/extinguisher_cabinet/directional/west,
-/turf/open/floor/plasteel/mono/dark,
-/area/ship/crew/canteen/kitchen)
-"Uq" = (
-/obj/machinery/power/shuttle/engine/fueled/plasma{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/ship/maintenance)
-"Uv" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/obj/machinery/button/door{
- id = "cargoblastdoors";
- name = "Blast Door Control";
- pixel_x = 25;
- pixel_y = 25
- },
-/obj/machinery/button/shieldwallgen{
- pixel_y = 24;
- pixel_x = 37;
- id = "cargoholofield"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/ship/cargo)
-"Uy" = (
-/obj/machinery/light/directional/west,
-/obj/effect/turf_decal/siding/wood{
- dir = 8
- },
-/obj/structure/chair/stool/bar{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/ship/crew/canteen)
-"UC" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 9
- },
-/turf/open/floor/wood,
-/area/ship/crew/canteen)
-"UI" = (
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 8
- },
-/obj/machinery/jukebox,
-/obj/structure/extinguisher_cabinet/directional/south,
-/turf/open/floor/plasteel/dark,
-/area/ship/crew/canteen)
-"UO" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/chair/stool/bar,
-/turf/open/floor/carpet/red_gold,
-/area/ship/crew/canteen)
-"Vm" = (
-/obj/structure/table/glass,
-/obj/machinery/smartfridge/disks,
-/obj/item/storage/box/disks_plantgene,
-/obj/item/storage/box/disks_plantgene,
-/turf/open/floor/plasteel/dark,
-/area/ship/crew/hydroponics)
-"Vo" = (
-/obj/machinery/atmospherics/pipe/manifold/orange/hidden,
-/turf/open/floor/plating,
-/area/ship/maintenance)
-"Vr" = (
-/obj/item/radio/intercom/directional/south,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/box,
-/obj/structure/closet/crate/hydroponics,
-/obj/item/seeds/wheat,
-/obj/item/seeds/tomato,
-/obj/item/seeds/random,
-/obj/item/seeds/banana,
-/turf/open/floor/plasteel/dark,
-/area/ship/crew/hydroponics)
-"VB" = (
-/obj/machinery/door/airlock/external{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/maintenance)
-"VO" = (
-/obj/machinery/atmospherics/components/unary/tank/air{
- piping_layer = 2
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/effect/turf_decal/box,
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/plating,
-/area/ship/maintenance)
-"VR" = (
-/obj/machinery/computer/cargo/express{
- dir = 4
- },
-/turf/open/floor/plasteel/mono/white,
-/area/ship/crew/canteen/kitchen)
-"Wf" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
-/turf/open/floor/carpet/red_gold,
-/area/ship/crew/canteen)
-"Wv" = (
-/obj/structure/closet/crate/hydroponics,
-/obj/item/plant_analyzer,
-/obj/item/plant_analyzer,
-/obj/item/plant_analyzer,
-/obj/item/shovel/spade,
-/obj/item/shovel/spade,
-/obj/item/shovel/spade,
-/obj/item/cultivator,
-/obj/item/cultivator,
-/obj/item/cultivator,
-/obj/item/clothing/under/rank/civilian/hydroponics/skirt,
-/obj/item/clothing/under/rank/civilian/hydroponics/skirt,
-/obj/item/clothing/under/rank/civilian/hydroponics,
-/obj/item/clothing/under/rank/civilian/hydroponics,
-/obj/item/hatchet,
-/obj/item/hatchet,
-/obj/item/hatchet,
-/obj/item/storage/bag/plants,
-/obj/item/storage/bag/plants,
-/obj/effect/turf_decal/box,
-/turf/open/floor/plasteel/dark,
-/area/ship/crew/hydroponics)
-"WA" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 8
- },
-/obj/structure/chair/sofa/brown/directional/east,
-/turf/open/floor/wood,
-/area/ship/crew/canteen)
-"WH" = (
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/crew/canteen)
-"WP" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
-/turf/open/floor/plasteel,
-/area/ship/crew/hydroponics)
-"XB" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/carpet/red_gold,
-/area/ship/crew)
-"XP" = (
-/turf/closed/wall,
-/area/ship/cargo)
-"XQ" = (
-/obj/machinery/door/airlock{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 4
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/crew/canteen)
-"XU" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/carpet/red_gold,
-/area/ship/crew/canteen)
-"Yc" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 1
- },
-/obj/machinery/newscaster/directional/south,
-/obj/machinery/light_switch{
- dir = 1;
- pixel_x = 10;
- pixel_y = -18
- },
-/turf/open/floor/plasteel,
-/area/ship/crew/canteen)
-"Yj" = (
-/obj/machinery/door/airlock,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 1
- },
-/obj/machinery/door/firedoor/border_only,
-/turf/open/floor/plasteel/dark,
-/area/ship/crew)
-"Yr" = (
-/obj/docking_port/stationary{
- width = 30;
- height = 15;
- dir = 8;
- dwidth = 15
- },
-/turf/template_noop,
-/area/template_noop)
-"YC" = (
-/obj/machinery/door/airlock/external{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/maintenance)
-"YR" = (
-/obj/machinery/light_switch{
- dir = 1;
- pixel_x = 25;
- pixel_y = -20
- },
-/turf/open/floor/plasteel,
-/area/ship/cargo)
-"YT" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/siding/wood,
-/turf/open/floor/wood,
-/area/ship/crew/canteen)
-"YZ" = (
-/obj/machinery/door/poddoor{
- id = "bridgelockdown";
- dir = 4
- },
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/ship/crew/canteen/kitchen)
-"Zm" = (
-/obj/machinery/door/airlock{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 4
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/crew/canteen/kitchen)
-"Zn" = (
-/obj/machinery/hydroponics/constructable,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 4
- },
-/obj/machinery/light/directional/south,
-/turf/open/floor/plasteel/dark,
-/area/ship/crew/hydroponics)
-"ZG" = (
-/obj/machinery/airalarm/directional/south,
-/obj/effect/turf_decal/siding/wood{
- dir = 6
- },
-/turf/open/floor/wood,
-/area/ship/crew/canteen)
-"ZY" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/effect/turf_decal/siding/wood{
- dir = 8;
- color = "#543C30"
- },
-/turf/open/floor/wood/walnut,
-/area/ship/crew)
-
-(1,1,1) = {"
-vZ
-vZ
-vZ
-vZ
-vZ
-Yr
-vZ
-vZ
-vZ
-vZ
-vZ
-vZ
-vZ
-vZ
-vZ
-vZ
-vZ
-vZ
-vZ
-"}
-(2,1,1) = {"
-vZ
-vZ
-cC
-cC
-Lg
-Lg
-cC
-cC
-cC
-dH
-vZ
-vZ
-vZ
-vZ
-vZ
-vZ
-vZ
-vZ
-vZ
-"}
-(3,1,1) = {"
-vZ
-vZ
-cC
-dN
-Sa
-Gi
-sU
-Nr
-we
-dH
-Df
-Df
-Df
-Uq
-Uq
-dV
-hl
-IC
-hA
-"}
-(4,1,1) = {"
-vZ
-vZ
-cC
-dF
-SA
-mk
-Ex
-jl
-we
-dV
-me
-me
-me
-xh
-xh
-dH
-YC
-dH
-Of
-"}
-(5,1,1) = {"
-vZ
-vZ
-cC
-sU
-wQ
-gQ
-IX
-sU
-sU
-dV
-BP
-HD
-HD
-qU
-Vo
-dH
-ly
-dH
-BC
-"}
-(6,1,1) = {"
-vZ
-vZ
-xr
-GO
-OI
-Sa
-sU
-rm
-Dg
-dV
-VO
-pt
-Qu
-Fm
-DV
-dH
-Ds
-dH
-gL
-"}
-(7,1,1) = {"
-vZ
-ja
-xr
-Fp
-xX
-kM
-sU
-dt
-ta
-dV
-TN
-QR
-rH
-FU
-ao
-dH
-VB
-dH
-vZ
-"}
-(8,1,1) = {"
-vZ
-xr
-GO
-In
-TL
-ex
-sU
-Gd
-sU
-dV
-dV
-mH
-nF
-GZ
-Tc
-cc
-xw
-dH
-vZ
-"}
-(9,1,1) = {"
-vZ
-cC
-Ck
-In
-BE
-Yc
-sU
-En
-Ss
-cJ
-dV
-CV
-is
-Si
-qe
-pN
-qg
-dH
-vZ
-"}
-(10,1,1) = {"
-vZ
-cC
-Qm
-sU
-CP
-rt
-sU
-XQ
-sU
-sU
-dV
-dV
-dV
-kr
-zy
-dV
-DG
-dH
-vZ
-"}
-(11,1,1) = {"
-vZ
-cC
-UC
-oX
-uP
-DC
-Uy
-ny
-rk
-WA
-qB
-uR
-JE
-rz
-xO
-FD
-fz
-JR
-vZ
-"}
-(12,1,1) = {"
-vZ
-xr
-dU
-qO
-Se
-Od
-Dj
-DD
-Da
-tT
-Bk
-uR
-wF
-XB
-Ei
-IV
-hJ
-JR
-vZ
-"}
-(13,1,1) = {"
-vZ
-xr
-pb
-FE
-Af
-UO
-xy
-ro
-hZ
-XU
-YT
-Yj
-cZ
-dy
-AF
-ct
-qZ
-eS
-vZ
-"}
-(14,1,1) = {"
-vZ
-xr
-sR
-my
-jj
-Bc
-di
-st
-Wf
-az
-Ed
-uR
-To
-Ix
-dr
-ZY
-RU
-eS
-vZ
-"}
-(15,1,1) = {"
-vZ
-xr
-dU
-ev
-HG
-qE
-qE
-gq
-gq
-pg
-ZG
-uR
-uR
-uR
-uR
-KD
-hL
-eS
-vZ
-"}
-(16,1,1) = {"
-vZ
-xr
-pb
-jA
-Tp
-WH
-kS
-kS
-kS
-DF
-kS
-UI
-sg
-zu
-sg
-dZ
-sg
-Au
-vZ
-"}
-(17,1,1) = {"
-vZ
-xr
-sR
-jA
-Tp
-sp
-cy
-sn
-sn
-LI
-Et
-sU
-sg
-om
-GS
-zd
-JT
-Au
-vZ
-"}
-(18,1,1) = {"
-vZ
-cC
-SM
-vi
-dP
-sp
-aV
-NM
-NM
-Hs
-NM
-NM
-bv
-zP
-SO
-fG
-NQ
-Au
-vZ
-"}
-(19,1,1) = {"
-vZ
-Ag
-kZ
-Fe
-XP
-XP
-sI
-rr
-GE
-Nv
-BQ
-yn
-sg
-iB
-sg
-dZ
-sg
-Au
-vZ
-"}
-(20,1,1) = {"
-vZ
-Ag
-DI
-ju
-Ih
-lD
-FN
-FN
-FN
-Zm
-FN
-FN
-FN
-Vm
-Wv
-fa
-IQ
-TD
-vZ
-"}
-(21,1,1) = {"
-yi
-Ag
-ua
-Ea
-EF
-FN
-FN
-HA
-uS
-fK
-rA
-Um
-FN
-hs
-fs
-vw
-wY
-TD
-vZ
-"}
-(22,1,1) = {"
-as
-cp
-nc
-Ty
-tP
-FN
-np
-Sf
-dh
-Mo
-Lj
-Sf
-Fd
-hQ
-fs
-vw
-EH
-DZ
-vZ
-"}
-(23,1,1) = {"
-yi
-yk
-Ba
-Av
-sX
-FN
-ej
-Lj
-xH
-KM
-Sf
-Lj
-Dt
-Ro
-WP
-HY
-EH
-DZ
-vZ
-"}
-(24,1,1) = {"
-Tl
-yk
-dW
-QW
-Uf
-mg
-zl
-Qs
-Sl
-Kk
-no
-Qs
-RR
-eZ
-uI
-eG
-Zn
-TD
-vZ
-"}
-(25,1,1) = {"
-yi
-ys
-Uv
-jN
-YR
-FA
-Sf
-Lj
-Qc
-rC
-cA
-Lj
-Sf
-lg
-fs
-GG
-EH
-DZ
-vZ
-"}
-(26,1,1) = {"
-yi
-Ag
-nA
-qq
-yV
-FN
-eE
-Sf
-wm
-xj
-VR
-Sf
-DA
-mr
-Cn
-FR
-yF
-DZ
-vZ
-"}
-(27,1,1) = {"
-vZ
-Ag
-rj
-Ag
-Ag
-px
-Dd
-Lj
-bB
-Mp
-Sf
-kC
-gV
-TD
-wO
-Kl
-Vr
-TD
-vZ
-"}
-(28,1,1) = {"
-vZ
-Ag
-sD
-Ag
-vZ
-of
-of
-lG
-NB
-ph
-ph
-Ng
-of
-of
-TD
-TD
-qu
-TD
-vZ
-"}
-(29,1,1) = {"
-vZ
-vZ
-vZ
-vZ
-vZ
-vZ
-Cu
-YZ
-ep
-AA
-OJ
-YZ
-Cu
-vZ
-vZ
-vZ
-vZ
-vZ
-vZ
-"}
-(30,1,1) = {"
-vZ
-vZ
-vZ
-vZ
-vZ
-vZ
-vZ
-Cu
-ku
-ku
-ku
-Cu
-vZ
-vZ
-vZ
-vZ
-vZ
-vZ
-vZ
-"}
diff --git a/_maps/shuttles/independent/independent_sunskipper.dmm b/_maps/shuttles/independent/independent_sunskipper.dmm
new file mode 100644
index 00000000000..61c49a25295
--- /dev/null
+++ b/_maps/shuttles/independent/independent_sunskipper.dmm
@@ -0,0 +1,4735 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"ab" = (
+/obj/machinery/door/airlock{
+ dir = 4;
+ name = "Kitchen";
+ req_one_access = list(25, 28, 35)
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/obj/structure/curtain/cloth/grey,
+/turf/open/floor/plasteel/mono,
+/area/ship/crew/canteen/kitchen)
+"al" = (
+/obj/structure/chair/wood{
+ dir = 4
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"ax" = (
+/obj/effect/turf_decal/siding/wood/end{
+ color = "#D5A66E";
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 1
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/grunge{
+ name = "Crew Quarters"
+ },
+/turf/open/floor/wood/birch,
+/area/ship/crew/dorm)
+"aJ" = (
+/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/wood{
+ dir = 9;
+ color = "#543C30"
+ },
+/obj/effect/turf_decal/siding/wood/corner{
+ color = "#543C30"
+ },
+/obj/effect/turf_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/machinery/airalarm/directional/north,
+/obj/item/kirbyplants/random{
+ pixel_y = 20
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/hallway/central)
+"aK" = (
+/obj/structure/cable/green{
+ icon_state = "2-9"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"aQ" = (
+/obj/effect/turf_decal/ihejirika_small/left{
+ dir = 1
+ },
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/structure/marker_beacon,
+/turf/open/floor/plating/airless,
+/area/ship/external/dark)
+"aV" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/mono/white,
+/area/ship/crew/canteen/kitchen)
+"bf" = (
+/obj/machinery/hydroponics/constructable{
+ layer = 2
+ },
+/obj/effect/turf_decal/corner/opaque/bottlegreen/border{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/turf/open/floor/plasteel/mono/dark,
+/area/ship/crew/hydroponics)
+"bi" = (
+/obj/structure/table/wood/reinforced,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 2;
+ color = "#332521"
+ },
+/turf/open/floor/wood/ebony,
+/area/ship/crew/canteen)
+"bj" = (
+/obj/structure/window/plasma/reinforced{
+ dir = 8
+ },
+/obj/machinery/power/smes/shuttle/precharged{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/machinery/door/window/eastright{
+ name = "Engine Access"
+ },
+/obj/machinery/door/poddoor{
+ id = "sunskipper_engine_shutters";
+ name = "Engineering Blast Doors";
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/ship/maintenance/aft)
+"bp" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/components/unary/outlet_injector/on/layer4{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/ship/external/dark)
+"br" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 8;
+ color = "#332521"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/open/floor/wood/ebony,
+/area/ship/crew/canteen)
+"bt" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 6;
+ color = "#543C30"
+ },
+/obj/effect/turf_decal/siding/wood/corner{
+ color = "#543C30";
+ dir = 1
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"bx" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
+ },
+/obj/effect/turf_decal/siding/wood/corner{
+ color = "#543C30"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 9
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"bz" = (
+/obj/machinery/computer/helm{
+ icon_state = "computer-left";
+ dir = 8
+ },
+/obj/effect/turf_decal/borderfloorblack{
+ dir = 4
+ },
+/turf/open/floor/plasteel/tech,
+/area/ship/bridge)
+"bI" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/item/reagent_containers/food/condiment/ketchup{
+ pixel_x = -6;
+ pixel_y = 8
+ },
+/obj/item/reagent_containers/food/condiment/mayonnaise{
+ pixel_x = 6;
+ pixel_y = 8
+ },
+/turf/open/floor/plasteel/mono,
+/area/ship/crew/canteen/kitchen)
+"bJ" = (
+/obj/structure/table/wood,
+/obj/effect/turf_decal/siding/wood{
+ dir = 1;
+ color = "#332521"
+ },
+/obj/machinery/light/dim/directional/north,
+/obj/item/reagent_containers/food/drinks/shaker{
+ pixel_x = -7;
+ pixel_y = 8
+ },
+/obj/item/paper_bin{
+ pixel_y = 9;
+ pixel_x = 8
+ },
+/obj/item/pen/fourcolor,
+/turf/open/floor/wood/ebony,
+/area/ship/crew/canteen)
+"bK" = (
+/turf/closed/wall/r_wall/yesdiag,
+/area/ship/bridge)
+"bL" = (
+/obj/machinery/light_switch{
+ pixel_x = -10;
+ pixel_y = -19;
+ dir = 1
+ },
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/obj/machinery/power/ship_gravity,
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/obj/structure/sign/poster/contraband/twelve_gauge{
+ pixel_x = 32
+ },
+/turf/open/floor/plating,
+/area/ship/maintenance/aft)
+"bM" = (
+/obj/machinery/hydroponics/constructable{
+ layer = 2
+ },
+/obj/machinery/light/directional/south,
+/obj/effect/turf_decal/corner/opaque/bottlegreen/border{
+ dir = 1
+ },
+/turf/open/floor/plasteel/mono/dark,
+/area/ship/crew/hydroponics)
+"bU" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/carpet/red_gold,
+/area/ship/hallway/central)
+"bX" = (
+/obj/structure/chair/office/dark{
+ dir = 8
+ },
+/obj/machinery/newscaster/directional/north,
+/obj/effect/turf_decal/siding/wood{
+ dir = 9;
+ color = "#543C30"
+ },
+/obj/machinery/button/shieldwallgen{
+ pixel_y = 21;
+ id = "sunskipper_holo";
+ pixel_x = 11
+ },
+/turf/open/floor/carpet/black,
+/area/ship/hallway/central)
+"cf" = (
+/turf/closed/wall/r_wall/yesdiag,
+/area/ship/crew/cryo)
+"cx" = (
+/obj/machinery/biogenerator,
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/obj/effect/turf_decal/corner/opaque/black/half{
+ dir = 8
+ },
+/turf/open/floor/plasteel/mono,
+/area/ship/crew/hydroponics)
+"cC" = (
+/turf/open/floor/wood/ebony,
+/area/ship/crew/canteen)
+"cE" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
+/obj/effect/turf_decal/corner/opaque/bottlegreen/bordercorner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/effect/turf_decal/corner/opaque/bottlegreen/bordercorner{
+ dir = 1
+ },
+/obj/effect/turf_decal/corner/opaque/bottlegreen/bordercorner{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/food/tomato_smudge,
+/turf/open/floor/plasteel/mono/dark,
+/area/ship/crew/hydroponics)
+"cH" = (
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/grille,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "sunskipper_crew_shutters";
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/ship/crew/hydroponics)
+"cI" = (
+/obj/structure/fluff/hedge/opaque,
+/obj/structure/railing/wood{
+ dir = 10;
+ color = "#543C30"
+ },
+/obj/machinery/light/dim/directional/north,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"cY" = (
+/obj/effect/turf_decal/solarpanel,
+/obj/machinery/power/tracker,
+/obj/structure/cable/orange{
+ icon_state = "0-2"
+ },
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/orange{
+ icon_state = "2-4"
+ },
+/turf/open/floor/plating/airless,
+/area/ship/external/dark)
+"ds" = (
+/obj/structure/table/reinforced,
+/obj/item/table_bell{
+ pixel_x = -7;
+ pixel_y = 9
+ },
+/obj/item/reagent_containers/food/condiment/saltshaker{
+ pixel_y = 13;
+ pixel_x = 4
+ },
+/obj/item/reagent_containers/food/condiment/peppermill{
+ pixel_y = 13;
+ pixel_x = 11
+ },
+/turf/open/floor/plasteel/mono,
+/area/ship/crew/canteen/kitchen)
+"dG" = (
+/obj/structure/closet/wall/white/directional/south{
+ name = "Seeds Storage";
+ color = "#50C878";
+ storage_capacity = 38
+ },
+/obj/effect/turf_decal/corner/opaque/bottlegreen/border{
+ dir = 8
+ },
+/obj/item/seeds/apple,
+/obj/item/seeds/banana,
+/obj/item/seeds/berry,
+/obj/item/seeds/cabbage,
+/obj/item/seeds/carrot,
+/obj/item/seeds/carrot/parsnip,
+/obj/item/seeds/chanter,
+/obj/item/seeds/cherry,
+/obj/item/seeds/chili,
+/obj/item/seeds/chili/ice,
+/obj/item/seeds/cocoapod,
+/obj/item/seeds/cocoapod/vanillapod,
+/obj/item/seeds/coffee/robusta,
+/obj/item/seeds/corn,
+/obj/item/seeds/eggplant,
+/obj/item/seeds/garlic,
+/obj/item/seeds/grape,
+/obj/item/seeds/lemon,
+/obj/item/seeds/lime,
+/obj/item/seeds/onion,
+/obj/item/seeds/orange,
+/obj/item/seeds/peas,
+/obj/item/seeds/pineapple,
+/obj/item/seeds/plump,
+/obj/item/seeds/poppy,
+/obj/item/seeds/potato,
+/obj/item/seeds/potato/sweet,
+/obj/item/seeds/pumpkin,
+/obj/item/seeds/redbeet,
+/obj/item/seeds/seaweed,
+/obj/item/seeds/soya,
+/obj/item/seeds/sugarcane,
+/obj/item/seeds/tea/astra,
+/obj/item/seeds/tomato,
+/obj/item/seeds/watermelon,
+/obj/item/seeds/wheat,
+/obj/item/seeds/wheat/rice,
+/obj/item/seeds/whitebeet,
+/turf/open/floor/plasteel/mono/dark,
+/area/ship/crew/hydroponics)
+"dW" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 1;
+ color = "#543C30"
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"ex" = (
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/grille,
+/obj/machinery/door/poddoor/shutters{
+ id = "sunskipper_dining_shutters";
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/ship/hallway/central)
+"eI" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 2;
+ color = "#543C30"
+ },
+/obj/structure/chair/wood{
+ dir = 4
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"eK" = (
+/obj/structure/table/reinforced,
+/obj/item/cutting_board{
+ pixel_x = -5;
+ pixel_y = 5;
+ anchored = 1
+ },
+/obj/item/kitchen/knife{
+ pixel_x = -11;
+ pixel_y = 9
+ },
+/turf/open/floor/plasteel/mono/white,
+/area/ship/crew/canteen/kitchen)
+"eM" = (
+/obj/structure/chair/wood{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 9;
+ color = "#543C30"
+ },
+/obj/machinery/light/directional/west,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"eR" = (
+/obj/effect/turf_decal/ihejirika_small{
+ dir = 1
+ },
+/turf/open/floor/plating/airless,
+/area/ship/external/dark)
+"eU" = (
+/obj/machinery/power/terminal{
+ dir = 4
+ },
+/obj/structure/cable/orange{
+ icon_state = "0-2"
+ },
+/obj/item/radio/intercom/directional/north,
+/turf/open/floor/plating,
+/area/ship/maintenance/aft)
+"eW" = (
+/obj/structure/table/wood,
+/obj/structure/sign/painting/library{
+ pixel_y = 30
+ },
+/obj/machinery/fax/indie,
+/turf/open/floor/carpet/nanoweave/beige,
+/area/ship/bridge)
+"fg" = (
+/obj/machinery/power/apc/auto_name/directional/west,
+/obj/structure/cable/green,
+/obj/structure/dresser{
+ dir = 4
+ },
+/turf/open/floor/carpet/nanoweave/beige,
+/area/ship/crew/dorm)
+"fi" = (
+/turf/closed/wall/r_wall,
+/area/ship/crew/canteen)
+"fl" = (
+/turf/open/floor/plasteel/dark,
+/area/ship/crew/canteen/kitchen)
+"fz" = (
+/obj/machinery/light/directional/east,
+/obj/machinery/processor,
+/turf/open/floor/plasteel/mono,
+/area/ship/crew/canteen/kitchen)
+"fE" = (
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/holopad/emergency/kitchen,
+/turf/open/floor/plasteel/mono/white,
+/area/ship/crew/canteen/kitchen)
+"fP" = (
+/obj/structure/closet/crate/bin,
+/obj/item/trash/popcorn,
+/obj/item/trash/can,
+/turf/open/floor/carpet/nanoweave/beige,
+/area/ship/crew/dorm)
+"ga" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/light/floor{
+ pixel_x = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"gw" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 6;
+ color = "#543C30"
+ },
+/obj/structure/railing/wood{
+ color = "#543C30";
+ dir = 8
+ },
+/obj/structure/fluff/hedge/opaque,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"gE" = (
+/obj/machinery/firealarm/directional/north,
+/obj/structure/table/reinforced,
+/obj/item/radio/intercom/directional/west,
+/obj/machinery/jukebox/boombox,
+/turf/open/floor/plasteel/mono,
+/area/ship/crew/canteen/kitchen)
+"gU" = (
+/obj/structure/chair/wood{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 2;
+ color = "#543C30"
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"hh" = (
+/obj/effect/turf_decal/siding/wood/corner{
+ color = "#543C30";
+ dir = 4
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"hi" = (
+/obj/machinery/power/shuttle/engine/electric{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/ship/maintenance/aft)
+"hj" = (
+/obj/effect/turf_decal/solarpanel,
+/obj/machinery/power/solar,
+/obj/structure/cable/orange{
+ icon_state = "0-4"
+ },
+/obj/structure/cable/orange{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/orange{
+ icon_state = "2-4"
+ },
+/turf/open/floor/plating/airless,
+/area/ship/external/dark)
+"hC" = (
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-6"
+ },
+/obj/item/cigbutt,
+/turf/open/floor/plating,
+/area/ship/maintenance/aft)
+"hU" = (
+/obj/structure/table/wood,
+/obj/machinery/newscaster/directional/south,
+/obj/item/pen/fourcolor,
+/obj/item/pen/fountain{
+ pixel_y = 3;
+ pixel_x = 6
+ },
+/obj/item/phone{
+ pixel_x = -7;
+ pixel_y = -4
+ },
+/turf/open/floor/carpet/nanoweave/beige,
+/area/ship/bridge)
+"hW" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/wood{
+ color = "#792f27";
+ dir = 10
+ },
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/item/clothing/neck/stethoscope{
+ pixel_y = 18;
+ pixel_x = 11
+ },
+/turf/open/floor/wood/mahogany,
+/area/ship/bridge)
+"ib" = (
+/obj/item/candle{
+ pixel_y = 4
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 1;
+ color = "#543C30"
+ },
+/obj/structure/table/wood/fancy/red_gold,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"il" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 9;
+ color = "#332521"
+ },
+/obj/machinery/light_switch{
+ dir = 4;
+ pixel_y = -10;
+ pixel_x = -19
+ },
+/obj/structure/closet/cabinet,
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/item/toy/cards/deck/kotahi,
+/obj/item/toy/cards/deck/syndicate,
+/obj/item/toy/cards/deck/cas,
+/obj/item/toy/cards/deck/cas/black,
+/obj/item/storage/pill_bottle/dice/hazard,
+/turf/open/floor/wood/ebony,
+/area/ship/crew/canteen)
+"iC" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"iS" = (
+/obj/machinery/light/small/directional/east,
+/obj/effect/turf_decal/siding/wood{
+ color = "#792f27";
+ dir = 5
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 8
+ },
+/turf/open/floor/wood/mahogany,
+/area/ship/bridge)
+"jb" = (
+/obj/structure/sign/warning/docking,
+/turf/closed/wall/r_wall/yesdiag,
+/area/ship/hallway/central)
+"je" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"jk" = (
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/curtain/cloth/fancy,
+/turf/open/floor/carpet/red_gold,
+/area/ship/crew/canteen)
+"jo" = (
+/turf/closed/wall/r_wall,
+/area/ship/cargo)
+"jx" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 1
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"jy" = (
+/obj/structure/cable/green{
+ icon_state = "1-6"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/effect/turf_decal/corner/opaque/bottlegreen/border{
+ dir = 8
+ },
+/obj/structure/sign/warning/electricshock{
+ pixel_x = -25;
+ pixel_y = 36
+ },
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/obj/effect/turf_decal/corner/opaque/bottlegreen/border{
+ dir = 4
+ },
+/turf/open/floor/plasteel/mono/dark,
+/area/ship/crew/hydroponics)
+"jz" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "sunskipper_bridge_shutters";
+ name = "Bridge Lockdown";
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/ship/bridge)
+"jC" = (
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/grille,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "sunskipper_crew_shutters";
+ dir = 8
+ },
+/obj/structure/cable/orange{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/ship/crew/hydroponics)
+"jR" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/effect/turf_decal/corner/opaque/bottlegreen/border{
+ dir = 1
+ },
+/obj/structure/cable/orange{
+ icon_state = "5-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/obj/item/reagent_containers/glass/bucket{
+ pixel_x = 7;
+ pixel_y = 14
+ },
+/turf/open/floor/plasteel/mono/dark,
+/area/ship/crew/hydroponics)
+"jS" = (
+/obj/machinery/door/airlock/command{
+ name = "Bridge";
+ req_access = list(20)
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/firedoor/border_only{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/turf_decal/siding/wood/end{
+ color = "#792f27"
+ },
+/turf/open/floor/wood/mahogany,
+/area/ship/bridge)
+"kw" = (
+/obj/structure/table/reinforced,
+/obj/item/radio/intercom/directional/east,
+/turf/open/floor/plasteel/mono/white,
+/area/ship/crew/canteen/kitchen)
+"ky" = (
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/obj/structure/cable/green{
+ icon_state = "9-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/cable/green{
+ icon_state = "6-10"
+ },
+/turf/open/floor/carpet/red_gold,
+/area/ship/hallway/central)
+"kG" = (
+/obj/machinery/shower{
+ pixel_y = 20
+ },
+/obj/structure/curtain,
+/obj/machinery/light/dim/directional/west,
+/obj/item/soap,
+/turf/open/floor/noslip,
+/area/ship/crew/dorm)
+"kO" = (
+/obj/machinery/power/terminal{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/ship/maintenance/aft)
+"kW" = (
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/button/door{
+ pixel_y = -20;
+ pixel_x = 7;
+ name = "Cargo Bay Shutters Control";
+ dir = 1;
+ id = "sunskipper_storage"
+ },
+/obj/machinery/light_switch{
+ pixel_x = -2;
+ pixel_y = -19;
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/closet/crate/wooden{
+ name = "mining gear crate"
+ },
+/obj/item/pickaxe,
+/obj/item/pickaxe,
+/obj/item/kitchen/knife/hunting,
+/obj/item/kitchen/knife/hunting,
+/obj/item/clothing/suit/hazardvest,
+/obj/item/clothing/suit/hazardvest,
+/obj/item/clothing/head/hardhat/mining,
+/obj/item/clothing/head/hardhat/mining,
+/obj/machinery/firealarm/directional/south{
+ pixel_x = -12
+ },
+/turf/open/floor/plasteel/tech,
+/area/ship/cargo)
+"kX" = (
+/turf/closed/wall,
+/area/ship/hallway/central)
+"kZ" = (
+/obj/structure/cable/green{
+ 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/floor/plasteel/mono,
+/area/ship/crew/canteen/kitchen)
+"lf" = (
+/obj/machinery/atmospherics/components/binary/pump/on/layer2{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/closet/wall/orange/directional/south{
+ name = "Tool Closet"
+ },
+/obj/item/flashlight,
+/obj/item/storage/toolbox/electrical,
+/obj/item/clothing/head/welding,
+/obj/item/storage/toolbox/mechanical,
+/obj/item/weldingtool/largetank,
+/turf/open/floor/plating,
+/area/ship/maintenance/aft)
+"lu" = (
+/turf/open/floor/carpet/nanoweave/beige,
+/area/ship/crew/dorm)
+"lI" = (
+/obj/structure/cable/green{
+ 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/firedoor/border_only{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/obj/structure/curtain/cloth/grey,
+/obj/machinery/door/airlock{
+ dir = 4;
+ name = "Kitchen";
+ req_one_access = list(25, 28, 35)
+ },
+/turf/open/floor/plasteel/mono/white,
+/area/ship/crew/canteen/kitchen)
+"lK" = (
+/obj/machinery/photocopier,
+/turf/open/floor/carpet/nanoweave/beige,
+/area/ship/bridge)
+"lV" = (
+/obj/structure/crate_shelf,
+/obj/structure/sign/poster/contraband/space_cube{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/tech,
+/area/ship/cargo)
+"mk" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 2
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 9
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 9;
+ color = "#543C30"
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"mm" = (
+/obj/structure/table/wood/reinforced,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 2;
+ color = "#332521"
+ },
+/turf/open/floor/wood/ebony,
+/area/ship/crew/canteen)
+"mr" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/turf_decal/borderfloorblack,
+/turf/open/floor/plasteel/tech,
+/area/ship/bridge)
+"mD" = (
+/obj/structure/cable/orange{
+ icon_state = "6-9"
+ },
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = 19;
+ pixel_y = -10
+ },
+/obj/machinery/vending/hydronutrients,
+/turf/open/floor/plasteel/mono/dark,
+/area/ship/crew/hydroponics)
+"mQ" = (
+/obj/structure/cable/green{
+ 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/floor/wood/walnut,
+/area/ship/crew/canteen)
+"mR" = (
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 1;
+ color = "#543C30"
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 1;
+ color = "#543C30"
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"mW" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 2;
+ color = "#543C30"
+ },
+/obj/structure/railing/wood{
+ color = "#543C30";
+ dir = 8
+ },
+/obj/structure/fluff/hedge/opaque,
+/obj/structure/railing/wood{
+ color = "#543C30";
+ dir = 4
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"mX" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-5"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/wood{
+ color = "#D5A66E";
+ dir = 10
+ },
+/turf/open/floor/wood/birch,
+/area/ship/crew/dorm)
+"ne" = (
+/obj/structure/extinguisher_cabinet/directional/east{
+ pixel_y = 7
+ },
+/obj/effect/turf_decal/siding/wood{
+ color = "#D5A66E";
+ dir = 6
+ },
+/obj/machinery/firealarm/directional/east{
+ pixel_y = -5
+ },
+/turf/open/floor/wood/birch,
+/area/ship/crew/dorm)
+"ng" = (
+/obj/item/candle{
+ pixel_y = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 1
+ },
+/obj/structure/table/wood/fancy/red_gold,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"nj" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
+ },
+/turf/open/floor/carpet/red_gold,
+/area/ship/hallway/central)
+"nJ" = (
+/obj/structure/cable/green{
+ icon_state = "2-9"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/turf_decal/siding/wood/corner{
+ color = "#792f27";
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/wood/corner{
+ color = "#792f27"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/turf/open/floor/wood/mahogany,
+/area/ship/bridge)
+"nK" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 5;
+ color = "#332521"
+ },
+/obj/machinery/vending/boozeomat/all_access,
+/turf/open/floor/wood/ebony,
+/area/ship/crew/canteen)
+"nM" = (
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/obj/machinery/vending/dinnerware,
+/turf/open/floor/plasteel/mono,
+/area/ship/crew/canteen/kitchen)
+"nQ" = (
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/grille,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "sunskipper_bridge_shutters";
+ name = "Bridge Lockdown"
+ },
+/turf/open/floor/plating,
+/area/ship/bridge)
+"ob" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/turf/open/floor/plasteel/mono,
+/area/ship/crew/canteen/kitchen)
+"ok" = (
+/obj/effect/turf_decal/siding/wood/corner{
+ color = "#543C30"
+ },
+/obj/structure/chair/wood{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 5
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"om" = (
+/obj/structure/table/wood/reinforced,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 2;
+ color = "#332521"
+ },
+/turf/open/floor/wood/ebony,
+/area/ship/crew/canteen)
+"on" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
+ },
+/obj/effect/turf_decal/siding/wood{
+ color = "#D5A66E"
+ },
+/turf/open/floor/wood/birch,
+/area/ship/crew/dorm)
+"op" = (
+/obj/structure/bed{
+ dir = 1
+ },
+/obj/item/bedsheet/dorms{
+ dir = 1
+ },
+/obj/structure/curtain/cloth/grey,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/item/radio/intercom/directional/west,
+/turf/open/floor/carpet/nanoweave/beige,
+/area/ship/crew/dorm)
+"oO" = (
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "2-5"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/turf/open/floor/carpet/red_gold,
+/area/ship/hallway/central)
+"pp" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 6;
+ color = "#543C30"
+ },
+/obj/item/candle{
+ pixel_y = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 8
+ },
+/obj/structure/table/wood/fancy/red_gold,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"pw" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/structure/cable/green{
+ icon_state = "0-6"
+ },
+/obj/structure/closet/wall/directional/north{
+ name = "Telecommunication Equipment"
+ },
+/obj/item/radio,
+/obj/item/radio,
+/obj/item/radio,
+/obj/item/radio,
+/obj/item/radio,
+/obj/item/radio,
+/turf/open/floor/carpet/nanoweave,
+/area/ship/crew/cryo)
+"pJ" = (
+/obj/structure/cable/green{
+ icon_state = "6-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/wood/corner{
+ color = "#792f27";
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/wood{
+ color = "#792f27";
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 5
+ },
+/turf/open/floor/wood/mahogany,
+/area/ship/bridge)
+"pM" = (
+/obj/structure/sink/kitchen{
+ dir = 8;
+ layer = 2.04
+ },
+/obj/structure/sign/warning/nosmoking/circle{
+ pixel_x = 24
+ },
+/obj/structure/sign/directions/evac{
+ dir = 4;
+ pixel_x = 32;
+ pixel_y = -10
+ },
+/turf/open/floor/plasteel/mono,
+/area/ship/crew/canteen/kitchen)
+"pS" = (
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"pT" = (
+/obj/structure/closet/secure_closet/freezer/fridge/open,
+/obj/effect/turf_decal/borderfloorblack,
+/obj/effect/turf_decal/box,
+/turf/open/floor/plasteel/dark,
+/area/ship/crew/canteen/kitchen)
+"qj" = (
+/obj/effect/turf_decal/solarpanel,
+/obj/machinery/power/solar,
+/obj/structure/cable/orange{
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating/airless,
+/area/ship/external/dark)
+"qk" = (
+/obj/structure/window/plasma/reinforced{
+ dir = 8
+ },
+/obj/machinery/power/smes/shuttle/precharged{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/machinery/door/poddoor{
+ id = "sunskipper_engine_shutters";
+ name = "Engineering Blast Doors";
+ dir = 4
+ },
+/obj/machinery/door/window/eastright{
+ name = "Engine Access"
+ },
+/turf/open/floor/plating,
+/area/ship/maintenance/aft)
+"qm" = (
+/obj/machinery/hydroponics/constructable{
+ layer = 2
+ },
+/obj/effect/turf_decal/corner/opaque/bottlegreen/border{
+ dir = 1
+ },
+/obj/structure/extinguisher_cabinet/directional/south{
+ pixel_x = 6
+ },
+/obj/machinery/firealarm/directional/south{
+ pixel_x = -6
+ },
+/turf/open/floor/plasteel/mono/dark,
+/area/ship/crew/hydroponics)
+"qD" = (
+/obj/machinery/door/airlock/public{
+ dir = 4;
+ name = "Bathroom";
+ id_tag = "sunskipper_bathroom"
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
+ },
+/turf/open/floor/plasteel/patterned,
+/area/ship/crew/dorm)
+"qG" = (
+/obj/effect/turf_decal/industrial/warning/corner,
+/obj/machinery/autolathe,
+/obj/machinery/light/directional/north,
+/turf/open/floor/plasteel/tech,
+/area/ship/cargo)
+"qP" = (
+/turf/closed/wall/r_wall,
+/area/ship/crew/canteen/kitchen)
+"qV" = (
+/obj/structure/window/plasma/reinforced{
+ dir = 8
+ },
+/obj/machinery/power/smes/shuttle/precharged{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/machinery/door/window/eastleft{
+ name = "Engine Access"
+ },
+/obj/machinery/door/poddoor{
+ id = "sunskipper_engine_shutters";
+ name = "Engineering Blast Doors";
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/ship/maintenance/aft)
+"rf" = (
+/obj/structure/table/wood,
+/obj/machinery/computer/helm/viewscreen/directional/east,
+/obj/machinery/airalarm/directional/north,
+/obj/item/modular_computer/laptop/preset/civilian,
+/turf/open/floor/carpet/nanoweave/beige,
+/area/ship/crew/dorm)
+"rl" = (
+/obj/machinery/door/airlock/grunge{
+ id_tag = "sunskipper_toilet";
+ name = "Toilet";
+ req_ship_access = 0
+ },
+/turf/open/floor/plasteel/patterned,
+/area/ship/crew/toilet)
+"ro" = (
+/obj/structure/table/wood/fancy/red_gold,
+/obj/item/candle{
+ pixel_y = 21
+ },
+/turf/open/floor/wood/mahogany,
+/area/ship/crew/canteen)
+"rr" = (
+/turf/closed/wall,
+/area/ship/crew/canteen/kitchen)
+"ru" = (
+/obj/structure/grille,
+/obj/structure/window/plasma/fulltile,
+/obj/machinery/door/poddoor/shutters{
+ id = "sunskipper_dining_shutters"
+ },
+/turf/open/floor/plating,
+/area/ship/crew/canteen)
+"rD" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
+ },
+/turf/open/floor/plasteel/mono/white,
+/area/ship/crew/canteen/kitchen)
+"rS" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/firedoor/border_only{
+ dir = 1
+ },
+/obj/machinery/door/airlock/wood/glass{
+ id_tag = "sunskipper_lobby";
+ name = "Lobby";
+ req_ship_access = 0
+ },
+/turf/open/floor/carpet/red_gold,
+/area/ship/hallway/central)
+"rT" = (
+/obj/machinery/gibber,
+/obj/effect/turf_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/structure/sign/poster/contraband/starkist{
+ pixel_x = -32
+ },
+/obj/effect/decal/cleanable/blood/gibs/old,
+/turf/open/floor/plasteel/dark,
+/area/ship/crew/canteen/kitchen)
+"sd" = (
+/obj/structure/chair/wood{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 1;
+ color = "#543C30"
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"sk" = (
+/obj/machinery/light/directional/south,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/plasteel/patterned,
+/area/ship/crew/toilet)
+"sm" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/plasteel/mono,
+/area/ship/crew/canteen/kitchen)
+"sx" = (
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
+ },
+/obj/machinery/smartfridge/food,
+/obj/effect/turf_decal/corner/opaque/black/half{
+ dir = 8
+ },
+/turf/open/floor/plasteel/mono/white,
+/area/ship/crew/hydroponics)
+"sN" = (
+/turf/closed/wall/r_wall/yesdiag,
+/area/ship/crew/toilet)
+"sW" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/wood{
+ color = "#792f27";
+ dir = 1
+ },
+/turf/open/floor/wood/mahogany,
+/area/ship/bridge)
+"tb" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 1;
+ color = "#543C30"
+ },
+/obj/machinery/vending/cigarette,
+/obj/structure/railing/wood{
+ color = "#543C30";
+ dir = 8
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"td" = (
+/obj/structure/chair/stool/bar{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 9;
+ color = "#543C30"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/extinguisher_cabinet/directional/west,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"tr" = (
+/obj/machinery/power/smes/engineering,
+/obj/structure/cable/green{
+ icon_state = "0-10"
+ },
+/obj/structure/sign/warning/electricshock{
+ pixel_y = 28
+ },
+/turf/open/floor/plating,
+/area/ship/maintenance/aft)
+"ty" = (
+/obj/structure/fluff/hedge/opaque,
+/obj/effect/turf_decal/siding/wood/corner{
+ color = "#543C30";
+ dir = 8
+ },
+/obj/structure/railing/wood{
+ color = "#543C30";
+ dir = 8
+ },
+/obj/structure/railing/wood{
+ color = "#543C30";
+ dir = 4
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"tJ" = (
+/obj/machinery/door/airlock/wood/glass{
+ dir = 4;
+ name = "Cryopod Room"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/turf/open/floor/carpet/nanoweave,
+/area/ship/crew/cryo)
+"tP" = (
+/obj/structure/table/wood/reinforced,
+/obj/effect/turf_decal/siding/wood{
+ dir = 10;
+ color = "#332521"
+ },
+/obj/item/radio/intercom/directional/west,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/open/floor/wood/ebony,
+/area/ship/crew/canteen)
+"uc" = (
+/obj/machinery/airalarm/directional/east,
+/obj/effect/turf_decal/siding/wood{
+ color = "#792f27";
+ dir = 6
+ },
+/obj/machinery/light_switch{
+ pixel_x = -10;
+ pixel_y = -19;
+ dir = 1
+ },
+/obj/structure/bed/dogbed{
+ name = "Remy's bed";
+ anchored = 1
+ },
+/mob/living/simple_animal/mouse/gray{
+ name = "Remy"
+ },
+/turf/open/floor/wood/mahogany,
+/area/ship/bridge)
+"uj" = (
+/turf/closed/wall,
+/area/ship/cargo)
+"ul" = (
+/obj/machinery/light/directional/north,
+/turf/open/floor/plasteel/mono,
+/area/ship/crew/canteen/kitchen)
+"up" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/wood{
+ color = "#792f27"
+ },
+/obj/item/radio/intercom/directional/south,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 4;
+ color = "#792f27"
+ },
+/turf/open/floor/wood/mahogany,
+/area/ship/bridge)
+"ux" = (
+/obj/effect/turf_decal/solarpanel,
+/obj/machinery/power/solar,
+/obj/structure/cable/orange{
+ icon_state = "0-8"
+ },
+/obj/structure/cable/orange{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating/airless,
+/area/ship/external/dark)
+"uz" = (
+/obj/item/mop,
+/obj/item/reagent_containers/glass/bucket,
+/obj/item/storage/bag/trash,
+/obj/machinery/firealarm/directional/east,
+/obj/structure/extinguisher_cabinet/directional/south,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 1
+ },
+/obj/structure/janitorialcart,
+/turf/open/floor/plasteel/patterned,
+/area/ship/crew/toilet)
+"uG" = (
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/obj/structure/chair/wood{
+ dir = 2
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"uP" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 6;
+ color = "#543C30"
+ },
+/obj/structure/chair/wood{
+ dir = 8
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"uQ" = (
+/turf/closed/wall,
+/area/ship/crew/dorm)
+"vf" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 5;
+ color = "#543C30"
+ },
+/obj/structure/chair/sofa/red/right/directional/west,
+/turf/open/floor/wood/mahogany,
+/area/ship/crew/canteen)
+"vh" = (
+/obj/structure/fluff/hedge,
+/obj/structure/railing/wood{
+ layer = 3.1;
+ dir = 2;
+ color = "#792f27"
+ },
+/turf/open/floor/plasteel/tech/grid,
+/area/ship/bridge)
+"vy" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 8;
+ color = "#543C30"
+ },
+/obj/machinery/light/floor{
+ pixel_x = -10
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"vB" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"vH" = (
+/turf/open/floor/plasteel/mono,
+/area/ship/crew/canteen/kitchen)
+"vI" = (
+/obj/structure/sink{
+ pixel_y = 24;
+ layer = 2.91
+ },
+/obj/structure/mirror{
+ pixel_y = 34
+ },
+/turf/open/floor/plasteel/patterned,
+/area/ship/crew/toilet)
+"wf" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 8
+ },
+/turf/open/floor/carpet/nanoweave/beige,
+/area/ship/crew/dorm)
+"wg" = (
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/mono/white,
+/area/ship/crew/canteen/kitchen)
+"wK" = (
+/turf/closed/wall/r_wall,
+/area/ship/hallway/central)
+"wM" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 5;
+ color = "#543C30"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"xe" = (
+/obj/machinery/light/directional/north,
+/obj/machinery/light_switch{
+ dir = 4;
+ pixel_y = -10;
+ pixel_x = -19
+ },
+/obj/effect/turf_decal/siding/wood{
+ color = "#D5A66E";
+ dir = 9
+ },
+/obj/machinery/vending/cigarette,
+/turf/open/floor/wood/birch,
+/area/ship/crew/dorm)
+"xn" = (
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/grille,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "sunskipper_bridge_shutters";
+ name = "Bridge Lockdown";
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/ship/bridge)
+"xo" = (
+/obj/machinery/light/directional/north,
+/obj/structure/chair/office,
+/turf/open/floor/carpet/nanoweave/beige,
+/area/ship/bridge)
+"xH" = (
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/machinery/door/poddoor{
+ id = "sunskipper_entrance"
+ },
+/obj/machinery/power/shieldwallgen/atmos/roundstart{
+ dir = 8;
+ id = "sunskipper_holo";
+ locked = 1
+ },
+/turf/open/floor/carpet/red_gold,
+/area/ship/hallway/central)
+"xI" = (
+/obj/item/reagent_containers/glass/bucket{
+ pixel_x = 12;
+ pixel_y = -8
+ },
+/turf/open/floor/plasteel/mono/dark,
+/area/ship/crew/hydroponics)
+"xJ" = (
+/obj/item/kirbyplants/random{
+ pixel_x = 8
+ },
+/obj/machinery/light_switch{
+ pixel_x = -10;
+ pixel_y = -19;
+ dir = 1
+ },
+/turf/open/floor/plasteel/mono,
+/area/ship/crew/canteen/kitchen)
+"xM" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 1;
+ color = "#543C30"
+ },
+/obj/structure/table/wood/fancy/red_gold,
+/turf/open/floor/wood/mahogany,
+/area/ship/crew/canteen)
+"xT" = (
+/obj/structure/cable/orange{
+ icon_state = "5-10"
+ },
+/obj/structure/table/reinforced,
+/turf/open/floor/plasteel/mono,
+/area/ship/crew/canteen/kitchen)
+"xW" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 8;
+ color = "#543C30"
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"ya" = (
+/obj/structure/toilet{
+ pixel_y = -4;
+ dir = 1
+ },
+/obj/machinery/button/door{
+ pixel_x = -22;
+ dir = 4;
+ pixel_y = 9;
+ id = "sunskipper_toilet";
+ name = "Door Bolts";
+ specialfunctions = 4;
+ normaldoorcontrol = 1
+ },
+/obj/machinery/light/dim/directional/south,
+/obj/machinery/newscaster/directional/east,
+/turf/open/floor/plasteel/patterned,
+/area/ship/crew/toilet)
+"yi" = (
+/obj/item/kirbyplants/random{
+ pixel_y = 20
+ },
+/obj/machinery/airalarm/directional/north,
+/turf/open/floor/plasteel/patterned,
+/area/ship/crew/toilet)
+"yn" = (
+/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/structure/sign/warning/vacuum/external{
+ pixel_y = 39
+ },
+/obj/effect/turf_decal/siding/wood/corner{
+ color = "#543C30";
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 1;
+ color = "#543C30"
+ },
+/obj/structure/extinguisher_cabinet/directional/north,
+/turf/open/floor/wood/walnut,
+/area/ship/hallway/central)
+"yp" = (
+/obj/structure/grille,
+/obj/structure/window/plasma/fulltile,
+/obj/machinery/door/poddoor/shutters{
+ id = "sunskipper_dining_shutters";
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/ship/crew/canteen)
+"yu" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/cable/orange{
+ icon_state = "6-9"
+ },
+/obj/structure/cable/orange{
+ icon_state = "9-10"
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 1
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/maintenance{
+ req_one_access = list(25, 28, 35)
+ },
+/turf/open/floor/plating,
+/area/ship/maintenance/aft)
+"yB" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 6;
+ color = "#543C30"
+ },
+/obj/structure/sign/painting/library{
+ pixel_y = -30
+ },
+/obj/structure/chair/sofa/red/corner/directional/west,
+/turf/open/floor/wood/mahogany,
+/area/ship/crew/canteen)
+"yH" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 2;
+ color = "#543C30"
+ },
+/obj/structure/chair/sofa/red/directional/north,
+/turf/open/floor/wood/mahogany,
+/area/ship/crew/canteen)
+"yL" = (
+/obj/structure/closet/crate/bin,
+/obj/item/reagent_containers/food/snacks/badrecipe,
+/obj/item/trash/can/food/peaches,
+/obj/structure/sign/directions/evac{
+ dir = 4;
+ pixel_y = -20
+ },
+/turf/open/floor/plasteel/mono,
+/area/ship/crew/canteen/kitchen)
+"yQ" = (
+/obj/effect/turf_decal/siding/wood/corner{
+ color = "#543C30";
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 2
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"zc" = (
+/obj/effect/turf_decal/siding/wood{
+ color = "#792f27";
+ dir = 9
+ },
+/obj/structure/safe,
+/obj/item/spacecash/bundle/c1000,
+/obj/item/reagent_containers/food/drinks/breakawayflask/vintage/ashwine,
+/obj/item/gun/energy/e_gun/mini,
+/obj/structure/sign/painting/library{
+ pixel_y = 30
+ },
+/turf/open/floor/wood/mahogany,
+/area/ship/bridge)
+"zj" = (
+/obj/structure/table/wood/reinforced,
+/obj/effect/turf_decal/siding/wood{
+ dir = 6;
+ color = "#332521"
+ },
+/obj/machinery/newscaster/directional/east,
+/turf/open/floor/wood/ebony,
+/area/ship/crew/canteen)
+"zm" = (
+/obj/machinery/power/apc/auto_name/directional/west,
+/obj/structure/cable/green{
+ icon_state = "0-6"
+ },
+/turf/open/floor/plasteel/mono/white,
+/area/ship/crew/canteen/kitchen)
+"zw" = (
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/dept/cargo{
+ dir = 4
+ },
+/turf/open/floor/plasteel/tech,
+/area/ship/cargo)
+"zC" = (
+/obj/effect/turf_decal/solarpanel,
+/obj/machinery/power/solar,
+/obj/structure/cable/orange,
+/turf/open/floor/plating/airless,
+/area/ship/external/dark)
+"zP" = (
+/obj/structure/chair/stool/bar{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 1;
+ color = "#543C30"
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"zS" = (
+/turf/closed/wall/r_wall/yesdiag,
+/area/ship/crew/canteen)
+"Ai" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/effect/turf_decal/corner/opaque/bottlegreen/border{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/turf/open/floor/plasteel/mono/dark,
+/area/ship/crew/hydroponics)
+"Az" = (
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
+ },
+/obj/machinery/door/poddoor/shutters{
+ dir = 8;
+ id = "sunskipper_storage";
+ name = "Cargo Hold"
+ },
+/obj/effect/turf_decal/industrial/stand_clear{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/turf/open/floor/plasteel/tech,
+/area/ship/cargo)
+"AP" = (
+/obj/machinery/computer/cargo/express{
+ icon_state = "computer-right";
+ dir = 8
+ },
+/obj/structure/railing/wood{
+ layer = 3.1;
+ dir = 2;
+ color = "#792f27"
+ },
+/obj/effect/turf_decal/borderfloorblack{
+ dir = 6
+ },
+/turf/open/floor/plasteel/tech,
+/area/ship/bridge)
+"AR" = (
+/turf/closed/wall/r_wall,
+/area/ship/crew/hydroponics)
+"AX" = (
+/obj/effect/turf_decal/siding/wood/corner{
+ color = "#543C30";
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"AY" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 9;
+ color = "#543C30"
+ },
+/obj/machinery/jukebox,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"Ba" = (
+/obj/machinery/light/small/directional/east,
+/obj/structure/reagent_dispensers/cooking_oil,
+/turf/open/floor/plasteel/mono/white,
+/area/ship/crew/canteen/kitchen)
+"Bg" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
+ },
+/turf/open/floor/plasteel/mono/dark,
+/area/ship/crew/hydroponics)
+"Bl" = (
+/obj/structure/urinal{
+ dir = 4;
+ pixel_x = -16
+ },
+/obj/item/radio/intercom/directional/north,
+/turf/open/floor/plasteel/patterned,
+/area/ship/crew/toilet)
+"Bo" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/firedoor/border_only{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 4;
+ color = "#543C30"
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 8;
+ color = "#543C30"
+ },
+/obj/machinery/door/airlock{
+ name = "Front Desk";
+ req_one_access = list(25, 28, 35)
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"By" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 8
+ },
+/turf/open/floor/plasteel/mono/white,
+/area/ship/crew/canteen/kitchen)
+"Bz" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 9;
+ color = "#543C30"
+ },
+/obj/machinery/firealarm/directional/west,
+/obj/structure/chair/sofa/red/left/directional/east,
+/turf/open/floor/wood/mahogany,
+/area/ship/crew/canteen)
+"BA" = (
+/turf/closed/wall,
+/area/ship/maintenance/aft)
+"BO" = (
+/obj/structure/curtain/cloth/fancy,
+/obj/machinery/button/door{
+ pixel_x = 22;
+ name = "Lobby Door Bolts Control";
+ normaldoorcontrol = 1;
+ specialfunctions = 4;
+ id = "sunskipper_lobby";
+ dir = 8;
+ pixel_y = 4
+ },
+/turf/open/floor/carpet/red_gold,
+/area/ship/crew/canteen)
+"BR" = (
+/turf/closed/wall/r_wall/yesdiag,
+/area/ship/crew/dorm)
+"Ce" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/cable/green{
+ icon_state = "2-9"
+ },
+/obj/effect/decal/cleanable/food/tomato_smudge,
+/turf/open/floor/plasteel/mono,
+/area/ship/crew/canteen/kitchen)
+"Cu" = (
+/turf/closed/wall/r_wall,
+/area/ship/bridge)
+"Cx" = (
+/obj/structure/table/wood/reinforced,
+/obj/item/radio/intercom/table{
+ dir = 8;
+ pixel_x = -7;
+ pixel_y = -2
+ },
+/obj/item/table_bell{
+ pixel_x = -7;
+ pixel_y = 26
+ },
+/obj/effect/turf_decal/siding/wood/end{
+ color = "#543C30"
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/hallway/central)
+"CA" = (
+/obj/effect/turf_decal/siding/wood{
+ color = "#792f27"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/light/directional/south,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/siding/wood{
+ color = "#792f27";
+ dir = 1
+ },
+/turf/open/floor/wood/mahogany,
+/area/ship/bridge)
+"CH" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"CM" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp/green{
+ pixel_x = -5;
+ pixel_y = 3
+ },
+/obj/item/reagent_containers/food/snacks/sandwich{
+ pixel_x = 15;
+ pixel_y = 13
+ },
+/turf/open/floor/carpet/nanoweave/beige,
+/area/ship/crew/dorm)
+"CQ" = (
+/obj/machinery/firealarm/directional/west,
+/obj/effect/turf_decal/siding/wood{
+ dir = 10;
+ color = "#543C30"
+ },
+/obj/structure/railing/wood{
+ color = "#543C30";
+ dir = 4
+ },
+/obj/structure/fluff/hedge/opaque,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"De" = (
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/grille,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "sunskipper_crew_shutters"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/ship/crew/hydroponics)
+"Dg" = (
+/obj/structure/sink/kitchen{
+ dir = 4;
+ layer = 2.04
+ },
+/turf/open/floor/plasteel/mono,
+/area/ship/crew/canteen/kitchen)
+"Ds" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 4;
+ color = "#543C30"
+ },
+/obj/structure/chair/wood,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"DH" = (
+/obj/structure/cable/orange{
+ icon_state = "5-10"
+ },
+/turf/open/floor/plasteel/mono,
+/area/ship/crew/canteen/kitchen)
+"DJ" = (
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/turf_decal/siding/wood{
+ dir = 9;
+ color = "#543C30"
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"DK" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 5
+ },
+/turf/open/floor/carpet/nanoweave/beige,
+/area/ship/crew/dorm)
+"DN" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 1
+ },
+/turf/open/floor/plasteel/mono/dark,
+/area/ship/crew/hydroponics)
+"DY" = (
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"Ea" = (
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/power/terminal{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "0-6"
+ },
+/obj/item/stack/sheet/mineral/plasma{
+ amount = 10
+ },
+/obj/structure/closet/crate/engineering/electrical{
+ name = "fuel crate"
+ },
+/obj/effect/decal/cleanable/cobweb,
+/obj/machinery/button/door{
+ name = "Engine Blast Doors";
+ id = "sunskipper_engine_shutters";
+ pixel_y = 22
+ },
+/obj/item/stack/sheet/mineral/coal/ten,
+/turf/open/floor/plating,
+/area/ship/maintenance/aft)
+"Eg" = (
+/obj/machinery/icecream_vat,
+/turf/open/floor/plasteel/mono/white,
+/area/ship/crew/canteen/kitchen)
+"Ez" = (
+/obj/machinery/holopad,
+/obj/structure/railing/wood{
+ layer = 3.1;
+ dir = 10;
+ color = "#792f27"
+ },
+/obj/effect/turf_decal/borderfloorblack{
+ dir = 10
+ },
+/turf/open/floor/plasteel/tech,
+/area/ship/bridge)
+"EG" = (
+/obj/effect/turf_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/firealarm/directional/west{
+ pixel_y = -6
+ },
+/obj/structure/extinguisher_cabinet/directional/west{
+ pixel_y = 6
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "2-9"
+ },
+/turf/open/floor/carpet/red_gold,
+/area/ship/hallway/central)
+"ER" = (
+/obj/structure/fluff/hedge/opaque,
+/obj/structure/railing/wood{
+ dir = 6;
+ color = "#543C30"
+ },
+/obj/structure/sign/directions/evac{
+ dir = 1;
+ pixel_y = 24
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"ET" = (
+/obj/effect/turf_decal/ihejirika_small/right{
+ dir = 1
+ },
+/turf/open/floor/plating/airless,
+/area/ship/external/dark)
+"Fb" = (
+/obj/machinery/light/directional/east,
+/obj/effect/turf_decal/siding/wood{
+ dir = 4;
+ color = "#543C30"
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 8;
+ color = "#543C30"
+ },
+/obj/structure/chair/comfy/red/directional/west,
+/turf/open/floor/wood/walnut,
+/area/ship/hallway/central)
+"Fw" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
+ },
+/turf/open/floor/plasteel/patterned,
+/area/ship/crew/toilet)
+"FG" = (
+/obj/structure/chair/wood{
+ dir = 8
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"FN" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"FO" = (
+/obj/structure/chair/wood{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 6;
+ color = "#543C30"
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"FP" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "sunskipper_crew_shutters"
+ },
+/turf/open/floor/plating,
+/area/ship/crew/canteen/kitchen)
+"FY" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 8;
+ color = "#543C30"
+ },
+/obj/machinery/light/dim/directional/west,
+/obj/structure/chair/sofa/red/directional/east,
+/turf/open/floor/wood/mahogany,
+/area/ship/crew/canteen)
+"Gd" = (
+/obj/machinery/light/directional/north,
+/obj/structure/cable/orange{
+ icon_state = "5-10"
+ },
+/obj/structure/reagent_dispensers/watertank/high,
+/obj/effect/turf_decal/industrial/hatch/blue,
+/turf/open/floor/plasteel/mono/dark,
+/area/ship/crew/hydroponics)
+"Ge" = (
+/obj/structure/table/wood/reinforced,
+/obj/item/paper_bin{
+ pixel_x = 9;
+ pixel_y = 6
+ },
+/obj/item/flashlight/lamp{
+ pixel_x = -6;
+ pixel_y = 13
+ },
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/structure/cable/green{
+ icon_state = "0-9"
+ },
+/obj/item/pen/fourcolor,
+/obj/effect/turf_decal/siding/wood{
+ dir = 4;
+ color = "#543C30"
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 8;
+ color = "#543C30"
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/hallway/central)
+"Gp" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/cable/orange{
+ icon_state = "1-6"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/obj/structure/extinguisher_cabinet/directional/south{
+ pixel_x = 6
+ },
+/obj/machinery/firealarm/directional/south{
+ pixel_x = -6
+ },
+/turf/open/floor/plating,
+/area/ship/maintenance/aft)
+"Gt" = (
+/obj/structure/chair/sofa/red/left/directional/north,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"Gv" = (
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
+/turf/open/floor/carpet/red_gold,
+/area/ship/hallway/central)
+"Gw" = (
+/obj/structure/cable/green{
+ icon_state = "2-5"
+ },
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "5-9"
+ },
+/obj/structure/cable/orange{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plating,
+/area/ship/maintenance/aft)
+"Gz" = (
+/obj/effect/turf_decal/solarpanel,
+/obj/machinery/power/solar,
+/obj/structure/cable/orange{
+ icon_state = "0-2"
+ },
+/obj/structure/cable/orange{
+ icon_state = "2-4"
+ },
+/turf/open/floor/plating/airless,
+/area/ship/external/dark)
+"GG" = (
+/obj/effect/turf_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/machinery/door/poddoor{
+ id = "sunskipper_entrance"
+ },
+/obj/machinery/power/shieldwallgen/atmos/roundstart{
+ dir = 4;
+ id = "sunskipper_holo";
+ locked = 1
+ },
+/obj/docking_port/mobile{
+ dir = 2;
+ port_direction = 8;
+ preferred_direction = 4
+ },
+/turf/open/floor/carpet/red_gold,
+/area/ship/hallway/central)
+"GM" = (
+/obj/structure/table/reinforced,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/turf/open/floor/plasteel/mono/white,
+/area/ship/crew/canteen/kitchen)
+"GR" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
+ },
+/turf/open/floor/carpet/nanoweave,
+/area/ship/crew/cryo)
+"Hj" = (
+/obj/machinery/power/solar_control{
+ dir = 8
+ },
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/obj/structure/railing{
+ color = "#999999"
+ },
+/obj/machinery/light/small/directional/east,
+/obj/structure/cable/orange{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plating,
+/area/ship/maintenance/aft)
+"Hq" = (
+/obj/structure/chair/stool/bar{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/turf_decal/siding/wood{
+ dir = 1;
+ color = "#543C30"
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"Hr" = (
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/turf/open/floor/plasteel/mono/white,
+/area/ship/crew/canteen/kitchen)
+"Hu" = (
+/obj/structure/sign/painting/library{
+ pixel_y = 30
+ },
+/obj/structure/aquarium/prefilled,
+/obj/structure/railing/wood{
+ color = "#543C30"
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 5;
+ color = "#543C30"
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"HG" = (
+/obj/structure/sign/poster/official/work_for_a_future{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/mono/white,
+/area/ship/crew/canteen/kitchen)
+"HK" = (
+/turf/closed/wall,
+/area/ship/crew/canteen)
+"HP" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin{
+ pixel_x = 6
+ },
+/obj/item/pen,
+/obj/machinery/newscaster/directional/east,
+/turf/open/floor/carpet/nanoweave/beige,
+/area/ship/crew/dorm)
+"Id" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/firedoor/border_only{
+ dir = 1
+ },
+/obj/machinery/door/airlock/wood/glass{
+ id_tag = "sunskipper_lobby";
+ name = "Lobby";
+ req_ship_access = 0
+ },
+/turf/open/floor/carpet/red_gold,
+/area/ship/hallway/central)
+"Ip" = (
+/turf/closed/wall/r_wall/yesdiag,
+/area/ship/crew/hydroponics)
+"Iq" = (
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/grille,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "sunskipper_crew_shutters"
+ },
+/turf/open/floor/plating,
+/area/ship/crew/dorm)
+"Iw" = (
+/obj/structure/cable/orange{
+ icon_state = "5-10"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/effect/decal/cleanable/food/flour,
+/turf/open/floor/plasteel/mono,
+/area/ship/crew/canteen/kitchen)
+"IJ" = (
+/obj/item/candle{
+ pixel_y = 4;
+ pixel_x = -16
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/structure/table/wood/fancy/red_gold,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"IV" = (
+/obj/machinery/door/airlock/external{
+ dir = 4;
+ req_ship_access = 0
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/hallway/central)
+"Jf" = (
+/turf/closed/wall,
+/area/ship/crew/cryo)
+"Jg" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 4
+ },
+/obj/structure/cable/orange{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/corner/opaque/bottlegreen/border{
+ dir = 1
+ },
+/turf/open/floor/plasteel/mono/dark,
+/area/ship/crew/hydroponics)
+"Jt" = (
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/chair/wood{
+ dir = 2
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"Ju" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/turf/open/floor/plasteel/mono/dark,
+/area/ship/crew/hydroponics)
+"JE" = (
+/obj/effect/turf_decal/siding/wood{
+ color = "#792f27";
+ dir = 10
+ },
+/obj/machinery/firealarm/directional/south,
+/obj/structure/extinguisher_cabinet/directional/west,
+/obj/item/kirbyplants/random{
+ pixel_x = -8
+ },
+/turf/open/floor/wood/mahogany,
+/area/ship/bridge)
+"JK" = (
+/obj/effect/turf_decal/siding/wood/corner{
+ color = "#543C30"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 8
+ },
+/obj/structure/table/wood/fancy/red_gold,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"JY" = (
+/obj/machinery/power/port_gen/pacman{
+ anchored = 1
+ },
+/obj/effect/turf_decal/box/red,
+/obj/structure/cable/orange{
+ icon_state = "0-8"
+ },
+/obj/structure/cable/orange{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plating,
+/area/ship/maintenance/aft)
+"Kh" = (
+/obj/machinery/cryopod{
+ dir = 4
+ },
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/carpet/nanoweave,
+/area/ship/crew/cryo)
+"Kk" = (
+/obj/structure/cable/green{
+ 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/cable/orange{
+ icon_state = "5-9"
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/obj/machinery/door/airlock/glass{
+ name = "Hydroponics";
+ req_one_access = list(25, 28, 35);
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "6-8"
+ },
+/obj/effect/turf_decal/corner/opaque/black/half{
+ dir = 8
+ },
+/obj/effect/turf_decal/corner/opaque/bottlegreen/bordercorner{
+ dir = 1
+ },
+/turf/open/floor/plasteel/mono,
+/area/ship/crew/hydroponics)
+"Kl" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 5;
+ color = "#543C30"
+ },
+/obj/machinery/light/dim/directional/north,
+/obj/structure/closet/crate/bin,
+/obj/item/trash/can,
+/obj/item/trash/candle,
+/obj/item/trash/candle,
+/obj/item/trash/candle,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"KG" = (
+/obj/machinery/light/directional/south,
+/obj/item/radio/intercom/directional/west,
+/obj/effect/turf_decal/siding/wood{
+ dir = 10;
+ color = "#543C30"
+ },
+/obj/structure/chair/comfy/shuttle{
+ dir = 1
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/hallway/central)
+"KJ" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 4;
+ color = "#543C30"
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 8;
+ color = "#543C30"
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"KP" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin{
+ pixel_x = 6
+ },
+/obj/item/flashlight/lamp{
+ pixel_x = -8;
+ pixel_y = 15
+ },
+/obj/machinery/recharger{
+ pixel_x = -9;
+ pixel_y = -3
+ },
+/obj/item/radio/intercom/directional/south,
+/turf/open/floor/carpet/nanoweave/beige,
+/area/ship/bridge)
+"Lb" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 4
+ },
+/obj/structure/table/wood/fancy/red_gold,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"Le" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/turf/open/floor/plasteel/patterned,
+/area/ship/crew/toilet)
+"Ll" = (
+/obj/item/tank/internals/oxygen,
+/obj/item/tank/internals/oxygen,
+/obj/item/clothing/head/helmet/space/eva,
+/obj/item/clothing/head/helmet/space/eva,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/suit/space/eva,
+/obj/item/clothing/suit/space/eva,
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/closet/crate/internals{
+ name = "EVA gear crate"
+ },
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel/tech,
+/area/ship/cargo)
+"Lo" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 8;
+ color = "#543C30"
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"Lp" = (
+/turf/closed/wall,
+/area/ship/crew/hydroponics)
+"Lx" = (
+/obj/structure/chair/office,
+/obj/item/toy/plush/lizardplushie{
+ layer = 3.1
+ },
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/carpet/nanoweave/beige,
+/area/ship/crew/dorm)
+"LA" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/wood/corner{
+ color = "#543C30";
+ dir = 1
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"LF" = (
+/turf/open/floor/plasteel/mono/white,
+/area/ship/crew/canteen/kitchen)
+"LP" = (
+/obj/effect/turf_decal/siding/wood/corner{
+ color = "#543C30"
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 1;
+ color = "#543C30"
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"Mg" = (
+/obj/effect/turf_decal/siding/wood/corner{
+ color = "#D5A66E";
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 1;
+ color = "#D5A66E"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/turf/open/floor/wood/birch,
+/area/ship/crew/dorm)
+"Mh" = (
+/obj/structure/table/reinforced,
+/obj/structure/sign/poster/contraband/borg_fancy_1{
+ pixel_y = -32
+ },
+/obj/item/fish_feed{
+ pixel_y = 5;
+ pixel_x = 1
+ },
+/turf/open/floor/plasteel/mono,
+/area/ship/crew/canteen/kitchen)
+"Mj" = (
+/obj/machinery/door/airlock/public{
+ dir = 8;
+ name = "Restroom"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/patterned,
+/area/ship/crew/toilet)
+"MM" = (
+/obj/structure/sign/painting/library{
+ pixel_y = -30
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 6;
+ color = "#543C30"
+ },
+/obj/effect/turf_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/structure/chair/comfy/shuttle{
+ dir = 1
+ },
+/obj/machinery/advanced_airlock_controller{
+ pixel_x = 28
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/hallway/central)
+"MN" = (
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/turf/open/floor/plasteel/mono/white,
+/area/ship/crew/canteen/kitchen)
+"MO" = (
+/obj/structure/chair/stool,
+/turf/open/floor/wood/ebony,
+/area/ship/crew/canteen)
+"MV" = (
+/obj/machinery/airalarm/directional/north,
+/turf/open/floor/plasteel/mono,
+/area/ship/crew/canteen/kitchen)
+"Nd" = (
+/obj/structure/toilet{
+ dir = 8;
+ pixel_x = 8;
+ layer = 2.89
+ },
+/obj/machinery/button/door{
+ pixel_x = -13;
+ pixel_y = -22;
+ id = "sunskipper_bathroom";
+ name = "Door Bolts";
+ specialfunctions = 4;
+ normaldoorcontrol = 1;
+ dir = 1
+ },
+/obj/structure/sink{
+ dir = 1;
+ pixel_y = -14
+ },
+/obj/structure/mirror{
+ pixel_y = -28;
+ layer = 2.91
+ },
+/obj/effect/decal/cleanable/vomit/old,
+/turf/open/floor/plasteel/patterned,
+/area/ship/crew/dorm)
+"Nk" = (
+/turf/closed/wall,
+/area/ship/bridge)
+"Nv" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
+ },
+/turf/open/floor/carpet/red_gold,
+/area/ship/hallway/central)
+"NH" = (
+/obj/machinery/power/terminal{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/oil,
+/obj/item/cigbutt,
+/turf/open/floor/plating,
+/area/ship/maintenance/aft)
+"NI" = (
+/obj/structure/chair/wood{
+ dir = 2
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"NM" = (
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/effect/turf_decal/corner/opaque/bottlegreen/border{
+ dir = 1
+ },
+/turf/open/floor/plasteel/mono/dark,
+/area/ship/crew/hydroponics)
+"Ok" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/plasteel/mono/white,
+/area/ship/crew/canteen/kitchen)
+"Ol" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 8
+ },
+/obj/structure/extinguisher_cabinet/directional/east,
+/turf/open/floor/plasteel/mono/white,
+/area/ship/crew/canteen/kitchen)
+"OP" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 2
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"OS" = (
+/obj/structure/table/reinforced,
+/obj/structure/cable/orange{
+ icon_state = "5-10"
+ },
+/obj/machinery/reagentgrinder{
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/turf/open/floor/plasteel/mono,
+/area/ship/crew/canteen/kitchen)
+"OU" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 6;
+ color = "#543C30"
+ },
+/obj/structure/table/wood/fancy/red_gold,
+/obj/item/candle{
+ pixel_y = 21
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"OY" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 4;
+ color = "#332521"
+ },
+/obj/structure/sink/kitchen{
+ dir = 8;
+ layer = 2.04;
+ pixel_y = -5
+ },
+/obj/structure/sign/painting/library{
+ pixel_x = 30
+ },
+/turf/open/floor/wood/ebony,
+/area/ship/crew/canteen)
+"OZ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
+ },
+/turf/open/floor/plasteel/mono/dark,
+/area/ship/crew/hydroponics)
+"Pa" = (
+/turf/template_noop,
+/area/template_noop)
+"Pe" = (
+/obj/structure/table/reinforced,
+/obj/item/reagent_containers/food/condiment/enzyme{
+ pixel_x = -6;
+ pixel_y = 8
+ },
+/obj/item/reagent_containers/food/condiment/oliveoil{
+ pixel_x = 6;
+ pixel_y = 8
+ },
+/obj/structure/extinguisher_cabinet/directional/south,
+/turf/open/floor/plasteel/mono/white,
+/area/ship/crew/canteen/kitchen)
+"Ph" = (
+/turf/closed/wall/r_wall,
+/area/ship/maintenance/aft)
+"Pk" = (
+/turf/closed/wall,
+/area/ship/crew/toilet)
+"Pm" = (
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = 19;
+ pixel_y = -10
+ },
+/obj/structure/mirror{
+ pixel_y = 34
+ },
+/obj/structure/sink{
+ pixel_y = 24;
+ layer = 2.91
+ },
+/obj/structure/sign/warning/nosmoking/circle{
+ pixel_x = 30
+ },
+/turf/open/floor/plasteel/patterned,
+/area/ship/crew/toilet)
+"Pt" = (
+/obj/effect/turf_decal/siding/wood/corner{
+ color = "#543C30"
+ },
+/obj/effect/turf_decal/siding/wood/corner{
+ color = "#543C30";
+ dir = 1
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"Pu" = (
+/obj/structure/table/wood,
+/obj/effect/turf_decal/siding/wood{
+ dir = 1;
+ color = "#332521"
+ },
+/obj/item/lighter{
+ pixel_x = -5;
+ pixel_y = 3
+ },
+/obj/item/reagent_containers/glass/rag{
+ pixel_x = 15;
+ pixel_y = 1
+ },
+/obj/machinery/airalarm/directional/north,
+/turf/open/floor/wood/ebony,
+/area/ship/crew/canteen)
+"PM" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"PN" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/wood/corner{
+ color = "#543C30";
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 1
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"Qc" = (
+/obj/structure/cable/green{
+ 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/effect/decal/cleanable/food/egg_smudge,
+/turf/open/floor/plasteel/mono,
+/area/ship/crew/canteen/kitchen)
+"Qp" = (
+/obj/structure/closet/secure_closet/freezer/kitchen,
+/obj/effect/turf_decal/borderfloorblack,
+/obj/effect/turf_decal/box,
+/obj/item/reagent_containers/food/condiment/rice,
+/turf/open/floor/plasteel/dark,
+/area/ship/crew/canteen/kitchen)
+"QB" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-9"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/grill,
+/turf/open/floor/plasteel/mono/white,
+/area/ship/crew/canteen/kitchen)
+"QG" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"QR" = (
+/obj/structure/fluff/hedge/opaque,
+/obj/structure/railing/wood{
+ color = "#543C30"
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"Rd" = (
+/obj/structure/cable/orange{
+ icon_state = "5-10"
+ },
+/obj/machinery/deepfryer,
+/turf/open/floor/plasteel/mono,
+/area/ship/crew/canteen/kitchen)
+"Rq" = (
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
+ },
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/ship/maintenance/aft)
+"Rr" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 10;
+ color = "#543C30"
+ },
+/obj/machinery/newscaster/directional/west,
+/obj/structure/chair/sofa/red/corner/directional/north,
+/turf/open/floor/wood/mahogany,
+/area/ship/crew/canteen)
+"Ry" = (
+/obj/structure/closet/crate/wooden{
+ anchored = 1;
+ name = "suit crate"
+ },
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = 19;
+ pixel_y = 10
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 1
+ },
+/obj/machinery/firealarm/directional/east,
+/obj/structure/extinguisher_cabinet/directional/west,
+/obj/machinery/airalarm/directional/south,
+/obj/item/clothing/shoes/laceup,
+/obj/item/clothing/shoes/laceup,
+/obj/item/clothing/shoes/laceup,
+/obj/item/clothing/shoes/laceup,
+/obj/item/clothing/shoes/laceup,
+/obj/item/clothing/under/suit/waiter/syndicate,
+/obj/item/clothing/under/suit/waiter,
+/obj/item/clothing/under/pants/black,
+/obj/item/clothing/under/pants/black,
+/obj/item/clothing/under/rank/civilian/chef,
+/obj/item/clothing/under/rank/civilian/bartender,
+/obj/item/clothing/accessory/waistcoat,
+/obj/item/clothing/accessory/waistcoat,
+/obj/item/clothing/head/chefhat,
+/obj/item/clothing/head/that,
+/obj/item/clothing/gloves/color/evening,
+/obj/item/clothing/gloves/color/white,
+/obj/item/storage/backpack/satchel/leather,
+/obj/item/storage/backpack/satchel/leather,
+/turf/open/floor/carpet/nanoweave,
+/area/ship/crew/cryo)
+"Rz" = (
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"RH" = (
+/obj/structure/cable/green{
+ icon_state = "6-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"RS" = (
+/obj/structure/cable/orange{
+ icon_state = "1-10"
+ },
+/turf/open/floor/plasteel/mono,
+/area/ship/crew/canteen/kitchen)
+"RX" = (
+/obj/effect/turf_decal/solarpanel,
+/obj/machinery/power/solar,
+/obj/structure/cable/orange{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plating/airless,
+/area/ship/external/dark)
+"Sa" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"SB" = (
+/obj/machinery/door/airlock/freezer{
+ dir = 4;
+ req_one_access = list(28, 35)
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/ship/crew/canteen/kitchen)
+"SH" = (
+/obj/structure/chair/stool/bar{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 5;
+ color = "#543C30"
+ },
+/obj/machinery/firealarm/directional/east,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"SV" = (
+/turf/closed/wall/r_wall,
+/area/ship/crew/toilet)
+"SW" = (
+/obj/effect/turf_decal/solarpanel,
+/obj/machinery/power/solar,
+/obj/structure/cable/orange,
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating/airless,
+/area/ship/external/dark)
+"SY" = (
+/obj/machinery/door/airlock/external{
+ dir = 4;
+ req_ship_access = 0
+ },
+/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/wood{
+ dir = 2;
+ color = "#543C30"
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 1;
+ color = "#543C30"
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/hallway/central)
+"Tr" = (
+/obj/structure/chair/comfy/shuttle{
+ name = "Helm Control";
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
+/turf/open/floor/plasteel/tech,
+/area/ship/bridge)
+"TG" = (
+/obj/machinery/light/small/directional/west,
+/obj/item/stack/rods/twentyfive{
+ pixel_x = -11
+ },
+/turf/open/floor/plasteel/dark,
+/area/ship/crew/canteen/kitchen)
+"TM" = (
+/obj/machinery/atmospherics/pipe/layer_manifold{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 5;
+ color = "#543C30"
+ },
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
+ },
+/obj/structure/closet/emcloset/wall/directional/north,
+/turf/open/floor/wood/walnut,
+/area/ship/hallway/central)
+"Uc" = (
+/obj/structure/closet/secure_closet/freezer/meat/open,
+/obj/effect/turf_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/turf_decal/box,
+/obj/item/radio/intercom/directional/east,
+/obj/item/reagent_containers/food/snacks/meat/slab/monkey,
+/obj/item/reagent_containers/food/snacks/meat/slab/bear,
+/obj/item/reagent_containers/food/snacks/meat/slab/chicken,
+/obj/item/reagent_containers/food/snacks/meat/slab/chicken,
+/obj/item/reagent_containers/food/snacks/meat/slab/goliath,
+/obj/item/reagent_containers/food/snacks/meat/slab/goliath,
+/turf/open/floor/plasteel/dark,
+/area/ship/crew/canteen/kitchen)
+"Ug" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/door/airlock/wood/glass{
+ dir = 4;
+ name = "Office";
+ req_access = list(20)
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/turf/open/floor/carpet/nanoweave/beige,
+/area/ship/bridge)
+"Uj" = (
+/obj/machinery/microwave,
+/obj/structure/table/reinforced,
+/turf/open/floor/plasteel/mono/white,
+/area/ship/crew/canteen/kitchen)
+"Uo" = (
+/obj/machinery/hydroponics/constructable{
+ layer = 2
+ },
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable/green{
+ icon_state = "0-6"
+ },
+/turf/open/floor/plasteel/mono/dark,
+/area/ship/crew/hydroponics)
+"Up" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 1;
+ color = "#332521"
+ },
+/obj/machinery/smartfridge/drinks{
+ color = "#D5A66E"
+ },
+/turf/open/floor/wood/ebony,
+/area/ship/crew/canteen)
+"UK" = (
+/obj/structure/closet/crate{
+ name = "supplies crate"
+ },
+/obj/item/reagent_containers/food/condiment/saltshaker,
+/obj/item/reagent_containers/food/condiment/saltshaker,
+/obj/item/reagent_containers/food/condiment/peppermill,
+/obj/item/reagent_containers/food/condiment/peppermill,
+/obj/item/storage/box/lights/mixed,
+/obj/item/storage/box/drinkingglasses,
+/obj/item/storage/fancy/candle_box,
+/obj/item/storage/fancy/candle_box,
+/obj/item/storage/fancy/candle_box,
+/obj/item/storage/fancy/candle_box,
+/obj/item/storage/fancy/candle_box,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 4
+ },
+/obj/item/stack/sheet/metal/twenty,
+/obj/item/stack/sheet/glass{
+ amount = 10
+ },
+/obj/item/stack/sheet/plastic/five,
+/obj/machinery/airalarm/directional/west,
+/turf/open/floor/plasteel/tech,
+/area/ship/cargo)
+"Ve" = (
+/obj/item/candle{
+ pixel_y = 4
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 2;
+ color = "#543C30"
+ },
+/obj/structure/table/wood/fancy/red_gold,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"Vf" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/orange{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "sunskipper_crew_shutters"
+ },
+/turf/open/floor/plating,
+/area/ship/crew/canteen/kitchen)
+"Vj" = (
+/obj/item/storage/box/zipties,
+/obj/item/reagent_containers/spray/pepper,
+/obj/item/reagent_containers/spray/pepper,
+/obj/item/reagent_containers/spray/pepper,
+/obj/item/reagent_containers/spray/pepper,
+/obj/effect/turf_decal/siding/wood{
+ dir = 6;
+ color = "#543C30"
+ },
+/obj/machinery/light_switch{
+ pixel_y = -19;
+ pixel_x = -11;
+ dir = 1
+ },
+/obj/item/reagent_containers/spray/pepper,
+/obj/structure/closet/secure_closet/wall/directional/south{
+ name = "Security Equipment";
+ icon_state = "sec_wall";
+ req_access = list(20);
+ pixel_x = 2
+ },
+/turf/open/floor/carpet/black,
+/area/ship/hallway/central)
+"Vm" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/plasteel/mono/white,
+/area/ship/crew/canteen/kitchen)
+"VE" = (
+/obj/machinery/button/door{
+ pixel_x = -22;
+ name = "Lobby Door Bolts Control";
+ normaldoorcontrol = 1;
+ specialfunctions = 4;
+ dir = 4;
+ id = "sunskipper_lobby";
+ pixel_y = -4
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 10;
+ color = "#543C30"
+ },
+/obj/machinery/button/door{
+ name = "Cargo Bay Shutters Control";
+ id = "sunskipper_storage";
+ dir = 4;
+ pixel_x = -22;
+ pixel_y = 8
+ },
+/turf/open/floor/carpet/black,
+/area/ship/hallway/central)
+"VG" = (
+/obj/machinery/light/directional/west,
+/obj/structure/table/reinforced,
+/obj/item/reagent_containers/food/condiment/soysauce{
+ pixel_x = -6;
+ pixel_y = 8
+ },
+/obj/item/reagent_containers/food/condiment/bbqsauce{
+ pixel_x = 6;
+ pixel_y = 8
+ },
+/turf/open/floor/plasteel/mono/white,
+/area/ship/crew/canteen/kitchen)
+"VI" = (
+/obj/structure/chair/sofa/red/right/directional/north,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"VM" = (
+/obj/structure/cable/green{
+ icon_state = "0-5"
+ },
+/obj/machinery/power/apc/auto_name/directional/west,
+/obj/structure/closet/wall/white/med{
+ name = "First Aid";
+ pixel_y = -28
+ },
+/obj/item/storage/firstaid/regular,
+/obj/item/reagent_containers/hypospray/medipen,
+/obj/item/reagent_containers/hypospray/medipen,
+/obj/item/storage/pill_bottle/charcoal/less,
+/turf/open/floor/plasteel/patterned,
+/area/ship/crew/toilet)
+"Wg" = (
+/obj/structure/filingcabinet{
+ pixel_x = 11;
+ pixel_y = 20;
+ density = 0
+ },
+/obj/item/clipboard,
+/obj/item/folder/red,
+/obj/item/folder,
+/obj/machinery/light/small/directional/north,
+/obj/effect/turf_decal/siding/wood{
+ dir = 5;
+ color = "#543C30"
+ },
+/obj/machinery/button/door{
+ pixel_y = 22;
+ pixel_x = -12;
+ name = "External Blast Doors Control";
+ color = "#FF9999";
+ id = "sunskipper_entrance"
+ },
+/turf/open/floor/carpet/black,
+/area/ship/hallway/central)
+"Wl" = (
+/obj/machinery/door/airlock{
+ dir = 4;
+ name = "Bar";
+ req_one_access = list(25, 28)
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
+ },
+/obj/structure/curtain/cloth/grey,
+/turf/open/floor/plasteel/mono/white,
+/area/ship/crew/canteen/kitchen)
+"WA" = (
+/turf/closed/wall/r_wall,
+/area/ship/crew/dorm)
+"WN" = (
+/obj/machinery/hydroponics/constructable{
+ layer = 2
+ },
+/obj/machinery/airalarm/directional/north,
+/turf/open/floor/plasteel/mono/dark,
+/area/ship/crew/hydroponics)
+"WR" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 4;
+ color = "#543C30"
+ },
+/obj/structure/chair/sofa/red/directional/west,
+/turf/open/floor/wood/mahogany,
+/area/ship/crew/canteen)
+"Xm" = (
+/obj/machinery/seed_extractor,
+/obj/effect/turf_decal/corner/opaque/bottlegreen/border{
+ dir = 1
+ },
+/obj/item/radio/intercom/directional/south,
+/turf/open/floor/plasteel/mono/dark,
+/area/ship/crew/hydroponics)
+"Xp" = (
+/obj/machinery/cryopod{
+ dir = 4
+ },
+/obj/machinery/computer/cryopod/directional/north,
+/obj/structure/sign/poster/contraband/ntos{
+ pixel_x = -32
+ },
+/turf/open/floor/carpet/nanoweave,
+/area/ship/crew/cryo)
+"Xt" = (
+/obj/structure/cable/green{
+ 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/effect/turf_decal/siding/wood{
+ dir = 8;
+ color = "#543C30"
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"Xz" = (
+/obj/structure/cable/green{
+ 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/floor/plasteel/mono/white,
+/area/ship/crew/canteen/kitchen)
+"XH" = (
+/obj/effect/turf_decal/siding/wood{
+ color = "#D5A66E";
+ dir = 5
+ },
+/obj/structure/noticeboard{
+ pixel_y = 28
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/wood/birch,
+/area/ship/crew/dorm)
+"XS" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/turf/open/floor/plasteel/mono,
+/area/ship/crew/canteen/kitchen)
+"Yc" = (
+/obj/structure/urinal{
+ dir = 4;
+ pixel_x = -16
+ },
+/turf/open/floor/plasteel/patterned,
+/area/ship/crew/toilet)
+"Yl" = (
+/obj/docking_port/stationary{
+ dwidth = 7;
+ width = 30;
+ height = 15;
+ dir = 4
+ },
+/turf/template_noop,
+/area/template_noop)
+"YF" = (
+/obj/machinery/atmospherics/components/unary/tank/air{
+ dir = 4;
+ layer = 2.35;
+ piping_layer = 2
+ },
+/obj/effect/turf_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/box/red,
+/turf/open/floor/plating,
+/area/ship/maintenance/aft)
+"YL" = (
+/obj/item/clothing/gloves/color/white,
+/obj/item/clothing/glasses/sunglasses,
+/obj/item/clothing/shoes/laceup,
+/obj/item/clothing/under/suit/black_really,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 4
+ },
+/obj/item/clothing/under/suit/checkered,
+/obj/item/clothing/under/suit/red,
+/obj/item/clothing/under/suit/blacktwopiece,
+/obj/structure/closet/wall/blue/directional/north{
+ name = "Manager's Locker"
+ },
+/obj/item/clothing/under/pants/black,
+/obj/item/clothing/suit/toggle/lawyer/charcoal,
+/obj/item/clothing/neck/tie,
+/obj/item/storage/backpack/satchel/leather,
+/turf/open/floor/carpet/nanoweave/beige,
+/area/ship/bridge)
+"YM" = (
+/obj/structure/fluff/hedge/opaque,
+/obj/structure/railing/wood{
+ color = "#543C30"
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 8;
+ color = "#543C30"
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"YQ" = (
+/obj/structure/cable/green{
+ icon_state = "1-6"
+ },
+/obj/effect/turf_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/plaque{
+ pixel_x = -32
+ },
+/turf/open/floor/carpet/red_gold,
+/area/ship/hallway/central)
+"Zq" = (
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
+ },
+/obj/machinery/door/poddoor/shutters{
+ dir = 8;
+ id = "sunskipper_storage";
+ name = "Cargo Hold"
+ },
+/obj/effect/turf_decal/industrial/stand_clear{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ icon_state = "6-8"
+ },
+/turf/open/floor/plasteel/tech,
+/area/ship/cargo)
+"Zr" = (
+/obj/structure/filingcabinet/double,
+/obj/effect/turf_decal/siding/wood{
+ color = "#792f27";
+ dir = 5
+ },
+/obj/item/folder/blue,
+/obj/item/folder/red,
+/obj/item/folder,
+/obj/item/clipboard,
+/turf/open/floor/wood/mahogany,
+/area/ship/bridge)
+"Zw" = (
+/obj/structure/fluff/hedge/opaque,
+/obj/structure/railing/wood{
+ color = "#543C30";
+ dir = 8
+ },
+/obj/structure/railing/wood{
+ color = "#543C30";
+ dir = 4
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"ZO" = (
+/turf/closed/wall/r_wall,
+/area/ship/crew/cryo)
+"ZP" = (
+/obj/structure/chair/wood{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen)
+"ZY" = (
+/obj/machinery/modular_computer/console/preset/command{
+ dir = 4
+ },
+/obj/item/radio/intercom/wideband/directional/west,
+/obj/structure/railing/corner/wood{
+ dir = 8;
+ layer = 2.99;
+ color = "#792f27"
+ },
+/obj/effect/turf_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/machinery/button/door{
+ pixel_x = -10;
+ pixel_y = 22;
+ name = "Bridge Lockdown";
+ id = "sunskipper_bridge_shutters";
+ layer = 2.89
+ },
+/obj/machinery/button/door{
+ pixel_y = 22;
+ name = "Crew Area Shutters Control";
+ id = "sunskipper_crew_shutters"
+ },
+/obj/machinery/button/door{
+ pixel_x = 10;
+ pixel_y = 22;
+ name = "Dining Hall Shutters Control";
+ id = "sunskipper_dining_shutters";
+ layer = 2.91
+ },
+/turf/open/floor/plasteel/tech,
+/area/ship/bridge)
+
+(1,1,1) = {"
+Pa
+Pa
+Pa
+Pa
+Pa
+Ph
+hi
+hi
+hi
+Ph
+Ph
+RX
+hj
+SW
+zC
+Pa
+Pa
+Pa
+Pa
+Pa
+Pa
+"}
+(2,1,1) = {"
+Pa
+Pa
+bK
+Cu
+jz
+Ph
+qk
+qV
+bj
+BA
+Ph
+cH
+jC
+cH
+cH
+Ip
+Pa
+Pa
+Pa
+Pa
+Pa
+"}
+(3,1,1) = {"
+Pa
+Pa
+Cu
+eW
+KP
+BA
+Ea
+NH
+kO
+YF
+BA
+Uo
+Jg
+OZ
+bf
+De
+bp
+Pa
+Pa
+Pa
+Pa
+"}
+(4,1,1) = {"
+Pa
+Pa
+Cu
+xo
+hU
+BA
+eU
+Gw
+hC
+lf
+BA
+WN
+jR
+Ju
+qm
+AR
+ZO
+ZO
+cf
+Pa
+Pa
+"}
+(5,1,1) = {"
+Pa
+bK
+Cu
+YL
+lK
+BA
+tr
+JY
+Hj
+Gp
+BA
+Gd
+Ai
+Bg
+bM
+AR
+Xp
+Kh
+ZO
+cf
+Pa
+"}
+(6,1,1) = {"
+Pa
+Cu
+Nk
+Ug
+Nk
+rr
+rr
+rr
+rr
+Rq
+yu
+jy
+cE
+DN
+Xm
+Lp
+pw
+GR
+Ry
+ZO
+Pa
+"}
+(7,1,1) = {"
+bK
+Cu
+zc
+hW
+Nk
+rT
+TG
+pT
+rr
+bL
+BA
+mD
+NM
+xI
+dG
+Lp
+Jf
+tJ
+Jf
+ZO
+BR
+"}
+(8,1,1) = {"
+Cu
+Nk
+Zr
+up
+Nk
+Uc
+fl
+Qp
+rr
+BA
+BA
+Lp
+Kk
+sx
+cx
+uQ
+xe
+mX
+op
+fg
+Iq
+"}
+(9,1,1) = {"
+Cu
+ZY
+Ez
+CA
+Nk
+rr
+SB
+rr
+rr
+gE
+VG
+Rd
+Hr
+Ce
+aV
+ax
+Mg
+on
+DK
+lu
+Iq
+"}
+(10,1,1) = {"
+nQ
+Tr
+mr
+pJ
+JE
+Nk
+MV
+zm
+Dg
+Ok
+DH
+MN
+ob
+LF
+xJ
+uQ
+XH
+ne
+wf
+fP
+Iq
+"}
+(11,1,1) = {"
+nQ
+bz
+AP
+sW
+nJ
+jS
+Vm
+bI
+QB
+Iw
+fE
+sm
+rD
+yL
+uQ
+uQ
+qD
+uQ
+Lx
+CM
+Iq
+"}
+(12,1,1) = {"
+nQ
+nQ
+vh
+iS
+uc
+Nk
+ul
+GM
+xT
+LF
+Qc
+LF
+XS
+Pe
+uQ
+kG
+Nd
+uQ
+rf
+HP
+Iq
+"}
+(13,1,1) = {"
+Pa
+xn
+xn
+Cu
+Nk
+Nk
+HG
+OS
+eK
+vH
+Xz
+ds
+By
+Mh
+uQ
+uQ
+uQ
+uQ
+uQ
+WA
+BR
+"}
+(14,1,1) = {"
+Pa
+Gz
+cY
+Vf
+nM
+wg
+RS
+Ol
+pM
+LF
+kZ
+kw
+fz
+Uj
+Pk
+Bl
+Yc
+rl
+ya
+SV
+Pa
+"}
+(15,1,1) = {"
+Pa
+ux
+ux
+FP
+Ba
+vH
+Eg
+rr
+rr
+ab
+lI
+rr
+rr
+rr
+Pk
+yi
+sk
+Pk
+Pk
+SV
+Pa
+"}
+(16,1,1) = {"
+Pa
+ux
+ux
+qP
+rr
+Wl
+rr
+rr
+AY
+Lo
+xW
+Bz
+FY
+Rr
+Pk
+vI
+Le
+VM
+SV
+sN
+Pa
+"}
+(17,1,1) = {"
+Pa
+qj
+ux
+fi
+il
+br
+tP
+td
+AX
+pS
+iC
+xM
+ro
+yH
+Pk
+Pm
+Fw
+uz
+SV
+Pa
+Pa
+"}
+(18,1,1) = {"
+Pa
+Pa
+ux
+fi
+Pu
+cC
+bi
+zP
+Rz
+Rz
+mQ
+vf
+WR
+yB
+Pk
+Pk
+Mj
+Pk
+SV
+Pa
+Pa
+"}
+(19,1,1) = {"
+Pa
+Pa
+ux
+fi
+bJ
+MO
+om
+Hq
+CH
+CH
+Sa
+Zw
+Zw
+ty
+YM
+eM
+Xt
+CQ
+ru
+Pa
+Pa
+"}
+(20,1,1) = {"
+Pa
+Pa
+ux
+fi
+Up
+cC
+mm
+zP
+Rz
+Rz
+RH
+NI
+Lb
+Gt
+QR
+ib
+DY
+gU
+ru
+Pa
+Pa
+"}
+(21,1,1) = {"
+Pa
+Pa
+ux
+fi
+nK
+OY
+zj
+SH
+hh
+Rz
+PM
+uG
+IJ
+VI
+QR
+sd
+je
+Ve
+ru
+Pa
+Pa
+"}
+(22,1,1) = {"
+Pa
+Pa
+qj
+jo
+uj
+uj
+uj
+uj
+tb
+Rz
+jx
+FN
+aK
+ga
+DJ
+LA
+bx
+FO
+ru
+Pa
+Pa
+"}
+(23,1,1) = {"
+Pa
+Pa
+ET
+jo
+lV
+UK
+Ll
+uj
+Kl
+hh
+PM
+vB
+al
+QR
+dW
+QG
+mW
+ru
+ru
+Pa
+Pa
+"}
+(24,1,1) = {"
+Pa
+Pa
+eR
+jo
+qG
+zw
+kW
+uj
+HK
+Hu
+PN
+Jt
+ng
+QR
+dW
+ZP
+eI
+ru
+Pa
+Pa
+Pa
+"}
+(25,1,1) = {"
+Pa
+Pa
+aQ
+jo
+uj
+Az
+Zq
+uj
+kX
+ER
+mR
+Rz
+FG
+QR
+dW
+JK
+OU
+ru
+Pa
+Pa
+Pa
+"}
+(26,1,1) = {"
+Pa
+Pa
+Pa
+GG
+YQ
+Gv
+oO
+EG
+rS
+jk
+mk
+Lo
+Lo
+vy
+Pt
+uP
+ru
+ru
+Pa
+Pa
+Pa
+"}
+(27,1,1) = {"
+Pa
+Pa
+Pa
+xH
+Nv
+ky
+nj
+bU
+Id
+BO
+wM
+yQ
+OP
+ok
+gw
+ru
+ru
+Pa
+Pa
+Pa
+Pa
+"}
+(28,1,1) = {"
+Pa
+Pa
+Pa
+wK
+aJ
+Fb
+Ge
+Cx
+kX
+HK
+cI
+LP
+Ds
+pp
+yp
+yp
+Pa
+Pa
+Pa
+Pa
+Pa
+"}
+(29,1,1) = {"
+Pa
+Pa
+Pa
+wK
+SY
+kX
+kX
+bX
+VE
+Bo
+KJ
+bt
+yp
+yp
+yp
+Pa
+Pa
+Pa
+Pa
+Pa
+Pa
+"}
+(30,1,1) = {"
+Pa
+Pa
+Pa
+wK
+yn
+KG
+kX
+Wg
+Vj
+fi
+yp
+yp
+yp
+Pa
+Pa
+Pa
+Pa
+Pa
+Pa
+Pa
+Pa
+"}
+(31,1,1) = {"
+Pa
+Pa
+Pa
+wK
+TM
+MM
+wK
+ex
+ex
+zS
+Pa
+Pa
+Pa
+Pa
+Pa
+Pa
+Pa
+Pa
+Pa
+Pa
+Pa
+"}
+(32,1,1) = {"
+Pa
+Pa
+Pa
+jb
+IV
+wK
+jb
+Pa
+Pa
+Pa
+Pa
+Pa
+Pa
+Pa
+Pa
+Pa
+Pa
+Pa
+Pa
+Pa
+Pa
+"}
+(33,1,1) = {"
+Pa
+Pa
+Pa
+Pa
+Yl
+Pa
+Pa
+Pa
+Pa
+Pa
+Pa
+Pa
+Pa
+Pa
+Pa
+Pa
+Pa
+Pa
+Pa
+Pa
+Pa
+"}
diff --git a/_maps/shuttles/inteq/inteq_talos.dmm b/_maps/shuttles/inteq/inteq_talos.dmm
index 45ecbf33d0a..1e08e3912dc 100644
--- a/_maps/shuttles/inteq/inteq_talos.dmm
+++ b/_maps/shuttles/inteq/inteq_talos.dmm
@@ -3417,14 +3417,12 @@
/obj/structure/sign/poster/retro/lasergun_new{
pixel_x = -32
},
-/obj/item/gun/ballistic/shotgun/bulldog/inteq{
+/obj/item/gun/ballistic/shotgun/bulldog/inteq/no_mag{
pixel_x = -8;
pixel_y = 8;
- spawnwithmagazine = 0
},
-/obj/item/gun/ballistic/shotgun/bulldog/inteq{
+/obj/item/gun/ballistic/shotgun/bulldog/inteq/no_mag{
pixel_x = -12;
- spawnwithmagazine = 0
},
/turf/open/floor/plasteel/tech/grid,
/area/ship/security/armory)
diff --git a/_maps/shuttles/inteq/inteq_vaquero.dmm b/_maps/shuttles/inteq/inteq_vaquero.dmm
index 927f372ab3c..23a80717b42 100644
--- a/_maps/shuttles/inteq/inteq_vaquero.dmm
+++ b/_maps/shuttles/inteq/inteq_vaquero.dmm
@@ -263,10 +263,9 @@
/obj/item/ammo_box/magazine/co9mm{
pixel_x = -5
},
-/obj/item/gun/ballistic/shotgun/bulldog/inteq{
+/obj/item/gun/ballistic/shotgun/bulldog/inteq/no_mag{
pixel_x = -4;
pixel_y = 5;
- spawnwithmagazine = 0
},
/obj/item/gun/ballistic/automatic/pistol/commander/inteq,
/obj/item/gun/ballistic/automatic/pistol/commander/inteq{
diff --git a/_maps/shuttles/minutemen/minutemen_vela.dmm b/_maps/shuttles/minutemen/minutemen_vela.dmm
deleted file mode 100644
index d4ae92298e5..00000000000
--- a/_maps/shuttles/minutemen/minutemen_vela.dmm
+++ /dev/null
@@ -1,11835 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"ab" = (
-/obj/machinery/power/smes,
-/obj/structure/cable,
-/obj/effect/turf_decal/industrial/outline/red,
-/obj/structure/sign/poster/contraband/tools{
- pixel_y = -32
- },
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/engineering/engine)
-"ac" = (
-/obj/machinery/airalarm/directional/east,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 8
- },
-/obj/item/training_toolbox,
-/turf/open/floor/plating,
-/area/ship/storage)
-"af" = (
-/obj/structure/closet/secure_closet/lethalshots{
- populate = 0
- },
-/obj/item/ammo_box/magazine/co9mm,
-/obj/item/ammo_box/magazine/co9mm,
-/obj/item/ammo_box/magazine/co9mm,
-/obj/item/ammo_box/magazine/co9mm,
-/obj/item/ammo_box/magazine/smgm9mm/rubber,
-/obj/item/ammo_box/magazine/smgm9mm/rubber,
-/obj/item/ammo_box/magazine/smgm9mm/rubber,
-/obj/structure/cable{
- icon_state = "0-6"
- },
-/obj/item/ammo_box/c9mm/rubbershot,
-/obj/item/ammo_box/c9mm,
-/obj/item/ammo_box/c9mm,
-/turf/open/floor/plasteel/tech,
-/area/ship/security/armory)
-"al" = (
-/obj/effect/turf_decal/trimline/opaque/purple/warning{
- dir = 5
- },
-/obj/structure/table/glass,
-/obj/item/flashlight/lamp{
- pixel_x = -7;
- pixel_y = 1
- },
-/obj/item/paicard{
- pixel_x = 6;
- pixel_y = -8
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/science/xenobiology)
-"am" = (
-/obj/machinery/light/directional/west,
-/turf/open/floor/engine/hull/reinforced,
-/area/ship/external)
-"an" = (
-/obj/machinery/light/directional/north,
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering)
-"aq" = (
-/obj/machinery/button/door{
- dir = 8;
- id = "obai2";
- name = "AI core blast door button";
- pixel_x = 22;
- pixel_y = 14
- },
-/obj/structure/AIcore,
-/obj/machinery/power/apc/auto_name/directional/east,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/machinery/button/door{
- dir = 8;
- id = "obai";
- name = "AI core window shutters button";
- pixel_x = 22;
- pixel_y = -15
- },
-/turf/open/floor/plasteel/telecomms_floor,
-/area/ship/science/ai_chamber)
-"aE" = (
-/obj/machinery/washing_machine,
-/obj/machinery/light/small/directional/south,
-/turf/open/floor/plasteel/grimy,
-/area/ship/crew/dorm)
-"aH" = (
-/obj/machinery/light/small/directional/south,
-/obj/effect/turf_decal/siding/wood/corner{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/ship/crew/office)
-"aM" = (
-/obj/machinery/camera/autoname{
- dir = 8
- },
-/obj/item/cardboard_cutout{
- desc = "Guardian of the engines.";
- name = "John"
- },
-/turf/open/floor/engine/hull/reinforced,
-/area/ship/external)
-"aO" = (
-/obj/effect/turf_decal/box/corners{
- dir = 4
- },
-/obj/structure/sign/poster/contraband/borg_fancy_2{
- pixel_x = 28
- },
-/obj/machinery/shieldgen,
-/turf/open/floor/plating,
-/area/ship/storage)
-"aQ" = (
-/obj/structure/closet/secure_closet/personal,
-/obj/machinery/airalarm/directional/west,
-/turf/open/floor/plasteel/grimy,
-/area/ship/crew/dorm)
-"aZ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/components/binary/pump/layer2{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer4,
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/atmospherics)
-"bc" = (
-/obj/machinery/light/small/directional/west,
-/obj/effect/turf_decal/corner/transparent/purple/diagonal,
-/turf/open/floor/plasteel/dark,
-/area/ship/science/xenobiology)
-"bh" = (
-/obj/structure/frame/machine,
-/obj/effect/turf_decal/techfloor{
- dir = 4
- },
-/obj/machinery/light/directional/east,
-/turf/open/floor/plasteel/tech,
-/area/ship/science/xenobiology)
-"bt" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ship/storage)
-"bu" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/oil{
- icon_state = "streak5"
- },
-/obj/effect/turf_decal/techfloor/hole{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/engine,
-/area/ship/hangar/port)
-"bA" = (
-/obj/effect/turf_decal/techfloor/hole{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/engine,
-/area/ship/hangar/port)
-"bH" = (
-/turf/open/floor/wood,
-/area/ship/crew/dorm)
-"bK" = (
-/obj/effect/turf_decal/techfloor,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/techfloor/hole,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/engine)
-"bX" = (
-/obj/machinery/power/shieldwallgen/atmos/roundstart{
- dir = 8;
- id = "obhang21"
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/effect/turf_decal/trimline/opaque/red/filled/warning{
- dir = 1
- },
-/obj/effect/turf_decal/trimline/opaque/red/filled/warning,
-/obj/machinery/door/poddoor{
- id = "obmine11"
- },
-/turf/open/floor/engine,
-/area/ship/hangar/port)
-"bZ" = (
-/obj/effect/turf_decal/industrial/hatch/yellow,
-/obj/machinery/atmospherics/components/unary/thermomachine{
- dir = 8;
- piping_layer = 2
- },
-/obj/machinery/camera/autoname{
- dir = 8
- },
-/obj/structure/sign/poster/official/moth/piping{
- pixel_x = 28
- },
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/engineering/atmospherics)
-"ca" = (
-/obj/effect/turf_decal/industrial/outline/red,
-/obj/effect/turf_decal/rechargefloor,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/greenglow,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/hangar/port)
-"cd" = (
-/obj/machinery/door/poddoor/preopen{
- id = "obhangarent1"
- },
-/obj/effect/turf_decal/trimline/opaque/red/filled/warning,
-/obj/effect/turf_decal/trimline/opaque/red/filled/warning{
- dir = 1
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 1
- },
-/obj/machinery/door/firedoor/border_only,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/hallway/central)
-"cg" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/obj/effect/turf_decal/siding/wood{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/wood,
-/area/ship/hallway/fore)
-"ci" = (
-/obj/structure/rack,
-/obj/item/mecha_parts/mecha_equipment/mining_scanner,
-/obj/item/mecha_parts/mecha_equipment/generator,
-/obj/effect/turf_decal/industrial/hatch/yellow,
-/obj/item/mecha_parts/mecha_equipment/weapon/energy/mecha_kineticgun,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/hangar/port)
-"cj" = (
-/obj/structure/bed,
-/obj/structure/curtain/cloth,
-/obj/item/bedsheet/blue,
-/turf/open/floor/wood,
-/area/ship/crew/dorm)
-"cn" = (
-/obj/effect/turf_decal/siding/wood/corner{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 4
- },
-/obj/item/radio/intercom/directional/east,
-/turf/open/floor/wood,
-/area/ship/crew/canteen)
-"co" = (
-/obj/structure/curtain/cloth,
-/obj/effect/turf_decal/spline/fancy/opaque/black,
-/obj/machinery/light/small/directional/east,
-/turf/open/floor/plasteel/dark,
-/area/ship/crew)
-"cw" = (
-/obj/structure/toilet{
- pixel_y = 12
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/security/armory)
-"cz" = (
-/obj/item/kirbyplants/random,
-/obj/effect/turf_decal/trimline/opaque/purple/line{
- dir = 10
- },
-/obj/effect/turf_decal/trimline/opaque/purple/filled/corner{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/plasteel/dark,
-/area/ship/science)
-"cE" = (
-/obj/structure/rack,
-/obj/item/storage/belt/utility,
-/obj/effect/turf_decal/industrial/outline/yellow,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/hangar/port)
-"cF" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/catwalk/over/plated_catwalk/dark,
-/obj/structure/railing{
- dir = 8;
- layer = 3.1
- },
-/turf/open/floor/plating,
-/area/ship/hallway/central)
-"cI" = (
-/obj/machinery/button/door{
- dir = 4;
- id = "obengi";
- name = "Engineering Storage Lock";
- pixel_x = -21;
- pixel_y = -7
- },
-/obj/structure/closet/crate/engineering/electrical,
-/obj/item/storage/box/lights/mixed,
-/obj/effect/turf_decal/box/corners{
- dir = 8
- },
-/obj/item/mecha_parts/mecha_equipment/extinguisher,
-/obj/item/mecha_parts/mecha_equipment/extinguisher,
-/turf/open/floor/plating,
-/area/ship/storage)
-"cJ" = (
-/obj/structure/rack,
-/obj/machinery/door/window/brigdoor/westright{
- dir = 4
- },
-/obj/effect/turf_decal/trimline/opaque/red/filled/line{
- dir = 4
- },
-/obj/effect/turf_decal/techfloor{
- dir = 8
- },
-/obj/item/circuitboard/aicore,
-/obj/item/stack/sheet/rglass,
-/obj/item/stack/sheet/rglass,
-/obj/item/aiModule/core,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/science/ai_chamber)
-"cK" = (
-/obj/structure/musician/piano/unanchored,
-/obj/effect/turf_decal/box/corners{
- dir = 1
- },
-/obj/effect/turf_decal/box/corners{
- dir = 8
- },
-/obj/effect/turf_decal/corner_steel_grid{
- dir = 6
- },
-/obj/machinery/firealarm/directional/west,
-/turf/open/floor/pod/dark,
-/area/ship/cargo)
-"cT" = (
-/obj/structure/rack,
-/obj/item/chair,
-/obj/item/chair,
-/obj/item/chair,
-/obj/item/chair,
-/obj/item/chair,
-/obj/item/chair,
-/obj/item/chair,
-/obj/item/chair,
-/obj/item/chair,
-/obj/item/chair,
-/obj/machinery/airalarm/directional/west,
-/turf/open/floor/plasteel/tech,
-/area/ship/crew/canteen)
-"cV" = (
-/turf/closed/wall/mineral/plastitanium/nodiagonal,
-/area/ship/crew)
-"cW" = (
-/obj/effect/turf_decal/box/corners,
-/obj/effect/turf_decal/box/corners{
- dir = 8
- },
-/obj/structure/frame/machine,
-/turf/open/floor/plasteel/tech,
-/area/ship/hangar/port)
-"cY" = (
-/obj/structure/closet/secure_closet/security{
- populate = 0
- },
-/obj/item/reagent_containers/spray/pepper,
-/obj/item/clothing/mask/gas/sechailer/balaclava,
-/obj/item/clothing/under/clip/minutemen,
-/obj/item/clothing/head/helmet/bulletproof/x11/clip,
-/obj/item/storage/belt/military/clip,
-/obj/item/restraints/handcuffs,
-/obj/item/ammo_box/magazine/co9mm/rubber,
-/obj/item/ammo_box/magazine/co9mm/rubber,
-/obj/effect/turf_decal/industrial/hatch/yellow,
-/obj/structure/sign/poster/official/focus{
- pixel_y = 32
- },
-/obj/item/clothing/suit/armor/vest/bulletproof,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/security/armory)
-"dc" = (
-/obj/structure/extinguisher_cabinet/directional/south,
-/obj/effect/turf_decal/corner/opaque/black{
- dir = 1
- },
-/obj/effect/turf_decal/borderfloor,
-/turf/open/floor/plasteel/white,
-/area/ship/crew/canteen)
-"dd" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 4
- },
-/obj/effect/turf_decal/siding/wood{
- dir = 8
- },
-/obj/machinery/light/small/directional/west,
-/turf/open/floor/wood,
-/area/ship/hallway/fore)
-"df" = (
-/obj/structure/cable{
- icon_state = "5-8"
- },
-/obj/structure/cable{
- icon_state = "6-8"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/effect/turf_decal/corner_techfloor_grid,
-/obj/effect/turf_decal/corner_techfloor_grid{
- dir = 4
- },
-/obj/effect/turf_decal/techfloor/corner,
-/obj/effect/turf_decal/techfloor/corner{
- dir = 4
- },
-/obj/effect/turf_decal/corner_techfloor_gray{
- dir = 9
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/engineering/engine)
-"dh" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 1
- },
-/obj/effect/turf_decal/spline/fancy/wood{
- dir = 8
- },
-/obj/effect/turf_decal/siding/wood{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/ship/crew/canteen)
-"dp" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
-/obj/machinery/light/directional/north,
-/turf/open/floor/wood,
-/area/ship/crew/canteen)
-"dq" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/computer/card{
- dir = 4;
- icon_state = "computer-right"
- },
-/obj/machinery/newscaster/directional/west,
-/turf/open/floor/plasteel/tech,
-/area/ship/bridge)
-"ds" = (
-/obj/effect/turf_decal/box/corners{
- dir = 4
- },
-/obj/effect/turf_decal/box/corners,
-/obj/structure/closet/crate/science{
- name = "G.Station Science Kit"
- },
-/obj/item/circuitboard/machine/rdserver,
-/obj/item/circuitboard/computer/rdconsole,
-/obj/item/clothing/head/papersack/smiley,
-/obj/item/clothing/head/papersack/smiley,
-/obj/item/clothing/head/papersack/smiley,
-/obj/item/clothing/head/papersack/smiley,
-/obj/item/clothing/head/papersack/smiley,
-/obj/item/clothing/head/papersack/smiley,
-/obj/item/circuitboard/machine/circuit_imprinter/department/science,
-/obj/item/circuitboard/machine/protolathe/department/science,
-/obj/effect/turf_decal/corner_steel_grid{
- dir = 9
- },
-/turf/open/floor/pod/dark,
-/area/ship/cargo)
-"dt" = (
-/obj/structure/sink{
- dir = 4;
- pixel_x = -12
- },
-/obj/structure/mirror{
- pixel_x = -28
- },
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 4;
- pixel_y = 1
- },
-/obj/effect/turf_decal/borderfloor{
- dir = 10
- },
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ship/crew/toilet)
-"dx" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/industrial/warning,
-/obj/effect/turf_decal/spline/fancy/opaque/black,
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/hangar/port)
-"dB" = (
-/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium,
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/obj/machinery/door/firedoor/window,
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 4;
- id = "vela_lablock"
- },
-/turf/open/floor/plating,
-/area/ship/science/xenobiology)
-"dD" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/obj/machinery/light/directional/east,
-/turf/open/floor/plasteel/dark,
-/area/ship/hallway/central)
-"dF" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer5,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4,
-/obj/effect/turf_decal/industrial/warning,
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/obj/machinery/door/airlock/external,
-/turf/open/floor/plasteel/tech,
-/area/ship/hallway/fore)
-"dK" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/catwalk/over/plated_catwalk/dark,
-/turf/open/floor/plating,
-/area/ship/engineering)
-"dN" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/glass,
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/atmospherics)
-"dV" = (
-/obj/effect/turf_decal/arrows{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/engine,
-/area/ship/hangar/port)
-"dW" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 1
- },
-/obj/effect/turf_decal/siding/wood,
-/turf/open/floor/wood,
-/area/ship/crew/canteen)
-"dZ" = (
-/turf/closed/wall/mineral/plastitanium/nodiagonal,
-/area/ship/hangar/port)
-"ea" = (
-/obj/machinery/door/poddoor{
- id = "obcargo"
- },
-/obj/structure/cable,
-/obj/machinery/power/shieldwallgen/atmos/roundstart{
- dir = 8;
- id = "obcargos"
- },
-/obj/effect/turf_decal/trimline/opaque/red/filled/warning{
- dir = 1
- },
-/obj/effect/turf_decal/trimline/opaque/red/filled/warning,
-/turf/open/floor/engine,
-/area/ship/cargo)
-"ed" = (
-/obj/structure/closet/secure_closet{
- icon_state = "cap";
- name = "foreman's locker";
- req_access = list(56)
- },
-/obj/item/clothing/head/clip/slouch,
-/obj/item/clothing/under/clip/officer,
-/obj/item/storage/backpack/industrial,
-/obj/item/storage/backpack/satchel/eng,
-/obj/item/clothing/glasses/sunglasses,
-/obj/item/clothing/shoes/combat,
-/obj/item/radio/headset/clip/alt/captain,
-/obj/item/megaphone,
-/obj/item/binoculars,
-/obj/effect/turf_decal/box,
-/obj/item/clothing/glasses/meson/engine,
-/obj/item/clothing/suit/hazardvest,
-/turf/open/floor/mineral/plastitanium,
-/area/ship/bridge)
-"ee" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/obj/effect/turf_decal/corner_techfloor_grid{
- dir = 1
- },
-/obj/effect/turf_decal/techfloor/corner{
- dir = 1
- },
-/obj/effect/turf_decal/corner_techfloor_grid{
- dir = 8
- },
-/obj/structure/railing{
- dir = 4;
- layer = 3.1
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/hangar/port)
-"ek" = (
-/turf/closed/wall/mineral/plastitanium/nodiagonal,
-/area/ship/engineering/atmospherics)
-"em" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 8
- },
-/obj/effect/turf_decal/spline/fancy/wood{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 1
- },
-/obj/structure/sign/poster/clip/random{
- pixel_x = 28
- },
-/turf/open/floor/wood,
-/area/ship/crew/canteen)
-"eq" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable,
-/obj/machinery/power/apc/auto_name/directional/south,
-/obj/effect/turf_decal/steeldecal/steel_decals_central7{
- dir = 8;
- pixel_x = 1
- },
-/obj/machinery/light_switch{
- dir = 1;
- pixel_x = -13;
- pixel_y = -16
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/hallway/central)
-"eB" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 1
- },
-/obj/structure/sign/poster/clip/random{
- pixel_y = 28
- },
-/obj/item/kirbyplants/random{
- pixel_y = 12
- },
-/turf/open/floor/wood,
-/area/ship/hallway/fore)
-"eI" = (
-/obj/machinery/power/apc/auto_name/directional/south,
-/obj/structure/cable,
-/obj/machinery/light_switch{
- dir = 1;
- pixel_x = -12;
- pixel_y = -16
- },
-/turf/open/floor/plasteel/grimy,
-/area/ship/crew/dorm)
-"eJ" = (
-/obj/machinery/door/firedoor/border_only{
- dir = 8
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 4
- },
-/obj/effect/turf_decal/trimline/opaque/green/filled/warning{
- dir = 4
- },
-/obj/effect/turf_decal/trimline/opaque/green/filled/warning{
- dir = 8
- },
-/obj/machinery/door/airlock{
- dir = 4
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/crew/canteen)
-"eM" = (
-/obj/structure/closet/crate/engineering,
-/obj/item/stack/conveyor/thirty,
-/obj/item/stack/conveyor/thirty,
-/obj/item/crowbar,
-/obj/item/screwdriver,
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/effect/turf_decal/box/corners,
-/obj/item/conveyor_switch_construct,
-/obj/item/conveyor_switch_construct,
-/obj/effect/decal/cleanable/generic,
-/turf/open/floor/plating,
-/area/ship/storage)
-"eN" = (
-/turf/open/floor/plasteel/tech,
-/area/ship/science)
-"eQ" = (
-/obj/structure/catwalk,
-/turf/open/floor/plating,
-/area/ship/external)
-"eR" = (
-/obj/machinery/power/smes/shuttle/precharged{
- dir = 4
- },
-/obj/structure/window/plasma/reinforced{
- dir = 8
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/effect/turf_decal/techfloor{
- dir = 8
- },
-/obj/machinery/door/poddoor/shutters{
- dir = 4;
- id = "obengines";
- name = "Engine Shutters"
- },
-/turf/open/floor/engine,
-/area/ship/engineering)
-"eS" = (
-/obj/machinery/power/smes,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/effect/turf_decal/industrial/outline/red,
-/obj/structure/sign/warning/nosmoking/burnt{
- pixel_y = 32
- },
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/engineering/engine)
-"eT" = (
-/obj/machinery/light/small/directional/east,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 8
- },
-/turf/open/floor/wood,
-/area/ship/crew/office)
-"eV" = (
-/obj/structure/closet/radiation,
-/obj/item/picket_sign,
-/obj/item/picket_sign,
-/obj/item/picket_sign,
-/obj/machinery/firealarm{
- pixel_y = 28
- },
-/obj/effect/turf_decal/box/corners{
- dir = 1
- },
-/obj/machinery/light/small/broken/directional/west,
-/turf/open/floor/plating,
-/area/ship/storage)
-"eZ" = (
-/obj/structure/sign/poster/official/cleanliness{
- pixel_y = 32
- },
-/obj/machinery/portable_atmospherics/canister/air,
-/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer3{
- dir = 4
- },
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/machinery/light/directional/west,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/hangar/port)
-"fh" = (
-/obj/effect/decal/cleanable/oil{
- icon_state = "floor6"
- },
-/obj/machinery/computer/atmos_alert,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/atmospherics)
-"fi" = (
-/obj/effect/turf_decal/industrial/hatch/yellow,
-/obj/structure/rack,
-/obj/item/mecha_parts/mecha_equipment/weapon/energy/mecha_kineticgun,
-/obj/item/mecha_parts/mecha_equipment/thrusters/gas,
-/obj/item/mecha_parts/mecha_equipment/drill,
-/obj/item/mecha_parts/mecha_equipment/mining_scanner,
-/obj/item/mecha_parts/mecha_equipment/hydraulic_clamp,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/hangar/port)
-"fj" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/obj/effect/turf_decal/corner_techfloor_grid,
-/obj/effect/turf_decal/techfloor/corner,
-/obj/effect/turf_decal/corner_techfloor_grid{
- dir = 4
- },
-/obj/structure/railing{
- dir = 8;
- layer = 3.1
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/hangar/port)
-"fk" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
-/obj/effect/turf_decal/siding/wood{
- dir = 1
- },
-/obj/machinery/light/small/directional/north,
-/turf/open/floor/wood,
-/area/ship/hallway/fore)
-"fl" = (
-/obj/machinery/grill/unwrenched,
-/obj/effect/turf_decal/box/corners{
- dir = 1
- },
-/obj/effect/turf_decal/box/corners{
- dir = 8
- },
-/turf/open/floor/pod,
-/area/ship/cargo)
-"fm" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/obj/item/kirbyplants/random{
- pixel_x = 2;
- pixel_y = 5
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ship/bridge)
-"fr" = (
-/obj/structure/sign/painting/library{
- pixel_y = 28
- },
-/turf/open/floor/wood,
-/area/ship/hallway/central)
-"fv" = (
-/obj/effect/turf_decal/industrial/caution,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/plasteel/tech,
-/area/ship/hangar/port)
-"fx" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 8
- },
-/obj/effect/turf_decal/techfloor/corner,
-/obj/effect/turf_decal/corner/transparent/mauve/diagonal,
-/turf/open/floor/plasteel/dark,
-/area/ship/science/xenobiology)
-"fz" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 8
- },
-/obj/item/kirbyplants/random,
-/obj/machinery/camera/autoname,
-/turf/open/floor/wood,
-/area/ship/crew/canteen)
-"fD" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/light/directional/north,
-/turf/open/floor/plasteel/dark,
-/area/ship/hallway/central)
-"fF" = (
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 1
- },
-/obj/effect/turf_decal/minutemen/edge{
- dir = 1
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ship/bridge)
-"fH" = (
-/obj/machinery/door/window/brigdoor/westleft{
- id = "vela";
- req_access = list(2)
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/security/armory)
-"fJ" = (
-/obj/machinery/porta_turret/ship{
- dir = 9
- },
-/turf/closed/wall/mineral/plastitanium/nodiagonal,
-/area/ship/bridge)
-"fW" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer5{
- dir = 9
- },
-/obj/effect/turf_decal/industrial/caution,
-/obj/machinery/light/small/directional/east,
-/obj/structure/sign/warning/vacuum/external{
- pixel_x = 28;
- pixel_y = 11
- },
-/obj/effect/turf_decal/steeldecal/steel_decals10,
-/turf/open/floor/plasteel/tech,
-/area/ship/hallway/fore)
-"fY" = (
-/obj/machinery/door/poddoor{
- id = "obcargo"
- },
-/obj/effect/turf_decal/trimline/opaque/red/filled/warning{
- dir = 1
- },
-/obj/effect/turf_decal/trimline/opaque/red/filled/warning,
-/turf/open/floor/engine,
-/area/ship/cargo)
-"ga" = (
-/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/on/layer2{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer5,
-/obj/machinery/advanced_airlock_controller{
- pixel_x = -24
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 9
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/hallway/fore)
-"gh" = (
-/obj/structure/rack,
-/obj/machinery/airalarm/directional/south,
-/obj/item/stock_parts/cell/high,
-/obj/item/stock_parts/cell/high,
-/obj/item/stock_parts/cell/high,
-/obj/effect/turf_decal/industrial/outline/yellow,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/hangar/port)
-"gj" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/hangar/port)
-"gx" = (
-/obj/effect/turf_decal/spline/fancy/wood{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
-/turf/open/floor/plasteel/grimy,
-/area/ship/crew/dorm)
-"gB" = (
-/obj/structure/closet/emcloset/wall/directional/south,
-/obj/effect/turf_decal/techfloor{
- dir = 10
- },
-/obj/machinery/light/directional/west,
-/turf/open/floor/plasteel/dark,
-/area/ship/hangar/port)
-"gD" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
-/turf/open/floor/engine,
-/area/ship/hangar/port)
-"gL" = (
-/obj/machinery/door/poddoor{
- id = "obair"
- },
-/turf/open/floor/plating,
-/area/ship/engineering/atmospherics)
-"gQ" = (
-/obj/structure/railing{
- dir = 1;
- layer = 3.1
- },
-/obj/effect/turf_decal/steeldecal/steel_decals9,
-/turf/open/floor/plasteel/tech,
-/area/ship/bridge)
-"gV" = (
-/obj/machinery/ai_slipper,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/obj/structure/extinguisher_cabinet/directional/east,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ship/science/ai_chamber)
-"gX" = (
-/obj/effect/turf_decal/industrial/hatch/yellow,
-/obj/machinery/vending/snack/random,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/crew)
-"hf" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/obj/item/storage/toolbox/mechanical{
- pixel_x = 9;
- pixel_y = -6
- },
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/hangar/port)
-"hh" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2,
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/structure/catwalk/over/plated_catwalk/dark,
-/turf/open/floor/plating,
-/area/ship/engineering/atmospherics)
-"hk" = (
-/obj/machinery/cryopod{
- dir = 8
- },
-/obj/effect/turf_decal/techfloor/orange{
- dir = 4
- },
-/obj/effect/turf_decal/techfloor/orange/corner{
- dir = 1
- },
-/obj/machinery/light/small/directional/north,
-/obj/structure/railing{
- dir = 4;
- layer = 2.8
- },
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/crew/dorm)
-"hm" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/effect/turf_decal/siding/wood{
- dir = 4
- },
-/obj/machinery/power/apc/auto_name/directional/east,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/structure/cable,
-/turf/open/floor/wood,
-/area/ship/hallway/fore)
-"ho" = (
-/obj/effect/turf_decal/industrial/hatch/yellow,
-/obj/machinery/vending/cigarette,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/hallway/fore)
-"hv" = (
-/obj/structure/table,
-/obj/item/pen{
- pixel_x = 11;
- pixel_y = 9
- },
-/obj/item/paper/crumpled{
- pixel_x = -4;
- pixel_y = -3
- },
-/obj/effect/turf_decal/techfloor/corner{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/cargo)
-"hw" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/effect/turf_decal/industrial/stand_clear,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/light/directional/west,
-/turf/open/floor/plasteel/dark,
-/area/ship/hallway/central)
-"hx" = (
-/obj/machinery/power/terminal{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/effect/turf_decal/box/corners{
- dir = 1
- },
-/obj/effect/turf_decal/box/corners{
- dir = 4
- },
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ship/engineering/engine)
-"hD" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/catwalk/over/plated_catwalk/dark,
-/obj/structure/railing{
- dir = 1;
- layer = 3.1
- },
-/turf/open/floor/plating,
-/area/ship/hallway/central)
-"hH" = (
-/obj/effect/turf_decal/arrows,
-/turf/open/floor/engine,
-/area/ship/hangar/port)
-"hJ" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/minutemen/corner{
- dir = 8
- },
-/obj/item/circuitboard/mecha/ripley/main,
-/turf/open/floor/plasteel/mono/dark,
-/area/ship/hangar/port)
-"hP" = (
-/obj/effect/decal/cleanable/oil{
- icon_state = "floor6"
- },
-/obj/structure/cable,
-/obj/machinery/power/terminal{
- dir = 8
- },
-/obj/effect/turf_decal/techfloor{
- dir = 4
- },
-/obj/effect/turf_decal/techfloor{
- dir = 8
- },
-/obj/effect/turf_decal/techfloor/hole/right{
- dir = 4
- },
-/obj/machinery/light/directional/south,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/engineering/engine)
-"hR" = (
-/obj/machinery/computer/communications{
- dir = 8
- },
-/obj/effect/turf_decal/steeldecal/steel_decals4,
-/obj/machinery/light/directional/south,
-/turf/open/floor/plasteel/tech,
-/area/ship/bridge)
-"hS" = (
-/obj/effect/turf_decal/arrows{
- dir = 1
- },
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 1
- },
-/obj/effect/turf_decal/industrial/traffic,
-/obj/docking_port/mobile{
- dir = 2;
- port_direction = 8;
- preferred_direction = 4
- },
-/turf/open/floor/engine,
-/area/ship/external)
-"hX" = (
-/obj/machinery/vending/cola/space_up,
-/obj/effect/turf_decal/industrial/hatch/yellow,
-/obj/machinery/light/small/directional/south,
-/obj/machinery/camera/autoname{
- dir = 4
- },
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/crew/dorm)
-"ib" = (
-/obj/structure/extinguisher_cabinet/directional/west,
-/obj/effect/turf_decal/industrial/hatch/yellow,
-/obj/machinery/vending/coffee,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/hallway/fore)
-"ic" = (
-/obj/effect/turf_decal/techfloor{
- dir = 8
- },
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/railing/corner{
- dir = 4;
- layer = 3.1
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/hangar/port)
-"ie" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/security/armory)
-"il" = (
-/obj/machinery/camera/autoname{
- dir = 9
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/cargo)
-"in" = (
-/obj/machinery/door/window/brigdoor/westleft{
- dir = 4;
- req_access = list(3)
- },
-/obj/structure/sign/poster/official/mini_energy_gun{
- pixel_y = -32
- },
-/obj/structure/cable{
- icon_state = "4-9"
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/security/armory)
-"io" = (
-/turf/closed/wall/mineral/plastitanium/nodiagonal,
-/area/ship/science/xenobiology)
-"ip" = (
-/obj/effect/turf_decal/spline/fancy/wood/corner,
-/obj/effect/turf_decal/siding/wood{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/wood,
-/area/ship/crew/canteen)
-"is" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 1
- },
-/obj/machinery/firealarm/directional/north,
-/turf/open/floor/wood,
-/area/ship/hallway/fore)
-"iu" = (
-/obj/structure/rack,
-/turf/open/floor/plasteel/tech,
-/area/ship/crew/canteen)
-"iw" = (
-/obj/effect/decal/cleanable/oil,
-/obj/machinery/light/directional/west,
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/engine)
-"iz" = (
-/obj/structure/extinguisher_cabinet/directional/north,
-/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/engine)
-"iD" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer4{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/supply/visible/layer2{
- dir = 4
- },
-/obj/effect/turf_decal/steeldecal/steel_decals4,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/glass,
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/atmospherics)
-"iE" = (
-/obj/effect/turf_decal/techfloor{
- dir = 8
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/obj/structure/railing{
- dir = 4;
- layer = 3.1
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/hangar/port)
-"iG" = (
-/obj/item/kirbyplants/random{
- pixel_x = -4;
- pixel_y = 11
- },
-/obj/effect/turf_decal/corner_techfloor_gray{
- dir = 1
- },
-/obj/machinery/firealarm/directional/west,
-/obj/machinery/light/small/directional/north,
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ship/science/ai_chamber)
-"iL" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/machinery/light/directional/west,
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/atmospherics)
-"iO" = (
-/obj/effect/turf_decal/corner/opaque/black/diagonal,
-/turf/open/floor/plasteel/white,
-/area/ship/crew/canteen)
-"iP" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/carpet/nanoweave/purple,
-/area/ship/science)
-"iQ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/obj/machinery/light/small/directional/south,
-/turf/open/floor/plasteel/dark,
-/area/ship/science/xenobiology)
-"iR" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/industrial/warning,
-/obj/effect/turf_decal/spline/fancy/opaque/black,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/hangar/port)
-"iV" = (
-/obj/effect/turf_decal/techfloor,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark,
-/area/ship/hangar/port)
-"jb" = (
-/obj/effect/turf_decal/box/corners{
- dir = 4
- },
-/obj/effect/turf_decal/box/corners,
-/obj/effect/turf_decal/corner_steel_grid{
- dir = 9
- },
-/turf/open/floor/pod/dark,
-/area/ship/cargo)
-"jf" = (
-/obj/structure/table,
-/obj/item/reagent_containers/food/snacks/honeybar{
- pixel_x = 7;
- pixel_y = 1
- },
-/obj/item/storage/fancy/cigarettes/cigpack_uplift{
- pixel_x = -7
- },
-/obj/item/lighter{
- pixel_x = -4;
- pixel_y = -2
- },
-/obj/item/reagent_containers/food/drinks/coffee{
- pixel_x = 11;
- pixel_y = 3
- },
-/turf/open/floor/carpet/nanoweave/purple,
-/area/ship/science)
-"jh" = (
-/turf/open/floor/plasteel/stairs/mid{
- dir = 1
- },
-/area/ship/hallway/central)
-"jj" = (
-/obj/machinery/power/apc/auto_name/directional/south,
-/obj/structure/cable,
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 4
- },
-/obj/machinery/light_switch{
- dir = 1;
- pixel_x = -12;
- pixel_y = -16
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/science)
-"jm" = (
-/obj/effect/turf_decal/techfloor/orange,
-/obj/item/radio/intercom/directional/west,
-/turf/open/floor/circuit/green,
-/area/ship/science/ai_chamber)
-"jn" = (
-/obj/structure/rack,
-/obj/item/stack/sheet/metal/fifty,
-/obj/item/stack/sheet/metal/fifty,
-/obj/effect/turf_decal/box/corners{
- dir = 4
- },
-/obj/item/stack/sheet/glass/fifty,
-/obj/machinery/light/small/directional/east,
-/turf/open/floor/plating,
-/area/ship/storage)
-"jr" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/corner_techfloor_grid,
-/obj/effect/turf_decal/techfloor/corner,
-/obj/effect/turf_decal/corner_techfloor_grid{
- dir = 8
- },
-/obj/effect/turf_decal/techfloor/corner{
- dir = 8
- },
-/obj/effect/turf_decal/corner_techfloor_gray{
- dir = 5
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/engineering/engine)
-"jx" = (
-/obj/structure/closet/secure_closet/engineering_personal{
- anchored = 1
- },
-/obj/effect/turf_decal/box,
-/obj/structure/sign/poster/contraband/tools{
- pixel_y = 32
- },
-/obj/item/clothing/suit/toggle/industrial,
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering)
-"jB" = (
-/obj/structure/table/reinforced,
-/obj/item/disk/design_disk/clip_mechs,
-/obj/item/radio/intercom/directional/north,
-/turf/open/floor/plasteel/tech,
-/area/ship/hangar/port)
-"jD" = (
-/obj/structure/rack,
-/obj/item/mecha_parts/mecha_equipment/drill,
-/obj/item/mecha_parts/mecha_equipment/hydraulic_clamp,
-/obj/item/mecha_parts/mecha_equipment/thrusters/gas,
-/obj/effect/turf_decal/industrial/hatch/yellow,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/hangar/port)
-"jF" = (
-/obj/effect/turf_decal/trimline/opaque/purple/warning{
- dir = 8
- },
-/obj/effect/turf_decal/trimline/opaque/purple/filled/line{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/science)
-"jI" = (
-/obj/structure/closet/wall/directional/south,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/grimy,
-/area/ship/crew)
-"jN" = (
-/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium,
-/turf/open/floor/plating,
-/area/ship/crew)
-"jO" = (
-/obj/structure/chair/office{
- dir = 4
- },
-/obj/effect/turf_decal/corner/transparent/mauve/diagonal,
-/obj/effect/turf_decal/steeldecal/steel_decals9,
-/turf/open/floor/plasteel/dark,
-/area/ship/science/xenobiology)
-"jP" = (
-/obj/machinery/power/shuttle/engine/electric{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/engine/hull,
-/area/ship/engineering)
-"jS" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/catwalk/over/plated_catwalk/dark,
-/obj/structure/railing{
- dir = 1;
- layer = 3.1
- },
-/obj/machinery/camera/autoname{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/ship/hallway/central)
-"jY" = (
-/obj/structure/chair/plastic{
- dir = 4
- },
-/obj/machinery/camera/autoname{
- dir = 4
- },
-/obj/machinery/light_switch{
- pixel_x = -9;
- pixel_y = 23
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/engine)
-"kd" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 1
- },
-/obj/machinery/newscaster/directional/east,
-/turf/open/floor/plasteel/grimy,
-/area/ship/crew/dorm)
-"ke" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/turf/open/floor/plasteel/dark,
-/area/ship/hangar/port)
-"kg" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 1
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 4
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 8
- },
-/turf/open/floor/wood,
-/area/ship/hallway/fore)
-"kh" = (
-/obj/effect/turf_decal/trimline/opaque/red/filled/warning,
-/obj/effect/turf_decal/trimline/opaque/red/filled/warning{
- dir = 1
- },
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/door/firedoor/border_only{
- dir = 1
- },
-/obj/machinery/door/airlock/security{
- req_access = list(1)
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/science)
-"kl" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/effect/turf_decal/spline/fancy/wood{
- dir = 1
- },
-/turf/open/floor/wood,
-/area/ship/crew)
-"kn" = (
-/obj/machinery/porta_turret/ship,
-/turf/closed/wall/mineral/plastitanium/nodiagonal,
-/area/ship/bridge)
-"ko" = (
-/obj/structure/rack,
-/obj/machinery/door/window/brigdoor/westleft{
- dir = 4
- },
-/obj/effect/turf_decal/trimline/opaque/red/filled/line{
- dir = 4
- },
-/obj/effect/turf_decal/techfloor{
- dir = 8
- },
-/obj/item/stack/cable_coil/red{
- amount = 4
- },
-/obj/item/stack/sheet/rglass,
-/obj/item/stack/sheet/rglass,
-/obj/item/storage/toolbox/electrical{
- pixel_y = 10
- },
-/obj/item/mmi/posibrain,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/science/ai_chamber)
-"kp" = (
-/obj/effect/turf_decal/techfloor{
- dir = 10
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/hangar/port)
-"kq" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/catwalk/over/plated_catwalk/dark,
-/turf/open/floor/plating,
-/area/ship/engineering)
-"kr" = (
-/obj/structure/filingcabinet,
-/obj/item/kitchen/knife/letter_opener,
-/obj/machinery/airalarm/directional/north,
-/obj/effect/turf_decal/industrial/hatch/yellow,
-/obj/item/clothing/mask/cigarette/cigar/havana,
-/obj/item/clothing/mask/cigarette/cigar/havana,
-/obj/item/clothing/mask/cigarette/cigar/havana,
-/obj/item/clothing/mask/cigarette/cigar/havana,
-/obj/item/clothing/mask/cigarette/cigar/havana,
-/obj/item/clothing/mask/cigarette/cigar/havana,
-/obj/structure/sign/poster/official/cohiba_robusto_ad{
- pixel_x = -32
- },
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/engineering)
-"kv" = (
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 8
- },
-/obj/effect/turf_decal/minutemen/edge{
- dir = 8
- },
-/obj/structure/extinguisher_cabinet/directional/east{
- pixel_y = 4
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ship/bridge)
-"kw" = (
-/obj/effect/turf_decal/industrial/stand_clear,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/engine,
-/area/ship/hangar/port)
-"ky" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/effect/turf_decal/siding/wood,
-/obj/machinery/door/firedoor/border_only{
- dir = 4
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/light_switch{
- dir = 1;
- pixel_y = -18
- },
-/turf/open/floor/wood,
-/area/ship/hallway/fore)
-"kF" = (
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/machinery/power/terminal{
- dir = 8
- },
-/obj/effect/turf_decal/box,
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 1
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering)
-"kS" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/machinery/holopad/emergency/engineering,
-/obj/effect/turf_decal/box,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/engine)
-"kW" = (
-/obj/structure/table/chem,
-/obj/item/reagent_containers/glass/beaker{
- pixel_x = -4;
- pixel_y = 6
- },
-/obj/item/reagent_containers/glass/beaker{
- pixel_x = 6;
- pixel_y = 11
- },
-/obj/structure/sign/departments/chemistry/pharmacy{
- pixel_y = 32
- },
-/obj/item/reagent_containers/glass/beaker{
- pixel_x = 7
- },
-/obj/effect/turf_decal/techfloor{
- dir = 9
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/science/xenobiology)
-"kZ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/effect/turf_decal/siding/wood,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/light/directional/south,
-/turf/open/floor/wood,
-/area/ship/hallway/fore)
-"la" = (
-/obj/effect/turf_decal/industrial/warning/corner,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 8
- },
-/obj/item/paper/crumpled,
-/obj/machinery/camera/autoname{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/cargo)
-"lb" = (
-/obj/effect/turf_decal/techfloor{
- dir = 6
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/hangar/port)
-"ld" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
-/obj/machinery/camera/autoname,
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/atmospherics)
-"le" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/light_switch{
- dir = 1;
- pixel_y = -18
- },
-/turf/open/floor/wood,
-/area/ship/crew/office)
-"lk" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/black/diagonal,
-/turf/open/floor/plasteel/white,
-/area/ship/crew/canteen)
-"lm" = (
-/obj/machinery/firealarm/directional/north,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
-/obj/item/kirbyplants{
- icon_state = "plant-04";
- pixel_x = -7;
- pixel_y = 22
- },
-/turf/open/floor/carpet/nanoweave/purple,
-/area/ship/science)
-"lp" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/hangar/port)
-"lr" = (
-/obj/structure/window/reinforced,
-/obj/effect/turf_decal/steeldecal/steel_decals4{
- dir = 4
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/bridge)
-"lu" = (
-/obj/machinery/light/directional/south,
-/obj/effect/turf_decal/corner/opaque/black{
- dir = 1
- },
-/obj/effect/turf_decal/borderfloor,
-/turf/open/floor/plasteel/white,
-/area/ship/crew/canteen)
-"lv" = (
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "obendo"
- },
-/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium,
-/turf/open/floor/plating,
-/area/ship/engineering)
-"lx" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 1
- },
-/obj/structure/closet/secure_closet/engineering_electrical{
- anchored = 1
- },
-/obj/effect/turf_decal/box,
-/obj/structure/extinguisher_cabinet/directional/south,
-/obj/machinery/light/directional/east,
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering)
-"lz" = (
-/obj/effect/turf_decal/trimline/opaque/purple/line{
- dir = 8
- },
-/obj/effect/turf_decal/trimline/opaque/purple/filled/corner{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/firealarm/directional/west,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/science)
-"lB" = (
-/obj/machinery/washing_machine,
-/turf/open/floor/plasteel/grimy,
-/area/ship/crew/dorm)
-"lD" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/catwalk/over/plated_catwalk/dark,
-/turf/open/floor/plating,
-/area/ship/hallway/central)
-"lE" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/techfloor{
- dir = 5
- },
-/obj/structure/sign/poster/contraband/power{
- pixel_x = 32;
- pixel_y = 32
- },
-/obj/effect/turf_decal/corner_techfloor_gray{
- dir = 8
- },
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/engineering/engine)
-"lH" = (
-/obj/machinery/door/airlock/external,
-/obj/machinery/atmospherics/pipe/layer_manifold,
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/obj/effect/turf_decal/industrial/warning,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "vela_labeva"
- },
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/science)
-"lK" = (
-/turf/closed/wall/mineral/plastitanium/nodiagonal,
-/area/ship/cargo)
-"lM" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/effect/turf_decal/siding/wood{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/camera/autoname{
- dir = 8
- },
-/turf/open/floor/wood,
-/area/ship/hallway/fore)
-"lQ" = (
-/obj/machinery/mech_bay_recharge_port,
-/obj/machinery/light/directional/north,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/cargo)
-"lR" = (
-/obj/docking_port/stationary{
- dir = 2;
- dwidth = 15;
- height = 15;
- width = 30
- },
-/turf/template_noop,
-/area/template_noop)
-"lV" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/carpet/nanoweave/purple,
-/area/ship/science)
-"md" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/hangar/port)
-"mi" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/effect/turf_decal/corner/transparent/purple/diagonal,
-/turf/open/floor/plasteel/dark,
-/area/ship/science/xenobiology)
-"ml" = (
-/obj/machinery/vending/games,
-/obj/effect/turf_decal/industrial/hatch/yellow,
-/obj/machinery/light/directional/east,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/hallway/central)
-"mq" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/wood,
-/area/ship/crew/canteen)
-"mC" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
-/obj/machinery/modular_computer/console/preset/engineering{
- dir = 8
- },
-/obj/effect/turf_decal/spline/fancy/opaque/black,
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/engine)
-"mK" = (
-/obj/machinery/door/airlock/command{
- dir = 4;
- req_access = list(19)
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 8
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/science/ai_chamber)
-"mN" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/trimline/transparent/green/filled/warning{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/hallway/central)
-"mO" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/siding/thinplating/dark{
- dir = 4
- },
-/obj/effect/turf_decal/techfloor{
- dir = 4
- },
-/obj/structure/railing{
- dir = 4;
- layer = 3.1
- },
-/obj/effect/turf_decal/corner_techfloor_grid{
- dir = 1
- },
-/obj/effect/turf_decal/corner_techfloor_grid{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ship/hallway/central)
-"mP" = (
-/obj/effect/turf_decal/trimline/opaque/purple/line{
- dir = 8
- },
-/obj/effect/turf_decal/trimline/opaque/purple/filled/corner,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/light/directional/west,
-/turf/open/floor/plasteel/dark,
-/area/ship/science)
-"mR" = (
-/obj/effect/turf_decal/trimline/opaque/purple/filled/line,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/science)
-"mS" = (
-/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium,
-/obj/machinery/door/poddoor/shutters{
- dir = 4;
- id = "obfront";
- name = "Window Shutters"
- },
-/turf/open/floor/plating,
-/area/ship/bridge)
-"mW" = (
-/obj/structure/table/reinforced,
-/obj/machinery/light/small/directional/south,
-/obj/item/reagent_containers/glass/maunamug{
- pixel_x = 8;
- pixel_y = 6
- },
-/obj/item/paper_bin{
- pixel_x = -6;
- pixel_y = 1
- },
-/obj/item/pen/fourcolor{
- pixel_x = -6;
- pixel_y = 2
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/bridge)
-"mY" = (
-/obj/effect/turf_decal/steeldecal/steel_decals1,
-/turf/open/floor/plasteel/tech,
-/area/ship/bridge)
-"ng" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/siding/thinplating/dark{
- dir = 4
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering)
-"nh" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/box/corners{
- dir = 8
- },
-/obj/machinery/power/floodlight,
-/turf/open/floor/plating,
-/area/ship/storage)
-"ni" = (
-/obj/machinery/cryopod{
- dir = 8
- },
-/obj/effect/turf_decal/techfloor/orange{
- dir = 4
- },
-/obj/structure/railing{
- dir = 4;
- layer = 2.8
- },
-/obj/item/radio/intercom/directional/south,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/crew/dorm)
-"nm" = (
-/obj/structure/sign/clip{
- pixel_y = 36
- },
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 4
- },
-/obj/machinery/light/directional/north{
- pixel_y = 28
- },
-/turf/open/floor/engine/hull/reinforced,
-/area/ship/external)
-"no" = (
-/obj/structure/janitorialcart,
-/obj/effect/turf_decal/box/corners{
- dir = 1
- },
-/obj/effect/turf_decal/box/corners{
- dir = 8
- },
-/obj/item/mop,
-/obj/item/reagent_containers/glass/bucket,
-/obj/structure/mopbucket,
-/turf/open/floor/pod,
-/area/ship/cargo)
-"np" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/security/armory)
-"nq" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/catwalk/over/plated_catwalk/dark,
-/turf/open/floor/plating,
-/area/ship/engineering/engine)
-"nr" = (
-/obj/structure/table/reinforced,
-/obj/effect/turf_decal/corner/opaque/black/diagonal{
- dir = 4
- },
-/obj/item/radio/intercom/directional/west,
-/obj/item/reagent_containers/food/condiment/mayonnaise{
- pixel_y = 12;
- pixel_x = 5
- },
-/obj/item/reagent_containers/food/condiment/ketchup{
- pixel_x = 8;
- pixel_y = 6
- },
-/turf/open/floor/plasteel/white,
-/area/ship/crew/canteen)
-"nw" = (
-/obj/structure/frame/machine,
-/obj/effect/turf_decal/techfloor{
- dir = 1
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/science/xenobiology)
-"nA" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ship/bridge)
-"nC" = (
-/turf/closed/wall/mineral/plastitanium/nodiagonal,
-/area/ship/storage)
-"nF" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 8
- },
-/obj/effect/turf_decal/spline/fancy/wood{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/obj/machinery/light/directional/east,
-/turf/open/floor/wood,
-/area/ship/crew/canteen)
-"nO" = (
-/obj/effect/turf_decal/trimline/opaque/purple/warning{
- dir = 4
- },
-/obj/effect/turf_decal/trimline/opaque/purple/filled/line{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/science)
-"nP" = (
-/obj/machinery/door/poddoor/preopen{
- id = "obhangarent2"
- },
-/obj/effect/turf_decal/trimline/opaque/red/filled/warning,
-/obj/effect/turf_decal/trimline/opaque/red/filled/warning{
- dir = 1
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 1
- },
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/door/airlock/mining,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/hangar/port)
-"nQ" = (
-/obj/machinery/door/firedoor/border_only{
- dir = 4
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 8
- },
-/obj/effect/turf_decal/trimline/opaque/green/filled/warning{
- dir = 4
- },
-/obj/effect/turf_decal/trimline/opaque/green/filled/warning{
- dir = 8
- },
-/obj/machinery/door/airlock{
- dir = 4;
- name = "Showers"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/crew)
-"nS" = (
-/obj/effect/turf_decal/minutemen/edge{
- dir = 8
- },
-/obj/item/mecha_parts/part/ripley_right_arm,
-/turf/open/floor/plasteel/mono/dark,
-/area/ship/hangar/port)
-"nU" = (
-/obj/machinery/power/terminal{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/effect/turf_decal/box/corners{
- dir = 1
- },
-/obj/effect/turf_decal/box/corners{
- dir = 4
- },
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ship/engineering/atmospherics)
-"nV" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/effect/turf_decal/spline/fancy/opaque/black/corner{
- dir = 1
- },
-/obj/effect/turf_decal/siding/thinplating/dark{
- dir = 4
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering)
-"nW" = (
-/obj/structure/window/plasma/reinforced{
- dir = 8
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/obj/machinery/power/smes/shuttle/precharged{
- dir = 4
- },
-/obj/effect/turf_decal/techfloor{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/machinery/door/poddoor/shutters{
- dir = 4;
- id = "obengines";
- name = "Engine Shutters"
- },
-/turf/open/floor/engine,
-/area/ship/engineering/atmospherics)
-"oa" = (
-/obj/effect/turf_decal/trimline/opaque/purple/warning{
- dir = 6
- },
-/obj/effect/turf_decal/trimline/opaque/purple/filled/corner{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/closet/firecloset/wall/directional/east,
-/obj/machinery/button/door{
- dir = 8;
- id = "vela_labeva";
- name = "airlock shutters";
- pixel_x = 22;
- pixel_y = -16;
- req_access = list(1)
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/science)
-"ot" = (
-/obj/machinery/camera/autoname{
- dir = 8
- },
-/turf/open/floor/engine/hull/reinforced,
-/area/ship/external)
-"ov" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/effect/turf_decal/siding/wood,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/wood,
-/area/ship/hallway/fore)
-"oC" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
- },
-/obj/structure/extinguisher_cabinet/directional/north,
-/obj/effect/turf_decal/industrial/stand_clear{
- dir = 4
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/hallway/central)
-"oJ" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/obj/structure/railing{
- dir = 4;
- layer = 3.1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/plasteel/dark,
-/area/ship/hangar/port)
-"oT" = (
-/obj/structure/chair/office{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/sign/poster/official/moth/boh{
- pixel_y = -32
- },
-/turf/open/floor/carpet/nanoweave/purple,
-/area/ship/science)
-"oZ" = (
-/obj/machinery/ai_slipper,
-/obj/effect/turf_decal/box,
-/turf/open/floor/plasteel/dark,
-/area/ship/science)
-"pd" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer4,
-/obj/machinery/meter{
- target_layer = 4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/pipe/manifold/supply/visible/layer2{
- dir = 8
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/atmospherics)
-"pe" = (
-/obj/machinery/camera/autoname{
- dir = 4
- },
-/obj/machinery/light/small/directional/west,
-/turf/open/floor/engine/hull/reinforced,
-/area/ship/external)
-"pf" = (
-/obj/machinery/atmospherics/pipe/layer_manifold,
-/turf/closed/wall/mineral/plastitanium/nodiagonal,
-/area/ship/science)
-"pk" = (
-/obj/structure/table/wood,
-/obj/item/trash/plate{
- pixel_x = 9
- },
-/obj/item/newspaper{
- pixel_x = -6;
- pixel_y = 2
- },
-/obj/item/newspaper{
- pixel_x = -6;
- pixel_y = 5
- },
-/obj/item/clothing/mask/cigarette/dromedary{
- pixel_x = 7;
- pixel_y = 10
- },
-/obj/effect/decal/cleanable/vomit/old{
- pixel_x = 9;
- pixel_y = 18
- },
-/turf/open/floor/carpet,
-/area/ship/crew)
-"pp" = (
-/obj/effect/turf_decal/industrial/hatch/yellow,
-/obj/structure/closet/secure_closet/miner{
- name = "pilot's equipment";
- populate = 0
- },
-/obj/item/clothing/head/helmet/bulletproof/m10/clip_vc,
-/obj/item/clothing/suit/armor/vest/alt,
-/obj/item/clothing/shoes/combat,
-/obj/item/gps/mining,
-/obj/item/clothing/glasses/hud/diagnostic,
-/obj/item/clothing/gloves/fingerless,
-/obj/item/stock_parts/cell/high/plus,
-/obj/item/clothing/glasses/welding,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/hangar/port)
-"pq" = (
-/obj/effect/turf_decal/techfloor/orange{
- dir = 1
- },
-/obj/item/radio/intercom/wideband/directional/west,
-/turf/open/floor/circuit/green,
-/area/ship/science/ai_chamber)
-"pw" = (
-/obj/structure/chair/sofa/brown/left/directional/west,
-/obj/effect/decal/cleanable/wrapping,
-/turf/open/floor/carpet,
-/area/ship/crew)
-"pA" = (
-/obj/structure/table,
-/obj/item/storage/fancy/cigarettes/cigpack_robust{
- pixel_x = -4
- },
-/obj/item/lighter{
- pixel_x = -9;
- pixel_y = -4
- },
-/obj/item/newspaper{
- pixel_x = 5;
- pixel_y = 9
- },
-/obj/item/holosign_creator/security{
- pixel_x = 4;
- pixel_y = -1
- },
-/obj/item/reagent_containers/food/drinks/coffee{
- pixel_x = -8;
- pixel_y = 14
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/security/armory)
-"pC" = (
-/obj/structure/noticeboard/qm{
- desc = "Important notices from the Supply Officer";
- name = "Supply Officer's Notice Board";
- pixel_y = 28
- },
-/obj/structure/reagent_dispensers/fueltank,
-/obj/effect/turf_decal/box/corners{
- dir = 1
- },
-/obj/effect/turf_decal/box/corners{
- dir = 8
- },
-/turf/open/floor/pod,
-/area/ship/cargo)
-"pG" = (
-/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/on/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/effect/turf_decal/industrial/warning/cee{
- dir = 8
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/science)
-"pJ" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/crew/toilet)
-"pK" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/industrial/stand_clear,
-/turf/open/floor/engine,
-/area/ship/hangar/port)
-"pM" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/science)
-"pU" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/plasteel/grimy,
-/area/ship/crew/canteen)
-"pW" = (
-/obj/machinery/camera/autoname{
- dir = 9
- },
-/turf/open/floor/engine/hull/reinforced,
-/area/ship/external)
-"pX" = (
-/obj/effect/turf_decal/siding/wood/corner{
- dir = 1
- },
-/turf/open/floor/wood,
-/area/ship/hallway/fore)
-"qa" = (
-/obj/structure/table,
-/obj/item/newspaper{
- pixel_x = -6;
- pixel_y = 9
- },
-/obj/item/reagent_containers/food/drinks/mug{
- pixel_x = -9
- },
-/obj/item/toy/figure/scientist{
- pixel_x = 8;
- pixel_y = 5
- },
-/obj/item/radio/old{
- pixel_y = -11
- },
-/turf/open/floor/carpet/nanoweave/purple,
-/area/ship/science)
-"qc" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
-/obj/effect/turf_decal/corner/transparent/mauve/diagonal,
-/obj/machinery/light/directional/west,
-/obj/machinery/airalarm/directional/north,
-/turf/open/floor/plasteel/dark,
-/area/ship/science/xenobiology)
-"qd" = (
-/obj/structure/chair/office{
- dir = 4
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/security/armory)
-"qe" = (
-/obj/machinery/computer/monitor{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/structure/sign/warning/enginesafety{
- pixel_y = 32
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/engine)
-"qj" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/ship/storage)
-"qk" = (
-/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/on/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/effect/turf_decal/industrial/warning/cee{
- dir = 4
- },
-/obj/item/radio/intercom/directional/east,
-/turf/open/floor/plasteel/tech,
-/area/ship/science)
-"qy" = (
-/obj/machinery/door/poddoor/preopen{
- id = "obhangarent2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/trimline/opaque/red/filled/warning,
-/obj/effect/turf_decal/trimline/opaque/red/filled/warning{
- dir = 1
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 1
- },
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/door/airlock/mining,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/hangar/port)
-"qB" = (
-/obj/structure/sign/poster/official/report_crimes{
- pixel_y = -32
- },
-/obj/effect/turf_decal/industrial/hatch/yellow,
-/obj/structure/closet/secure_closet/miner{
- name = "pilot's equipment";
- populate = 0
- },
-/obj/item/clothing/head/helmet/bulletproof/m10/clip_vc,
-/obj/item/clothing/suit/armor/vest/alt,
-/obj/item/clothing/shoes/combat,
-/obj/item/gps/mining,
-/obj/item/clothing/glasses/hud/diagnostic,
-/obj/item/clothing/gloves/fingerless,
-/obj/item/stock_parts/cell/high/plus,
-/obj/item/clothing/glasses/welding,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/hangar/port)
-"qC" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/obj/structure/catwalk/over/plated_catwalk/dark,
-/turf/open/floor/plating,
-/area/ship/engineering/engine)
-"qF" = (
-/obj/structure/table/wood,
-/obj/item/paper_bin{
- pixel_x = -5;
- pixel_y = 4
- },
-/obj/item/pen{
- pixel_x = -6;
- pixel_y = 5
- },
-/obj/item/toy/cards/deck{
- pixel_x = 6;
- pixel_y = 1
- },
-/turf/open/floor/carpet,
-/area/ship/crew)
-"qG" = (
-/obj/machinery/power/shuttle/engine/electric{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/engine/hull,
-/area/ship/engineering/engine)
-"qJ" = (
-/obj/structure/table/reinforced,
-/obj/item/gps{
- gpstag = "GOLD-VHEV";
- pixel_x = -5;
- pixel_y = -2
- },
-/obj/machinery/button/door{
- dir = 8;
- id = "obfront";
- name = "Window Shutters";
- pixel_x = 8;
- pixel_y = 4
- },
-/obj/machinery/light/directional/north,
-/turf/open/floor/plasteel/tech,
-/area/ship/bridge)
-"qO" = (
-/obj/effect/turf_decal/techfloor,
-/obj/machinery/light/directional/south,
-/turf/open/floor/plasteel/dark,
-/area/ship/hangar/port)
-"qP" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 8
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/security/armory)
-"qR" = (
-/obj/effect/turf_decal/industrial/warning,
-/obj/effect/turf_decal/spline/fancy/opaque/black,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/hangar/port)
-"qS" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 8
- },
-/obj/effect/turf_decal/spline/fancy/opaque/black/corner{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/cargo)
-"qT" = (
-/obj/structure/sign/poster/official/bless_this_spess{
- pixel_x = -32
- },
-/obj/effect/turf_decal/industrial/hatch/yellow,
-/obj/machinery/camera/autoname{
- dir = 5
- },
-/obj/machinery/suit_storage_unit/inherit,
-/obj/item/clothing/suit/space/pilot,
-/obj/item/clothing/head/helmet/space/pilot/random,
-/obj/item/reagent_containers/food/drinks/bottle/trappist,
-/obj/structure/sign/warning/nosmoking/burnt{
- pixel_x = -4;
- pixel_y = -28
- },
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/hangar/port)
-"qU" = (
-/obj/effect/turf_decal/arrows{
- dir = 1
- },
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 1
- },
-/obj/effect/turf_decal/industrial/traffic,
-/turf/open/floor/engine,
-/area/ship/external)
-"qX" = (
-/obj/structure/filingcabinet/double,
-/obj/item/clipboard,
-/obj/machinery/light/small/directional/west,
-/obj/effect/turf_decal/box,
-/turf/open/floor/plasteel/tech,
-/area/ship/science)
-"qY" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/closet/secure_closet{
- icon_state = "cap";
- name = "first officer's locker";
- req_access_txt = "19"
- },
-/obj/effect/turf_decal/box,
-/obj/machinery/light/small/directional/west,
-/obj/item/binoculars,
-/obj/item/megaphone,
-/obj/item/clothing/glasses/sunglasses,
-/obj/item/clothing/shoes/combat,
-/obj/item/radio/headset/clip/alt/captain,
-/obj/item/storage/backpack/captain,
-/obj/item/storage/backpack/satchel/cap,
-/obj/item/clipboard,
-/obj/item/reagent_containers/spray/pepper,
-/obj/item/clothing/suit/toggle/lawyer/clip/fo,
-/obj/item/clothing/head/clip/slouch/officer,
-/turf/open/floor/mineral/plastitanium,
-/area/ship/bridge)
-"ra" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/on/layer4{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ship/external)
-"rb" = (
-/obj/machinery/computer/security{
- dir = 8
- },
-/obj/effect/turf_decal/box/red,
-/obj/machinery/light/directional/east,
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 4
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/security/armory)
-"rd" = (
-/obj/effect/turf_decal/trimline/opaque/purple/warning{
- dir = 1
- },
-/obj/effect/turf_decal/trimline/opaque/purple/filled/line,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/turf/open/floor/plasteel/dark,
-/area/ship/science)
-"rn" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/catwalk/over/plated_catwalk/dark,
-/obj/structure/railing{
- dir = 4;
- layer = 3.1
- },
-/turf/open/floor/plating,
-/area/ship/hallway/central)
-"rr" = (
-/obj/machinery/shower{
- pixel_y = 16
- },
-/obj/structure/window/reinforced/tinted{
- dir = 4
- },
-/obj/structure/window/reinforced/tinted{
- dir = 8
- },
-/obj/effect/turf_decal/floordetail/tiled,
-/turf/open/floor/plasteel/tech,
-/area/ship/crew)
-"rs" = (
-/obj/structure/rack,
-/obj/machinery/door/window/brigdoor/northleft,
-/obj/effect/turf_decal/trimline/opaque/red/filled/line{
- dir = 1
- },
-/obj/effect/turf_decal/techfloor,
-/obj/effect/spawner/lootdrop/aimodule_harmless,
-/obj/effect/spawner/lootdrop/aimodule_harmless,
-/obj/effect/spawner/lootdrop/aimodule_harmless,
-/obj/machinery/light/small/directional/south,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/science/ai_chamber)
-"rv" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 8
- },
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/cargo)
-"rw" = (
-/obj/structure/chair/sofa/brown/right/directional/east,
-/obj/machinery/light/small/directional/west,
-/obj/item/kirbyplants{
- icon_state = "plant-22";
- pixel_x = -8
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/carpet,
-/area/ship/crew)
-"rx" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/structure/catwalk/over/plated_catwalk/dark,
-/turf/open/floor/plating,
-/area/ship/engineering)
-"ry" = (
-/obj/effect/turf_decal/box/corners,
-/obj/effect/turf_decal/box/corners{
- dir = 4
- },
-/obj/machinery/light/directional/south,
-/turf/open/floor/pod,
-/area/ship/cargo)
-"rA" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 1
- },
-/obj/structure/closet/secure_closet/engineering_welding{
- anchored = 1
- },
-/obj/effect/turf_decal/box,
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering)
-"rB" = (
-/obj/effect/turf_decal/trimline/opaque/purple/line{
- dir = 4
- },
-/obj/effect/turf_decal/trimline/opaque/purple/filled/corner{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/light/directional/east,
-/turf/open/floor/plasteel/dark,
-/area/ship/science)
-"rO" = (
-/obj/effect/turf_decal/trimline/opaque/purple/filled/warning{
- dir = 4
- },
-/obj/effect/turf_decal/trimline/opaque/purple/filled/warning{
- dir = 8
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 8
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 4
- },
-/obj/machinery/door/airlock/research{
- dir = 4;
- name = "Science Lab"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/science)
-"rR" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 1
- },
-/obj/machinery/power/apc/auto_name/directional/west,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/machinery/airalarm/directional/south,
-/turf/open/floor/wood,
-/area/ship/crew/office)
-"rT" = (
-/obj/machinery/door/firedoor/border_only{
- dir = 8
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/effect/turf_decal/trimline/opaque/green/filled/warning{
- dir = 4
- },
-/obj/effect/turf_decal/trimline/opaque/green/filled/warning{
- dir = 8
- },
-/obj/machinery/door/airlock{
- dir = 4
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/crew/canteen)
-"sa" = (
-/obj/machinery/portable_atmospherics/pump,
-/obj/effect/turf_decal/box/corners{
- dir = 8
- },
-/obj/effect/turf_decal/box/corners{
- dir = 1
- },
-/obj/effect/decal/cleanable/generic,
-/obj/machinery/light/small/directional/west,
-/obj/machinery/light_switch{
- dir = 1;
- pixel_y = -18
- },
-/turf/open/floor/plating,
-/area/ship/storage)
-"sb" = (
-/obj/effect/turf_decal/techfloor,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/hangar/port)
-"sc" = (
-/obj/machinery/door/poddoor/preopen{
- id = "obhangarent1"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/effect/turf_decal/trimline/opaque/red/filled/warning,
-/obj/effect/turf_decal/trimline/opaque/red/filled/warning{
- dir = 1
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 1
- },
-/obj/machinery/door/firedoor/border_only,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/hallway/central)
-"si" = (
-/obj/effect/turf_decal/industrial/warning,
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/cargo)
-"sn" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/sign/warning/fire{
- pixel_x = 8;
- pixel_y = 24
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/engine)
-"sr" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- 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/structure/catwalk/over/plated_catwalk/dark,
-/turf/open/floor/plating,
-/area/ship/engineering/atmospherics)
-"sy" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/trimline/opaque/orange/filled/warning,
-/obj/effect/turf_decal/spline/fancy/opaque/black,
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering)
-"sA" = (
-/obj/machinery/atmospherics/components/binary/pump/layer4{
- dir = 8;
- name = "Waste to Environment"
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/atmospherics)
-"sD" = (
-/obj/structure/sign/poster/official/cohiba_robusto_ad{
- pixel_y = -32
- },
-/obj/effect/turf_decal/box/corners{
- dir = 4
- },
-/obj/structure/closet/secure_closet/freezer/meat,
-/turf/open/floor/pod,
-/area/ship/cargo)
-"sF" = (
-/obj/effect/turf_decal/techfloor/orange{
- dir = 1
- },
-/obj/machinery/light/small/directional/east,
-/turf/open/floor/circuit/green,
-/area/ship/science/ai_chamber)
-"sK" = (
-/turf/open/floor/engine/hull/reinforced,
-/area/ship/external)
-"sM" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/wood,
-/area/ship/crew/canteen)
-"sN" = (
-/obj/machinery/atmospherics/pipe/layer_manifold{
- dir = 4
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 8
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 4
- },
-/obj/effect/turf_decal/trimline/opaque/green/filled/warning{
- dir = 4
- },
-/obj/effect/turf_decal/trimline/opaque/green/filled/warning{
- dir = 8
- },
-/obj/machinery/door/airlock{
- dir = 4;
- name = "Airlock Access"
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/hallway/fore)
-"sR" = (
-/obj/machinery/porta_turret/ship{
- dir = 8
- },
-/turf/closed/wall/mineral/plastitanium/nodiagonal,
-/area/ship/bridge)
-"sV" = (
-/obj/effect/turf_decal/spline/fancy/opaque/black,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/stairs{
- dir = 8
- },
-/area/ship/bridge)
-"ta" = (
-/obj/effect/turf_decal/trimline/opaque/red/filled/warning{
- dir = 1
- },
-/obj/effect/turf_decal/trimline/opaque/red/filled/warning,
-/obj/machinery/door/poddoor{
- id = "obmine11"
- },
-/turf/open/floor/engine,
-/area/ship/hangar/port)
-"tb" = (
-/obj/structure/table/reinforced,
-/obj/effect/turf_decal/corner/opaque/black/diagonal,
-/obj/machinery/light/directional/west,
-/obj/item/reagent_containers/food/condiment/hotsauce{
- pixel_x = 5;
- pixel_y = 7
- },
-/turf/open/floor/plasteel/white,
-/area/ship/crew/canteen)
-"tc" = (
-/obj/structure/railing,
-/obj/effect/turf_decal/steeldecal/steel_decals1{
- dir = 5
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/bridge)
-"tf" = (
-/obj/machinery/door/airlock/external,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/effect/turf_decal/industrial/warning,
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "vela_labeva"
- },
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/science)
-"tk" = (
-/obj/structure/table/reinforced,
-/obj/effect/turf_decal/corner/opaque/black/diagonal,
-/obj/machinery/camera/autoname{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/ship/crew/canteen)
-"tm" = (
-/obj/effect/turf_decal/box/corners{
- dir = 1
- },
-/obj/item/cutting_board,
-/obj/structure/closet/crate/freezer{
- name = "food supplies"
- },
-/obj/item/cutting_board,
-/obj/item/pizzabox/pineapple,
-/obj/item/pizzabox/pineapple,
-/obj/item/pizzabox/pineapple,
-/obj/effect/spawner/lootdrop/ration,
-/obj/item/reagent_containers/glass/mortar/metal,
-/obj/item/pestle,
-/obj/item/reagent_containers/food/condiment/saltshaker,
-/obj/item/reagent_containers/food/condiment/saltshaker,
-/obj/item/reagent_containers/food/condiment/peppermill,
-/obj/item/reagent_containers/food/condiment/peppermill,
-/turf/open/floor/pod,
-/area/ship/cargo)
-"tn" = (
-/obj/machinery/blackbox_recorder,
-/obj/machinery/door/window/brigdoor/eastright,
-/turf/open/floor/plasteel/telecomms_floor,
-/area/ship/bridge)
-"tq" = (
-/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium,
-/obj/machinery/door/poddoor/shutters{
- id = "vela_cap"
- },
-/turf/open/floor/plating,
-/area/ship/crew/office)
-"tu" = (
-/turf/open/floor/plasteel/grimy,
-/area/ship/crew/canteen)
-"tx" = (
-/obj/structure/frame/machine,
-/obj/effect/turf_decal/techfloor{
- dir = 4
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/science/xenobiology)
-"tA" = (
-/obj/effect/turf_decal/industrial/caution{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/sign/warning/nosmoking{
- pixel_y = -32
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/science/xenobiology)
-"tI" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/railing{
- dir = 4;
- layer = 3.1
- },
-/obj/structure/catwalk/over/plated_catwalk/dark,
-/turf/open/floor/plating,
-/area/ship/engineering)
-"tJ" = (
-/obj/structure/window/reinforced,
-/obj/structure/rack,
-/obj/machinery/door/window/brigdoor/eastleft,
-/obj/item/gps{
- gpstag = "GOLD-VHEV";
- pixel_x = -5;
- pixel_y = -2
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/item/multitool,
-/obj/item/storage/toolbox/mechanical,
-/obj/machinery/light/small/directional/west,
-/turf/open/floor/plasteel/tech,
-/area/ship/bridge)
-"tO" = (
-/obj/machinery/door/firedoor/border_only{
- dir = 1
- },
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/door/airlock/mining{
- name = "Cargo Bay"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/effect/turf_decal/trimline/opaque/brown/filled/warning,
-/obj/effect/turf_decal/trimline/opaque/brown/filled/warning{
- dir = 1
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/cargo)
-"tP" = (
-/obj/structure/chair/office{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/light/small/directional/east,
-/turf/open/floor/carpet/nanoweave/purple,
-/area/ship/science)
-"tQ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
- },
-/obj/effect/turf_decal/corner/transparent/mauve/diagonal,
-/obj/effect/turf_decal/steeldecal/steel_decals_central4,
-/obj/item/radio/intercom/directional/west,
-/turf/open/floor/plasteel/dark,
-/area/ship/science/xenobiology)
-"tR" = (
-/obj/effect/turf_decal/minutemen/edge{
- dir = 1
- },
-/turf/open/floor/plasteel/mono/dark,
-/area/ship/hangar/port)
-"tT" = (
-/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/on/layer2{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer5,
-/obj/effect/turf_decal/industrial/warning{
- dir = 5
- },
-/obj/item/radio/intercom/directional/east,
-/turf/open/floor/plasteel/tech,
-/area/ship/hallway/fore)
-"tW" = (
-/obj/machinery/airalarm/directional/west,
-/obj/effect/turf_decal/box/corners{
- dir = 8
- },
-/obj/effect/turf_decal/box/corners{
- dir = 1
- },
-/obj/machinery/microwave{
- anchored = 0
- },
-/obj/effect/turf_decal/corner_steel_grid{
- dir = 6
- },
-/turf/open/floor/pod/dark,
-/area/ship/cargo)
-"tY" = (
-/obj/effect/turf_decal/box/corners{
- dir = 1
- },
-/obj/effect/turf_decal/box/corners{
- dir = 4
- },
-/obj/machinery/button/door{
- id = "obmine11";
- name = "Bay 1 Doors";
- pixel_x = -7;
- pixel_y = 23
- },
-/obj/machinery/button/shieldwallgen{
- id = "obhang21";
- name = "Bay 1 Air Shield";
- pixel_x = 5;
- pixel_y = 22
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/hangar/port)
-"uc" = (
-/obj/structure/chair/office{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/carpet/nanoweave/purple,
-/area/ship/science)
-"ue" = (
-/obj/structure/urinal{
- pixel_y = 32
- },
-/obj/effect/turf_decal/borderfloor{
- dir = 9
- },
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ship/crew/toilet)
-"ug" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
- },
-/obj/effect/turf_decal/siding/wood,
-/turf/open/floor/wood,
-/area/ship/crew/canteen)
-"ul" = (
-/obj/structure/table,
-/obj/machinery/jukebox/boombox,
-/obj/effect/turf_decal/siding/wood{
- dir = 10
- },
-/obj/effect/turf_decal/siding/wood/corner{
- dir = 4
- },
-/turf/open/floor/carpet,
-/area/ship/hallway/central)
-"uo" = (
-/obj/structure/table,
-/obj/item/clipboard{
- pixel_x = -3;
- pixel_y = 8
- },
-/obj/item/paper/crumpled{
- pixel_x = 9;
- pixel_y = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/cargo)
-"up" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/effect/turf_decal/spline/fancy/wood{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/structure/extinguisher_cabinet/directional/south,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/wood,
-/area/ship/crew)
-"uq" = (
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 8
- },
-/obj/machinery/button/shieldwallgen{
- dir = 8;
- id = "obcargos";
- pixel_x = 23;
- pixel_y = 5
- },
-/obj/machinery/button/door{
- dir = 8;
- id = "obcargo";
- name = "Cargo Shutters";
- pixel_x = 25;
- pixel_y = -5
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/cargo)
-"ur" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/item/weldingtool/mini,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/techfloor/hole/right{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/engine,
-/area/ship/hangar/port)
-"us" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/siding/wood{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/ship/crew/canteen)
-"uv" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/obj/effect/turf_decal/trimline/opaque/red/filled/warning{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/security/armory)
-"uw" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/obj/structure/railing{
- dir = 8;
- layer = 3.1
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/hangar/port)
-"uB" = (
-/obj/effect/turf_decal/minutemen/corner,
-/obj/item/circuitboard/mecha/ripley/peripherals,
-/turf/open/floor/plasteel/mono/dark,
-/area/ship/hangar/port)
-"uQ" = (
-/obj/effect/turf_decal/box/corners{
- dir = 8
- },
-/obj/effect/turf_decal/box/corners{
- dir = 1
- },
-/obj/structure/closet/secure_closet/freezer/fridge/open,
-/turf/open/floor/pod,
-/area/ship/cargo)
-"uR" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 8
- },
-/obj/effect/decal/cleanable/generic,
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/atmospherics)
-"uT" = (
-/obj/effect/turf_decal/industrial/hatch/yellow,
-/obj/structure/closet/secure_closet/miner{
- name = "pilot's equipment";
- populate = 0
- },
-/obj/item/clothing/head/helmet/bulletproof/m10/clip_vc,
-/obj/item/clothing/suit/armor/vest/alt,
-/obj/item/clothing/shoes/combat,
-/obj/item/gps/mining,
-/obj/item/clothing/glasses/hud/diagnostic,
-/obj/item/clothing/gloves/fingerless,
-/obj/item/stock_parts/cell/high/plus,
-/obj/structure/sign/poster/official/safety_eye_protection{
- pixel_y = -32
- },
-/obj/item/clothing/glasses/welding,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/hangar/port)
-"uU" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 4
- },
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 1
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering)
-"uX" = (
-/obj/machinery/door/poddoor{
- id = "obcargo"
- },
-/obj/structure/cable,
-/obj/effect/turf_decal/trimline/opaque/red/filled/warning{
- dir = 1
- },
-/obj/effect/turf_decal/trimline/opaque/red/filled/warning,
-/obj/machinery/power/shieldwallgen/atmos/roundstart{
- dir = 4;
- id = "obcargos"
- },
-/turf/open/floor/engine,
-/area/ship/cargo)
-"vr" = (
-/obj/effect/turf_decal/spline/fancy/wood{
- dir = 8
- },
-/obj/effect/turf_decal/siding/wood,
-/obj/effect/turf_decal/siding/wood/corner{
- dir = 4
- },
-/obj/structure/sign/poster/clip/random{
- pixel_x = -28
- },
-/turf/open/floor/wood,
-/area/ship/crew/canteen)
-"vz" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/techfloor/hole/right{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/engine,
-/area/ship/hangar/port)
-"vD" = (
-/obj/effect/turf_decal/box/corners{
- dir = 1
- },
-/obj/effect/turf_decal/box/corners{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer3{
- dir = 8
- },
-/obj/machinery/button/door{
- id = "obmine11";
- name = "Bay 1 Doors";
- pixel_x = 7;
- pixel_y = 23
- },
-/obj/machinery/button/shieldwallgen{
- id = "obhang21";
- name = "Bay 1 Air Shield";
- pixel_x = -5;
- pixel_y = 22
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/hangar/port)
-"vK" = (
-/obj/effect/turf_decal/trimline/opaque/purple/line{
- dir = 4
- },
-/obj/effect/turf_decal/trimline/opaque/purple/filled/line{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/airalarm/directional/east,
-/turf/open/floor/plasteel/dark,
-/area/ship/science)
-"vM" = (
-/obj/structure/chair/sofa/brown/left/directional/west,
-/obj/machinery/firealarm/directional/east,
-/turf/open/floor/carpet,
-/area/ship/crew)
-"vO" = (
-/obj/structure/sink{
- dir = 4;
- pixel_x = -12
- },
-/obj/structure/mirror{
- pixel_x = -28
- },
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 4;
- pixel_y = 1
- },
-/obj/machinery/light/small/directional/north,
-/obj/effect/turf_decal/borderfloor{
- dir = 9
- },
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ship/crew/toilet)
-"vS" = (
-/obj/machinery/camera/autoname{
- dir = 5
- },
-/obj/machinery/light/small/directional/west,
-/turf/open/floor/engine/hull/reinforced,
-/area/ship/external)
-"vV" = (
-/obj/structure/rack,
-/obj/machinery/light/directional/north,
-/obj/item/stack/sheet/mineral/wood/fifty,
-/turf/open/floor/plasteel/tech,
-/area/ship/crew/canteen)
-"vX" = (
-/obj/structure/sign/warning/chemdiamond{
- pixel_x = 32
- },
-/obj/structure/table/chem,
-/obj/item/reagent_containers/glass/filter{
- pixel_x = 12
- },
-/obj/effect/turf_decal/techfloor{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/science/xenobiology)
-"wa" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/light/small/directional/south,
-/turf/open/floor/carpet/nanoweave/purple,
-/area/ship/science)
-"wh" = (
-/obj/structure/table,
-/obj/item/clothing/mask/cigarette/cigar/havana{
- pixel_x = 8;
- pixel_y = -1
- },
-/obj/item/lighter,
-/obj/machinery/button/door{
- dir = 4;
- id = "obengines";
- name = "Engine Shutters";
- pixel_x = -24;
- pixel_y = 7
- },
-/obj/structure/sign/poster/contraband/hacking_guide{
- pixel_y = -30
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering)
-"wi" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/chair/plastic{
- dir = 8
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/atmospherics)
-"wk" = (
-/obj/structure/closet/wall/directional/south,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/grimy,
-/area/ship/crew)
-"wl" = (
-/obj/effect/turf_decal/rechargefloor,
-/obj/structure/sign/poster/contraband/steppyflag{
- pixel_y = 32
- },
-/obj/item/mecha_parts/mecha_equipment/hydraulic_clamp,
-/obj/mecha/working/ripley/cargo,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/cargo)
-"wn" = (
-/obj/structure/falsewall/plastitanium,
-/turf/open/floor/plating,
-/area/ship/cargo)
-"wr" = (
-/obj/effect/decal/cleanable/oil,
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 4
- },
-/obj/structure/railing/corner{
- dir = 4;
- layer = 3.1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/hangar/port)
-"wv" = (
-/obj/effect/turf_decal/spline/fancy/wood/corner{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
- },
-/turf/open/floor/plasteel/grimy,
-/area/ship/crew/dorm)
-"ww" = (
-/obj/effect/turf_decal/spline/fancy/wood{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/wood,
-/area/ship/crew)
-"wz" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 1
- },
-/obj/effect/turf_decal/techfloor,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light_switch{
- dir = 1;
- pixel_y = -20
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/hangar/port)
-"wA" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/closed/wall/mineral/plastitanium/nodiagonal,
-/area/ship/engineering/engine)
-"wB" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/generic,
-/obj/machinery/power/floodlight,
-/turf/open/floor/plating,
-/area/ship/storage)
-"wD" = (
-/obj/structure/railing,
-/obj/effect/turf_decal/spline/fancy/opaque/black/corner{
- dir = 4
- },
-/obj/effect/turf_decal/minutemen/corner{
- dir = 4
- },
-/obj/effect/turf_decal/spline/fancy/opaque/black,
-/turf/open/floor/mineral/plastitanium,
-/area/ship/bridge)
-"wF" = (
-/obj/structure/window/plasma/reinforced{
- dir = 8
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/obj/effect/turf_decal/techfloor{
- dir = 1
- },
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 8
- },
-/obj/machinery/light_switch{
- pixel_x = -5;
- pixel_y = 23
- },
-/obj/machinery/firealarm/directional/north{
- pixel_x = 6
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/engine)
-"wH" = (
-/obj/structure/table,
-/obj/item/paper_bin,
-/obj/item/pen,
-/obj/effect/turf_decal/siding/thinplating/dark{
- dir = 5
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering)
-"wO" = (
-/obj/effect/turf_decal/trimline/opaque/purple/warning{
- dir = 1
- },
-/obj/machinery/modular_computer/console/preset/civilian,
-/turf/open/floor/plasteel/dark,
-/area/ship/science/xenobiology)
-"wR" = (
-/obj/structure/sign/clip{
- pixel_y = 36
- },
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 1
- },
-/obj/machinery/camera/autoname,
-/obj/machinery/light/directional/north{
- pixel_y = 28
- },
-/turf/open/floor/engine/hull/reinforced,
-/area/ship/external)
-"wW" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/catwalk/over/plated_catwalk/dark,
-/turf/open/floor/plating,
-/area/ship/engineering)
-"wZ" = (
-/obj/machinery/door/airlock/command{
- dir = 4;
- name = "Bridge";
- req_access_txt = "19"
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 8
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/effect/turf_decal/trimline/opaque/solgovgold/filled/warning{
- dir = 4
- },
-/obj/effect/turf_decal/trimline/opaque/solgovgold/filled/warning{
- dir = 8
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/bridge)
-"xc" = (
-/obj/structure/table,
-/obj/item/canvas/nineteenXnineteen,
-/obj/item/canvas/nineteenXnineteen,
-/obj/item/canvas/nineteenXnineteen,
-/obj/item/storage/crayons,
-/obj/item/toy/crayon/spraycan,
-/obj/effect/turf_decal/siding/wood/end{
- dir = 4
- },
-/turf/open/floor/carpet,
-/area/ship/hallway/central)
-"xh" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/effect/turf_decal/siding/wood{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/wood,
-/area/ship/hallway/fore)
-"xl" = (
-/obj/machinery/door/firedoor/border_only{
- dir = 8
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 4
- },
-/obj/effect/turf_decal/trimline/opaque/green/filled/warning{
- dir = 8
- },
-/obj/effect/turf_decal/trimline/opaque/green/filled/warning{
- dir = 4
- },
-/obj/machinery/door/airlock{
- dir = 4
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/hallway/fore)
-"xm" = (
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2,
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/structure/railing/corner{
- dir = 1;
- layer = 3.1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/catwalk/over/plated_catwalk/dark,
-/turf/open/floor/plating,
-/area/ship/hallway/central)
-"xy" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/hangar/port)
-"xz" = (
-/obj/effect/turf_decal/industrial/caution,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/hangar/port)
-"xA" = (
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/plasteel/stairs{
- dir = 8
- },
-/area/ship/bridge)
-"xB" = (
-/obj/effect/turf_decal/industrial/stand_clear{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/hallway/central)
-"xC" = (
-/obj/effect/turf_decal/trimline/opaque/red/filled/line{
- dir = 1
- },
-/obj/structure/railing{
- dir = 1;
- layer = 3.1
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/security/armory)
-"xD" = (
-/turf/closed/wall/mineral/plastitanium/nodiagonal,
-/area/ship/hallway/fore)
-"xF" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/railing{
- dir = 4;
- layer = 3.1
- },
-/obj/structure/catwalk/over/plated_catwalk/dark,
-/turf/open/floor/plating,
-/area/ship/engineering)
-"xH" = (
-/obj/structure/sink{
- dir = 8;
- pixel_x = 13
- },
-/obj/structure/mirror{
- pixel_x = 28
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/crew/toilet)
-"xI" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
- },
-/obj/effect/turf_decal/corner_techfloor_gray{
- dir = 1
- },
-/obj/machinery/button/door{
- id = "obai2";
- name = "AI core blast door button";
- pixel_x = 8;
- pixel_y = 24;
- req_access = list(19)
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/item/radio/intercom/directional/west,
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ship/science/ai_chamber)
-"xK" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/light/directional/east,
-/turf/open/floor/plasteel/dark,
-/area/ship/hallway/central)
-"xM" = (
-/obj/structure/toilet{
- pixel_y = 12
- },
-/obj/effect/turf_decal/floordetail/pryhole,
-/obj/machinery/light/small/directional/north,
-/turf/open/floor/plasteel/mono/dark,
-/area/ship/crew/toilet)
-"xN" = (
-/obj/structure/table,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/item/stack/sheet/glass/twenty,
-/obj/item/stack/sheet/metal/twenty{
- pixel_y = 14
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering)
-"xR" = (
-/obj/machinery/camera/autoname{
- dir = 5
- },
-/turf/open/floor/engine/hull/reinforced,
-/area/ship/external)
-"xT" = (
-/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium,
-/obj/machinery/door/poddoor/preopen{
- dir = 4;
- id = "obhangarent21"
- },
-/turf/open/floor/plating,
-/area/ship/hallway/central)
-"xU" = (
-/obj/structure/bed,
-/obj/structure/curtain/cloth,
-/obj/item/bedsheet/blue,
-/obj/machinery/light/small/directional/north,
-/turf/open/floor/wood,
-/area/ship/crew/dorm)
-"yb" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 4
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/bridge)
-"yd" = (
-/obj/structure/chair/office{
- dir = 8
- },
-/obj/machinery/light/directional/north,
-/turf/open/floor/wood,
-/area/ship/hallway/central)
-"yg" = (
-/obj/item/kirbyplants/random,
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/cargo)
-"yi" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 1
- },
-/obj/machinery/button/door{
- dir = 1;
- id = "obhangarent11";
- name = "umbilical window shutters";
- pixel_x = -4;
- pixel_y = -22
- },
-/obj/machinery/button/door{
- dir = 1;
- id = "obhangarent1";
- name = "pod lockdown";
- pixel_x = 9;
- pixel_y = -22;
- req_access_txt = list(1)
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/hallway/central)
-"yj" = (
-/obj/machinery/holopad/secure,
-/obj/structure/sign/warning/testchamber{
- pixel_x = -28
- },
-/obj/effect/turf_decal/box,
-/obj/effect/turf_decal/corner/transparent/purple/diagonal,
-/turf/open/floor/plasteel/dark,
-/area/ship/science/xenobiology)
-"yk" = (
-/obj/structure/rack,
-/obj/item/stack/sheet/mineral/plasma/twenty,
-/obj/effect/turf_decal/box/corners{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/ship/storage)
-"ym" = (
-/turf/open/floor/plasteel/dark,
-/area/ship/hallway/central)
-"yn" = (
-/obj/machinery/computer/helm{
- dir = 8
- },
-/turf/open/floor/plasteel/telecomms_floor,
-/area/ship/bridge)
-"yo" = (
-/obj/machinery/door/poddoor/preopen{
- id = "obhangarent1"
- },
-/obj/effect/turf_decal/trimline/opaque/red/filled/warning,
-/obj/effect/turf_decal/trimline/opaque/red/filled/warning{
- dir = 1
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 1
- },
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/door/airlock/research,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/science)
-"yr" = (
-/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/on/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer5,
-/obj/machinery/light/small/directional/east,
-/obj/effect/turf_decal/industrial/warning{
- dir = 6
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/hallway/fore)
-"ys" = (
-/turf/closed/wall/mineral/plastitanium/nodiagonal,
-/area/ship/hallway/central)
-"yt" = (
-/obj/machinery/suit_storage_unit/engine,
-/obj/effect/turf_decal/box,
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering)
-"yv" = (
-/obj/effect/turf_decal/industrial/hatch/yellow,
-/obj/machinery/atmospherics/components/unary/tank/air{
- dir = 4;
- piping_layer = 2
- },
-/obj/machinery/firealarm/directional/west,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/engineering/atmospherics)
-"yx" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/oil{
- icon_state = "floor6"
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering)
-"yA" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 4
- },
-/obj/effect/turf_decal/corner/opaque/black/diagonal,
-/turf/open/floor/plasteel/white,
-/area/ship/crew/canteen)
-"yD" = (
-/obj/machinery/shower{
- pixel_y = 16
- },
-/obj/structure/window/reinforced/tinted{
- dir = 4
- },
-/obj/effect/turf_decal/floordetail/tiled,
-/turf/open/floor/plasteel/tech,
-/area/ship/crew)
-"yG" = (
-/obj/effect/turf_decal/trimline/opaque/purple/line,
-/obj/effect/turf_decal/trimline/opaque/purple/filled/line{
- dir = 1
- },
-/obj/structure/sign/warning/vacuum/external{
- pixel_y = -24
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/science)
-"yH" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/hangar/port)
-"yI" = (
-/obj/effect/turf_decal/spline/fancy/wood/corner{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/siding/wood{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 1
- },
-/turf/open/floor/wood,
-/area/ship/crew/canteen)
-"yL" = (
-/obj/effect/turf_decal/industrial/outline/red,
-/obj/effect/turf_decal/rechargefloor,
-/obj/mecha/working/ripley/clip,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/hangar/port)
-"zf" = (
-/obj/structure/window/plasma/reinforced{
- dir = 8
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/obj/machinery/power/smes/shuttle/precharged{
- dir = 4
- },
-/obj/effect/turf_decal/techfloor{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/machinery/door/poddoor/shutters{
- dir = 4;
- id = "obengines";
- name = "Engine Shutters"
- },
-/turf/open/floor/engine,
-/area/ship/engineering/engine)
-"zi" = (
-/obj/machinery/power/shieldwallgen/atmos/roundstart{
- dir = 8;
- id = "obhang22"
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/effect/turf_decal/trimline/opaque/red/filled/warning,
-/obj/effect/turf_decal/trimline/opaque/red/filled/warning{
- dir = 1
- },
-/obj/machinery/door/poddoor{
- id = "obmine12"
- },
-/turf/open/floor/engine,
-/area/ship/hangar/port)
-"zk" = (
-/obj/item/kirbyplants/random,
-/obj/structure/sign/warning/securearea{
- pixel_x = -26;
- pixel_y = 8
- },
-/obj/machinery/light/small/directional/south,
-/turf/open/floor/plasteel/dark,
-/area/ship/science)
-"zl" = (
-/obj/structure/cable{
- 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/firedoor/border_only,
-/obj/machinery/door/firedoor/border_only{
- dir = 1
- },
-/obj/effect/turf_decal/trimline/opaque/green/filled/warning,
-/obj/effect/turf_decal/trimline/opaque/green/filled/warning{
- dir = 1
- },
-/obj/machinery/door/airlock{
- name = "Dormitory"
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/crew/dorm)
-"zr" = (
-/obj/structure/frame/machine,
-/obj/effect/turf_decal/techfloor,
-/obj/machinery/firealarm/directional/south,
-/obj/machinery/airalarm/directional/west,
-/turf/open/floor/plasteel/tech,
-/area/ship/science/xenobiology)
-"zs" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/engine,
-/area/ship/hangar/port)
-"zy" = (
-/obj/structure/chair/comfy/shuttle{
- dir = 4;
- name = "Operations"
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/bridge)
-"zz" = (
-/obj/effect/turf_decal/techfloor{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/cargo)
-"zB" = (
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 4
- },
-/obj/effect/turf_decal/minutemen/edge{
- dir = 4
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ship/bridge)
-"zC" = (
-/obj/effect/turf_decal/industrial/hatch/yellow,
-/obj/machinery/vending/snack/random,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/hallway/central)
-"zE" = (
-/obj/structure/sign/clip,
-/turf/closed/wall/mineral/plastitanium/nodiagonal,
-/area/ship/hangar/port)
-"zF" = (
-/obj/structure/frame/computer{
- dir = 1
- },
-/obj/effect/turf_decal/techfloor,
-/obj/machinery/light/directional/south,
-/turf/open/floor/plasteel/tech,
-/area/ship/science/xenobiology)
-"zJ" = (
-/turf/open/floor/carpet,
-/area/ship/crew)
-"zK" = (
-/obj/structure/chair/sofa/brown/corner/directional/south,
-/obj/item/radio/intercom/directional/east,
-/obj/item/toy/plush/hornet{
- pixel_y = 7
- },
-/turf/open/floor/carpet,
-/area/ship/crew)
-"zL" = (
-/obj/effect/turf_decal/techfloor/corner{
- dir = 4
- },
-/obj/structure/extinguisher_cabinet/directional/north,
-/obj/effect/turf_decal/corner/transparent/mauve/diagonal,
-/obj/effect/turf_decal/steeldecal/steel_decals9{
- dir = 1
- },
-/obj/effect/turf_decal/industrial/caution{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/science/xenobiology)
-"zN" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/layer4{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/ship/engineering/atmospherics)
-"zR" = (
-/obj/structure/closet/firecloset/wall/directional/south,
-/obj/effect/decal/cleanable/dirt,
-/obj/item/storage/firstaid/fire,
-/obj/effect/turf_decal/techfloor,
-/turf/open/floor/plasteel/dark,
-/area/ship/hangar/port)
-"zV" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/structure/catwalk/over/plated_catwalk/dark,
-/obj/machinery/light_switch{
- dir = 1;
- pixel_y = -20
- },
-/turf/open/floor/plating,
-/area/ship/engineering)
-"zX" = (
-/turf/open/floor/wood,
-/area/ship/hallway/central)
-"Ab" = (
-/obj/effect/turf_decal/steeldecal/steel_decals_central6{
- dir = 8
- },
-/obj/effect/turf_decal/steeldecal/steel_decals7,
-/obj/effect/turf_decal/steeldecal/steel_decals7{
- dir = 4
- },
-/obj/structure/table/reinforced,
-/obj/structure/cable,
-/obj/machinery/power/apc/auto_name/directional/south,
-/obj/item/paper_bin{
- pixel_x = 6;
- pixel_y = 3
- },
-/obj/item/paper_bin/carbon{
- pixel_x = -9;
- pixel_y = 3
- },
-/obj/item/pen/blue{
- pixel_x = 7;
- pixel_y = 4
- },
-/obj/item/pen/fountain{
- pixel_x = 5
- },
-/obj/item/pen/fourcolor{
- pixel_x = 10;
- pixel_y = 7
- },
-/obj/machinery/light_switch{
- dir = 1;
- pixel_x = 11;
- pixel_y = -16
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/bridge)
-"Ae" = (
-/turf/closed/wall/mineral/plastitanium/nodiagonal,
-/area/ship/crew/dorm)
-"Ai" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2,
-/obj/effect/turf_decal/siding/wood/corner,
-/obj/effect/turf_decal/siding/wood/corner{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/wood,
-/area/ship/hallway/fore)
-"Ak" = (
-/obj/structure/grille,
-/obj/structure/railing{
- dir = 4
- },
-/turf/open/floor/engine/hull/reinforced,
-/area/ship/external)
-"An" = (
-/obj/structure/rack,
-/obj/machinery/door/window/brigdoor/northright,
-/obj/effect/turf_decal/trimline/opaque/red/filled/line{
- dir = 1
- },
-/obj/effect/turf_decal/techfloor,
-/obj/effect/spawner/lootdrop/aimodule_neutral,
-/obj/effect/spawner/lootdrop/aimodule_neutral,
-/obj/effect/spawner/lootdrop/aimodule_neutral,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/science/ai_chamber)
-"Aq" = (
-/obj/machinery/mineral/ore_redemption,
-/obj/effect/turf_decal/industrial/outline/yellow,
-/turf/open/floor/plasteel/tech,
-/area/ship/hangar/port)
-"Ar" = (
-/obj/item/radio/intercom/directional/south,
-/turf/open/floor/plasteel/dark,
-/area/ship/hallway/central)
-"Au" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/effect/turf_decal/siding/thinplating/dark{
- dir = 4
- },
-/obj/effect/turf_decal/siding/thinplating/dark{
- dir = 8
- },
-/obj/effect/turf_decal/techfloor{
- dir = 4
- },
-/obj/effect/turf_decal/techfloor{
- dir = 8
- },
-/obj/structure/railing{
- dir = 4;
- layer = 3.1
- },
-/obj/structure/railing{
- dir = 8;
- layer = 3.1
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ship/hallway/central)
-"Av" = (
-/obj/structure/table/chem,
-/obj/item/reagent_scanner,
-/obj/effect/turf_decal/techfloor{
- dir = 6
- },
-/obj/machinery/light/small/directional/east,
-/turf/open/floor/plasteel/dark,
-/area/ship/science/xenobiology)
-"AB" = (
-/obj/item/analyzer,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/machinery/power/apc/auto_name/directional/east,
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/atmospherics)
-"AC" = (
-/obj/machinery/power/shieldwallgen/atmos/roundstart{
- dir = 4;
- id = "obhang21"
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/effect/turf_decal/trimline/opaque/red/filled/warning{
- dir = 1
- },
-/obj/effect/turf_decal/trimline/opaque/red/filled/warning,
-/obj/machinery/door/poddoor{
- id = "obmine11"
- },
-/turf/open/floor/engine,
-/area/ship/hangar/port)
-"AD" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/catwalk/over/plated_catwalk/dark,
-/turf/open/floor/plating,
-/area/ship/engineering)
-"AF" = (
-/obj/machinery/atmospherics/components/binary/valve/digital/layer2,
-/obj/machinery/atmospherics/components/binary/valve/digital/layer4,
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/hallway/central)
-"AN" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/atmospherics)
-"AO" = (
-/obj/machinery/door/firedoor/border_only{
- dir = 1
- },
-/obj/machinery/door/firedoor/border_only,
-/obj/effect/turf_decal/trimline/opaque/green/filled/warning{
- dir = 1
- },
-/obj/effect/turf_decal/trimline/opaque/green/filled/warning,
-/obj/machinery/door/airlock{
- name = "Restroom"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/crew/toilet)
-"AR" = (
-/obj/effect/turf_decal/box/corners,
-/obj/effect/turf_decal/box/corners{
- dir = 4
- },
-/obj/effect/turf_decal/corner_steel_grid{
- dir = 9
- },
-/turf/open/floor/pod/dark,
-/area/ship/cargo)
-"AS" = (
-/obj/effect/turf_decal/spline/fancy/wood{
- dir = 5
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/plasteel/grimy,
-/area/ship/crew/dorm)
-"Bc" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
- },
-/obj/structure/cable,
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 8
- },
-/obj/machinery/power/apc/auto_name/directional/south,
-/obj/machinery/light_switch{
- dir = 1;
- pixel_x = -12;
- pixel_y = -16
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/cargo)
-"Bh" = (
-/obj/effect/decal/cleanable/oil/streak,
-/obj/effect/decal/cleanable/glass,
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/engine)
-"Bj" = (
-/obj/structure/closet/secure_closet{
- icon_state = "cap";
- name = "captain's locker";
- req_access_txt = "20"
- },
-/obj/item/clothing/under/clip/officer,
-/obj/item/clothing/suit/armor/clip_capcoat,
-/obj/item/clothing/shoes/combat,
-/obj/item/clothing/glasses/sunglasses,
-/obj/item/gun/ballistic/automatic/pistol/candor,
-/obj/item/clothing/head/clip/slouch/officer,
-/obj/item/radio/headset/clip/alt/captain,
-/obj/item/storage/backpack,
-/obj/item/storage/backpack/satchel,
-/obj/item/binoculars,
-/obj/item/door_remote/captain,
-/turf/open/floor/carpet/royalblack,
-/area/ship/crew/office)
-"Bn" = (
-/obj/effect/turf_decal/corner_techfloor_grid{
- dir = 4
- },
-/obj/effect/turf_decal/techfloor/orange/corner{
- dir = 4
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/crew/dorm)
-"Bq" = (
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/effect/turf_decal/spline/fancy/opaque/black,
-/turf/open/floor/plasteel/dark,
-/area/ship/bridge)
-"Br" = (
-/obj/structure/chair/comfy/orange/directional/east,
-/turf/open/floor/wood,
-/area/ship/crew/office)
-"Bu" = (
-/obj/machinery/power/apc/auto_name/directional/south,
-/obj/effect/turf_decal/steeldecal/steel_decals_central7{
- dir = 8;
- pixel_x = 1
- },
-/obj/effect/turf_decal/steeldecal/steel_decals7{
- dir = 4
- },
-/obj/effect/turf_decal/steeldecal/steel_decals7,
-/obj/structure/cable,
-/obj/machinery/light_switch{
- dir = 1;
- pixel_x = 11;
- pixel_y = -16
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/crew/toilet)
-"BB" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/obj/item/kirbyplants/random{
- pixel_x = 8
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ship/bridge)
-"BC" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
- },
-/obj/effect/turf_decal/siding/wood,
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/wood,
-/area/ship/hallway/fore)
-"BE" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/layer2{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/ship/engineering/atmospherics)
-"BH" = (
-/obj/structure/chair/sofa/brown/directional/south,
-/obj/machinery/light/small/directional/north,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/carpet,
-/area/ship/crew)
-"BI" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/light/directional/north,
-/turf/open/floor/plasteel/dark,
-/area/ship/hallway/central)
-"BN" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/door/firedoor/border_only{
- dir = 1
- },
-/obj/machinery/door/firedoor/border_only,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/trimline/opaque/green/filled/warning,
-/obj/effect/turf_decal/trimline/opaque/green/filled/warning{
- dir = 1
- },
-/obj/machinery/door/airlock,
-/turf/open/floor/plasteel/tech,
-/area/ship/hallway/central)
-"BQ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/light/small/directional/east,
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ship/science/ai_chamber)
-"BR" = (
-/obj/structure/closet/secure_closet/engineering_personal{
- anchored = 1
- },
-/obj/effect/turf_decal/box,
-/obj/item/pipe_dispenser,
-/obj/machinery/light/small/directional/east,
-/obj/structure/sign/poster/contraband/random{
- pixel_y = 30
- },
-/obj/item/clothing/suit/toggle/industrial,
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering)
-"BW" = (
-/obj/structure/curtain/cloth,
-/obj/effect/turf_decal/spline/fancy/opaque/black,
-/obj/machinery/light/small/directional/west,
-/turf/open/floor/plasteel/dark,
-/area/ship/crew)
-"BX" = (
-/obj/structure/chair/sofa/brown/directional/south,
-/obj/machinery/newscaster/directional/north,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/carpet,
-/area/ship/crew)
-"BY" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/door/airlock,
-/obj/effect/turf_decal/trimline/opaque/green/filled/warning{
- dir = 1
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 1
- },
-/obj/effect/turf_decal/trimline/opaque/green/filled/warning,
-/obj/machinery/door/firedoor/border_only,
-/turf/open/floor/plasteel/tech,
-/area/ship/hallway/central)
-"Ca" = (
-/obj/effect/turf_decal/siding/wood,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/wood,
-/area/ship/crew/canteen)
-"Cd" = (
-/turf/closed/wall/mineral/plastitanium/nodiagonal,
-/area/ship/security/armory)
-"Ce" = (
-/turf/open/floor/carpet/nanoweave/purple,
-/area/ship/science)
-"Cj" = (
-/obj/machinery/power/shuttle/engine/electric{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/engine/hull,
-/area/ship/engineering/atmospherics)
-"Cp" = (
-/obj/effect/turf_decal/steeldecal/steel_decals7,
-/obj/effect/turf_decal/techfloor{
- dir = 1
- },
-/obj/effect/turf_decal/industrial/stand_clear,
-/obj/structure/extinguisher_cabinet/directional/east,
-/turf/open/floor/plasteel/dark,
-/area/ship/cargo)
-"Cq" = (
-/obj/effect/turf_decal/minutemen/edge{
- dir = 4
- },
-/obj/item/mecha_parts/part/ripley_left_arm,
-/turf/open/floor/plasteel/mono/dark,
-/area/ship/hangar/port)
-"Cu" = (
-/obj/structure/reagent_dispensers/peppertank{
- pixel_y = -28
- },
-/obj/structure/cable{
- icon_state = "5-8"
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/security/armory)
-"Cw" = (
-/obj/structure/chair/comfy/shuttle{
- dir = 4;
- name = "Helm"
- },
-/obj/effect/turf_decal/steeldecal/steel_decals3,
-/turf/open/floor/plasteel/tech,
-/area/ship/bridge)
-"Cz" = (
-/obj/effect/turf_decal/trimline/opaque/purple/warning{
- dir = 5
- },
-/obj/effect/turf_decal/trimline/opaque/purple/filled/corner{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/science)
-"CD" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/obj/machinery/light/small/directional/south,
-/obj/effect/turf_decal/corner/transparent/purple/diagonal,
-/obj/machinery/airalarm/directional/east,
-/turf/open/floor/plasteel/dark,
-/area/ship/science/xenobiology)
-"CF" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ship/bridge)
-"CG" = (
-/obj/structure/frame/machine,
-/obj/effect/turf_decal/techfloor{
- dir = 1
- },
-/obj/machinery/firealarm/directional/north,
-/turf/open/floor/plasteel/tech,
-/area/ship/science/xenobiology)
-"CI" = (
-/obj/structure/table/reinforced,
-/obj/machinery/light/small/directional/north,
-/obj/item/radio/intercom/wideband/table{
- dir = 4
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/bridge)
-"CK" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/obj/structure/railing{
- dir = 4;
- layer = 3.1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/plasteel/dark,
-/area/ship/hangar/port)
-"CM" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
-/turf/open/floor/engine,
-/area/ship/hangar/port)
-"CN" = (
-/obj/structure/frame/machine,
-/obj/effect/turf_decal/techfloor,
-/obj/machinery/button/door{
- dir = 8;
- id = "vela_lablock";
- pixel_x = 22;
- pixel_y = 7
- },
-/obj/item/radio/intercom/directional/south,
-/turf/open/floor/plasteel/tech,
-/area/ship/science/xenobiology)
-"CO" = (
-/obj/machinery/cryopod,
-/obj/effect/turf_decal/techfloor/orange{
- dir = 1
- },
-/obj/structure/railing{
- dir = 1;
- layer = 2.8
- },
-/obj/item/radio/intercom/directional/west,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/crew/dorm)
-"CS" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/obj/effect/turf_decal/siding/wood,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/wood,
-/area/ship/hallway/fore)
-"CW" = (
-/obj/structure/table,
-/obj/item/toy/cards/deck,
-/obj/effect/turf_decal/siding/thinplating/dark/corner,
-/obj/structure/sign/poster/contraband/engis_unite{
- pixel_y = 32
- },
-/obj/item/spacecash/bundle/pocketchange{
- pixel_x = 8;
- pixel_y = 9
- },
-/obj/machinery/light/small/directional/east,
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/engine)
-"CX" = (
-/obj/machinery/rnd/production/circuit_imprinter/department/basic,
-/obj/machinery/power/apc/auto_name/directional/north,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/hangar/port)
-"Dd" = (
-/obj/effect/turf_decal/spline/fancy/wood{
- dir = 4
- },
-/obj/structure/sign/poster/random{
- pixel_y = 30
- },
-/turf/open/floor/plasteel/grimy,
-/area/ship/crew/dorm)
-"Dr" = (
-/obj/machinery/door/firedoor/border_only{
- dir = 1
- },
-/obj/machinery/door/firedoor/border_only,
-/obj/structure/cable{
- 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/command{
- name = "Captain's Quarters";
- req_access = list(20)
- },
-/obj/effect/turf_decal/trimline/opaque/solgovgold/filled/warning,
-/obj/effect/turf_decal/trimline/opaque/solgovgold/filled/warning{
- dir = 1
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/crew/office)
-"Dt" = (
-/obj/structure/closet/firecloset/full{
- anchored = 1
- },
-/obj/effect/turf_decal/industrial/hatch/yellow,
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 1
- },
-/obj/structure/sign/directions/engineering{
- dir = 8;
- pixel_x = -32;
- pixel_y = 7
- },
-/obj/structure/sign/directions/command{
- dir = 4;
- pixel_x = -32
- },
-/obj/structure/sign/directions/supply{
- dir = 4;
- pixel_x = -32;
- pixel_y = -7
- },
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/hallway/central)
-"Dw" = (
-/obj/structure/dresser,
-/obj/machinery/newscaster/directional/east,
-/turf/open/floor/wood,
-/area/ship/crew/dorm)
-"Dy" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/obj/effect/turf_decal/box/corners{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/ship/storage)
-"DD" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/hallway/central)
-"DI" = (
-/obj/effect/turf_decal/industrial/warning/corner,
-/obj/effect/turf_decal/spline/fancy/opaque/black/corner,
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/hangar/port)
-"DL" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/obj/structure/railing{
- dir = 4;
- layer = 3.1
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
-/turf/open/floor/plasteel/dark,
-/area/ship/hangar/port)
-"DM" = (
-/obj/machinery/camera/autoname{
- dir = 10
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/engine)
-"DP" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/effect/turf_decal/corner/transparent/purple/diagonal,
-/obj/effect/turf_decal/steeldecal/steel_decals10{
- dir = 4
- },
-/obj/effect/turf_decal/steeldecal/steel_decals10,
-/turf/open/floor/plasteel/dark,
-/area/ship/science/xenobiology)
-"Eb" = (
-/obj/machinery/portable_atmospherics/canister/air,
-/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer3{
- dir = 8
- },
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/machinery/light/directional/east,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/hangar/port)
-"Ec" = (
-/obj/machinery/airalarm/directional/east,
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/structure/cable,
-/obj/machinery/power/port_gen/pacman{
- anchored = 1
- },
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/engineering/engine)
-"Ed" = (
-/obj/effect/turf_decal/box/corners,
-/obj/machinery/shieldgen,
-/obj/effect/decal/cleanable/garbage,
-/obj/machinery/light/small/broken/directional/east,
-/turf/open/floor/plating,
-/area/ship/storage)
-"Ef" = (
-/obj/structure/chair/comfy/shuttle{
- dir = 8
- },
-/obj/effect/turf_decal/steeldecal/steel_decals6,
-/turf/open/floor/plasteel/tech,
-/area/ship/bridge)
-"Ek" = (
-/turf/closed/wall/mineral/plastitanium/nodiagonal,
-/area/ship/bridge)
-"El" = (
-/obj/effect/turf_decal/trimline/opaque/purple/warning{
- dir = 8
- },
-/obj/effect/turf_decal/trimline/opaque/purple/filled/line{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/science)
-"Em" = (
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/cargo)
-"En" = (
-/obj/structure/chair/sofa/brown/directional/west,
-/obj/machinery/light/small/directional/east,
-/turf/open/floor/carpet,
-/area/ship/crew)
-"Eo" = (
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/box/corners,
-/obj/machinery/power/ship_gravity,
-/turf/open/floor/plating,
-/area/ship/storage)
-"Ex" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/effect/turf_decal/spline/fancy/wood{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/wood,
-/area/ship/crew)
-"Ey" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/camera/autoname{
- dir = 10
- },
-/obj/structure/catwalk/over/plated_catwalk/dark,
-/turf/open/floor/plating,
-/area/ship/engineering)
-"Ez" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 1
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/hangar/port)
-"EC" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/glass,
-/turf/open/floor/engine,
-/area/ship/hangar/port)
-"ED" = (
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/hallway/central)
-"EE" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/atmospherics)
-"EG" = (
-/obj/structure/window/reinforced,
-/turf/open/floor/plasteel/tech,
-/area/ship/bridge)
-"EH" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/on/layer4{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/ship/engineering/atmospherics)
-"EJ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plating,
-/area/ship/storage)
-"EK" = (
-/obj/effect/turf_decal/spline/fancy/wood/corner{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/camera/autoname{
- dir = 1
- },
-/turf/open/floor/wood,
-/area/ship/crew)
-"EM" = (
-/obj/effect/turf_decal/spline/fancy/opaque/black,
-/obj/effect/turf_decal/minutemen/edge,
-/turf/open/floor/mineral/plastitanium,
-/area/ship/bridge)
-"EN" = (
-/obj/machinery/mech_bay_recharge_port{
- dir = 1
- },
-/obj/effect/turf_decal/box/corners,
-/obj/effect/turf_decal/box/corners{
- dir = 8
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/hangar/port)
-"ER" = (
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/machinery/power/port_gen/pacman{
- anchored = 1
- },
-/obj/machinery/camera/autoname,
-/obj/structure/sign/warning/electricshock{
- pixel_y = 30
- },
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/engineering/engine)
-"EU" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/science/xenobiology)
-"EX" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 1
- },
-/obj/effect/turf_decal/spline/fancy/opaque/black/corner{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/hangar/port)
-"Fg" = (
-/turf/closed/wall/mineral/plastitanium/nodiagonal,
-/area/ship/engineering/engine)
-"Fl" = (
-/obj/machinery/door/poddoor/preopen{
- id = "obhangarent1"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/effect/turf_decal/trimline/opaque/red/filled/warning,
-/obj/effect/turf_decal/trimline/opaque/red/filled/warning{
- dir = 1
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 1
- },
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/door/airlock/research,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/science)
-"Fr" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/minutemen/corner{
- dir = 4
- },
-/obj/item/mecha_parts/part/ripley_left_leg,
-/turf/open/floor/plasteel/mono/dark,
-/area/ship/hangar/port)
-"Fw" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 1
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
-/obj/item/radio/intercom/directional/north,
-/turf/open/floor/wood,
-/area/ship/hallway/fore)
-"Fx" = (
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 1
- },
-/obj/effect/turf_decal/techfloor{
- dir = 4
- },
-/obj/structure/railing/corner{
- dir = 1;
- layer = 3.1
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/hangar/port)
-"Fy" = (
-/obj/effect/turf_decal/industrial/outline/red,
-/obj/effect/turf_decal/rechargefloor,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/hangar/port)
-"Fz" = (
-/obj/item/bedsheet/cosmos,
-/obj/structure/bed,
-/obj/structure/curtain/cloth,
-/turf/open/floor/carpet/royalblack,
-/area/ship/crew/office)
-"FC" = (
-/obj/effect/turf_decal/trimline/opaque/purple/filled/warning,
-/obj/effect/turf_decal/trimline/opaque/purple/filled/warning{
- dir = 1
- },
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/door/firedoor/border_only{
- dir = 1
- },
-/obj/machinery/door/airlock/research,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/plasteel/tech,
-/area/ship/science/xenobiology)
-"FF" = (
-/obj/machinery/portable_atmospherics/scrubber/huge/movable,
-/obj/effect/turf_decal/box/corners{
- dir = 4
- },
-/obj/effect/turf_decal/box/corners,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/sign/poster/contraband/gec{
- pixel_y = -30
- },
-/turf/open/floor/plating,
-/area/ship/storage)
-"FJ" = (
-/obj/structure/table/chem,
-/obj/machinery/reagentgrinder{
- pixel_y = 11
- },
-/obj/item/reagent_containers/food/snacks/grown/citrus/lemon{
- pixel_y = 8
- },
-/obj/effect/turf_decal/techfloor,
-/turf/open/floor/plasteel/dark,
-/area/ship/science/xenobiology)
-"FK" = (
-/obj/machinery/airalarm/directional/south,
-/obj/structure/table/reinforced,
-/obj/machinery/fax/clip,
-/turf/open/floor/plasteel/tech,
-/area/ship/bridge)
-"FN" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
-/obj/effect/turf_decal/corner/transparent/purple/diagonal,
-/turf/open/floor/plasteel/dark,
-/area/ship/science/xenobiology)
-"FR" = (
-/obj/effect/turf_decal/techfloor,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/directional/south,
-/turf/open/floor/plasteel/dark,
-/area/ship/hangar/port)
-"Ga" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
-/obj/effect/turf_decal/spline/fancy/wood{
- dir = 9
- },
-/turf/open/floor/wood,
-/area/ship/crew)
-"Ge" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/item/screwdriver{
- icon_state = "screwdriver_nuke"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/table,
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/atmospherics)
-"Gg" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/oil,
-/obj/effect/turf_decal/arrows,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/hangar/port)
-"Gh" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/plasteel/dark,
-/area/ship/hallway/central)
-"Gi" = (
-/obj/structure/frame/computer,
-/obj/effect/turf_decal/industrial/outline/yellow,
-/turf/open/floor/plasteel/tech,
-/area/ship/hangar/port)
-"Gk" = (
-/turf/open/floor/plating,
-/area/ship/external)
-"Gl" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 1
- },
-/obj/effect/turf_decal/techfloor,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark,
-/area/ship/hangar/port)
-"Go" = (
-/obj/effect/turf_decal/siding/wood,
-/turf/open/floor/wood,
-/area/ship/crew/canteen)
-"Gs" = (
-/obj/machinery/computer/mech_bay_power_console,
-/obj/effect/turf_decal/industrial/outline/yellow,
-/turf/open/floor/plasteel/tech,
-/area/ship/hangar/port)
-"Gt" = (
-/obj/machinery/door/poddoor/preopen{
- id = "obhangarent1"
- },
-/obj/effect/turf_decal/trimline/opaque/red/filled/warning,
-/obj/effect/turf_decal/trimline/opaque/red/filled/warning{
- dir = 1
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 1
- },
-/obj/machinery/door/firedoor/border_only,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/hallway/central)
-"Gu" = (
-/obj/structure/table/reinforced,
-/obj/item/desk_flag{
- pixel_y = 9
- },
-/obj/item/desk_flag/trans{
- pixel_x = -5;
- pixel_y = 4
- },
-/obj/effect/turf_decal/corner/opaque/black/diagonal,
-/turf/open/floor/plasteel/white,
-/area/ship/crew/canteen)
-"Gx" = (
-/obj/machinery/autolathe,
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering)
-"Gz" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/science/xenobiology)
-"GA" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/railing{
- dir = 4;
- layer = 3.1
- },
-/obj/structure/catwalk/over/plated_catwalk/dark,
-/turf/open/floor/plating,
-/area/ship/engineering)
-"GB" = (
-/obj/item/kirbyplants/random,
-/obj/structure/extinguisher_cabinet/directional/north,
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
-/turf/open/floor/wood,
-/area/ship/crew/canteen)
-"GD" = (
-/obj/effect/turf_decal/arrows{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/engine,
-/area/ship/hangar/port)
-"GF" = (
-/obj/effect/decal/cleanable/oil{
- icon_state = "floor4"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/ship/storage)
-"GH" = (
-/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium,
-/obj/machinery/door/poddoor/preopen{
- dir = 4;
- id = "obhangarent11"
- },
-/turf/open/floor/plating,
-/area/ship/hallway/central)
-"GI" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 4
- },
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ship/science/ai_chamber)
-"GO" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 8
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/crew/dorm)
-"GS" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/hangar/port)
-"GV" = (
-/obj/item/kirbyplants/random,
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering)
-"Ha" = (
-/obj/machinery/light/small/directional/east,
-/turf/open/floor/wood,
-/area/ship/crew/dorm)
-"Hb" = (
-/obj/machinery/airalarm/directional/south,
-/obj/effect/turf_decal/industrial/hatch/yellow,
-/obj/structure/rack,
-/obj/item/mecha_parts/mecha_equipment/weapon/energy/mecha_kineticgun,
-/obj/item/mecha_parts/mecha_equipment/thrusters/gas,
-/obj/item/mecha_parts/mecha_equipment/drill,
-/obj/item/mecha_parts/mecha_equipment/mining_scanner,
-/obj/item/mecha_parts/mecha_equipment/hydraulic_clamp,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/hangar/port)
-"Hc" = (
-/obj/effect/turf_decal/box/corners{
- dir = 4
- },
-/obj/effect/turf_decal/box/corners,
-/obj/structure/closet/secure_closet/freezer/kitchen,
-/obj/machinery/light/directional/north,
-/obj/item/reagent_containers/food/drinks/waterbottle,
-/obj/item/reagent_containers/food/drinks/waterbottle,
-/obj/item/reagent_containers/food/drinks/waterbottle,
-/obj/item/reagent_containers/food/drinks/waterbottle,
-/turf/open/floor/pod,
-/area/ship/cargo)
-"Hf" = (
-/obj/effect/turf_decal/industrial/hatch/yellow,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 1
- },
-/obj/structure/closet/emcloset/anchored,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/hallway/central)
-"Hk" = (
-/obj/machinery/airalarm/directional/south,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/security/armory)
-"Ht" = (
-/obj/effect/turf_decal/spline/fancy/opaque/black/corner{
- dir = 8
- },
-/obj/effect/turf_decal/minutemen/corner{
- dir = 8
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ship/bridge)
-"Hw" = (
-/obj/structure/table/reinforced,
-/obj/item/clipboard,
-/obj/effect/turf_decal/corner/opaque/black/diagonal,
-/turf/open/floor/plasteel/white,
-/area/ship/crew/canteen)
-"Hx" = (
-/obj/machinery/power/shieldwallgen/atmos/roundstart{
- dir = 4;
- id = "obhang22"
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/machinery/door/poddoor{
- id = "obmine12"
- },
-/obj/effect/turf_decal/trimline/opaque/red/filled/warning,
-/obj/effect/turf_decal/trimline/opaque/red/filled/warning{
- dir = 1
- },
-/turf/open/floor/engine,
-/area/ship/hangar/port)
-"Hy" = (
-/obj/effect/turf_decal/techfloor,
-/turf/open/floor/plasteel/dark,
-/area/ship/hangar/port)
-"HB" = (
-/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium,
-/obj/effect/turf_decal/industrial/warning,
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/obj/machinery/door/firedoor/window,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "vela_lablock"
- },
-/turf/open/floor/plating,
-/area/ship/science/xenobiology)
-"HH" = (
-/obj/effect/turf_decal/techfloor,
-/obj/effect/decal/cleanable/oil{
- icon_state = "floor4"
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/hangar/port)
-"HI" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
- },
-/obj/effect/turf_decal/steeldecal/steel_decals_central7,
-/obj/machinery/power/apc/auto_name/directional/west,
-/obj/structure/cable,
-/turf/open/floor/plasteel/dark,
-/area/ship/science/xenobiology)
-"HK" = (
-/obj/machinery/power/port_gen/pacman{
- anchored = 1
- },
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/structure/cable{
- icon_state = "0-10"
- },
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/engineering/engine)
-"HN" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/catwalk/over/plated_catwalk/dark,
-/obj/structure/railing{
- dir = 1;
- layer = 3.1
- },
-/turf/open/floor/plating,
-/area/ship/hallway/central)
-"HO" = (
-/obj/structure/closet/wall/directional/south,
-/obj/machinery/power/apc/auto_name/directional/west,
-/obj/effect/turf_decal/steeldecal/steel_decals_central7{
- pixel_y = 1
- },
-/obj/effect/turf_decal/steeldecal/steel_decals7{
- dir = 9
- },
-/obj/effect/turf_decal/steeldecal/steel_decals7{
- dir = 10
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/plasteel/grimy,
-/area/ship/crew)
-"HV" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 4
- },
-/obj/effect/turf_decal/siding/thinplating/dark{
- dir = 4
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering)
-"HW" = (
-/obj/structure/noticeboard{
- dir = 8;
- pixel_x = 28
- },
-/obj/effect/turf_decal/trimline/opaque/orange/filled/warning,
-/obj/effect/turf_decal/spline/fancy/opaque/black,
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering)
-"HY" = (
-/obj/structure/filingcabinet/double,
-/obj/effect/turf_decal/industrial/hatch/yellow,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/science)
-"Ia" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/bridge)
-"Ih" = (
-/obj/structure/table/reinforced,
-/obj/item/radio/intercom/directional/south,
-/obj/machinery/turretid{
- pixel_y = 3
- },
-/turf/open/floor/plasteel/telecomms_floor,
-/area/ship/bridge)
-"In" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/catwalk/over/plated_catwalk/dark,
-/turf/open/floor/plating,
-/area/ship/hallway/central)
-"Io" = (
-/obj/effect/turf_decal/industrial/caution,
-/obj/effect/decal/cleanable/glass,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/plasteel/tech,
-/area/ship/hangar/port)
-"Iu" = (
-/obj/structure/table/wood,
-/obj/item/storage/book/bible/booze{
- pixel_x = -5
- },
-/obj/item/flashlight/lamp/green{
- pixel_x = 6;
- pixel_y = 9
- },
-/turf/open/floor/wood,
-/area/ship/crew/office)
-"Iv" = (
-/obj/effect/turf_decal/minutemen/corner{
- dir = 1
- },
-/obj/item/mecha_parts/part/ripley_right_leg,
-/turf/open/floor/plasteel/mono/dark,
-/area/ship/hangar/port)
-"Iy" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/turf/open/floor/engine/hull/reinforced,
-/area/ship/external)
-"Iz" = (
-/obj/effect/turf_decal/number/two,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/engine,
-/area/ship/hangar/port)
-"IC" = (
-/obj/machinery/computer/security{
- dir = 4;
- icon_state = "computer-middle"
- },
-/obj/machinery/light/small/directional/west,
-/turf/open/floor/plasteel/telecomms_floor,
-/area/ship/bridge)
-"ID" = (
-/obj/machinery/airalarm/directional/north,
-/obj/structure/sign/poster/contraband/xenofauna_parasite{
- pixel_x = -28;
- pixel_y = -2
- },
-/obj/structure/chair/office{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/ship/hallway/central)
-"IE" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/table,
-/obj/item/radio/intercom{
- dir = 4;
- pixel_x = 13;
- pixel_y = 1
- },
-/obj/machinery/button/door{
- dir = 8;
- id = "obendo";
- name = "Office Shutters";
- pixel_x = -6;
- pixel_y = 5
- },
-/obj/effect/turf_decal/siding/thinplating/dark{
- dir = 4
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering)
-"IF" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/obj/item/storage/toolbox/electrical{
- pixel_x = -10;
- pixel_y = -5
- },
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/hangar/port)
-"II" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 4
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/engine)
-"IJ" = (
-/obj/effect/decal/cleanable/robot_debris/old,
-/obj/item/wrench,
-/obj/machinery/atmospherics/pipe/simple/supply/visible/layer2{
- dir = 4
- },
-/obj/machinery/meter{
- target_layer = 2
- },
-/obj/effect/decal/cleanable/generic,
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/atmospherics)
-"IM" = (
-/turf/open/floor/carpet/royalblack,
-/area/ship/crew/office)
-"IV" = (
-/obj/effect/turf_decal/industrial/warning,
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/cargo)
-"IZ" = (
-/obj/structure/girder,
-/obj/structure/grille,
-/turf/open/floor/engine/hull/reinforced,
-/area/ship/external)
-"Ja" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/structure/catwalk/over/plated_catwalk/dark,
-/obj/machinery/light/small/directional/north,
-/turf/open/floor/plating,
-/area/ship/hallway/central)
-"Jj" = (
-/obj/effect/turf_decal/spline/fancy/opaque/black,
-/obj/structure/closet/wall/directional/west{
- name = "spare uniforms"
- },
-/obj/item/clothing/under/clip/minutemen,
-/obj/item/clothing/under/clip/minutemen,
-/obj/item/clothing/under/clip/minutemen,
-/obj/item/clothing/under/clip/minutemen,
-/obj/item/clothing/under/clip/minutemen,
-/obj/item/clothing/under/clip/minutemen,
-/obj/item/radio,
-/obj/item/radio,
-/obj/item/radio,
-/obj/item/radio,
-/obj/item/radio,
-/obj/item/radio,
-/obj/item/clothing/shoes/combat,
-/obj/item/clothing/shoes/combat,
-/obj/item/clothing/shoes/combat,
-/obj/item/clothing/shoes/combat,
-/obj/item/clothing/shoes/combat,
-/obj/item/clothing/shoes/combat,
-/turf/open/floor/plasteel/tech,
-/area/ship/crew/dorm)
-"Jk" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ship/science/ai_chamber)
-"Jl" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/closed/wall/mineral/plastitanium/nodiagonal,
-/area/ship/engineering/atmospherics)
-"Jo" = (
-/obj/machinery/shower{
- pixel_y = 16
- },
-/obj/structure/window/reinforced/tinted{
- dir = 8
- },
-/obj/effect/turf_decal/floordetail/tiled,
-/turf/open/floor/plasteel/tech,
-/area/ship/crew)
-"Jp" = (
-/obj/structure/chair/office{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
-/obj/effect/turf_decal/steeldecal/steel_decals8,
-/turf/open/floor/plasteel/dark,
-/area/ship/science/xenobiology)
-"Ju" = (
-/obj/structure/table,
-/obj/item/paper_bin{
- pixel_x = 5;
- pixel_y = 4
- },
-/obj/item/pen{
- pixel_x = 5;
- pixel_y = 4
- },
-/obj/item/stamp/hos{
- pixel_x = 8;
- pixel_y = 9
- },
-/obj/machinery/recharger{
- pixel_x = -8
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/security/armory)
-"Jw" = (
-/obj/machinery/computer/mech_bay_power_console,
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 8
- },
-/obj/item/radio/intercom/directional/north,
-/turf/open/floor/plasteel/tech,
-/area/ship/cargo)
-"JB" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/corner_techfloor_grid{
- dir = 4
- },
-/obj/effect/turf_decal/techfloor/corner{
- dir = 4
- },
-/obj/effect/turf_decal/corner_techfloor_grid{
- dir = 1
- },
-/obj/effect/turf_decal/techfloor/corner{
- dir = 1
- },
-/obj/effect/turf_decal/corner_techfloor_gray{
- dir = 10
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/engineering/engine)
-"JH" = (
-/obj/structure/window/reinforced,
-/obj/machinery/computer/monitor{
- dir = 4;
- icon_state = "computer-left"
- },
-/obj/machinery/camera/autoname{
- dir = 4
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/bridge)
-"JI" = (
-/obj/effect/turf_decal/industrial/outline/red,
-/obj/effect/turf_decal/rechargefloor,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/hangar/port)
-"JL" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/obj/effect/turf_decal/corner_techfloor_grid{
- dir = 4
- },
-/obj/effect/turf_decal/techfloor/corner{
- dir = 4
- },
-/obj/effect/turf_decal/corner_techfloor_grid,
-/obj/structure/railing{
- dir = 8;
- layer = 3.1
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/hangar/port)
-"JM" = (
-/obj/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/security/armory)
-"JN" = (
-/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium,
-/obj/machinery/door/poddoor/shutters{
- id = "obai"
- },
-/turf/open/floor/plating,
-/area/ship/science/ai_chamber)
-"JV" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer5{
- dir = 8
- },
-/obj/effect/turf_decal/industrial/caution,
-/obj/machinery/light/small/directional/west,
-/obj/structure/sign/warning/vacuum/external{
- pixel_x = -28;
- pixel_y = 11
- },
-/obj/effect/turf_decal/steeldecal/steel_decals10{
- dir = 8
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/hallway/fore)
-"JY" = (
-/obj/effect/turf_decal/box/corners{
- dir = 4
- },
-/obj/effect/turf_decal/box/corners{
- dir = 1
- },
-/obj/machinery/button/door{
- id = "obmine12";
- name = "Bay Doors";
- pixel_x = 7;
- pixel_y = 25
- },
-/obj/machinery/button/shieldwallgen{
- id = "obhang22";
- name = "Air Shield Switch";
- pixel_x = -5;
- pixel_y = 25
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/hangar/port)
-"Kd" = (
-/obj/effect/decal/cleanable/wrapping,
-/obj/structure/chair/plastic{
- dir = 4
- },
-/obj/effect/turf_decal/techfloor{
- dir = 9
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/cargo)
-"Kk" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/effect/turf_decal/spline/fancy/opaque/black,
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/bridge)
-"Ko" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/security/armory)
-"Kq" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 8
- },
-/obj/effect/turf_decal/spline/fancy/wood{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/airalarm/directional/east,
-/turf/open/floor/wood,
-/area/ship/crew/canteen)
-"Kr" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/corner_techfloor_grid{
- dir = 8
- },
-/obj/effect/turf_decal/techfloor/corner{
- dir = 8
- },
-/obj/effect/turf_decal/corner_techfloor_grid{
- dir = 1
- },
-/obj/structure/railing{
- dir = 4;
- layer = 3.1
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/hangar/port)
-"Ks" = (
-/obj/effect/turf_decal/techfloor/orange,
-/obj/machinery/light/small/directional/east,
-/turf/open/floor/circuit/green,
-/area/ship/science/ai_chamber)
-"KC" = (
-/turf/open/floor/plasteel/stairs/mid,
-/area/ship/hallway/central)
-"KE" = (
-/obj/machinery/firealarm/directional/south,
-/obj/effect/turf_decal/corner/opaque/black{
- dir = 1
- },
-/obj/effect/turf_decal/borderfloor,
-/turf/open/floor/plasteel/white,
-/area/ship/crew/canteen)
-"KN" = (
-/obj/structure/railing/corner{
- dir = 1;
- layer = 3.1
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/hangar/port)
-"KO" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/hallway/central)
-"Lb" = (
-/obj/machinery/airalarm/directional/west,
-/obj/effect/turf_decal/industrial/hatch/yellow,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/engineering/engine)
-"Le" = (
-/obj/effect/turf_decal/trimline/opaque/red/filled/warning,
-/obj/effect/turf_decal/trimline/opaque/red/filled/warning{
- dir = 1
- },
-/obj/machinery/door/poddoor{
- id = "obmine12"
- },
-/turf/open/floor/engine,
-/area/ship/hangar/port)
-"Ln" = (
-/obj/machinery/vending/sovietsoda{
- anchored = 0
- },
-/obj/effect/turf_decal/box/corners{
- dir = 4
- },
-/obj/effect/turf_decal/box/corners,
-/turf/open/floor/pod,
-/area/ship/cargo)
-"Lx" = (
-/obj/structure/urinal{
- pixel_y = 32
- },
-/obj/machinery/light/small/directional/east,
-/obj/effect/turf_decal/borderfloor{
- dir = 5
- },
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ship/crew/toilet)
-"LB" = (
-/obj/machinery/computer/cargo/express{
- dir = 8
- },
-/turf/open/floor/plasteel/telecomms_floor,
-/area/ship/bridge)
-"LJ" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/firedoor/border_only{
- dir = 4
- },
-/obj/effect/turf_decal/trimline/opaque/red/warning{
- dir = 4
- },
-/obj/machinery/door/window/brigdoor/westleft{
- req_access_txt = list("1")
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/science)
-"LK" = (
-/obj/structure/reagent_dispensers/watertank,
-/obj/effect/turf_decal/box/corners{
- dir = 1
- },
-/obj/effect/turf_decal/corner_steel_grid{
- dir = 6
- },
-/obj/effect/turf_decal/box/corners{
- dir = 8
- },
-/turf/open/floor/pod/dark,
-/area/ship/cargo)
-"LL" = (
-/obj/structure/sign/poster/clip/random{
- pixel_y = 28
- },
-/turf/open/floor/wood,
-/area/ship/crew/canteen)
-"LS" = (
-/obj/effect/turf_decal/industrial/warning,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/wrapping,
-/turf/open/floor/plasteel/dark,
-/area/ship/cargo)
-"LT" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/structure/catwalk/over/plated_catwalk/dark,
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/plating,
-/area/ship/engineering/engine)
-"LU" = (
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 8
- },
-/obj/item/kirbyplants/random,
-/obj/effect/turf_decal/siding/thinplating/dark{
- dir = 4
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering)
-"Mc" = (
-/obj/structure/table/reinforced,
-/obj/effect/turf_decal/corner/opaque/black{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/black,
-/turf/open/floor/plasteel/white,
-/area/ship/crew/canteen)
-"Mi" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 4;
- name = "Input to Mech Refill"
- },
-/obj/effect/turf_decal/techfloor{
- dir = 8
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/obj/structure/railing{
- dir = 4;
- layer = 3.1
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/hangar/port)
-"Mj" = (
-/obj/structure/rack,
-/obj/item/stack/sheet/glass/five,
-/obj/item/stack/sheet/glass/five,
-/obj/item/stack/sheet/plastic/twenty,
-/obj/structure/sign/poster/contraband/free_drone{
- pixel_y = 32
- },
-/obj/effect/turf_decal/box/corners{
- dir = 4
- },
-/obj/item/rcl/pre_loaded,
-/obj/item/rcl/pre_loaded,
-/turf/open/floor/plating,
-/area/ship/storage)
-"Mn" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/minutemen/edge,
-/obj/item/mecha_parts/chassis/ripley,
-/turf/open/floor/plasteel/mono/dark,
-/area/ship/hangar/port)
-"Mt" = (
-/obj/structure/table/chem,
-/obj/effect/turf_decal/techfloor,
-/obj/item/reagent_containers/glass/rag{
- pixel_y = 10
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/science/xenobiology)
-"Mu" = (
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/obj/structure/chair/plastic{
- dir = 8
- },
-/obj/machinery/power/apc/auto_name/directional/north,
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/engine)
-"Mv" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/mineral/ore_redemption,
-/turf/open/floor/plasteel/tech,
-/area/ship/hangar/port)
-"Mw" = (
-/obj/structure/window/plasma/reinforced,
-/obj/machinery/atmospherics/components/binary/pump/layer4{
- name = "Waste to Recycler"
- },
-/obj/machinery/button/door{
- dir = 8;
- id = "obair";
- name = "Blast Door Controller";
- pixel_x = 22;
- pixel_y = -2
- },
-/obj/machinery/atmospherics/pipe/simple/supply/visible/layer2{
- dir = 9
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/atmospherics)
-"Mx" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 4
- },
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ship/science/ai_chamber)
-"MB" = (
-/obj/machinery/firealarm/directional/south,
-/turf/open/floor/plasteel/dark,
-/area/ship/crew/toilet)
-"MC" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "obendo"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/stairs{
- dir = 1
- },
-/area/ship/engineering)
-"MF" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/effect/turf_decal/trimline/opaque/red/filled/warning,
-/obj/effect/turf_decal/trimline/opaque/red/filled/warning{
- dir = 1
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 1
- },
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/door/airlock/security{
- req_access = list(1)
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/security/armory)
-"MJ" = (
-/obj/effect/turf_decal/spline/fancy/wood{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/item/radio/intercom/directional/south,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/plasteel/grimy,
-/area/ship/crew/dorm)
-"MP" = (
-/obj/effect/turf_decal/trimline/opaque/red/filled/corner{
- dir = 1
- },
-/obj/structure/railing/corner{
- dir = 1;
- layer = 3.1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/cable{
- icon_state = "1-10"
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/security/armory)
-"MU" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/effect/turf_decal/arrows,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/hangar/port)
-"MV" = (
-/obj/effect/turf_decal/siding/wood,
-/obj/effect/turf_decal/siding/wood{
- dir = 1
- },
-/turf/open/floor/wood,
-/area/ship/crew/canteen)
-"MW" = (
-/obj/structure/table/reinforced,
-/obj/item/megaphone/command,
-/obj/effect/turf_decal/corner/opaque/black/diagonal,
-/turf/open/floor/plasteel/white,
-/area/ship/crew/canteen)
-"MY" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
-/obj/structure/extinguisher_cabinet/directional/north,
-/obj/machinery/light/small/directional/east,
-/turf/open/floor/carpet/nanoweave/purple,
-/area/ship/science)
-"MZ" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/firedoor/border_only{
- dir = 4
- },
-/obj/effect/turf_decal/trimline/opaque/red/warning{
- dir = 4
- },
-/obj/item/paper_bin,
-/obj/item/pen/blue,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/science)
-"Na" = (
-/obj/structure/grille,
-/obj/structure/railing{
- dir = 8
- },
-/turf/open/floor/engine/hull/reinforced,
-/area/ship/external)
-"Nd" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/siding/wood{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4,
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/wood,
-/area/ship/crew/canteen)
-"Nf" = (
-/obj/machinery/button/door{
- dir = 8;
- id = "obengi";
- name = "Engineering Storage Lock";
- pixel_x = 22;
- pixel_y = -7
- },
-/obj/item/decal_painter{
- pixel_x = -4;
- pixel_y = 6
- },
-/obj/item/decal_painter{
- pixel_x = 6;
- pixel_y = 1
- },
-/obj/structure/table,
-/obj/machinery/light_switch{
- pixel_x = -9;
- pixel_y = 23
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/atmospherics)
-"Nh" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/structure/catwalk/over/plated_catwalk/dark,
-/obj/structure/sign/departments/engineering{
- pixel_y = -32
- },
-/turf/open/floor/plating,
-/area/ship/hallway/central)
-"Nk" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/closet/secure_closet/brig{
- id = "vela"
- },
-/obj/machinery/door_timer{
- id = "vela";
- pixel_y = 28
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/security/armory)
-"Nl" = (
-/obj/effect/decal/cleanable/oil/streak,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/door/airlock/engineering{
- req_access = list(10)
- },
-/obj/effect/turf_decal/trimline/opaque/orange/filled/warning,
-/obj/effect/turf_decal/trimline/opaque/orange/filled/warning{
- dir = 1
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/engine)
-"Nm" = (
-/obj/structure/table,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced,
-/obj/item/storage/toolbox/mechanical,
-/obj/item/storage/toolbox/electrical{
- pixel_y = 9
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering)
-"Nn" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 1
- },
-/obj/item/kirbyplants/random,
-/obj/machinery/firealarm/directional/west,
-/turf/open/floor/plasteel/dark,
-/area/ship/hallway/central)
-"No" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/catwalk/over/plated_catwalk/dark,
-/obj/structure/sign/departments/security{
- pixel_y = -28
- },
-/obj/structure/railing{
- dir = 1;
- layer = 3.1
- },
-/turf/open/floor/plating,
-/area/ship/hallway/central)
-"Np" = (
-/turf/closed/wall/mineral/plastitanium/nodiagonal,
-/area/ship/crew/canteen)
-"Nq" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/obj/effect/decal/cleanable/oil{
- icon_state = "streak5"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/hangar/port)
-"Nr" = (
-/obj/structure/table,
-/obj/machinery/light/small/directional/east,
-/obj/structure/bedsheetbin/empty,
-/turf/open/floor/plasteel/grimy,
-/area/ship/crew/dorm)
-"Nv" = (
-/obj/effect/turf_decal/trimline/opaque/purple/line{
- dir = 4
- },
-/obj/effect/turf_decal/trimline/opaque/purple/filled/corner{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/extinguisher_cabinet/directional/east,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/science)
-"Nw" = (
-/obj/effect/decal/cleanable/wrapping,
-/obj/effect/turf_decal/box/corners{
- dir = 1
- },
-/obj/effect/turf_decal/box/corners{
- dir = 8
- },
-/obj/machinery/jukebox,
-/turf/open/floor/pod,
-/area/ship/cargo)
-"Nx" = (
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/machinery/power/terminal{
- dir = 8
- },
-/obj/structure/chair/office{
- dir = 4
- },
-/obj/machinery/light_switch{
- dir = 8;
- pixel_x = 25;
- pixel_y = -5
- },
-/obj/effect/turf_decal/box,
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering)
-"Ny" = (
-/obj/effect/turf_decal/spline/fancy/opaque/black/corner,
-/obj/effect/turf_decal/minutemen/corner,
-/obj/structure/railing{
- dir = 1
- },
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 1
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ship/bridge)
-"Nz" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/effect/turf_decal/siding/wood,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/turf/open/floor/wood,
-/area/ship/hallway/fore)
-"NC" = (
-/obj/structure/window/plasma/reinforced,
-/obj/machinery/atmospherics/pipe/simple/general/visible/layer2{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer4{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/atmospherics)
-"ND" = (
-/obj/effect/turf_decal/industrial/caution,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/light/small/directional/west,
-/obj/machinery/light_switch{
- dir = 4;
- pixel_x = -21;
- pixel_y = -10
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/science/xenobiology)
-"NE" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 8
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 4
- },
-/obj/item/radio/intercom/directional/west,
-/turf/open/floor/wood,
-/area/ship/hallway/fore)
-"NF" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/table,
-/obj/machinery/light/directional/west,
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/atmospherics)
-"NJ" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 8
- },
-/obj/structure/bookcase/manuals,
-/obj/machinery/button/door{
- id = "vela_cap";
- name = "window shutters";
- pixel_x = 8;
- pixel_y = 23
- },
-/turf/open/floor/wood,
-/area/ship/crew/office)
-"NQ" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/chair/office{
- dir = 4
- },
-/obj/structure/sign/warning/fire{
- pixel_x = -8;
- pixel_y = 24
- },
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 8
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/engine)
-"NS" = (
-/obj/structure/window/plasma/reinforced{
- dir = 8
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/obj/effect/turf_decal/techfloor,
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 8
- },
-/obj/structure/sign/poster/official/safety_eye_protection{
- pixel_y = -32
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/engine)
-"NU" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/engine)
-"NV" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/ship/crew/dorm)
-"Oe" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/arrows,
-/turf/open/floor/engine,
-/area/ship/hangar/port)
-"Om" = (
-/obj/machinery/door/airlock/command{
- dir = 4;
- name = "Bridge";
- req_access_txt = "19"
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 8
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 4
- },
-/obj/effect/turf_decal/trimline/opaque/solgovgold/filled/warning{
- dir = 4
- },
-/obj/effect/turf_decal/trimline/opaque/solgovgold/filled/warning{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/bridge)
-"On" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/dark,
-/area/ship/hangar/port)
-"Ou" = (
-/obj/effect/turf_decal/trimline/opaque/purple/warning{
- dir = 4
- },
-/obj/structure/table/glass,
-/obj/item/paper_bin{
- pixel_y = 2
- },
-/obj/item/pen/blue{
- name = "science pen"
- },
-/obj/item/clipboard{
- pixel_x = 7;
- pixel_y = 3
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/science/xenobiology)
-"Ox" = (
-/obj/structure/closet/emcloset/wall/directional/south,
-/obj/effect/turf_decal/techfloor{
- dir = 6
- },
-/obj/machinery/light/directional/east,
-/turf/open/floor/plasteel/dark,
-/area/ship/hangar/port)
-"OD" = (
-/obj/effect/turf_decal/trimline/opaque/purple/filled/line{
- dir = 1
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/science)
-"OK" = (
-/obj/structure/sign/clip,
-/turf/closed/wall/mineral/plastitanium/nodiagonal,
-/area/ship/engineering/engine)
-"OL" = (
-/obj/effect/turf_decal/trimline/opaque/red/filled/line{
- dir = 8
- },
-/obj/structure/railing{
- dir = 8
- },
-/obj/machinery/light/small/directional/north,
-/obj/machinery/light_switch{
- pixel_x = -8;
- pixel_y = 22
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/security/armory)
-"OM" = (
-/obj/machinery/door/poddoor/shutters/preopen{
- dir = 4;
- id = "obendo"
- },
-/obj/machinery/door/airlock/engineering{
- dir = 4;
- req_access = list(10)
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 8
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/trimline/opaque/orange/filled/warning{
- dir = 8
- },
-/obj/effect/turf_decal/trimline/opaque/orange/filled/warning{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/hallway/central)
-"OP" = (
-/turf/closed/wall/mineral/plastitanium/nodiagonal,
-/area/ship/science)
-"OR" = (
-/obj/structure/window/plasma/reinforced,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer4{
- dir = 6
- },
-/obj/machinery/airalarm/directional/west,
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/atmospherics)
-"OS" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/effect/decal/cleanable/oil{
- icon_state = "streak5"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/engine)
-"OT" = (
-/obj/effect/turf_decal/techfloor{
- dir = 4
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 8;
- name = "Input to Mech Refill"
- },
-/obj/structure/railing{
- dir = 8;
- layer = 3.1
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/hangar/port)
-"OV" = (
-/obj/structure/window/reinforced,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/security/armory)
-"Pc" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 1
- },
-/obj/structure/table,
-/obj/machinery/firealarm/directional/south,
-/obj/item/flashlight/lamp{
- pixel_x = -7;
- pixel_y = 4
- },
-/obj/item/storage/fancy/donut_box{
- pixel_x = 1;
- pixel_y = 3
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/security/armory)
-"Pe" = (
-/obj/effect/turf_decal/siding/wood/corner{
- dir = 8
- },
-/obj/effect/turf_decal/spline/fancy/wood{
- dir = 4
- },
-/obj/effect/turf_decal/siding/wood/corner{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/camera/autoname{
- dir = 8
- },
-/turf/open/floor/wood,
-/area/ship/crew/canteen)
-"Pj" = (
-/obj/structure/curtain/cloth,
-/obj/effect/turf_decal/spline/fancy/opaque/black,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
-/turf/open/floor/plasteel/dark,
-/area/ship/crew)
-"Pp" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
- },
-/obj/effect/turf_decal/spline/fancy/wood{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/wood,
-/area/ship/crew)
-"Pq" = (
-/obj/machinery/atmospherics/components/binary/valve/digital/layer4,
-/obj/machinery/atmospherics/components/binary/valve/digital/layer2,
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/structure/extinguisher_cabinet/directional/west,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/hallway/central)
-"Pv" = (
-/obj/effect/turf_decal/siding/wood,
-/obj/effect/turf_decal/siding/wood{
- dir = 1
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/ship/crew/canteen)
-"Px" = (
-/obj/machinery/door/firedoor/border_only{
- dir = 1
- },
-/obj/machinery/door/firedoor/border_only,
-/obj/effect/turf_decal/trimline/opaque/green/filled/warning,
-/obj/effect/turf_decal/trimline/opaque/green/filled/warning{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/door/airlock{
- name = "Rec Room"
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/crew)
-"PA" = (
-/obj/machinery/airalarm/directional/south,
-/turf/open/floor/plasteel/dark,
-/area/ship/crew/toilet)
-"PC" = (
-/obj/structure/window/plasma/reinforced,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer4{
- dir = 9
- },
-/obj/machinery/atmospherics/components/trinary/mixer/airmix{
- dir = 4;
- piping_layer = 2
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/atmospherics)
-"PD" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/security/armory)
-"PG" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/effect/turf_decal/siding/thinplating/dark{
- dir = 4
- },
-/obj/effect/turf_decal/siding/thinplating/dark{
- dir = 8
- },
-/obj/effect/turf_decal/techfloor{
- dir = 4
- },
-/obj/effect/turf_decal/techfloor{
- dir = 8
- },
-/obj/effect/turf_decal/techfloor/hole/right{
- dir = 4
- },
-/obj/structure/railing{
- dir = 4;
- layer = 3.1
- },
-/obj/structure/railing{
- dir = 8;
- layer = 3.1
- },
-/turf/open/floor/plating,
-/area/ship/hallway/central)
-"PJ" = (
-/obj/structure/sign/clip,
-/turf/closed/wall/mineral/plastitanium/nodiagonal,
-/area/ship/engineering/atmospherics)
-"PL" = (
-/obj/effect/decal/cleanable/ash,
-/obj/effect/turf_decal/techfloor,
-/obj/effect/turf_decal/techfloor{
- dir = 1
- },
-/obj/structure/table,
-/obj/item/wrench/crescent,
-/obj/item/stack/sheet/mineral/plasma/twenty,
-/obj/structure/extinguisher_cabinet/directional/east,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/engineering/engine)
-"PN" = (
-/turf/closed/wall/mineral/plastitanium/nodiagonal,
-/area/ship/crew/toilet)
-"PO" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible/layer4{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/extinguisher_cabinet/directional/east,
-/obj/machinery/atmospherics/pipe/manifold/supply/visible/layer2{
- dir = 4
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/atmospherics)
-"PT" = (
-/obj/machinery/door/airlock{
- dir = 4;
- id_tag = "obt"
- },
-/obj/effect/turf_decal/trimline/opaque/green/filled/warning{
- dir = 4
- },
-/obj/effect/turf_decal/trimline/opaque/green/filled/warning{
- dir = 8
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/crew/toilet)
-"PY" = (
-/obj/structure/closet/secure_closet/security{
- populate = 0
- },
-/obj/item/reagent_containers/spray/pepper,
-/obj/item/clothing/mask/gas/sechailer/balaclava,
-/obj/item/clothing/under/clip/minutemen,
-/obj/item/clothing/head/helmet/bulletproof/x11/clip,
-/obj/item/storage/belt/military/clip,
-/obj/item/restraints/handcuffs,
-/obj/item/ammo_box/magazine/co9mm/rubber,
-/obj/item/ammo_box/magazine/co9mm/rubber,
-/obj/effect/turf_decal/industrial/hatch/yellow,
-/obj/structure/extinguisher_cabinet/directional/east,
-/obj/item/clothing/suit/armor/vest/bulletproof,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/security/armory)
-"PZ" = (
-/obj/effect/turf_decal/trimline/opaque/green/filled/warning{
- dir = 1
- },
-/obj/effect/turf_decal/trimline/opaque/green/filled/warning,
-/obj/machinery/door/firedoor/border_only{
- dir = 1
- },
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/door/airlock,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/plasteel/tech,
-/area/ship/crew/dorm)
-"Qa" = (
-/obj/structure/closet/crate,
-/obj/item/stack/sheet/mineral/coal/ten,
-/obj/item/stack/sheet/mineral/coal/ten,
-/obj/effect/turf_decal/box/corners,
-/obj/effect/turf_decal/box/corners{
- dir = 4
- },
-/obj/item/clothing/shoes/cookflops,
-/obj/item/clothing/shoes/cookflops,
-/obj/item/clothing/shoes/cookflops,
-/obj/effect/turf_decal/corner_steel_grid{
- dir = 9
- },
-/obj/item/clothing/under/shorts/cookjorts,
-/obj/item/clothing/under/shorts/cookjorts,
-/obj/item/clothing/under/shorts/cookjorts,
-/turf/open/floor/pod/dark,
-/area/ship/cargo)
-"Qg" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
- },
-/obj/effect/turf_decal/corner/transparent/purple/diagonal,
-/turf/open/floor/plasteel/dark,
-/area/ship/science/xenobiology)
-"Qj" = (
-/obj/structure/sign/departments/security{
- pixel_x = -28
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/hallway/central)
-"Qm" = (
-/obj/effect/turf_decal/industrial/hatch/yellow,
-/obj/machinery/firealarm/directional/west,
-/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/engineering/engine)
-"Qq" = (
-/obj/structure/bed,
-/obj/item/bedsheet/red,
-/obj/machinery/light/small/directional/west,
-/turf/open/floor/plasteel/dark,
-/area/ship/security/armory)
-"Qv" = (
-/obj/effect/turf_decal/trimline/opaque/orange/filled/warning,
-/obj/effect/turf_decal/spline/fancy/opaque/black,
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering)
-"Qy" = (
-/obj/effect/turf_decal/industrial/hatch/yellow,
-/obj/machinery/suit_storage_unit/inherit,
-/obj/item/clothing/suit/space/pilot,
-/obj/item/clothing/head/helmet/space/pilot/random,
-/obj/item/tank/internals/oxygen,
-/obj/item/radio/intercom/directional/west,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/hangar/port)
-"QF" = (
-/obj/structure/table,
-/obj/item/clipboard{
- pixel_x = 4;
- pixel_y = 5
- },
-/obj/item/clipboard{
- pixel_x = -6
- },
-/obj/effect/turf_decal/siding/thinplating/dark{
- dir = 6
- },
-/obj/machinery/light/directional/south,
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering)
-"QG" = (
-/obj/machinery/atmospherics/pipe/layer_manifold,
-/obj/effect/turf_decal/industrial/warning,
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/obj/machinery/door/airlock/external,
-/turf/open/floor/plasteel/tech,
-/area/ship/hallway/fore)
-"QK" = (
-/obj/structure/rack,
-/obj/item/mecha_parts/mecha_equipment/conversion_kit/ripley/clip,
-/obj/item/radio/intercom/directional/north,
-/turf/open/floor/plasteel/tech,
-/area/ship/hangar/port)
-"QN" = (
-/obj/machinery/holopad/secure,
-/obj/effect/turf_decal/corner/opaque/black/diagonal,
-/obj/effect/turf_decal/box,
-/turf/open/floor/plasteel/white,
-/area/ship/crew/canteen)
-"QO" = (
-/obj/machinery/mecha_part_fabricator,
-/turf/open/floor/plasteel/tech,
-/area/ship/hangar/port)
-"QR" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/obj/structure/railing{
- dir = 4;
- layer = 3.1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/dark,
-/area/ship/hangar/port)
-"QV" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
- },
-/obj/effect/turf_decal/siding/wood,
-/obj/effect/turf_decal/siding/wood/corner{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/wood,
-/area/ship/hallway/fore)
-"Ra" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/effect/turf_decal/steeldecal/steel_decals_central2{
- dir = 8
- },
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 1
- },
-/obj/effect/turf_decal/spline/fancy/opaque/black,
-/turf/open/floor/plasteel/dark,
-/area/ship/bridge)
-"Re" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/glass,
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/atmospherics)
-"Rf" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 8
- },
-/obj/effect/turf_decal/siding/wood{
- dir = 4
- },
-/obj/structure/easel,
-/obj/item/canvas/twentythreeXtwentythree,
-/obj/structure/sign/painting/library{
- pixel_y = 28
- },
-/turf/open/floor/carpet,
-/area/ship/hallway/central)
-"Rg" = (
-/obj/machinery/autolathe,
-/obj/machinery/light/directional/north,
-/turf/open/floor/plasteel/tech,
-/area/ship/hangar/port)
-"Rj" = (
-/obj/effect/turf_decal/trimline/opaque/purple/filled/warning{
- dir = 4
- },
-/obj/effect/turf_decal/trimline/opaque/purple/filled/warning{
- dir = 8
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 8
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 4
- },
-/obj/machinery/door/airlock/research{
- dir = 4;
- name = "Breakroom"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/science)
-"Rk" = (
-/turf/closed/wall/mineral/plastitanium/nodiagonal,
-/area/ship/science/ai_chamber)
-"Rl" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 4
- },
-/obj/effect/turf_decal/spline/fancy/opaque/black/corner{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/hangar/port)
-"Rm" = (
-/obj/effect/decal/cleanable/robot_debris/old,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/structure/catwalk/over/plated_catwalk/dark,
-/turf/open/floor/plating,
-/area/ship/engineering/atmospherics)
-"Rq" = (
-/obj/effect/turf_decal/industrial/hatch/yellow,
-/obj/machinery/vending/cola/space_up,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/crew)
-"Ru" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
-/obj/effect/decal/cleanable/glass,
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 10
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/engine)
-"Rx" = (
-/obj/structure/table,
-/obj/item/book/manual/wiki/engineering,
-/turf/open/floor/wood,
-/area/ship/hallway/central)
-"RG" = (
-/obj/item/paper/pamphlet/violent_video_games,
-/obj/machinery/computer/arcade/orion_trail{
- dir = 8
- },
-/obj/item/stack/arcadeticket,
-/obj/item/stack/arcadeticket,
-/obj/structure/extinguisher_cabinet/directional/north,
-/obj/effect/turf_decal/steeldecal/steel_decals_central7{
- pixel_y = 1
- },
-/turf/open/floor/wood,
-/area/ship/hallway/central)
-"RI" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/hangar/port)
-"RP" = (
-/obj/machinery/computer/cryopod/directional/south,
-/obj/effect/turf_decal/spline/fancy/opaque/black/corner{
- dir = 8
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/crew/dorm)
-"RQ" = (
-/obj/structure/chair/office{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/ship/hallway/central)
-"RY" = (
-/obj/effect/turf_decal/siding/wood/corner{
- dir = 1
- },
-/obj/effect/turf_decal/siding/wood,
-/turf/open/floor/wood,
-/area/ship/crew/canteen)
-"Sb" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/item/radio/intercom/directional/north,
-/turf/open/floor/plasteel/grimy,
-/area/ship/crew/dorm)
-"Sc" = (
-/obj/machinery/porta_turret/ship{
- dir = 6
- },
-/turf/closed/wall/mineral/plastitanium/nodiagonal,
-/area/ship/bridge)
-"Sd" = (
-/obj/effect/decal/cleanable/oil/streak,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/trimline/opaque/orange/filled/warning,
-/obj/effect/turf_decal/spline/fancy/opaque/black,
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering)
-"Sf" = (
-/obj/effect/turf_decal/box/corners{
- dir = 4
- },
-/obj/effect/turf_decal/box/corners{
- dir = 1
- },
-/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer3{
- dir = 4
- },
-/obj/machinery/button/door{
- id = "obmine12";
- name = "Bay Doors";
- pixel_x = -7;
- pixel_y = 25
- },
-/obj/machinery/button/shieldwallgen{
- id = "obhang22";
- name = "Air Shield Switch";
- pixel_x = 5;
- pixel_y = 25
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/hangar/port)
-"Sk" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/obj/structure/railing{
- dir = 8;
- layer = 3.1
- },
-/obj/structure/table/reinforced,
-/obj/machinery/cell_charger,
-/turf/open/floor/plasteel/dark,
-/area/ship/hangar/port)
-"Sm" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/turf/closed/wall/mineral/plastitanium/nodiagonal,
-/area/ship/science)
-"Sw" = (
-/obj/structure/chair/office{
- dir = 4
- },
-/obj/item/radio/intercom/directional/north,
-/turf/open/floor/plasteel/tech,
-/area/ship/science)
-"Sy" = (
-/obj/machinery/door/poddoor/preopen{
- id = "obhangarent2"
- },
-/obj/effect/turf_decal/trimline/opaque/red/filled/warning{
- dir = 1
- },
-/obj/effect/turf_decal/trimline/opaque/red/filled/warning,
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/door/firedoor/border_only{
- dir = 1
- },
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/hallway/central)
-"SE" = (
-/obj/effect/turf_decal/trimline/opaque/purple/filled/warning{
- dir = 4
- },
-/obj/effect/turf_decal/trimline/opaque/purple/filled/warning{
- dir = 8
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 8
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 4
- },
-/obj/machinery/door/airlock/research{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/science/xenobiology)
-"SI" = (
-/obj/machinery/holopad/secure,
-/obj/effect/turf_decal/box,
-/turf/open/floor/plasteel/dark,
-/area/ship/science/xenobiology)
-"SM" = (
-/obj/effect/turf_decal/spline/fancy/wood{
- dir = 4
- },
-/obj/machinery/light_switch{
- dir = 4;
- pixel_x = -22;
- pixel_y = -12
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/plasteel/grimy,
-/area/ship/crew/dorm)
-"SN" = (
-/obj/machinery/door/firedoor/border_only{
- dir = 4
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 8
- },
-/obj/effect/turf_decal/trimline/opaque/green/filled/warning{
- dir = 8
- },
-/obj/effect/turf_decal/trimline/opaque/green/filled/warning{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock{
- dir = 4
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/hallway/fore)
-"SR" = (
-/obj/effect/turf_decal/techfloor{
- dir = 8
- },
-/obj/effect/turf_decal/corner_techfloor_grid,
-/obj/effect/turf_decal/corner_techfloor_grid{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ship/hallway/central)
-"SU" = (
-/obj/effect/turf_decal/steeldecal/steel_decals9{
- dir = 1
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 4
- },
-/obj/machinery/light/small/directional/north,
-/turf/open/floor/plasteel/tech,
-/area/ship/bridge)
-"SW" = (
-/obj/structure/table/reinforced,
-/obj/item/radio/intercom/directional/north,
-/obj/item/reagent_containers/glass/maunamug{
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/plasteel/telecomms_floor,
-/area/ship/bridge)
-"SY" = (
-/obj/machinery/power/terminal{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/effect/turf_decal/box/corners{
- dir = 8
- },
-/obj/effect/turf_decal/box/corners,
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 4
- },
-/obj/machinery/light_switch{
- dir = 1;
- pixel_x = 2;
- pixel_y = -21
- },
-/turf/open/floor/plating,
-/area/ship/engineering/atmospherics)
-"Tb" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 4
- },
-/obj/machinery/holopad/secure,
-/obj/effect/turf_decal/box,
-/turf/open/floor/plasteel/tech,
-/area/ship/science)
-"Tc" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer5{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4,
-/turf/open/floor/plasteel/tech,
-/area/ship/hallway/fore)
-"Tg" = (
-/turf/closed/wall/mineral/plastitanium/nodiagonal,
-/area/ship/crew/office)
-"Th" = (
-/obj/structure/guncase,
-/obj/item/gun/ballistic/automatic/pistol/commander,
-/obj/item/gun/ballistic/automatic/pistol/commander,
-/obj/item/gun/ballistic/automatic/smg/cm5{
- spawnwithmagazine = 0
- },
-/obj/machinery/light/small/directional/south,
-/turf/open/floor/plasteel/tech,
-/area/ship/security/armory)
-"Ti" = (
-/obj/structure/table/chem,
-/obj/structure/sink/chem,
-/obj/effect/turf_decal/techfloor{
- dir = 5
- },
-/obj/machinery/firealarm/directional/north,
-/turf/open/floor/plasteel/tech,
-/area/ship/science/xenobiology)
-"Tk" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/obj/item/kirbyplants/random,
-/turf/open/floor/plasteel/dark,
-/area/ship/hallway/central)
-"Tn" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/machinery/power/apc/auto_name/directional/west,
-/obj/effect/turf_decal/siding/wood/corner,
-/obj/machinery/light_switch{
- dir = 4;
- pixel_x = -20;
- pixel_y = 12
- },
-/turf/open/floor/wood,
-/area/ship/crew/canteen)
-"Ts" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/effect/turf_decal/spline/fancy/wood/corner{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/obj/machinery/light/small/directional/south,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/wood,
-/area/ship/crew)
-"Tx" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/catwalk/over/plated_catwalk/dark,
-/turf/open/floor/plating,
-/area/ship/engineering/engine)
-"Ty" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/turf/open/floor/plasteel/grimy,
-/area/ship/crew/canteen)
-"TG" = (
-/obj/machinery/holopad/secure,
-/obj/effect/turf_decal/box,
-/obj/machinery/light/small/directional/west,
-/turf/open/floor/plasteel/tech,
-/area/ship/science/ai_chamber)
-"TH" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/catwalk/over/plated_catwalk/dark,
-/turf/open/floor/plating,
-/area/ship/engineering/engine)
-"TL" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 4
- },
-/obj/structure/chair/plastic{
- dir = 1
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/engine)
-"TQ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/mineral/plastitanium,
-/area/ship/bridge)
-"TR" = (
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4,
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/catwalk/over/plated_catwalk/dark,
-/obj/effect/turf_decal/spline/fancy/opaque/black/corner{
- dir = 4
- },
-/obj/structure/railing/corner{
- dir = 4;
- layer = 3.1
- },
-/turf/open/floor/plating,
-/area/ship/hallway/central)
-"TT" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/wood,
-/area/ship/crew/office)
-"TW" = (
-/obj/machinery/camera/autoname{
- dir = 1
- },
-/obj/structure/sign/poster/clip/random{
- pixel_x = 28
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/hallway/central)
-"TY" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/techfloor{
- dir = 6
- },
-/obj/effect/turf_decal/corner_techfloor_gray{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/engineering/engine)
-"Uf" = (
-/obj/machinery/camera/autoname{
- dir = 10
- },
-/obj/structure/closet/firecloset/wall/directional/south,
-/obj/effect/turf_decal/techfloor,
-/turf/open/floor/plasteel/dark,
-/area/ship/hangar/port)
-"Uh" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/effect/turf_decal/steeldecal/steel_decals_central2{
- dir = 8
- },
-/obj/effect/turf_decal/spline/fancy/opaque/black,
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/bridge)
-"Ut" = (
-/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "obendo"
- },
-/turf/open/floor/plating,
-/area/ship/engineering)
-"Uw" = (
-/obj/structure/closet/firecloset/wall/directional/west,
-/obj/item/storage/box/gum/happiness,
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/engine)
-"Ux" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
-/obj/structure/extinguisher_cabinet/directional/east,
-/obj/effect/turf_decal/corner/transparent/purple/diagonal,
-/obj/effect/turf_decal/steeldecal/steel_decals10,
-/turf/open/floor/plasteel/dark,
-/area/ship/science/xenobiology)
-"Uz" = (
-/obj/machinery/door/firedoor/border_only{
- dir = 1
- },
-/obj/machinery/door/firedoor/border_only,
-/obj/effect/turf_decal/trimline/opaque/solgovgold/filled/warning,
-/obj/effect/turf_decal/trimline/opaque/solgovgold/filled/warning{
- dir = 1
- },
-/obj/machinery/door/airlock/command{
- name = "Captain's Quarters";
- req_access = list(20)
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/bridge)
-"UA" = (
-/obj/effect/turf_decal/minutemen/middle,
-/obj/item/mecha_parts/part/ripley_torso,
-/turf/open/floor/plasteel/mono/dark,
-/area/ship/hangar/port)
-"UB" = (
-/obj/effect/turf_decal/techfloor{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/engine)
-"UC" = (
-/obj/effect/turf_decal/trimline/opaque/red/filled/warning{
- dir = 8
- },
-/obj/effect/turf_decal/trimline/opaque/red/filled/warning{
- dir = 4
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 8
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 4
- },
-/obj/machinery/door/airlock/security{
- dir = 4;
- req_access = list(1)
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/security/armory)
-"UD" = (
-/obj/effect/turf_decal/trimline/transparent/green/filled/warning{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 8
- },
-/obj/machinery/light/directional/south,
-/turf/open/floor/plasteel/dark,
-/area/ship/hallway/central)
-"UI" = (
-/obj/structure/sign/poster/clip/random{
- pixel_y = -30
- },
-/obj/effect/turf_decal/corner/opaque/black{
- dir = 1
- },
-/obj/effect/turf_decal/borderfloor,
-/turf/open/floor/plasteel/white,
-/area/ship/crew/canteen)
-"UM" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/catwalk/over/plated_catwalk/dark,
-/obj/structure/railing{
- dir = 1;
- layer = 3.1
- },
-/turf/open/floor/plating,
-/area/ship/hallway/central)
-"UQ" = (
-/obj/structure/reagent_dispensers/beerkeg,
-/obj/effect/turf_decal/box/corners{
- dir = 4
- },
-/obj/effect/turf_decal/box/corners,
-/obj/structure/sign/departments/cargo{
- pixel_y = 32
- },
-/turf/open/floor/pod,
-/area/ship/cargo)
-"UR" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer5{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
- dir = 9
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/hallway/fore)
-"Va" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 1
- },
-/turf/open/floor/wood,
-/area/ship/hallway/fore)
-"Ve" = (
-/obj/structure/chair/sofa/brown/corner/directional/south,
-/obj/item/radio/intercom/directional/north,
-/turf/open/floor/carpet,
-/area/ship/crew)
-"Vh" = (
-/obj/structure/sign/warning/nosmoking{
- pixel_y = -32
- },
-/obj/effect/turf_decal/industrial/hatch/yellow,
-/obj/machinery/camera/autoname{
- dir = 9
- },
-/obj/machinery/suit_storage_unit/inherit,
-/obj/item/clothing/suit/space/pilot,
-/obj/item/clothing/head/helmet/space/pilot/random,
-/obj/item/radio/intercom/directional/east,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/hangar/port)
-"Vi" = (
-/obj/machinery/light/small/directional/west,
-/turf/open/floor/carpet/royalblack,
-/area/ship/crew/office)
-"Vl" = (
-/obj/effect/turf_decal/trimline/transparent/green/filled/warning{
- dir = 8
- },
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/hallway/central)
-"Vp" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
-/obj/item/kirbyplants/random,
-/obj/machinery/button/door{
- id = "obhangarent21";
- name = "umbilical window shutters";
- pixel_x = -4;
- pixel_y = 24
- },
-/obj/machinery/button/door{
- id = "obhangarent2";
- name = "pod lockdown";
- pixel_x = 9;
- pixel_y = 24;
- req_access = list(1)
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/hallway/central)
-"VC" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/effect/turf_decal/siding/wood,
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 1
- },
-/turf/open/floor/wood,
-/area/ship/hallway/fore)
-"VH" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/item/radio/intercom/directional/east,
-/obj/machinery/airalarm/directional/south,
-/turf/open/floor/carpet/nanoweave/purple,
-/area/ship/science)
-"VO" = (
-/obj/structure/chair/sofa/brown/right/directional/south,
-/obj/machinery/light/small/directional/west,
-/turf/open/floor/carpet,
-/area/ship/crew)
-"VP" = (
-/obj/effect/decal/cleanable/oil,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/machinery/power/terminal{
- dir = 8
- },
-/obj/effect/turf_decal/techfloor{
- dir = 4
- },
-/obj/effect/turf_decal/techfloor{
- dir = 8
- },
-/obj/effect/turf_decal/techfloor/hole/right{
- dir = 8
- },
-/obj/machinery/light/directional/north,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/engineering/engine)
-"VR" = (
-/turf/closed/wall/mineral/plastitanium/nodiagonal,
-/area/ship/engineering)
-"VX" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
-/obj/effect/turf_decal/steeldecal/steel_decals8,
-/turf/open/floor/plasteel/dark,
-/area/ship/science/xenobiology)
-"VZ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/effect/decal/cleanable/wrapping,
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 8
- },
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/cargo)
-"Wb" = (
-/obj/structure/table/wood,
-/obj/item/trash/candy{
- pixel_x = 3;
- pixel_y = 4
- },
-/obj/item/reagent_containers/food/drinks/soda_cans/cola{
- pixel_x = -8;
- pixel_y = 7
- },
-/turf/open/floor/carpet,
-/area/ship/crew)
-"We" = (
-/turf/template_noop,
-/area/template_noop)
-"Wg" = (
-/obj/structure/sign/warning/securearea{
- pixel_x = -26;
- pixel_y = -4
- },
-/obj/structure/filingcabinet/double,
-/obj/machinery/light/small/directional/west{
- pixel_y = 4
- },
-/obj/effect/turf_decal/industrial/hatch/yellow,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/science)
-"Wj" = (
-/obj/machinery/light/floor,
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 1
- },
-/obj/effect/turf_decal/industrial/traffic,
-/turf/open/floor/engine,
-/area/ship/external)
-"Wk" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/door/poddoor/preopen{
- id = "obhangarent2"
- },
-/obj/effect/turf_decal/trimline/opaque/red/filled/warning{
- dir = 1
- },
-/obj/effect/turf_decal/trimline/opaque/red/filled/warning,
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/door/firedoor/border_only{
- dir = 1
- },
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/hallway/central)
-"Wn" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/effect/turf_decal/corner/transparent/purple/diagonal,
-/obj/effect/turf_decal/steeldecal/steel_decals10{
- dir = 4
- },
-/obj/item/radio/intercom/directional/east,
-/turf/open/floor/plasteel/dark,
-/area/ship/science/xenobiology)
-"Wq" = (
-/obj/structure/sink/kitchen{
- dir = 4;
- pixel_x = -16;
- pixel_y = 19
- },
-/obj/machinery/light/directional/south,
-/obj/effect/turf_decal/corner/opaque/black{
- dir = 1
- },
-/obj/effect/turf_decal/borderfloor,
-/turf/open/floor/plasteel/white,
-/area/ship/crew/canteen)
-"Wr" = (
-/obj/machinery/cryopod,
-/obj/effect/turf_decal/techfloor/orange{
- dir = 1
- },
-/obj/effect/turf_decal/techfloor/orange/corner,
-/obj/machinery/light/small/directional/east,
-/obj/structure/railing{
- dir = 1;
- layer = 2.8
- },
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/crew/dorm)
-"Wt" = (
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/structure/cable{
- icon_state = "0-9"
- },
-/obj/machinery/power/port_gen/pacman{
- anchored = 1
- },
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/engineering/engine)
-"Ww" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/turf/open/floor/plasteel/dark,
-/area/ship/hangar/port)
-"Wx" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 8
- },
-/obj/effect/turf_decal/spline/fancy/opaque/black/corner{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/hangar/port)
-"Wz" = (
-/obj/machinery/door/poddoor{
- dir = 4;
- id = "obengi";
- name = "Engineering Storage"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/trimline/transparent/red/filled/warning{
- dir = 8
- },
-/obj/effect/turf_decal/trimline/transparent/red/filled/warning{
- dir = 4
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/storage)
-"WF" = (
-/obj/effect/turf_decal/industrial/hatch/yellow,
-/obj/machinery/suit_storage_unit/inherit,
-/obj/item/clothing/suit/space/pilot,
-/obj/item/clothing/head/helmet/space/pilot/random,
-/obj/item/radio/intercom/directional/east,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/hangar/port)
-"WP" = (
-/obj/structure/table/chem,
-/obj/item/reagent_containers/food/drinks/bottle/orangejuice{
- pixel_x = 5;
- pixel_y = 12
- },
-/obj/item/reagent_containers/food/drinks/bottle/limejuice{
- pixel_x = -8;
- pixel_y = 15
- },
-/obj/item/reagent_containers/food/snacks/pizzaslice/pineapple{
- pixel_x = -7;
- pixel_y = 2
- },
-/obj/effect/turf_decal/techfloor{
- dir = 1
- },
-/obj/machinery/light/small/directional/north,
-/turf/open/floor/plasteel/tech,
-/area/ship/science/xenobiology)
-"WR" = (
-/obj/effect/turf_decal/trimline/opaque/purple/warning{
- dir = 9
- },
-/obj/effect/turf_decal/trimline/opaque/purple/filled/corner,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/science)
-"WV" = (
-/obj/machinery/porta_turret/ship{
- dir = 5
- },
-/turf/closed/wall/mineral/plastitanium/nodiagonal,
-/area/ship/bridge)
-"WX" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/catwalk/over/plated_catwalk/dark,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/ship/hallway/central)
-"WY" = (
-/obj/effect/turf_decal/spline/fancy/opaque/black/corner{
- dir = 1
- },
-/obj/effect/turf_decal/minutemen/corner{
- dir = 1
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ship/bridge)
-"Xd" = (
-/obj/effect/turf_decal/steeldecal/steel_decals2,
-/obj/machinery/newscaster/directional/west,
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering)
-"Xe" = (
-/obj/effect/turf_decal/industrial/hatch/yellow,
-/obj/structure/ore_box,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/hangar/port)
-"Xh" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/effect/decal/cleanable/oil{
- icon_state = "floor2"
- },
-/obj/machinery/door/window/brigdoor{
- dir = 8
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 8
- },
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 8
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/engine)
-"Xi" = (
-/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/structure/catwalk/over/plated_catwalk/dark,
-/turf/open/floor/plating,
-/area/ship/engineering/engine)
-"Xn" = (
-/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/on/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer5,
-/obj/machinery/light/small/directional/west,
-/obj/effect/turf_decal/industrial/warning{
- dir = 10
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/hallway/fore)
-"Xo" = (
-/obj/effect/turf_decal/box/corners{
- dir = 1
- },
-/obj/effect/turf_decal/box/corners{
- dir = 8
- },
-/obj/effect/turf_decal/corner_steel_grid{
- dir = 6
- },
-/turf/open/floor/pod/dark,
-/area/ship/cargo)
-"Xt" = (
-/obj/effect/turf_decal/techfloor{
- dir = 5
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/hangar/port)
-"Xv" = (
-/obj/structure/table,
-/obj/effect/turf_decal/siding/wood,
-/obj/effect/turf_decal/siding/wood{
- dir = 1
- },
-/obj/item/reagent_containers/food/drinks/soda_cans/cola{
- pixel_x = 8;
- pixel_y = 8
- },
-/obj/item/paper/crumpled,
-/obj/item/pen/charcoal,
-/turf/open/floor/carpet,
-/area/ship/hallway/central)
-"Xz" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "obendo"
- },
-/turf/open/floor/plasteel/stairs,
-/area/ship/engineering)
-"XA" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/effect/turf_decal/siding/wood{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/extinguisher_cabinet/directional/east,
-/turf/open/floor/wood,
-/area/ship/hallway/fore)
-"XJ" = (
-/obj/structure/filingcabinet,
-/obj/item/pen/fountain,
-/obj/effect/turf_decal/industrial/hatch/yellow,
-/obj/machinery/light/directional/north,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/engineering)
-"XL" = (
-/obj/effect/turf_decal/techfloor{
- dir = 9
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/hangar/port)
-"XN" = (
-/obj/structure/table/reinforced,
-/obj/effect/turf_decal/corner/opaque/black/diagonal,
-/turf/open/floor/plasteel/white,
-/area/ship/crew/canteen)
-"XO" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
- },
-/turf/open/floor/wood,
-/area/ship/crew/dorm)
-"XR" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/obj/structure/railing{
- dir = 8;
- layer = 3.1
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
-/turf/open/floor/plasteel/dark,
-/area/ship/hangar/port)
-"XS" = (
-/obj/machinery/advanced_airlock_controller{
- pixel_y = 24
- },
-/obj/effect/turf_decal/industrial/warning,
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/science)
-"XT" = (
-/obj/machinery/portable_atmospherics/canister/toxins,
-/turf/open/floor/plating,
-/area/ship/storage)
-"XY" = (
-/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium,
-/obj/machinery/door/poddoor/shutters{
- dir = 4;
- id = "vela_cap"
- },
-/turf/open/floor/plating,
-/area/ship/crew/office)
-"XZ" = (
-/obj/structure/closet/crate,
-/obj/item/circuitboard/machine/deep_fryer,
-/obj/effect/turf_decal/box/corners{
- dir = 4
- },
-/obj/effect/turf_decal/box/corners,
-/obj/item/rollingpaper,
-/obj/item/rollingpaper,
-/obj/item/rollingpaper,
-/obj/item/rollingpaper,
-/obj/item/reagent_containers/food/snacks/grown/tobacco,
-/obj/item/reagent_containers/food/snacks/grown/tobacco,
-/obj/item/reagent_containers/food/snacks/grown/tobacco,
-/obj/item/reagent_containers/food/snacks/grown/tobacco,
-/turf/open/floor/pod,
-/area/ship/cargo)
-"Yi" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/obj/structure/catwalk/over/plated_catwalk/dark,
-/turf/open/floor/plating,
-/area/ship/engineering/engine)
-"Yk" = (
-/obj/effect/turf_decal/trimline/opaque/purple/warning{
- dir = 1
- },
-/obj/structure/table/glass,
-/obj/item/paper/fluff/awaymissions/moonoutpost19/research/larva_social{
- pixel_x = -6
- },
-/obj/item/clothing/glasses/science{
- pixel_x = 2;
- pixel_y = 10
- },
-/obj/item/assembly/igniter{
- pixel_x = 9;
- pixel_y = -3
- },
-/obj/item/stock_parts/micro_laser{
- pixel_x = 6;
- pixel_y = 5
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/science/xenobiology)
-"Yl" = (
-/obj/machinery/door/airlock/command{
- dir = 4
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 8
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/effect/turf_decal/trimline/opaque/red/filled/warning{
- dir = 8
- },
-/obj/effect/turf_decal/trimline/opaque/red/filled/warning{
- dir = 4
- },
-/obj/machinery/door/poddoor{
- dir = 4;
- id = "obai2"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/science/ai_chamber)
-"Yp" = (
-/obj/effect/turf_decal/industrial/stand_clear,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/oil,
-/turf/open/floor/engine,
-/area/ship/hangar/port)
-"Yr" = (
-/obj/machinery/holopad/emergency/command,
-/obj/effect/turf_decal/box/white,
-/turf/open/floor/plasteel/tech,
-/area/ship/bridge)
-"Yx" = (
-/obj/effect/turf_decal/techfloor{
- dir = 4
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/obj/structure/railing{
- dir = 8;
- layer = 3.1
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/hangar/port)
-"Yz" = (
-/obj/effect/turf_decal/trimline/transparent/green/filled/warning{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/hallway/central)
-"YC" = (
-/obj/item/weldingtool/largetank/empty,
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/hangar/port)
-"YD" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/science/ai_chamber)
-"YF" = (
-/obj/effect/turf_decal/techfloor,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/dark,
-/area/ship/hangar/port)
-"YH" = (
-/obj/effect/turf_decal/corner/transparent/mauve/diagonal,
-/obj/effect/turf_decal/techfloor/corner{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/science/xenobiology)
-"YJ" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/light_switch{
- dir = 8;
- pixel_x = 20
- },
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ship/science/ai_chamber)
-"YP" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/effect/turf_decal/siding/wood/corner{
- dir = 8
- },
-/obj/machinery/light/small/directional/north,
-/turf/open/floor/wood,
-/area/ship/hallway/fore)
-"YS" = (
-/obj/machinery/power/terminal{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/effect/turf_decal/box/corners{
- dir = 8
- },
-/obj/effect/turf_decal/box/corners,
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ship/engineering/engine)
-"YU" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/number/one,
-/turf/open/floor/engine,
-/area/ship/hangar/port)
-"YV" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/catwalk/over/plated_catwalk/dark,
-/obj/structure/railing{
- dir = 1;
- layer = 3.1
- },
-/obj/machinery/light/small/directional/south,
-/turf/open/floor/plating,
-/area/ship/hallway/central)
-"YX" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ship/bridge)
-"YY" = (
-/obj/machinery/door/poddoor{
- dir = 4;
- id = "obengi";
- name = "Engineering Storage"
- },
-/obj/effect/turf_decal/trimline/transparent/red/filled/warning{
- dir = 8
- },
-/obj/effect/turf_decal/trimline/transparent/red/filled/warning{
- dir = 4
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/storage)
-"YZ" = (
-/obj/structure/chair/stool,
-/obj/effect/turf_decal/trimline/transparent/green/filled/warning{
- dir = 8
- },
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 8
- },
-/obj/machinery/camera/autoname,
-/turf/open/floor/plasteel/dark,
-/area/ship/hallway/central)
-"Za" = (
-/obj/effect/turf_decal/siding/thinplating/dark{
- dir = 4
- },
-/obj/effect/decal/cleanable/oil{
- icon_state = "floor4"
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering)
-"Zi" = (
-/obj/machinery/holopad/secure,
-/obj/effect/turf_decal/box,
-/turf/open/floor/plasteel/dark,
-/area/ship/science)
-"Zj" = (
-/obj/structure/chair/sofa/brown/corner/directional/east,
-/obj/structure/sign/poster/clip/random{
- pixel_x = -28
- },
-/turf/open/floor/carpet,
-/area/ship/crew)
-"Zn" = (
-/obj/effect/turf_decal/trimline/opaque/green/filled/warning{
- dir = 8
- },
-/obj/effect/turf_decal/trimline/opaque/green/filled/warning{
- dir = 4
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 4
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 8
- },
-/obj/machinery/door/airlock{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/crew/dorm)
-"Zo" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/effect/turf_decal/siding/wood{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/firealarm/directional/east,
-/turf/open/floor/wood,
-/area/ship/hallway/fore)
-"Zp" = (
-/obj/machinery/porta_turret/ship{
- dir = 10
- },
-/turf/closed/wall/mineral/plastitanium/nodiagonal,
-/area/ship/bridge)
-"Zt" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/science/xenobiology)
-"Zv" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
-/obj/effect/turf_decal/spline/fancy/wood{
- dir = 5
- },
-/turf/open/floor/wood,
-/area/ship/crew)
-"Zw" = (
-/obj/structure/closet/secure_closet/personal,
-/obj/machinery/light/small/directional/south,
-/obj/structure/sign/poster/random{
- pixel_x = -28
- },
-/turf/open/floor/plasteel/grimy,
-/area/ship/crew/dorm)
-"ZQ" = (
-/obj/structure/closet/secure_closet/personal,
-/obj/machinery/light/small/directional/north,
-/turf/open/floor/plasteel/grimy,
-/area/ship/crew/dorm)
-"ZX" = (
-/obj/effect/turf_decal/spline/fancy/wood{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/light_switch{
- dir = 1;
- pixel_y = -20
- },
-/turf/open/floor/wood,
-/area/ship/crew)
-
-(1,1,1) = {"
-We
-We
-We
-We
-We
-IZ
-IZ
-IZ
-IZ
-We
-We
-sR
-We
-We
-OK
-We
-We
-VR
-jP
-VR
-jP
-VR
-We
-We
-PJ
-We
-We
-sR
-We
-We
-IZ
-IZ
-IZ
-IZ
-We
-We
-We
-We
-We
-We
-"}
-(2,1,1) = {"
-We
-We
-We
-We
-We
-IZ
-We
-aM
-We
-We
-We
-Fg
-qG
-qG
-Fg
-We
-VR
-VR
-eR
-VR
-eR
-VR
-VR
-We
-ek
-Cj
-Cj
-ek
-We
-We
-We
-pW
-We
-IZ
-We
-We
-We
-We
-We
-We
-"}
-(3,1,1) = {"
-We
-We
-We
-We
-We
-IZ
-sK
-Fg
-Fg
-Fg
-Fg
-Fg
-zf
-zf
-Fg
-Gk
-VR
-kr
-kF
-Xd
-Nx
-wh
-VR
-ra
-ek
-nW
-nW
-ek
-ek
-ek
-ek
-ek
-sK
-IZ
-We
-We
-We
-We
-We
-We
-"}
-(4,1,1) = {"
-We
-We
-We
-We
-We
-IZ
-We
-Fg
-jY
-Lb
-Qm
-Fg
-hx
-YS
-Fg
-Fg
-VR
-XJ
-uU
-wH
-IE
-QF
-VR
-Jl
-ek
-nU
-SY
-ek
-yv
-OR
-zN
-gL
-We
-IZ
-We
-We
-We
-We
-We
-We
-"}
-(5,1,1) = {"
-We
-We
-We
-We
-We
-We
-We
-Fg
-CW
-TL
-II
-wA
-sn
-NU
-iw
-Uw
-lv
-LU
-nV
-HV
-ng
-Za
-Ut
-sA
-iL
-Re
-Ge
-NF
-IJ
-NC
-BE
-gL
-We
-We
-We
-We
-We
-We
-We
-We
-"}
-(6,1,1) = {"
-We
-We
-We
-We
-We
-We
-We
-Fg
-Fg
-Mu
-TH
-Nl
-nq
-Tx
-LT
-Xi
-MC
-tI
-GA
-xF
-kq
-dK
-Xz
-Rm
-sr
-AN
-fh
-wi
-iD
-PC
-BE
-gL
-We
-We
-We
-We
-We
-We
-We
-We
-"}
-(7,1,1) = {"
-We
-We
-We
-We
-We
-We
-We
-We
-Fg
-Fg
-iz
-Fg
-NQ
-Ru
-qC
-Bh
-Ut
-xN
-Gx
-Nm
-AD
-rA
-VR
-ld
-hh
-EE
-aZ
-pd
-PO
-Mw
-EH
-gL
-We
-We
-We
-We
-We
-We
-We
-We
-"}
-(8,1,1) = {"
-We
-We
-We
-We
-We
-We
-We
-We
-We
-Fg
-Fg
-Fg
-qe
-mC
-Yi
-DM
-VR
-an
-yx
-Sd
-rx
-lx
-VR
-Nf
-dN
-uR
-AB
-bZ
-ek
-ek
-ek
-ek
-We
-We
-We
-We
-We
-We
-We
-We
-"}
-(9,1,1) = {"
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-Fg
-Fg
-Fg
-wF
-Xh
-NS
-Fg
-Fg
-GV
-sy
-Ey
-nC
-nC
-nC
-Wz
-YY
-nC
-nC
-ek
-ek
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-"}
-(10,1,1) = {"
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-Fg
-Fg
-eS
-UB
-OS
-bK
-ab
-Fg
-jx
-Qv
-wW
-nC
-eV
-cI
-qj
-bt
-sa
-nC
-nC
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-"}
-(11,1,1) = {"
-We
-We
-IZ
-IZ
-IZ
-IZ
-IZ
-IZ
-IZ
-We
-We
-Fg
-VP
-JB
-kS
-jr
-hP
-Fg
-yt
-Qv
-wW
-nC
-Mj
-eM
-EJ
-GF
-FF
-nC
-We
-We
-IZ
-IZ
-IZ
-IZ
-IZ
-IZ
-IZ
-We
-We
-We
-"}
-(12,1,1) = {"
-We
-We
-IZ
-We
-ot
-We
-We
-sK
-We
-We
-We
-Fg
-ER
-lE
-df
-TY
-Ec
-Fg
-BR
-HW
-zV
-nC
-yk
-nh
-wB
-Dy
-XT
-nC
-We
-We
-We
-sK
-We
-We
-pW
-We
-IZ
-We
-We
-We
-"}
-(13,1,1) = {"
-We
-We
-We
-We
-dZ
-dZ
-dZ
-dZ
-We
-We
-We
-Fg
-Fg
-HK
-PL
-Wt
-Fg
-Fg
-Ae
-Ae
-OM
-nC
-jn
-Eo
-ac
-aO
-Ed
-nC
-We
-We
-We
-Rk
-Rk
-Rk
-Zp
-We
-We
-We
-IZ
-We
-"}
-(14,1,1) = {"
-We
-We
-dZ
-dZ
-dZ
-Xe
-Xe
-dZ
-dZ
-We
-We
-Fg
-Ae
-Ae
-Ae
-Ae
-Ae
-lB
-aE
-Ae
-Nh
-nC
-nC
-nC
-nC
-nC
-nC
-nC
-We
-We
-Rk
-Rk
-ko
-cJ
-Rk
-Rk
-Rk
-sK
-IZ
-We
-"}
-(15,1,1) = {"
-We
-We
-dZ
-eZ
-Qy
-XL
-kp
-qT
-dZ
-dZ
-We
-We
-Ae
-ZQ
-aQ
-Zw
-Ae
-Sb
-eI
-Ae
-Ja
-Cd
-Qq
-OV
-af
-Th
-Cd
-We
-We
-Rk
-Rk
-iG
-Mx
-GI
-TG
-rs
-Rk
-We
-IZ
-We
-"}
-(16,1,1) = {"
-We
-We
-zE
-Mi
-iE
-ee
-Kr
-ic
-gB
-dZ
-dZ
-eQ
-Ae
-Dd
-gx
-wv
-PZ
-kd
-Nr
-Ae
-lD
-Cd
-cw
-JM
-np
-in
-Cd
-eQ
-Rk
-Rk
-xI
-BQ
-gV
-YJ
-Jk
-An
-Rk
-sK
-IZ
-We
-"}
-(17,1,1) = {"
-Ak
-Ak
-dZ
-vD
-yL
-EN
-Gs
-yH
-HH
-fi
-dZ
-We
-Ae
-cj
-bH
-MJ
-Ae
-Ae
-Ae
-Ae
-In
-Cd
-Nk
-fH
-xC
-Hk
-Cd
-We
-Rk
-Rk
-Yl
-Rk
-Rk
-Rk
-mK
-Rk
-Rk
-We
-IZ
-We
-"}
-(18,1,1) = {"
-We
-Wj
-AC
-pK
-CM
-ur
-xz
-Nq
-Hy
-pp
-dZ
-We
-Ae
-cj
-XO
-AS
-SM
-zl
-rn
-rn
-TR
-MF
-ie
-PD
-xC
-Cu
-Cd
-We
-Rk
-pq
-YD
-jm
-JN
-Wg
-pM
-zk
-OP
-We
-We
-We
-"}
-(19,1,1) = {"
-We
-hS
-ta
-dV
-YU
-hH
-Aq
-MU
-Hy
-Hb
-dZ
-We
-Ae
-xU
-NV
-Ha
-Dw
-Ae
-Rf
-ul
-No
-Cd
-OL
-uv
-MP
-Pc
-Cd
-We
-Rk
-sF
-aq
-Ks
-JN
-HY
-Tb
-jj
-OP
-OP
-We
-We
-"}
-(20,1,1) = {"
-We
-Wj
-bX
-pK
-gD
-bu
-xz
-Ww
-Hy
-qB
-dZ
-We
-Ae
-Ae
-Zn
-Ae
-Ae
-Ae
-yd
-Xv
-YV
-Cd
-cY
-qP
-qd
-Ju
-Cd
-We
-Rk
-Rk
-Rk
-Rk
-Rk
-lm
-uc
-lV
-oT
-OP
-We
-We
-"}
-(21,1,1) = {"
-Na
-Na
-dZ
-tY
-Fy
-EN
-Gs
-lp
-zR
-dZ
-dZ
-eQ
-Ae
-CO
-GO
-Jj
-hX
-Ae
-fr
-xc
-jS
-Cd
-PY
-Ko
-rb
-pA
-Cd
-eQ
-OP
-OP
-qX
-eN
-kh
-Ce
-qa
-jf
-wa
-OP
-We
-We
-"}
-(22,1,1) = {"
-We
-fJ
-zE
-Sk
-Sk
-uw
-XR
-KN
-qO
-dZ
-We
-We
-Ae
-Wr
-Bn
-RP
-Ae
-Ae
-zX
-zX
-hD
-Cd
-Cd
-UC
-Cd
-Cd
-Cd
-We
-We
-OP
-Sw
-eN
-OP
-MY
-iP
-tP
-VH
-OP
-We
-We
-"}
-(23,1,1) = {"
-We
-dZ
-jB
-DI
-gj
-gj
-hf
-Rl
-Gl
-dZ
-xT
-xT
-Ae
-Ae
-hk
-ni
-Ae
-ID
-zX
-RQ
-HN
-Dt
-ys
-oC
-Qj
-Nn
-ys
-GH
-GH
-OP
-LJ
-MZ
-OP
-OP
-Rj
-OP
-OP
-OP
-kn
-We
-"}
-(24,1,1) = {"
-We
-dZ
-QO
-qR
-uB
-Cq
-Fr
-xy
-iV
-nP
-SR
-SR
-Ae
-Ae
-Ae
-Ae
-Ae
-RG
-zX
-Rx
-UM
-Hf
-ys
-fD
-ym
-ym
-cd
-KC
-KC
-yo
-WR
-jF
-lz
-mP
-El
-cz
-Sm
-pG
-lH
-lR
-"}
-(25,1,1) = {"
-We
-dZ
-Rg
-iR
-Mn
-UA
-tR
-Ez
-sb
-qy
-mO
-mO
-Wk
-Pq
-hw
-Gh
-BY
-cF
-WX
-cF
-xm
-WX
-BN
-ED
-xB
-AF
-sc
-Au
-PG
-Fl
-rd
-oZ
-OD
-mR
-Zi
-yG
-OP
-XS
-OP
-We
-"}
-(26,1,1) = {"
-We
-dZ
-CX
-dx
-hJ
-nS
-Iv
-GS
-YF
-nP
-jh
-jh
-Sy
-ym
-KO
-Ar
-ys
-YZ
-Vl
-Yz
-mN
-UD
-ys
-BI
-ym
-ym
-Gt
-KC
-KC
-yo
-Cz
-vK
-Nv
-rB
-nO
-oa
-tf
-qk
-pf
-We
-"}
-(27,1,1) = {"
-We
-dZ
-QK
-Wx
-YC
-IF
-RI
-EX
-wz
-dZ
-xT
-xT
-ys
-Vp
-dD
-TW
-ys
-zC
-ml
-ym
-DD
-eq
-ys
-Tk
-xK
-yi
-ys
-GH
-GH
-io
-OP
-OP
-OP
-OP
-rO
-OP
-OP
-OP
-kn
-We
-"}
-(28,1,1) = {"
-We
-WV
-zE
-CK
-oJ
-QR
-DL
-wr
-FR
-dZ
-We
-We
-ys
-ys
-ys
-ys
-cV
-Np
-Np
-eJ
-rT
-Np
-Np
-Np
-Np
-Np
-Np
-We
-We
-io
-qc
-tQ
-FC
-ND
-EU
-HI
-zr
-io
-We
-We
-"}
-(29,1,1) = {"
-Ak
-Ak
-dZ
-JY
-JI
-cW
-Gi
-lp
-Uf
-dZ
-dZ
-eQ
-cV
-yD
-BW
-HO
-cV
-cT
-Tn
-us
-yI
-dh
-vr
-tk
-tb
-nr
-Np
-eQ
-io
-io
-zL
-fx
-HB
-Yk
-SI
-Gz
-zF
-io
-We
-We
-"}
-(30,1,1) = {"
-We
-Wj
-Hx
-Yp
-EC
-vz
-fv
-ke
-Hy
-pp
-dZ
-We
-cV
-rr
-Pj
-jI
-cV
-vV
-dW
-tu
-Ty
-tu
-MV
-XN
-iO
-Wq
-Np
-We
-io
-kW
-YH
-FJ
-HB
-wO
-VX
-Zt
-CN
-io
-We
-We
-"}
-(31,1,1) = {"
-We
-qU
-Le
-GD
-Iz
-Oe
-Mv
-Gg
-Hy
-gh
-dZ
-We
-cV
-Jo
-co
-wk
-cV
-iu
-dW
-tu
-Ty
-tu
-MV
-Hw
-iO
-KE
-Np
-We
-io
-WP
-jO
-Mt
-HB
-wO
-Jp
-iQ
-io
-io
-We
-We
-"}
-(32,1,1) = {"
-We
-Wj
-zi
-kw
-zs
-bA
-Io
-md
-YF
-cE
-dZ
-We
-cV
-cV
-cV
-nQ
-cV
-fz
-RY
-tu
-Ty
-tu
-MV
-MW
-QN
-UI
-Np
-We
-io
-Ti
-vX
-Av
-HB
-al
-Ou
-tA
-io
-We
-We
-We
-"}
-(33,1,1) = {"
-Na
-Na
-dZ
-Sf
-ca
-cW
-Gi
-On
-Hy
-uT
-dZ
-We
-cV
-Zj
-rw
-ww
-cV
-LL
-Go
-tu
-Ty
-tu
-MV
-Gu
-yA
-dc
-Np
-We
-io
-io
-io
-io
-io
-dB
-dB
-SE
-io
-We
-IZ
-We
-"}
-(34,1,1) = {"
-We
-We
-zE
-OT
-Yx
-JL
-fj
-Fx
-Ox
-dZ
-dZ
-eQ
-cV
-BX
-pk
-ZX
-cV
-dp
-ug
-tu
-Ty
-tu
-MV
-XN
-lk
-lu
-Np
-eQ
-io
-io
-CG
-bc
-yj
-FN
-mi
-Qg
-io
-sK
-IZ
-We
-"}
-(35,1,1) = {"
-We
-We
-dZ
-Eb
-WF
-Xt
-lb
-Vh
-dZ
-dZ
-We
-We
-cV
-BH
-Wb
-Pp
-Px
-mq
-Ca
-tu
-pU
-tu
-Pv
-XN
-lk
-Mc
-Np
-We
-We
-io
-nw
-Ux
-DP
-DP
-Wn
-CD
-io
-We
-IZ
-We
-"}
-(36,1,1) = {"
-We
-We
-dZ
-dZ
-dZ
-jD
-ci
-dZ
-dZ
-We
-We
-We
-cV
-Ve
-pw
-up
-cV
-GB
-cn
-sM
-Nd
-ip
-Pe
-Kq
-nF
-em
-Np
-We
-We
-io
-io
-io
-bh
-tx
-io
-io
-io
-sK
-IZ
-We
-"}
-(37,1,1) = {"
-We
-We
-We
-We
-dZ
-dZ
-dZ
-dZ
-We
-We
-We
-We
-cV
-gX
-Ga
-Ts
-PN
-PN
-PN
-PN
-SN
-xl
-lK
-lK
-lK
-lK
-lK
-lK
-We
-We
-We
-io
-io
-io
-Sc
-We
-We
-We
-IZ
-We
-"}
-(38,1,1) = {"
-We
-We
-IZ
-We
-xR
-We
-We
-sK
-We
-IZ
-We
-cV
-cV
-Rq
-Zv
-EK
-PN
-vO
-dt
-PN
-cg
-BC
-lK
-no
-tW
-cK
-uQ
-lK
-We
-IZ
-We
-sK
-We
-We
-sK
-We
-IZ
-We
-We
-We
-"}
-(39,1,1) = {"
-We
-We
-IZ
-IZ
-IZ
-IZ
-IZ
-IZ
-IZ
-IZ
-We
-jN
-VO
-qF
-zJ
-Ex
-AO
-pJ
-Bu
-PN
-is
-kZ
-lK
-Hc
-AR
-Qa
-ry
-lK
-We
-IZ
-IZ
-IZ
-IZ
-IZ
-IZ
-IZ
-IZ
-We
-We
-We
-"}
-(40,1,1) = {"
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-jN
-zK
-En
-vM
-kl
-PN
-ue
-MB
-PN
-fk
-CS
-lK
-tm
-Xo
-LK
-Nw
-lK
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-"}
-(41,1,1) = {"
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-xD
-xD
-xD
-xD
-xD
-sN
-PN
-Lx
-PA
-PN
-Fw
-Nz
-lK
-UQ
-jb
-ds
-sD
-lK
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-"}
-(42,1,1) = {"
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-QG
-ga
-Xn
-dF
-JV
-Tc
-PN
-PN
-PT
-PN
-eB
-VC
-tO
-rv
-VZ
-qS
-Bc
-lK
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-"}
-(43,1,1) = {"
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-QG
-tT
-yr
-dF
-fW
-UR
-PN
-xM
-xH
-PN
-Va
-ov
-lK
-pC
-fl
-Em
-la
-lK
-nm
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-"}
-(44,1,1) = {"
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-Tg
-Tg
-Tg
-Tg
-xD
-sN
-PN
-PN
-PN
-PN
-kg
-ky
-lK
-XZ
-Ln
-yg
-si
-uX
-Iy
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-"}
-(45,1,1) = {"
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-Tg
-Bj
-Vi
-rR
-Tg
-YP
-NE
-dd
-ib
-ho
-pX
-kZ
-lK
-Jw
-Kd
-hv
-LS
-fY
-Iy
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-"}
-(46,1,1) = {"
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-Tg
-Fz
-IM
-TT
-Dr
-XA
-Zo
-Ai
-xh
-hm
-lM
-QV
-lK
-lQ
-zz
-uo
-IV
-ea
-Iy
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-"}
-(47,1,1) = {"
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-Tg
-Tg
-NJ
-aH
-Tg
-Ek
-Ek
-Om
-Ek
-Ek
-Ek
-wZ
-lK
-wl
-Cp
-il
-uq
-lK
-wR
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-"}
-(48,1,1) = {"
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-tq
-Br
-le
-Ek
-tn
-tJ
-Bq
-dq
-IC
-JH
-Kk
-lK
-wn
-lK
-lK
-lK
-lK
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-"}
-(49,1,1) = {"
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-tq
-Iu
-eT
-Uz
-mY
-lr
-Ra
-Ia
-Ef
-EG
-Uh
-qY
-ed
-Ek
-lK
-lK
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-"}
-(50,1,1) = {"
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-Tg
-XY
-Tg
-Ek
-SU
-tc
-xA
-Ny
-zB
-wD
-sV
-gQ
-yb
-FK
-Ek
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-"}
-(51,1,1) = {"
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-Tg
-Ek
-fm
-TQ
-YX
-EM
-Yr
-fF
-CF
-nA
-BB
-Ab
-Ek
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-"}
-(52,1,1) = {"
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-sK
-Ek
-Ek
-SW
-Cw
-Ht
-kv
-WY
-zy
-Ih
-Ek
-Ek
-Ek
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-"}
-(53,1,1) = {"
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-sK
-We
-Ek
-CI
-yn
-hR
-Ek
-qJ
-LB
-mW
-Ek
-We
-sK
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-"}
-(54,1,1) = {"
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-sK
-We
-Ek
-mS
-mS
-mS
-Ek
-mS
-mS
-mS
-Ek
-We
-sK
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-"}
-(55,1,1) = {"
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-IZ
-IZ
-IZ
-We
-pe
-We
-We
-We
-am
-We
-We
-We
-vS
-We
-IZ
-IZ
-IZ
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-"}
-(56,1,1) = {"
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-IZ
-IZ
-IZ
-IZ
-IZ
-IZ
-IZ
-IZ
-IZ
-IZ
-IZ
-IZ
-IZ
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-We
-"}
diff --git a/_maps/shuttles/nanotrasen/nanotrasen_delta.dmm b/_maps/shuttles/nanotrasen/nanotrasen_delta.dmm
index 04484c12141..b723b020aa3 100644
--- a/_maps/shuttles/nanotrasen/nanotrasen_delta.dmm
+++ b/_maps/shuttles/nanotrasen/nanotrasen_delta.dmm
@@ -47,12 +47,13 @@
/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer4,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/structure/closet/emcloset/wall/directional/west,
-/turf/open/floor/plating,
+/obj/effect/turf_decal/siding/white{
+ dir = 9
+ },
+/obj/effect/turf_decal/industrial/warning,
+/turf/open/floor/plasteel/patterned/grid,
/area/ship/hallway/port)
"ar" = (
-/obj/effect/turf_decal/corner/opaque/brown{
- dir = 1
- },
/turf/open/floor/plasteel,
/area/ship/cargo)
"au" = (
@@ -67,6 +68,9 @@
/obj/machinery/door/firedoor/border_only{
dir = 8
},
+/obj/machinery/door/window/westright{
+ name = "Processor Access Door"
+ },
/turf/open/floor/plating,
/area/ship/cargo)
"ax" = (
@@ -111,7 +115,8 @@
/obj/machinery/door/firedoor/border_only{
dir = 1
},
-/turf/open/floor/plasteel/dark,
+/obj/effect/turf_decal/industrial/warning/fulltile,
+/turf/open/floor/plasteel/tech/techmaint,
/area/ship/hallway/port)
"aI" = (
/obj/structure/railing,
@@ -119,6 +124,7 @@
/obj/structure/chair/office{
dir = 4
},
+/obj/effect/turf_decal/trimline/transparent/white/filled/warning,
/turf/open/floor/plasteel,
/area/ship/cargo)
"aK" = (
@@ -143,20 +149,19 @@
/obj/machinery/door/airlock/external,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/plating,
+/obj/effect/turf_decal/industrial/warning/fulltile,
+/turf/open/floor/plasteel/tech/techmaint,
/area/ship/hallway/port)
"aP" = (
/obj/machinery/door/airlock/public/glass{
name = "Port Hallway"
},
-/obj/effect/turf_decal/corner/opaque/blue/border{
- dir = 8
- },
/obj/machinery/door/firedoor/border_only{
dir = 1
},
/obj/machinery/door/firedoor/border_only,
-/turf/open/floor/plasteel,
+/obj/effect/turf_decal/industrial/warning/fulltile,
+/turf/open/floor/plasteel/tech/techmaint,
/area/ship/hallway/port)
"aQ" = (
/obj/machinery/conveyor{
@@ -173,16 +178,14 @@
/obj/structure/cable{
icon_state = "2-8"
},
-/obj/effect/turf_decal/corner/opaque/neutral{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
dir = 1
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
dir = 1
},
-/turf/open/floor/plasteel,
+/obj/structure/catwalk/over/plated_catwalk,
+/turf/open/floor/plating,
/area/ship/hallway/port)
"aV" = (
/obj/machinery/conveyor{
@@ -193,18 +196,29 @@
/area/ship/cargo)
"aW" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
-/obj/effect/turf_decal/corner/opaque/blue{
+/obj/structure/extinguisher_cabinet/directional/east,
+/obj/effect/turf_decal/corner/opaque/nsorange{
+ dir = 4
+ },
+/obj/effect/turf_decal/corner/opaque/nsorange{
dir = 1
},
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 4
+/obj/structure/closet/wardrobe/cargotech{
+ populate = 0
},
-/obj/structure/closet/wardrobe/robotics_black,
-/obj/item/clothing/under/rank/rnd/roboticist,
-/obj/item/clothing/under/rank/rnd/roboticist/skirt,
-/obj/item/clothing/under/rank/rnd/roboticist,
-/obj/item/clothing/under/rank/rnd/roboticist/skirt,
-/obj/structure/extinguisher_cabinet/directional/north,
+/obj/item/clothing/suit/hooded/wintercoat/cargo,
+/obj/item/clothing/under/nanotrasen/supply,
+/obj/item/clothing/under/nanotrasen/supply,
+/obj/item/clothing/under/nanotrasen/supply,
+/obj/item/clothing/shoes/sneakers/black,
+/obj/item/clothing/shoes/sneakers/black,
+/obj/item/clothing/shoes/sneakers/black,
+/obj/item/clothing/gloves/fingerless,
+/obj/item/clothing/gloves/fingerless,
+/obj/item/clothing/gloves/fingerless,
+/obj/item/clothing/head/nanotrasen/cap/supply,
+/obj/item/clothing/head/nanotrasen/cap/supply,
+/obj/item/clothing/head/nanotrasen/cap/supply,
/turf/open/floor/plasteel,
/area/ship/crew)
"aZ" = (
@@ -213,9 +227,12 @@
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/obj/structure/catwalk/over/plated_catwalk/dark,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/turf/open/floor/plating,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white,
+/turf/open/floor/plasteel/patterned/grid,
/area/ship/hallway/port)
"bb" = (
/obj/structure/cable{
@@ -240,7 +257,7 @@
/obj/effect/spawner/lootdrop/ration,
/obj/effect/spawner/lootdrop/ration,
/obj/effect/spawner/lootdrop/ration,
-/turf/open/floor/plasteel/patterned,
+/turf/open/floor/plasteel/patterned/cargo_one,
/area/ship/cargo)
"bd" = (
/obj/effect/turf_decal/weather,
@@ -285,7 +302,11 @@
dir = 1
},
/obj/machinery/door/firedoor/border_only,
-/turf/open/floor/plasteel,
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/obj/effect/turf_decal/industrial/warning/fulltile,
+/turf/open/floor/plasteel/tech/techmaint,
/area/ship/hallway/port)
"bx" = (
/obj/effect/spawner/structure/window/shuttle,
@@ -348,13 +369,15 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/catwalk/over/plated_catwalk,
-/turf/open/floor/plating,
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/turf/open/floor/plasteel/patterned/grid,
/area/ship/hallway/central)
"bK" = (
/obj/structure/closet/crate,
/obj/effect/turf_decal/industrial/outline/yellow,
-/turf/open/floor/plasteel/patterned,
+/turf/open/floor/plasteel/patterned/cargo_one,
/area/ship/cargo)
"bN" = (
/obj/machinery/conveyor/inverted{
@@ -403,23 +426,28 @@
/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
dir = 8
},
-/obj/structure/catwalk/over/plated_catwalk/dark,
-/turf/open/floor/plating,
-/area/ship/bridge)
-"bZ" = (
-/obj/effect/turf_decal/corner/opaque/blue{
+/obj/effect/turf_decal/siding/thinplating/dark{
dir = 4
},
+/obj/effect/turf_decal/siding/thinplating/dark{
+ dir = 8
+ },
+/turf/open/floor/plasteel/tech,
+/area/ship/bridge)
+"bZ" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
dir = 8
},
/obj/structure/chair/comfy/shuttle{
dir = 4
},
+/obj/effect/turf_decal/corner/opaque/nsorange{
+ dir = 4
+ },
/turf/open/floor/plasteel/dark,
/area/ship/bridge)
"ce" = (
-/obj/structure/sign/nanotrasen,
+/obj/structure/sign/nanotrasen/ns,
/turf/closed/wall/mineral/titanium/nodiagonal,
/area/ship/bridge)
"cg" = (
@@ -433,8 +461,13 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 1
},
-/obj/structure/catwalk/over/plated_catwalk/dark,
-/turf/open/floor/plating,
+/obj/effect/turf_decal/siding/thinplating/dark{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/thinplating/dark{
+ dir = 8
+ },
+/turf/open/floor/plasteel/tech,
/area/ship/bridge)
"ch" = (
/obj/machinery/holopad/emergency/command,
@@ -448,10 +481,10 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
dir = 8
},
-/obj/effect/turf_decal/corner/opaque/blue/border{
+/obj/effect/turf_decal/corner/opaque/nsorange/border{
dir = 8
},
-/turf/open/floor/plasteel,
+/turf/open/floor/plasteel/patterned/grid,
/area/ship/hallway/central)
"cl" = (
/obj/machinery/power/smes/engineering{
@@ -476,11 +509,15 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
dir = 8
},
-/obj/structure/catwalk/over/plated_catwalk/dark,
-/turf/open/floor/plating,
+/obj/effect/turf_decal/siding/thinplating/dark{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/thinplating/dark{
+ dir = 8
+ },
+/turf/open/floor/plasteel/tech,
/area/ship/bridge)
"cp" = (
-/obj/effect/turf_decal/corner/opaque/blue,
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
dir = 8
},
@@ -488,6 +525,7 @@
dir = 4;
name = "Helm"
},
+/obj/effect/turf_decal/corner/opaque/nsorange,
/turf/open/floor/plasteel/dark,
/area/ship/bridge)
"cs" = (
@@ -520,15 +558,14 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 1
},
-/obj/structure/catwalk/over/plated_catwalk/dark,
-/turf/open/floor/plating,
-/area/ship/bridge)
-"cv" = (
-/obj/effect/turf_decal/corner/opaque/blue/border{
+/obj/effect/turf_decal/siding/thinplating/dark{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/thinplating/dark{
dir = 8
},
-/turf/open/floor/plasteel,
-/area/ship/hallway/central)
+/turf/open/floor/plasteel/tech,
+/area/ship/bridge)
"cz" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -540,8 +577,13 @@
/obj/machinery/atmospherics/pipe/manifold/orange/visible{
dir = 4
},
-/obj/structure/catwalk/over,
-/turf/open/floor/plating,
+/obj/effect/turf_decal/siding/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/yellow{
+ dir = 4
+ },
+/turf/open/floor/plasteel/tech/techmaint,
/area/ship/engineering)
"cB" = (
/obj/effect/turf_decal/industrial/warning{
@@ -578,8 +620,13 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/obj/machinery/atmospherics/pipe/simple/orange/visible,
-/obj/structure/catwalk/over,
-/turf/open/floor/plating,
+/obj/effect/turf_decal/siding/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/yellow{
+ dir = 4
+ },
+/turf/open/floor/plasteel/tech/techmaint,
/area/ship/engineering)
"cF" = (
/obj/structure/cable{
@@ -589,11 +636,13 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 10
},
-/obj/structure/catwalk/over/plated_catwalk,
/obj/structure/chair{
dir = 1
},
-/turf/open/floor/plating,
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/turf/open/floor/plasteel/patterned/grid,
/area/ship/hallway/central)
"cG" = (
/turf/closed/wall/mineral/titanium,
@@ -622,8 +671,13 @@
dir = 8
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/catwalk/over,
-/turf/open/floor/plating,
+/obj/effect/turf_decal/siding/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/yellow/corner{
+ dir = 4
+ },
+/turf/open/floor/plasteel/tech/techmaint,
/area/ship/engineering)
"cP" = (
/obj/structure/sign/departments/engineering,
@@ -644,7 +698,11 @@
/obj/machinery/door/firedoor/border_only{
dir = 1
},
-/turf/open/floor/plasteel,
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/obj/effect/turf_decal/industrial/warning/fulltile,
+/turf/open/floor/plasteel/tech/techmaint,
/area/ship/crew)
"cS" = (
/obj/effect/spawner/structure/window/shuttle,
@@ -654,9 +712,6 @@
/turf/open/floor/plating,
/area/ship/cargo)
"cT" = (
-/obj/effect/turf_decal/corner/opaque/blue/border{
- dir = 8
- },
/obj/machinery/door/airlock/public/glass{
name = "Crew Quarters"
},
@@ -664,7 +719,8 @@
/obj/machinery/door/firedoor/border_only{
dir = 1
},
-/turf/open/floor/plasteel,
+/obj/effect/turf_decal/industrial/warning/fulltile,
+/turf/open/floor/plasteel/tech/techmaint,
/area/ship/crew)
"cU" = (
/obj/machinery/portable_atmospherics/pump,
@@ -698,10 +754,7 @@
amount = 10
},
/obj/item/stack/sheet/plasteel/twenty,
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 4
- },
-/obj/effect/turf_decal/corner/opaque/blue{
+/obj/effect/turf_decal/borderfloor{
dir = 1
},
/turf/open/floor/plasteel,
@@ -737,8 +790,10 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 6
},
-/obj/structure/catwalk/over,
-/turf/open/floor/plating,
+/obj/effect/turf_decal/siding/yellow{
+ dir = 9
+ },
+/turf/open/floor/plasteel/tech/techmaint,
/area/ship/engineering)
"de" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
@@ -769,8 +824,11 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
dir = 1
},
-/obj/structure/catwalk/over/plated_catwalk,
-/turf/open/floor/plating,
+/obj/effect/turf_decal/siding/white,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned/grid,
/area/ship/crew)
"dl" = (
/obj/structure/cable{
@@ -782,11 +840,11 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
},
-/obj/effect/turf_decal/corner/opaque/bar,
-/obj/effect/turf_decal/corner/opaque/bar{
+/obj/effect/turf_decal/siding/white,
+/obj/effect/turf_decal/siding/white/corner{
dir = 1
},
-/turf/open/floor/plasteel,
+/turf/open/floor/plasteel/patterned/grid,
/area/ship/crew)
"dm" = (
/obj/structure/cable{
@@ -797,11 +855,8 @@
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4,
-/obj/effect/turf_decal/corner/opaque/bar,
-/obj/effect/turf_decal/corner/opaque/bar{
- dir = 1
- },
-/turf/open/floor/plasteel,
+/obj/structure/catwalk/over/plated_catwalk,
+/turf/open/floor/plating,
/area/ship/crew)
"do" = (
/obj/structure/cable{
@@ -811,11 +866,14 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
},
-/obj/structure/catwalk/over/plated_catwalk,
/obj/structure/cable{
icon_state = "2-8"
},
-/turf/open/floor/plating,
+/obj/effect/turf_decal/siding/white,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned/grid,
/area/ship/medical)
"dp" = (
/obj/structure/cable{
@@ -827,8 +885,11 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
},
-/obj/structure/catwalk/over/plated_catwalk,
-/turf/open/floor/plating,
+/obj/effect/turf_decal/siding/white,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned/grid,
/area/ship/medical)
"dq" = (
/obj/structure/cable{
@@ -840,12 +901,12 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 8
},
-/obj/effect/turf_decal/corner/opaque/bar,
-/obj/effect/turf_decal/corner/opaque/bar{
+/obj/structure/closet/emcloset/wall/directional/north,
+/obj/effect/turf_decal/siding/white,
+/obj/effect/turf_decal/siding/white{
dir = 1
},
-/obj/structure/closet/emcloset/wall/directional/north,
-/turf/open/floor/plasteel,
+/turf/open/floor/plasteel/patterned/grid,
/area/ship/crew)
"dr" = (
/obj/structure/cable{
@@ -855,8 +916,11 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 8
},
-/obj/structure/catwalk/over/plated_catwalk,
-/turf/open/floor/plating,
+/obj/effect/turf_decal/siding/white,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned/grid,
/area/ship/medical)
"ds" = (
/obj/structure/cable{
@@ -868,11 +932,13 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 8
},
-/obj/structure/catwalk/over/plated_catwalk/white,
/obj/structure/cable{
icon_state = "4-8"
},
-/turf/open/floor/plating,
+/obj/effect/turf_decal/nanotrasen/ns/top{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
/area/ship/science/robotics)
"du" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
@@ -881,11 +947,13 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 8
},
-/obj/structure/catwalk/over/plated_catwalk/white,
/obj/structure/cable{
icon_state = "4-8"
},
-/turf/open/floor/plating,
+/obj/effect/turf_decal/nanotrasen/ns/center{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
/area/ship/science/robotics)
"dv" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
@@ -956,7 +1024,8 @@
/obj/machinery/door/firedoor/border_only{
dir = 1
},
-/turf/open/floor/plasteel/dark,
+/obj/effect/turf_decal/industrial/warning/fulltile,
+/turf/open/floor/plasteel/tech/techmaint,
/area/ship/engineering)
"dG" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
@@ -969,15 +1038,15 @@
/turf/open/floor/plasteel,
/area/ship/crew)
"dI" = (
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 4
- },
-/obj/effect/turf_decal/corner/opaque/blue,
/obj/structure/table,
/obj/item/paper_bin,
-/obj/item/folder/blue,
+/obj/item/folder/yellow,
/obj/item/pen/fountain/captain,
-/obj/item/stamp/captain,
+/obj/item/stamp/qm,
+/obj/effect/turf_decal/corner/opaque/nsorange,
+/obj/effect/turf_decal/corner/opaque/nsorange{
+ dir = 4
+ },
/turf/open/floor/plasteel/dark,
/area/ship/bridge)
"dK" = (
@@ -1056,7 +1125,7 @@
"ez" = (
/obj/machinery/airalarm/directional/north,
/obj/structure/bed,
-/obj/item/bedsheet/captain,
+/obj/item/bedsheet/qm,
/obj/structure/curtain/bounty,
/obj/machinery/light_switch{
dir = 4;
@@ -1069,9 +1138,6 @@
/obj/structure/cable{
icon_state = "4-8"
},
-/obj/effect/turf_decal/corner/opaque/neutral{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
dir = 1
},
@@ -1079,29 +1145,30 @@
dir = 1
},
/obj/machinery/firealarm/directional/north,
-/turf/open/floor/plasteel,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white,
+/turf/open/floor/plasteel/patterned/grid,
/area/ship/hallway/port)
"ff" = (
-/obj/effect/turf_decal/corner/opaque/blue,
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 4
- },
-/obj/structure/closet/secure_closet{
- icon_state = "cap";
- name = "captain's locker";
+/obj/structure/closet/secure_closet/quartermaster{
+ populate = 0;
req_access = list(20)
},
-/obj/item/clothing/suit/hooded/wintercoat/captain,
-/obj/item/clothing/under/nanotrasen/captain/skirt,
-/obj/item/clothing/under/nanotrasen/captain,
-/obj/item/clothing/shoes/laceup,
-/obj/item/clothing/head/nanotrasen/captain/peaked,
-/obj/item/clothing/head/nanotrasen/captain,
+/obj/item/clothing/suit/hooded/wintercoat/cargo,
+/obj/item/clothing/under/nanotrasen/supply/qm,
+/obj/item/clothing/shoes/sneakers/brown,
+/obj/item/clothing/head/nanotrasen/cap/supply,
/obj/item/stock_parts/cell/gun,
/obj/item/gun/energy/laser,
-/obj/item/megaphone/command,
+/obj/item/megaphone/cargo,
/obj/machinery/light/small/directional/east,
-/obj/item/clothing/suit/armor/nanotrasen/captain,
+/obj/item/clothing/suit/armor/nanotrasen/slim,
+/obj/effect/turf_decal/corner/opaque/nsorange,
+/obj/effect/turf_decal/corner/opaque/nsorange{
+ dir = 4
+ },
/turf/open/floor/plasteel/dark,
/area/ship/bridge)
"fy" = (
@@ -1123,7 +1190,10 @@
},
/obj/structure/table,
/obj/item/toy/cards/deck,
-/turf/open/floor/plasteel,
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/turf/open/floor/plasteel/patterned/grid,
/area/ship/hallway/central)
"fC" = (
/obj/machinery/atmospherics/pipe/simple/orange,
@@ -1145,9 +1215,9 @@
/area/ship/medical)
"gv" = (
/obj/docking_port/stationary{
- width = 30;
+ dwidth = 15;
height = 15;
- dwidth = 15
+ width = 30
},
/turf/template_noop,
/area/template_noop)
@@ -1187,16 +1257,19 @@
pixel_y = 1
},
/obj/machinery/light/small/built/directional/east,
-/turf/open/floor/plating,
+/obj/effect/turf_decal/siding/yellow{
+ dir = 5
+ },
+/turf/open/floor/plasteel/tech/techmaint,
/area/ship/engineering)
"hd" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 5
},
-/obj/effect/turf_decal/corner/opaque/blue/border{
+/obj/effect/turf_decal/corner/opaque/nsorange/border{
dir = 8
},
-/turf/open/floor/plasteel,
+/turf/open/floor/plasteel/patterned/grid,
/area/ship/hallway/central)
"hi" = (
/obj/structure/table,
@@ -1218,10 +1291,23 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 1
},
-/obj/structure/catwalk/over/plated_catwalk,
/obj/machinery/firealarm/directional/east,
-/turf/open/floor/plating,
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = 19;
+ pixel_y = 11
+ },
+/turf/open/floor/plasteel/patterned/grid,
/area/ship/hallway/central)
+"iB" = (
+/obj/effect/turf_decal/nanotrasen/ns/center_left{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/ship/science/robotics)
"jk" = (
/obj/structure/railing,
/obj/effect/turf_decal/siding/white,
@@ -1237,8 +1323,15 @@
pixel_x = -7;
pixel_y = 4
},
+/obj/effect/turf_decal/trimline/transparent/white/filled/warning,
/turf/open/floor/plasteel,
/area/ship/cargo)
+"jr" = (
+/obj/effect/turf_decal/nanotrasen/ns/bottom_right{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/ship/science/robotics)
"jt" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -1250,8 +1343,11 @@
/obj/machinery/atmospherics/pipe/simple/orange/visible{
dir = 10
},
-/obj/structure/catwalk/over,
-/turf/open/floor/plating,
+/obj/effect/turf_decal/siding/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/yellow/corner,
+/turf/open/floor/plasteel/tech/techmaint,
/area/ship/engineering)
"jw" = (
/obj/structure/extinguisher_cabinet/directional/east,
@@ -1266,8 +1362,13 @@
/obj/machinery/atmospherics/pipe/simple/orange/visible{
dir = 9
},
-/obj/structure/catwalk/over,
-/turf/open/floor/plating,
+/obj/effect/turf_decal/siding/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/yellow{
+ dir = 4
+ },
+/turf/open/floor/plasteel/tech/techmaint,
/area/ship/engineering)
"jH" = (
/obj/machinery/porta_turret/ship/weak{
@@ -1287,8 +1388,11 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
dir = 1
},
-/obj/structure/catwalk/over/plated_catwalk/dark,
-/turf/open/floor/plating,
+/obj/effect/turf_decal/siding/white,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned/grid,
/area/ship/hallway/port)
"lc" = (
/obj/effect/turf_decal/corner/opaque/neutral,
@@ -1305,6 +1409,9 @@
icon_state = "1-2"
},
/obj/item/folder/white,
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
/turf/open/floor/plasteel,
/area/ship/medical)
"lp" = (
@@ -1319,13 +1426,10 @@
/turf/open/floor/plating,
/area/ship/bridge)
"ls" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
- },
-/obj/effect/turf_decal/corner/opaque/blue/border{
+/obj/effect/turf_decal/corner/opaque/nsorange/border{
dir = 8
},
-/turf/open/floor/plasteel,
+/turf/open/floor/plasteel/patterned/grid,
/area/ship/hallway/central)
"lx" = (
/obj/machinery/rnd/production/circuit_imprinter/department/science,
@@ -1335,7 +1439,6 @@
/turf/open/floor/plasteel/white,
/area/ship/science/robotics)
"mf" = (
-/obj/effect/turf_decal/borderfloor,
/obj/machinery/door/airlock{
name = "Janitorial Closet"
},
@@ -1343,15 +1446,22 @@
dir = 1
},
/obj/machinery/door/firedoor/border_only,
-/turf/open/floor/plasteel/tech/grid,
+/obj/effect/turf_decal/industrial/warning/fulltile,
+/turf/open/floor/plasteel/tech/techmaint,
/area/ship/hallway/port)
+"mr" = (
+/obj/effect/turf_decal/nanotrasen/ns/bottom_left{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/ship/science/robotics)
"mt" = (
/obj/structure/sign/departments/medbay/alt,
/turf/closed/wall/mineral/titanium/nodiagonal,
/area/ship/medical)
"mw" = (
/obj/structure/bed,
-/obj/item/bedsheet/blue,
+/obj/item/bedsheet/brown,
/obj/structure/window/reinforced/spawner/north,
/obj/structure/curtain/bounty,
/obj/effect/turf_decal/corner/opaque/bar{
@@ -1395,17 +1505,14 @@
/obj/item/clothing/glasses/hud/health{
pixel_y = -4
},
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 4
- },
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 1
- },
/obj/machinery/light_switch{
dir = 4;
pixel_x = -24;
pixel_y = -10
},
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
/turf/open/floor/plasteel,
/area/ship/medical)
"nq" = (
@@ -1426,17 +1533,19 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
dir = 4
},
-/obj/structure/catwalk/over,
-/turf/open/floor/plating,
+/obj/effect/turf_decal/siding/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/yellow{
+ dir = 4
+ },
+/turf/open/floor/plasteel/tech/techmaint,
/area/ship/engineering)
"oq" = (
/obj/machinery/light/small/built/directional/south,
/obj/structure/cable{
icon_state = "4-8"
},
-/obj/effect/turf_decal/corner/opaque/neutral{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 8
},
@@ -1444,7 +1553,11 @@
dir = 4
},
/obj/structure/closet/firecloset/wall/directional/south,
-/turf/open/floor/plasteel,
+/obj/effect/turf_decal/siding/white,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned/grid,
/area/ship/hallway/port)
"oz" = (
/obj/effect/turf_decal/industrial/warning{
@@ -1464,7 +1577,7 @@
"oI" = (
/obj/machinery/airalarm/directional/south,
/obj/structure/bed,
-/obj/item/bedsheet/blue,
+/obj/item/bedsheet/brown,
/obj/structure/curtain/bounty,
/obj/effect/turf_decal/corner/opaque/bar{
dir = 1
@@ -1477,15 +1590,28 @@
"oN" = (
/obj/machinery/airalarm/directional/north,
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
-/obj/structure/rack,
-/obj/item/clothing/suit/hooded/wintercoat/science,
+/obj/structure/closet/wardrobe/robotics_black{
+ populate = 0
+ },
+/obj/item/clothing/under/nanotrasen/science/robotics,
+/obj/item/clothing/under/nanotrasen/science/robotics,
+/obj/item/clothing/glasses/hud/diagnostic,
+/obj/item/clothing/glasses/hud/diagnostic,
+/obj/item/clothing/suit/toggle/labcoat/nanotrasen,
+/obj/item/clothing/suit/toggle/labcoat/nanotrasen,
+/obj/item/clothing/shoes/sneakers/black,
+/obj/item/clothing/shoes/sneakers/black,
+/obj/item/clothing/gloves/fingerless,
+/obj/item/clothing/gloves/fingerless,
+/obj/item/clothing/head/soft/black,
+/obj/item/clothing/head/soft/black,
/obj/item/clothing/suit/hooded/wintercoat/science{
pixel_y = 4
},
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 4
+/obj/item/clothing/suit/hooded/wintercoat/science{
+ pixel_y = 4
},
-/obj/effect/turf_decal/corner/opaque/blue{
+/obj/effect/turf_decal/borderfloor{
dir = 1
},
/turf/open/floor/plasteel,
@@ -1522,7 +1648,8 @@
/obj/machinery/door/firedoor/border_only{
dir = 4
},
-/turf/open/floor/plasteel,
+/obj/effect/turf_decal/industrial/warning/fulltile,
+/turf/open/floor/plasteel/tech/techmaint,
/area/ship/medical)
"qe" = (
/obj/effect/turf_decal/weather,
@@ -1542,23 +1669,20 @@
/obj/structure/cable{
icon_state = "4-8"
},
-/obj/effect/turf_decal/corner/opaque/neutral{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 8
},
-/obj/effect/turf_decal/corner/opaque/blue/bordercorner,
-/turf/open/floor/plasteel,
+/obj/effect/turf_decal/siding/white,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned/grid,
/area/ship/hallway/port)
"qY" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
-/obj/effect/turf_decal/corner/opaque/brown{
- dir = 1
- },
/obj/machinery/button/door{
dir = 4;
id = "Mining Bay Door";
@@ -1587,11 +1711,12 @@
/obj/item/pickaxe,
/obj/item/mining_scanner,
/obj/machinery/light/small/directional/east,
-/turf/open/floor/plasteel/patterned,
+/turf/open/floor/plasteel/patterned/cargo_one,
/area/ship/cargo)
"rC" = (
/obj/machinery/door/airlock/external,
-/turf/open/floor/plating,
+/obj/effect/turf_decal/industrial/warning/fulltile,
+/turf/open/floor/plasteel/tech/techmaint,
/area/ship/hallway/port)
"rW" = (
/obj/machinery/atmospherics/components/binary/pump{
@@ -1615,8 +1740,11 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 8
},
-/obj/structure/catwalk/over,
-/turf/open/floor/plating,
+/obj/effect/turf_decal/siding/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/yellow/corner,
+/turf/open/floor/plasteel/tech/techmaint,
/area/ship/engineering)
"sv" = (
/obj/effect/turf_decal/industrial/outline/yellow,
@@ -1644,7 +1772,8 @@
/obj/machinery/door/firedoor/border_only{
dir = 4
},
-/turf/open/floor/plasteel,
+/obj/effect/turf_decal/industrial/warning/fulltile,
+/turf/open/floor/plasteel/tech/techmaint,
/area/ship/crew)
"tf" = (
/obj/structure/sign/warning/vacuum/external{
@@ -1669,8 +1798,13 @@
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/orange/visible,
-/obj/structure/catwalk/over,
-/turf/open/floor/plating,
+/obj/effect/turf_decal/siding/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/yellow{
+ dir = 4
+ },
+/turf/open/floor/plasteel/tech/techmaint,
/area/ship/engineering)
"tU" = (
/obj/effect/turf_decal/industrial/warning{
@@ -1721,17 +1855,17 @@
/obj/structure/cable{
icon_state = "1-2"
},
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 1
},
/obj/machinery/light/small/directional/west,
+/obj/effect/turf_decal/corner/opaque/nsorange{
+ dir = 1
+ },
+/obj/effect/turf_decal/corner/opaque/nsorange{
+ dir = 4
+ },
/turf/open/floor/plasteel,
/area/ship/crew)
"vG" = (
@@ -1768,13 +1902,18 @@
/obj/machinery/power/apc/auto_name/directional/east,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/obj/machinery/atmospherics/pipe/simple/orange/visible,
-/obj/structure/catwalk/over,
/obj/machinery/light_switch{
- pixel_x = 19;
dir = 8;
+ pixel_x = 19;
pixel_y = 11
},
-/turf/open/floor/plating,
+/obj/effect/turf_decal/siding/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/yellow{
+ dir = 4
+ },
+/turf/open/floor/plasteel/tech/techmaint,
/area/ship/engineering)
"ww" = (
/obj/effect/decal/cleanable/dirt/dust,
@@ -1794,11 +1933,13 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 1
},
-/obj/structure/catwalk/over/plated_catwalk,
/obj/structure/cable{
icon_state = "1-2"
},
-/turf/open/floor/plating,
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/turf/open/floor/plasteel/patterned/grid,
/area/ship/hallway/central)
"xz" = (
/obj/machinery/door/airlock/mining/glass{
@@ -1814,16 +1955,14 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 8
},
-/obj/effect/turf_decal/corner/opaque/neutral{
- dir = 4
- },
/obj/machinery/door/firedoor/border_only{
dir = 8
},
/obj/machinery/door/firedoor/border_only{
dir = 4
},
-/turf/open/floor/plasteel,
+/obj/effect/turf_decal/industrial/warning/fulltile,
+/turf/open/floor/plasteel/tech/techmaint,
/area/ship/hallway/port)
"xA" = (
/turf/open/floor/plasteel/dark,
@@ -1870,6 +2009,9 @@
pixel_x = -24;
pixel_y = -10
},
+/obj/effect/turf_decal/nanotrasen/ns/top_right{
+ dir = 4
+ },
/turf/open/floor/plasteel/white,
/area/ship/science/robotics)
"yy" = (
@@ -1892,7 +2034,8 @@
/obj/machinery/door/firedoor/border_only{
dir = 8
},
-/turf/open/floor/plasteel,
+/obj/effect/turf_decal/industrial/warning/fulltile,
+/turf/open/floor/plasteel/tech/techmaint,
/area/ship/cargo)
"zJ" = (
/obj/item/toy/talking/AI,
@@ -1938,10 +2081,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 8
},
-/obj/effect/turf_decal/corner/opaque/bar,
-/obj/effect/turf_decal/corner/opaque/bar{
- dir = 1
- },
/obj/machinery/light/small/built/directional/north,
/obj/structure/cable{
icon_state = "2-8"
@@ -1950,7 +2089,11 @@
pixel_x = 10;
pixel_y = 24
},
-/turf/open/floor/plasteel,
+/obj/effect/turf_decal/siding/white,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned/grid,
/area/ship/crew)
"AM" = (
/obj/structure/table,
@@ -1985,8 +2128,18 @@
/obj/machinery/door/firedoor/border_only{
dir = 8
},
-/turf/open/floor/plasteel/dark,
+/obj/effect/turf_decal/industrial/warning/fulltile,
+/turf/open/floor/plasteel/tech/techmaint,
/area/ship/engineering)
+"AX" = (
+/obj/effect/turf_decal/corner/opaque/nsorange/border{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
+ },
+/turf/open/floor/plasteel/patterned/grid,
+/area/ship/hallway/central)
"Bh" = (
/obj/machinery/mecha_part_fabricator,
/obj/machinery/airalarm/directional/north,
@@ -2016,8 +2169,10 @@
/obj/machinery/airalarm/directional/east,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/catwalk/over/plated_catwalk,
-/turf/open/floor/plating,
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/turf/open/floor/plasteel/patterned/grid,
/area/ship/hallway/central)
"BE" = (
/obj/structure/cable{
@@ -2116,13 +2271,13 @@
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
dir = 1
},
-/obj/effect/turf_decal/corner/opaque/blue,
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 8
- },
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 9
},
+/obj/effect/turf_decal/corner/opaque/nsorange,
+/obj/effect/turf_decal/corner/opaque/nsorange{
+ dir = 8
+ },
/turf/open/floor/plasteel,
/area/ship/hallway/port)
"DZ" = (
@@ -2180,9 +2335,12 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 8
},
-/obj/structure/catwalk/over/plated_catwalk/dark,
/obj/machinery/light/small/directional/north,
-/turf/open/floor/plating,
+/obj/effect/turf_decal/siding/white,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned/grid,
/area/ship/hallway/port)
"Hi" = (
/obj/structure/ore_box,
@@ -2200,19 +2358,21 @@
dir = 5
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/obj/structure/catwalk/over,
/obj/structure/cable{
icon_state = "4-8"
},
-/turf/open/floor/plating,
+/obj/effect/turf_decal/siding/yellow{
+ dir = 10
+ },
+/turf/open/floor/plasteel/tech/techmaint,
/area/ship/engineering)
"ID" = (
-/obj/effect/turf_decal/corner/opaque/blue,
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 4
- },
/obj/machinery/modular_computer/console/preset/command,
/obj/machinery/light/small/directional/east,
+/obj/effect/turf_decal/corner/opaque/nsorange,
+/obj/effect/turf_decal/corner/opaque/nsorange{
+ dir = 4
+ },
/turf/open/floor/plasteel/dark,
/area/ship/bridge)
"IM" = (
@@ -2235,6 +2395,29 @@
},
/turf/open/floor/plating,
/area/ship/engineering)
+"Ja" = (
+/obj/machinery/door/airlock/engineering{
+ dir = 4;
+ name = "Engineering"
+ },
+/obj/structure/cable{
+ 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/machinery/door/firedoor/border_only{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/obj/effect/turf_decal/industrial/warning/fulltile,
+/turf/open/floor/plasteel/dark,
+/area/ship/engineering)
"Je" = (
/obj/machinery/conveyor{
dir = 1;
@@ -2247,7 +2430,6 @@
/turf/open/floor/plating,
/area/ship/cargo)
"Jf" = (
-/obj/effect/turf_decal/borderfloor,
/obj/machinery/door/airlock{
name = "Restroom"
},
@@ -2255,16 +2437,13 @@
/obj/machinery/door/firedoor/border_only{
dir = 1
},
-/turf/open/floor/plasteel/tech/grid,
+/obj/effect/turf_decal/industrial/warning/fulltile,
+/turf/open/floor/plasteel/tech/techmaint,
/area/ship/hallway/port)
"Jj" = (
/obj/structure/cable{
icon_state = "1-2"
},
-/obj/effect/turf_decal/corner/opaque/blue,
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 8
- },
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
dir = 4
@@ -2273,6 +2452,10 @@
dir = 1
},
/obj/machinery/light/small/directional/west,
+/obj/effect/turf_decal/corner/opaque/nsorange{
+ dir = 8
+ },
+/obj/effect/turf_decal/corner/opaque/nsorange,
/turf/open/floor/plasteel,
/area/ship/hallway/port)
"Jo" = (
@@ -2311,6 +2494,9 @@
/obj/effect/turf_decal/corner/opaque/neutral{
dir = 8
},
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
/turf/open/floor/plasteel,
/area/ship/medical)
"KV" = (
@@ -2344,16 +2530,16 @@
/turf/open/floor/plasteel/dark,
/area/ship/bridge)
"Lv" = (
-/obj/effect/turf_decal/corner/opaque/blue{
+/obj/machinery/computer/cargo/express/retro{
+ dir = 8
+ },
+/obj/effect/turf_decal/corner/opaque/nsorange,
+/obj/effect/turf_decal/corner/opaque/nsorange{
dir = 1
},
-/obj/effect/turf_decal/corner/opaque/blue{
+/obj/effect/turf_decal/corner/opaque/nsorange{
dir = 4
},
-/obj/effect/turf_decal/corner/opaque/blue,
-/obj/machinery/computer/cargo/express/retro{
- dir = 8
- },
/turf/open/floor/plasteel/dark,
/area/ship/bridge)
"Ly" = (
@@ -2363,10 +2549,7 @@
/obj/machinery/power/apc/auto_name/directional/west,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/obj/structure/railing/corner,
-/obj/effect/turf_decal/corner/opaque/brown{
- dir = 1
- },
-/obj/effect/turf_decal/siding/white,
+/obj/effect/turf_decal/trimline/transparent/white/filled/warning,
/turf/open/floor/plasteel,
/area/ship/cargo)
"Mc" = (
@@ -2394,7 +2577,7 @@
/obj/item/reagent_containers/food/snacks/canned/beans,
/obj/item/reagent_containers/food/snacks/canned/beans,
/obj/machinery/firealarm/directional/east,
-/turf/open/floor/plasteel/patterned,
+/turf/open/floor/plasteel/patterned/cargo_one,
/area/ship/cargo)
"Ni" = (
/obj/structure/cable{
@@ -2416,15 +2599,13 @@
/obj/machinery/door/firedoor/border_only{
dir = 8
},
-/turf/open/floor/plasteel,
+/obj/effect/turf_decal/industrial/warning/fulltile,
+/turf/open/floor/plasteel/tech/techmaint,
/area/ship/science/robotics)
"NF" = (
/obj/structure/cable{
icon_state = "4-8"
},
-/obj/effect/turf_decal/corner/opaque/neutral{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
},
@@ -2434,7 +2615,11 @@
/obj/machinery/airalarm/directional/north,
/obj/machinery/camera,
/obj/structure/extinguisher_cabinet/directional/south,
-/turf/open/floor/plasteel,
+/obj/effect/turf_decal/siding/white,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned/grid,
/area/ship/hallway/port)
"NL" = (
/obj/structure/sign/warning/electricshock{
@@ -2462,6 +2647,22 @@
},
/turf/open/floor/plasteel/dark,
/area/ship/science/robotics)
+"Qi" = (
+/obj/structure/cable{
+ 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/siding/yellow,
+/obj/effect/turf_decal/siding/yellow/corner{
+ dir = 4
+ },
+/turf/open/floor/plasteel/tech/techmaint,
+/area/ship/engineering)
"Qx" = (
/obj/structure/window/reinforced{
dir = 8
@@ -2493,7 +2694,10 @@
dir = 8
},
/obj/machinery/light/small/directional/east,
-/turf/open/floor/plating,
+/obj/effect/turf_decal/siding/yellow{
+ dir = 6
+ },
+/turf/open/floor/plasteel/tech/techmaint,
/area/ship/engineering)
"QR" = (
/obj/structure/cable{
@@ -2522,9 +2726,6 @@
/obj/effect/turf_decal/industrial/loading{
dir = 8
},
-/obj/effect/turf_decal/corner/opaque/brown{
- dir = 1
- },
/obj/machinery/mineral/processing_unit_console{
machinedir = 6;
pixel_y = 26
@@ -2537,14 +2738,14 @@
/turf/open/floor/plasteel,
/area/ship/cargo)
"SE" = (
-/obj/effect/turf_decal/corner/opaque/blue,
-/obj/effect/turf_decal/corner/opaque/blue{
+/obj/machinery/computer/helm/retro{
dir = 8
},
-/obj/effect/turf_decal/corner/opaque/blue{
+/obj/effect/turf_decal/corner/opaque/nsorange,
+/obj/effect/turf_decal/corner/opaque/nsorange{
dir = 4
},
-/obj/machinery/computer/helm/retro{
+/obj/effect/turf_decal/corner/opaque/nsorange{
dir = 8
},
/turf/open/floor/plasteel/dark,
@@ -2554,6 +2755,9 @@
/obj/structure/cable{
icon_state = "1-2"
},
+/obj/effect/turf_decal/nanotrasen/ns/top_left{
+ dir = 4
+ },
/turf/open/floor/plasteel/white,
/area/ship/science/robotics)
"SN" = (
@@ -2568,7 +2772,13 @@
/obj/machinery/advanced_airlock_controller{
pixel_y = -20
},
-/turf/open/floor/plating,
+/obj/effect/turf_decal/siding/white{
+ dir = 6
+ },
+/obj/effect/turf_decal/industrial/warning{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned/grid,
/area/ship/hallway/port)
"SY" = (
/obj/effect/turf_decal/weather,
@@ -2581,6 +2791,9 @@
output_dir = 1
},
/obj/structure/plasticflaps/opaque,
+/obj/machinery/door/window/southleft{
+ name = "Processor Access Door"
+ },
/turf/open/floor/plating,
/area/ship/cargo)
"Td" = (
@@ -2589,6 +2802,9 @@
dir = 8
},
/obj/machinery/light/small/directional/east,
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
/turf/open/floor/plasteel,
/area/ship/medical)
"Te" = (
@@ -2603,9 +2819,11 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 9
},
-/obj/structure/catwalk/over/plated_catwalk,
/obj/structure/chair,
-/turf/open/floor/plating,
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/turf/open/floor/plasteel/patterned/grid,
/area/ship/hallway/central)
"TK" = (
/obj/machinery/door/poddoor{
@@ -2628,6 +2846,9 @@
/turf/open/floor/plating/airless,
/area/ship/engineering)
"Us" = (
+/obj/effect/turf_decal/nanotrasen/ns/center_right{
+ dir = 4
+ },
/turf/open/floor/plasteel/white,
/area/ship/science/robotics)
"Vt" = (
@@ -2686,6 +2907,11 @@
/obj/machinery/cryopod{
dir = 8
},
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = 19;
+ pixel_y = 11
+ },
/turf/open/floor/plasteel/white,
/area/ship/crew)
"Xp" = (
@@ -2760,15 +2986,9 @@
/obj/structure/cable{
icon_state = "4-8"
},
-/obj/effect/turf_decal/corner/opaque/neutral{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 8
},
-/obj/effect/turf_decal/corner/opaque/blue/bordercorner{
- dir = 8
- },
/obj/machinery/power/apc/auto_name/directional/north,
/obj/structure/cable{
icon_state = "0-8"
@@ -2776,7 +2996,13 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
},
-/turf/open/floor/plasteel,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white/corner{
+ dir = 8
+ },
+/turf/open/floor/plasteel/patterned/grid,
/area/ship/hallway/port)
"Yw" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
@@ -2785,11 +3011,13 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
},
-/obj/structure/catwalk/over/plated_catwalk/white,
/obj/structure/cable{
icon_state = "4-8"
},
-/turf/open/floor/plating,
+/obj/effect/turf_decal/nanotrasen/ns/bottom{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
/area/ship/science/robotics)
"YZ" = (
/obj/machinery/porta_turret/ship/weak{
@@ -2804,9 +3032,6 @@
/obj/structure/cable{
icon_state = "2-8"
},
-/obj/effect/turf_decal/corner/opaque/neutral{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
dir = 1
},
@@ -2817,7 +3042,8 @@
pixel_x = 10;
pixel_y = 24
},
-/turf/open/floor/plasteel,
+/obj/structure/catwalk/over/plated_catwalk,
+/turf/open/floor/plating,
/area/ship/hallway/port)
"Zl" = (
/obj/machinery/vending/boozeomat/all_access,
@@ -2949,7 +3175,7 @@ bB
bB
ai
gQ
-sp
+Qi
sv
ai
aa
@@ -2969,7 +3195,7 @@ BH
zT
bB
cP
-AW
+Ja
ai
ai
YZ
@@ -3061,13 +3287,13 @@ ae
ae
Yi
aP
-cv
-cv
ls
+ls
+AX
cj
hd
-cv
-cv
+ls
+ls
cT
dl
dG
@@ -3250,7 +3476,7 @@ Mc
cI
Us
du
-Us
+iB
Te
Mc
"}
@@ -3268,9 +3494,9 @@ aa
aa
HJ
Bh
-Us
+jr
Yw
-Us
+mr
rl
HJ
"}
diff --git a/_maps/shuttles/nanotrasen/nanotrasen_gecko.dmm b/_maps/shuttles/nanotrasen/nanotrasen_gecko.dmm
index 8a34bb9ff0f..8314f17e288 100644
--- a/_maps/shuttles/nanotrasen/nanotrasen_gecko.dmm
+++ b/_maps/shuttles/nanotrasen/nanotrasen_gecko.dmm
@@ -1467,9 +1467,8 @@
/turf/closed/wall/mineral/titanium/nodiagonal,
/area/ship/cargo/port)
"ph" = (
-/obj/machinery/computer/communications{
- dir = 8;
- icon_state = "computer-left"
+/obj/structure/frame/computer{
+ dir = 8
},
/turf/open/floor/plasteel/telecomms_floor,
/area/ship/bridge)
@@ -1934,7 +1933,7 @@
/obj/structure/railing,
/obj/machinery/computer/atmos_control/incinerator{
dir = 4;
- sensors = list("gecko_burn_sensor"="Combustion Chamber")
+ sensors = list("gecko_burn_sensor"="Combustion Chamber")
},
/turf/open/floor/plasteel/tech/techmaint,
/area/ship/engineering/engine)
@@ -2853,7 +2852,7 @@
"CI" = (
/obj/machinery/computer/helm{
dir = 8;
- icon_state = "computer-middle"
+ icon_state = "computer-left"
},
/turf/open/floor/plasteel/telecomms_floor,
/area/ship/bridge)
diff --git a/_maps/shuttles/nanotrasen/nanotrasen_heron.dmm b/_maps/shuttles/nanotrasen/nanotrasen_heron.dmm
index 107044c9e80..3f761da4dd0 100644
--- a/_maps/shuttles/nanotrasen/nanotrasen_heron.dmm
+++ b/_maps/shuttles/nanotrasen/nanotrasen_heron.dmm
@@ -6112,7 +6112,7 @@
/obj/item/storage/pill_bottle/aranesp,
/obj/item/taperecorder,
/obj/item/t_scanner,
-/obj/item/switchblade,
+/obj/item/kitchen/knife/switchblade,
/obj/item/trash/candy,
/obj/structure/filingcabinet/double,
/obj/item/radio/intercom/directional/south,
diff --git a/_maps/shuttles/nanotrasen/nanotrasen_osprey.dmm b/_maps/shuttles/nanotrasen/nanotrasen_osprey.dmm
index e4f74b4577e..774f1d57cc4 100644
--- a/_maps/shuttles/nanotrasen/nanotrasen_osprey.dmm
+++ b/_maps/shuttles/nanotrasen/nanotrasen_osprey.dmm
@@ -2334,9 +2334,8 @@
/turf/open/floor/plasteel,
/area/ship/crew/cryo)
"pm" = (
-/obj/machinery/computer/communications{
- dir = 8;
- icon_state = "computer-right"
+/obj/structure/frame/computer{
+ dir = 8
},
/turf/open/floor/plasteel/tech/grid,
/area/ship/bridge)
@@ -3088,8 +3087,7 @@
/area/ship/bridge)
"ud" = (
/obj/machinery/computer/helm{
- dir = 8;
- icon_state = "computer-left"
+ dir = 8
},
/turf/open/floor/plasteel/tech/grid,
/area/ship/bridge)
diff --git a/_maps/shuttles/nanotrasen/nanotrasen_skipper.dmm b/_maps/shuttles/nanotrasen/nanotrasen_skipper.dmm
index bc4db627e44..93c59445ee4 100644
--- a/_maps/shuttles/nanotrasen/nanotrasen_skipper.dmm
+++ b/_maps/shuttles/nanotrasen/nanotrasen_skipper.dmm
@@ -2693,7 +2693,7 @@
/turf/open/floor/wood,
/area/ship/hallway/central)
"uY" = (
-/obj/machinery/computer/communications{
+/obj/structure/frame/computer{
dir = 8
},
/obj/effect/turf_decal/corner/opaque/ntblue/half{
@@ -2868,7 +2868,7 @@
pixel_x = 4;
pixel_y = 8
},
-/obj/item/coin/adamantine{
+/obj/item/coin/hellstone{
pixel_x = -12;
pixel_y = -3
},
diff --git a/_maps/shuttles/pgf/pgf_crying_sun.dmm b/_maps/shuttles/pgf/pgf_crying_sun.dmm
index f06f4e5dbc6..2ae859c2bcf 100644
--- a/_maps/shuttles/pgf/pgf_crying_sun.dmm
+++ b/_maps/shuttles/pgf/pgf_crying_sun.dmm
@@ -6124,6 +6124,9 @@
pixel_y = -9;
pixel_x = -3
},
+/obj/item/clothing/head/helmet/gezena{
+ pixel_y = -11
+ },
/turf/open/floor/plasteel/tech,
/area/ship/crew/dorm/dormtwo)
"Wc" = (
diff --git a/_maps/shuttles/pirate/pirate_ember.dmm b/_maps/shuttles/pirate/pirate_ember.dmm
deleted file mode 100644
index 6173f14db95..00000000000
--- a/_maps/shuttles/pirate/pirate_ember.dmm
+++ /dev/null
@@ -1,13021 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"ad" = (
-/turf/closed/wall/r_wall,
-/area/ship/bridge)
-"af" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 4
- },
-/obj/structure/closet/secure_closet{
- icon_state = "cap";
- name = "\proper captain's locker";
- req_access_txt = "20"
- },
-/obj/item/clothing/under/rank/security/officer/frontier/admiral,
-/obj/item/clothing/gloves/combat,
-/obj/item/clothing/head/beret/sec/frontier/officer,
-/obj/item/clothing/accessory/holster/detective,
-/obj/item/clothing/glasses/hud/security/sunglasses/eyepatch,
-/obj/item/clothing/suit/armor/frontier,
-/obj/item/clothing/shoes/cowboy,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 8
- },
-/obj/machinery/button/door{
- id = "pirate_cutter_escape";
- name = "Escape Shutters";
- pixel_x = 7;
- pixel_y = 25
- },
-/turf/open/floor/carpet/green,
-/area/ship/crew/office)
-"ah" = (
-/obj/effect/turf_decal/techfloor{
- dir = 8
- },
-/obj/machinery/vending/tool,
-/obj/effect/decal/cleanable/wrapping{
- pixel_y = -4
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/electrical)
-"al" = (
-/obj/structure/railing{
- dir = 4;
- layer = 4.1
- },
-/obj/effect/turf_decal/techfloor{
- dir = 4
- },
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 6
- },
-/obj/effect/turf_decal/steeldecal/steel_decals3{
- dir = 1;
- pixel_x = -16
- },
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/power/terminal{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/telecomms_floor,
-/area/ship/engineering/electrical)
-"aq" = (
-/obj/structure/catwalk/over/plated_catwalk,
-/obj/effect/decal/cleanable/dirt,
-/obj/item/stack/rods,
-/turf/open/floor/plating{
- icon_state = "foam_plating"
- },
-/area/ship/hallway/central)
-"ar" = (
-/obj/effect/turf_decal/techfloor{
- dir = 1
- },
-/obj/effect/turf_decal/techfloor,
-/obj/machinery/suit_storage_unit/inherit/industrial,
-/obj/item/tank/jetpack/carbondioxide,
-/obj/item/clothing/suit/space/hardsuit/security/independent/frontier,
-/obj/item/clothing/mask/breath,
-/obj/structure/extinguisher_cabinet/directional/east,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/security/armory)
-"aw" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/obj/structure/catwalk/over/plated_catwalk/dark,
-/turf/open/floor/plating,
-/area/ship/hallway/fore)
-"ax" = (
-/obj/structure/bookcase/random/fiction,
-/turf/open/floor/wood,
-/area/ship/security)
-"aD" = (
-/obj/structure/tank_dispenser/oxygen,
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ship/hallway/central)
-"aG" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 1;
- color = "#808080"
- },
-/turf/open/floor/plasteel/elevatorshaft{
- color = "#808080"
- },
-/area/ship/security/range)
-"aJ" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 8
- },
-/obj/effect/turf_decal/siding/wood/corner{
- dir = 4
- },
-/obj/structure/cable{
- 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/wood{
- icon_state = "wood-broken3"
- },
-/area/ship/crew/office)
-"aL" = (
-/obj/effect/turf_decal/techfloor{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/visible{
- dir = 8
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/engine)
-"aO" = (
-/turf/closed/wall/r_wall,
-/area/ship/engineering/incinerator)
-"aP" = (
-/obj/structure/window/plasma/reinforced/spawner/north,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- name = "Lockdown Shutters";
- id = "cutter_sm_lockdown"
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/engine)
-"aQ" = (
-/obj/structure/catwalk/over/plated_catwalk,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/ship/hallway/central)
-"aR" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 5;
- color = "#808080"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/firedoor/border_only{
- dir = 8
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/door/poddoor/shutters{
- id = "cutter_armoury";
- name = "Armoury Shutter";
- dir = 4
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ship/security/armory)
-"aS" = (
-/obj/machinery/airalarm/directional/north,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/ship/hallway/central)
-"aZ" = (
-/obj/effect/decal/cleanable/oil,
-/obj/structure/closet/firecloset/wall/directional/east,
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ship/hallway/central)
-"bb" = (
-/obj/structure/catwalk/over/plated_catwalk,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/ship/hallway/central)
-"bg" = (
-/obj/structure/catwalk/over/plated_catwalk,
-/obj/structure/sign/poster/official/moth/smokey{
- pixel_y = -32
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 4
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ship/hallway/central)
-"bh" = (
-/obj/machinery/cryopod{
- dir = 8
- },
-/obj/effect/turf_decal/techfloor,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 8
- },
-/turf/open/floor/plasteel/telecomms_floor,
-/area/ship/crew)
-"bi" = (
-/obj/effect/turf_decal/corner_techfloor_grid{
- dir = 6
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2,
-/turf/open/floor/plasteel/dark,
-/area/ship/hallway/fore)
-"bo" = (
-/obj/effect/turf_decal/trimline/opaque/red/line{
- dir = 8
- },
-/obj/structure/railing/corner{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/security)
-"bq" = (
-/obj/machinery/door/window/brigdoor/northleft{
- dir = 2
- },
-/obj/item/radio/intercom/directional/west,
-/obj/machinery/light_switch{
- pixel_x = -21;
- dir = 4;
- pixel_y = 7
- },
-/turf/open/floor/carpet/nanoweave,
-/area/ship/security)
-"bt" = (
-/obj/effect/turf_decal/steeldecal/steel_decals10{
- dir = 5
- },
-/obj/effect/turf_decal/steeldecal/steel_decals10{
- dir = 6
- },
-/obj/effect/turf_decal/techfloor/corner,
-/obj/effect/turf_decal/techfloor/corner{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/engine)
-"bx" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 2;
- color = "#808080"
- },
-/obj/effect/decal/cleanable/greenglow,
-/obj/machinery/power/apc/auto_name/directional/north,
-/obj/machinery/light_switch{
- pixel_x = -22;
- dir = 4;
- pixel_y = 8
- },
-/obj/machinery/firealarm/directional/west,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/effect/turf_decal/industrial/hatch/orange,
-/obj/structure/closet/crate/solarpanel_small,
-/obj/structure/grille/broken,
-/obj/machinery/light_switch{
- pixel_y = 22;
- pixel_x = -12
- },
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ship/engineering)
-"bA" = (
-/obj/effect/turf_decal/techfloor{
- dir = 9
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/sign/poster/official/moth/supermatter{
- pixel_x = -32
- },
-/obj/machinery/light/directional/west,
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 5
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/engine)
-"bF" = (
-/obj/machinery/door/airlock/engineering/glass,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/door/firedoor/border_only{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ship/engineering/communications)
-"bG" = (
-/obj/effect/turf_decal/techfloor{
- dir = 10
- },
-/obj/machinery/power/apc/auto_name/directional/west,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/machinery/light_switch{
- dir = 1;
- pixel_x = 10;
- pixel_y = -20
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/engine)
-"bI" = (
-/obj/structure/table/wood/poker,
-/obj/effect/turf_decal/siding/wood{
- dir = 8
- },
-/obj/item/storage/fancy/candle_box{
- pixel_x = -4
- },
-/obj/item/trash/candy{
- pixel_x = 3;
- pixel_y = -7
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/directional/west,
-/turf/open/floor/concrete/tiles,
-/area/ship/crew)
-"bS" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/spline/fancy/opaque/black,
-/obj/machinery/smartfridge/drying_rack,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/carpet/nanoweave,
-/area/ship/security)
-"bV" = (
-/obj/structure/frame/machine,
-/obj/effect/turf_decal/techfloor{
- dir = 6
- },
-/obj/item/stock_parts/subspace/filter,
-/obj/item/stock_parts/subspace/filter,
-/obj/item/circuitboard/machine/telecomms/receiver,
-/turf/open/floor/plasteel/telecomms_floor,
-/area/ship/maintenance/port)
-"bZ" = (
-/obj/item/reagent_containers/food/condiment/soysauce{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/reagent_containers/food/condiment/mayonnaise,
-/obj/effect/turf_decal/box/corners{
- dir = 4
- },
-/obj/structure/closet/secure_closet/freezer/fridge/open,
-/obj/effect/turf_decal/box/corners{
- dir = 1
- },
-/obj/machinery/power/apc/auto_name/directional/west,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/machinery/light_switch{
- dir = 4;
- pixel_x = -20;
- pixel_y = 13
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/crew/canteen/kitchen)
-"cb" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood/walnut,
-/area/ship/crew)
-"ce" = (
-/obj/effect/turf_decal/corner/opaque/yellow/half{
- dir = 8
- },
-/obj/effect/turf_decal/industrial/loading{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/plating,
-/area/ship/cargo)
-"ch" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/plasteel,
-/area/ship/hallway/central)
-"ck" = (
-/obj/machinery/door/airlock/grunge{
- dir = 4
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/ship/crew)
-"cl" = (
-/obj/structure/table/reinforced,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/melee/baseball_bat/ablative,
-/obj/item/trash/energybar,
-/obj/machinery/button/door{
- id = "cutter_general_lockdown";
- name = "Ship Lockdown";
- pixel_x = -7;
- pixel_y = 7;
- dir = 1;
- req_access_txt = "20"
- },
-/turf/open/floor/carpet/nanoweave,
-/area/ship/security)
-"cm" = (
-/obj/machinery/vending/cola/black{
- pixel_x = 5
- },
-/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/plating,
-/area/ship/maintenance/fore)
-"cn" = (
-/obj/effect/turf_decal/industrial/warning/corner,
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 1
- },
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 8
- },
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2,
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ship/engineering/communications)
-"co" = (
-/obj/effect/turf_decal/techfloor{
- dir = 1
- },
-/obj/machinery/light/directional/south,
-/turf/open/floor/plasteel/tech,
-/area/ship/security/range)
-"cp" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating/rust,
-/area/ship/medical)
-"cr" = (
-/obj/structure/table/reinforced{
- color = "#c1b6a5"
- },
-/obj/effect/decal/cleanable/cobweb,
-/obj/item/newspaper{
- pixel_x = 5
- },
-/obj/item/newspaper{
- pixel_x = 5;
- pixel_y = 2
- },
-/obj/machinery/jukebox/boombox{
- pixel_y = 5;
- pixel_x = -4
- },
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ship/security)
-"cA" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood/walnut,
-/area/ship/crew)
-"cE" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 4
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/door/airlock/engineering{
- name = "Engineering";
- req_access_txt = "10";
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ship/engineering/electrical)
-"cF" = (
-/obj/structure/closet/secure_closet/hydroponics,
-/obj/item/reagent_containers/food/snacks/grown/wheat{
- pixel_x = 4;
- pixel_y = -4
- },
-/obj/item/reagent_containers/food/snacks/grown/wheat,
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 6
- },
-/obj/effect/turf_decal/weather/dirt{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ship/maintenance/central)
-"cH" = (
-/obj/effect/turf_decal/techfloor{
- dir = 10
- },
-/obj/structure/dresser,
-/obj/machinery/light/directional/south,
-/turf/open/floor/plasteel/dark,
-/area/ship/hallway/fore)
-"cQ" = (
-/obj/effect/turf_decal/techfloor{
- dir = 1
- },
-/obj/effect/turf_decal/steeldecal/steel_decals6{
- dir = 6
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/electrical)
-"cT" = (
-/obj/effect/turf_decal/techfloor{
- dir = 8
- },
-/obj/structure/bed{
- icon_state = "dirty_mattress"
- },
-/obj/structure/sign/poster/contraband/masked_men{
- pixel_x = -28
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/hallway/fore)
-"dc" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/plating/rust,
-/area/ship/hallway/central)
-"df" = (
-/turf/closed/wall/r_wall/syndicate/nodiagonal,
-/area/ship/maintenance/port)
-"du" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
-/turf/open/floor/plasteel/patterned/cargo_one,
-/area/ship/medical)
-"dv" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/spawner/lootdrop/grille_or_trash,
-/obj/effect/decal/cleanable/robot_debris/old,
-/obj/item/stock_parts/capacitor{
- pixel_y = -9;
- pixel_x = -6
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plating{
- icon_state = "foam_plating"
- },
-/area/ship/maintenance/fore)
-"dy" = (
-/obj/structure/toilet{
- dir = 4;
- pixel_x = -1;
- pixel_y = 5
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/garbage,
-/turf/open/floor/plasteel/showroomfloor,
-/area/ship/crew)
-"dB" = (
-/obj/structure/reagent_dispensers/fueltank,
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/structure/railing{
- dir = 8;
- layer = 3.1
- },
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ship/engineering)
-"dF" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/directional/east,
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/door/firedoor/border_only{
- dir = 1
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "cutter_general_lockdown";
- name = "Lockdown Shutters"
- },
-/turf/open/floor/plating{
- icon_state = "foam_plating"
- },
-/area/ship/hallway/central)
-"dM" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/ship/hallway/central)
-"dN" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/plating{
- icon_state = "foam_plating"
- },
-/area/ship/hallway/central)
-"dP" = (
-/obj/effect/turf_decal/techfloor{
- dir = 4
- },
-/obj/machinery/portable_atmospherics/scrubber/huge/movable,
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/directional/east,
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/incinerator)
-"dX" = (
-/obj/structure/chair/wood,
-/obj/effect/turf_decal/siding/wood{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/concrete/tiles,
-/area/ship/crew)
-"eb" = (
-/obj/structure/barricade/wooden/crude{
- layer = 3.1
- },
-/obj/machinery/door/poddoor{
- id = "pirate_cutter_escape";
- dir = 4
- },
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/crew/office)
-"ed" = (
-/turf/closed/wall,
-/area/ship/crew)
-"eh" = (
-/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium,
-/obj/machinery/door/poddoor{
- id = "cutter_windows_general"
- },
-/turf/open/floor/plating,
-/area/ship/security)
-"em" = (
-/obj/effect/turf_decal/steeldecal/steel_decals_central4{
- dir = 1
- },
-/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/atmospherics/pipe/simple/purple/hidden,
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/electrical)
-"er" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 9
- },
-/obj/structure/table/wood,
-/obj/item/flashlight/lamp{
- pixel_y = 9;
- pixel_x = -7
- },
-/obj/item/reagent_containers/food/drinks/mug{
- pixel_y = -2;
- pixel_x = 9
- },
-/obj/item/phone{
- desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in.";
- pixel_x = 8;
- pixel_y = 7
- },
-/obj/item/cigbutt/cigarbutt{
- pixel_x = 2;
- pixel_y = 10
- },
-/obj/item/megaphone/sec{
- name = "syndicate megaphone";
- pixel_x = -4
- },
-/obj/machinery/airalarm/directional/west,
-/turf/open/floor/wood,
-/area/ship/security)
-"ew" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/ship/engineering/engine)
-"eA" = (
-/obj/machinery/power/shuttle/engine/electric{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/plating,
-/area/ship/engineering/atmospherics)
-"eE" = (
-/obj/effect/turf_decal/techfloor{
- dir = 4
- },
-/obj/effect/turf_decal/industrial/loading{
- dir = 1
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 1
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/incinerator)
-"eG" = (
-/obj/effect/turf_decal/siding/wood,
-/obj/effect/turf_decal/siding/wood{
- dir = 1
- },
-/obj/structure/chair,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/vomit/old,
-/turf/open/floor/wood{
- icon_state = "wood-broken6"
- },
-/area/ship/crew/canteen)
-"eQ" = (
-/obj/structure/catwalk/over/plated_catwalk,
-/obj/structure/closet/secure_closet/engineering_welding{
- req_access = null;
- anchored = 1
- },
-/obj/machinery/light/small,
-/obj/item/seeds/cannabis{
- pixel_y = -5;
- pixel_x = -5
- },
-/obj/machinery/light/small/directional/south,
-/turf/open/floor/plating/rust,
-/area/ship/engineering)
-"eV" = (
-/obj/structure/bookcase/random,
-/turf/open/floor/concrete/reinforced,
-/area/ship/crew)
-"eY" = (
-/obj/structure/catwalk/over/plated_catwalk,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
- },
-/turf/open/floor/plating/rust,
-/area/ship/hallway/central)
-"fb" = (
-/obj/effect/turf_decal/industrial/traffic,
-/obj/effect/turf_decal/industrial/traffic{
- dir = 1
- },
-/obj/item/radio/intercom/directional/south,
-/obj/machinery/light_switch{
- pixel_x = -12;
- dir = 1;
- pixel_y = -22
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 4
- },
-/turf/open/floor/plasteel/patterned/cargo_one,
-/area/ship/cargo)
-"fc" = (
-/obj/effect/turf_decal/steeldecal/steel_decals10{
- dir = 8
- },
-/obj/effect/turf_decal/steeldecal/steel_decals10{
- dir = 1
- },
-/obj/effect/turf_decal/techfloor/corner{
- dir = 1
- },
-/obj/effect/turf_decal/techfloor/corner{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/hallway/fore)
-"fd" = (
-/obj/effect/turf_decal/steeldecal/steel_decals10,
-/obj/effect/turf_decal/steeldecal/steel_decals10{
- dir = 4
- },
-/obj/effect/turf_decal/techfloor/corner,
-/obj/effect/turf_decal/trimline/transparent/lightgrey/line{
- dir = 8
- },
-/obj/machinery/atmospherics/components/trinary/filter/atmos/n2{
- dir = 1;
- piping_layer = 4
- },
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ship/engineering/atmospherics)
-"fe" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/turf/open/floor/mineral/plastitanium,
-/area/ship/security/armory)
-"fl" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/obj/machinery/light/small/directional/east,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/tank_dispenser/oxygen,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/engineering/communications)
-"fm" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 10;
- color = "#808080"
- },
-/obj/machinery/airalarm/directional/west,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 4
- },
-/obj/item/stack/sheet/mineral/sandbags{
- pixel_y = 6;
- pixel_x = -2
- },
-/obj/item/stack/sheet/mineral/sandbags{
- pixel_y = -1;
- pixel_x = 2
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ship/security/armory)
-"fo" = (
-/obj/effect/decal/cleanable/blood/tracks,
-/obj/effect/decal/cleanable/glass,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small/broken/directional/east,
-/obj/machinery/light_switch{
- pixel_x = 21;
- dir = 8;
- pixel_y = 10
- },
-/turf/open/floor/plating/rust,
-/area/ship/maintenance/central)
-"ft" = (
-/obj/item/toy/plush/beeplushie{
- pixel_x = 12;
- pixel_y = 8
- },
-/obj/item/toy/plush/moth{
- pixel_x = -11;
- pixel_y = 6
- },
-/obj/item/toy/beach_ball,
-/obj/effect/turf_decal/weather/sand{
- dir = 5
- },
-/obj/effect/turf_decal/weather/sand{
- dir = 9
- },
-/obj/item/toy/seashell{
- pixel_y = -10;
- pixel_x = 11
- },
-/turf/open/floor/plating,
-/area/ship/hallway/fore)
-"fu" = (
-/obj/structure/grille,
-/obj/structure/window/plasma/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/layer_manifold/visible{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ship/engineering/atmospherics)
-"fv" = (
-/obj/structure/catwalk/over/plated_catwalk,
-/obj/machinery/airalarm/directional/north,
-/obj/machinery/door/firedoor/border_only{
- dir = 4
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ship/hallway/central)
-"fw" = (
-/turf/closed/wall/rust,
-/area/ship/engineering/electrical)
-"fy" = (
-/obj/structure/bed/roller,
-/obj/effect/decal/cleanable/blood/old,
-/obj/machinery/power/apc/auto_name/directional/west,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/plating,
-/area/ship/medical)
-"fz" = (
-/obj/effect/turf_decal/industrial/traffic,
-/obj/effect/turf_decal/industrial/traffic{
- dir = 1
- },
-/turf/open/floor/plasteel/patterned/cargo_one,
-/area/ship/cargo)
-"fB" = (
-/obj/effect/turf_decal/industrial/hatch/yellow,
-/obj/structure/reagent_dispensers/fueltank,
-/obj/structure/railing{
- dir = 2;
- layer = 4.1
- },
-/obj/effect/turf_decal/industrial/warning,
-/turf/open/floor/plating,
-/area/ship/cargo)
-"fC" = (
-/turf/closed/wall/r_wall/syndicate/nodiagonal,
-/area/ship/security/range)
-"fD" = (
-/obj/structure/chair/comfy/grey/directional/south,
-/obj/effect/decal/cleanable/dirt/dust,
-/mob/living/simple_animal/pet/penguin/emperor,
-/turf/open/floor/carpet/nanoweave,
-/area/ship/security)
-"fH" = (
-/turf/closed/wall/r_wall/syndicate/nodiagonal,
-/area/ship/engineering/communications)
-"fL" = (
-/turf/closed/wall/r_wall,
-/area/ship/security/range)
-"fM" = (
-/obj/structure/table/reinforced,
-/obj/item/reagent_containers/glass/bottle/charcoal{
- pixel_x = -8;
- pixel_y = 12
- },
-/obj/item/storage/pill_bottle/epinephrine{
- pixel_x = 10;
- pixel_y = 9
- },
-/obj/item/storage/pill_bottle/mannitol{
- pixel_x = 7;
- pixel_y = 5
- },
-/obj/item/reagent_containers/glass/bottle/epinephrine{
- pixel_x = -9;
- pixel_y = 2
- },
-/obj/item/reagent_containers/glass/bottle/dexalin{
- pixel_x = 2;
- pixel_y = 8
- },
-/obj/item/reagent_containers/glass/bottle/antitoxin{
- pixel_x = -1;
- pixel_y = 4
- },
-/obj/item/reagent_containers/glass/bottle/formaldehyde{
- pixel_x = -2
- },
-/obj/item/storage/pill_bottle/happy{
- pixel_x = 8;
- pixel_y = -2
- },
-/obj/item/reagent_containers/syringe,
-/obj/item/reagent_containers/syringe/contraband{
- pixel_y = 5;
- pixel_x = -4
- },
-/obj/item/roller,
-/obj/item/reagent_containers/food/drinks/beer{
- pixel_x = -4
- },
-/obj/effect/decal/cleanable/cobweb,
-/obj/machinery/light/directional/north,
-/obj/structure/sign/poster/official/moth/epi{
- pixel_x = -32
- },
-/turf/open/floor/plasteel/patterned/cargo_one,
-/area/ship/medical)
-"fN" = (
-/obj/structure/railing{
- dir = 2;
- layer = 4.1
- },
-/obj/structure/chair{
- dir = 1
- },
-/obj/effect/turf_decal/trimline/opaque/red/corner{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/effect/decal/cleanable/robot_debris,
-/turf/open/floor/plasteel/dark,
-/area/ship/security)
-"fP" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/door/airlock/maintenance_hatch,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/door/firedoor/border_only{
- dir = 1
- },
-/obj/structure/barricade/wooden/crude,
-/turf/open/floor/plating,
-/area/ship/maintenance/fore)
-"fQ" = (
-/obj/machinery/door/poddoor/shutters{
- id = "cutter_cargo_shutters";
- name = "Cargo Shutters"
- },
-/obj/structure/cable,
-/obj/machinery/power/shieldwallgen/atmos{
- anchored = 1;
- dir = 4;
- id = "cutter_cargo";
- locked = 1
- },
-/turf/open/floor/plating,
-/area/ship/cargo)
-"fU" = (
-/obj/machinery/door/window/brigdoor/northright{
- dir = 4
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/security/range)
-"fX" = (
-/obj/effect/turf_decal/steeldecal/steel_decals10{
- dir = 1
- },
-/obj/effect/turf_decal/steeldecal/steel_decals10{
- dir = 8
- },
-/obj/effect/turf_decal/techfloor/corner{
- dir = 1
- },
-/obj/effect/turf_decal/trimline/transparent/lightgrey/line{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/components/trinary/mixer/airmix/inverse{
- dir = 8
- },
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ship/engineering/atmospherics)
-"fY" = (
-/obj/structure/girder,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ship/hallway/central)
-"gb" = (
-/obj/effect/turf_decal/techfloor{
- dir = 4
- },
-/obj/effect/turf_decal/trimline/transparent/lightgrey/line{
- dir = 8
- },
-/obj/machinery/airalarm/directional/east,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/yellow/hidden/layer4,
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ship/engineering/atmospherics)
-"gc" = (
-/obj/effect/turf_decal/techfloor,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/light/directional/south,
-/obj/item/radio/intercom/directional/south,
-/obj/machinery/firealarm/directional/south,
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 8
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/bridge)
-"gd" = (
-/obj/structure/table_frame/wood,
-/obj/effect/decal/cleanable/crayon,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/wallframe/light_fixture{
- pixel_y = -14;
- pixel_x = 5
- },
-/obj/structure/closet/crate/secure/loot,
-/obj/item/reagent_containers/glass/bottle/hydrogen{
- pixel_x = -9
- },
-/obj/item/reagent_containers/glass/bottle/carbon,
-/obj/item/reagent_containers/glass/beaker/meta{
- pixel_x = 6
- },
-/obj/item/reagent_containers/glass/bottle/ammonia{
- pixel_y = -5
- },
-/obj/item/reagent_containers/glass/bottle/carbon{
- pixel_x = -6;
- pixel_y = -7
- },
-/obj/item/reagent_containers/glass/bottle/oxygen{
- pixel_x = 6;
- pixel_y = -9
- },
-/obj/structure/sign/warning/explosives/alt{
- pixel_x = 32
- },
-/turf/open/floor/plating,
-/area/ship/maintenance/fore)
-"ge" = (
-/obj/structure/catwalk/over/plated_catwalk,
-/obj/effect/decal/cleanable/greenglow,
-/obj/machinery/vending/snack/random,
-/turf/open/floor/plating,
-/area/ship/hallway/central)
-"gg" = (
-/obj/effect/turf_decal/techfloor{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/radio/intercom/directional/west,
-/obj/machinery/firealarm/directional/west,
-/turf/open/floor/plasteel/dark,
-/area/ship/hallway/fore)
-"gi" = (
-/obj/structure/window/reinforced/spawner/east,
-/obj/structure/table/reinforced,
-/obj/structure/sign/poster/contraband/inteq_gec{
- pixel_y = -32
- },
-/obj/item/paper_bin{
- pixel_x = 2;
- pixel_y = 2
- },
-/obj/item/pen{
- pixel_x = 2;
- pixel_y = 5
- },
-/obj/item/desk_flag/trans{
- pixel_x = -11;
- pixel_y = -3
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/security/range)
-"gu" = (
-/obj/effect/turf_decal/siding/thinplating/dark{
- dir = 4
- },
-/obj/effect/turf_decal/siding/thinplating/dark{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/security)
-"gA" = (
-/obj/structure/salvageable/autolathe,
-/obj/effect/turf_decal/techfloor{
- dir = 1
- },
-/obj/machinery/airalarm/directional/south,
-/turf/open/floor/plasteel/telecomms_floor,
-/area/ship/security/range)
-"gC" = (
-/turf/closed/wall,
-/area/ship/engineering/electrical)
-"gK" = (
-/obj/effect/decal/cleanable/greenglow/filled,
-/obj/effect/decal/cleanable/plasma,
-/obj/structure/sign/poster/contraband/random{
- pixel_y = -32
- },
-/turf/open/floor/plating/airless{
- icon_state = "platingdmg3"
- },
-/area/ship/maintenance/port)
-"gL" = (
-/obj/effect/turf_decal/techfloor{
- dir = 1
- },
-/obj/effect/turf_decal/techfloor,
-/obj/machinery/suit_storage_unit/inherit/industrial,
-/obj/item/tank/jetpack/carbondioxide,
-/obj/item/clothing/suit/space/hardsuit/security/independent/frontier,
-/obj/item/clothing/mask/breath,
-/obj/machinery/light_switch{
- pixel_y = 24
- },
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/security/armory)
-"gP" = (
-/turf/closed/wall/rust,
-/area/ship/security/armory)
-"hl" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/closed/wall/r_wall,
-/area/ship/engineering/atmospherics)
-"hm" = (
-/obj/structure/catwalk/over/plated_catwalk/dark,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
- },
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ship/engineering/incinerator)
-"ho" = (
-/obj/structure/railing{
- dir = 8;
- layer = 4.1
- },
-/obj/effect/turf_decal/techfloor{
- dir = 8
- },
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 10
- },
-/obj/effect/turf_decal/steeldecal/steel_decals3{
- dir = 10;
- pixel_x = 16
- },
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/power/terminal{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/telecomms_floor,
-/area/ship/engineering/electrical)
-"hp" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 1
- },
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/door/airlock/wood/glass{
- name = "Canteen"
- },
-/turf/open/floor/plasteel,
-/area/ship/crew/canteen)
-"hq" = (
-/obj/structure/closet/wall/directional/west{
- name = "Atmospheric locker"
- },
-/obj/item/clothing/suit/hooded/wintercoat/engineering/atmos,
-/obj/item/clothing/suit/fire/atmos,
-/obj/item/clothing/head/hardhat/atmos,
-/obj/item/clothing/mask/gas/atmos,
-/obj/item/clothing/gloves/color/orange,
-/obj/item/analyzer,
-/obj/item/storage/belt/utility/atmostech,
-/obj/item/clothing/glasses/meson/engine/tray,
-/obj/structure/catwalk/over/plated_catwalk/dark,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/ship/engineering/incinerator)
-"ht" = (
-/obj/item/stock_parts/subspace/ansible{
- pixel_x = 10;
- pixel_y = -9
- },
-/obj/effect/decal/cleanable/blood/old,
-/obj/item/stack/cable_coil/cut/yellow,
-/turf/open/floor/plating/airless{
- icon_state = "plating_rust"
- },
-/area/ship/maintenance/port)
-"hw" = (
-/obj/structure/railing{
- dir = 2;
- layer = 4.1
- },
-/obj/effect/decal/cleanable/chem_pile{
- pixel_y = -8;
- pixel_x = -8
- },
-/obj/machinery/sleeper{
- desc = "An enclosed machine used to stabilize and heal patients. Despite the looks, it's just a normal sleeper painted red.";
- dir = 8;
- icon_state = "sleeper_s"
- },
-/obj/effect/decal/cleanable/oil/streak{
- pixel_x = -11
- },
-/obj/item/radio/intercom/directional/east,
-/turf/open/floor/plating/rust,
-/area/ship/medical)
-"hy" = (
-/obj/structure/closet/emcloset/wall/directional/south,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/wrapping,
-/obj/item/kirbyplants/random,
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 1
- },
-/obj/item/seeds/corn{
- pixel_y = -8;
- pixel_x = 5
- },
-/turf/open/floor/plasteel,
-/area/ship/hallway/central)
-"hF" = (
-/obj/structure/chair/stool{
- dir = 4;
- pixel_x = 7;
- pixel_y = 6
- },
-/obj/effect/turf_decal/siding/wood{
- dir = 5
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/wood{
- icon_state = "wood-broken2"
- },
-/area/ship/crew/office)
-"hP" = (
-/obj/effect/turf_decal/steeldecal/steel_decals_central2{
- pixel_y = 2
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/steeldecal/steel_decals7{
- dir = 6
- },
-/obj/effect/turf_decal/steeldecal/steel_decals7{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/bridge)
-"hS" = (
-/obj/effect/decal/fakelattice{
- color = "#808080"
- },
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/obj/effect/decal/cleanable/oil/streak,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/elevatorshaft{
- color = "#808080"
- },
-/area/ship/engineering/atmospherics)
-"hW" = (
-/turf/closed/wall/r_wall/rust,
-/area/ship/crew/office)
-"ic" = (
-/obj/effect/turf_decal/corner_techfloor_gray/diagonal{
- dir = 4;
- layer = 2.36
- },
-/obj/item/weldingtool{
- pixel_x = -5;
- pixel_y = -6
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/purple/hidden,
-/turf/open/floor/plating/rust,
-/area/ship/engineering/electrical)
-"im" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 2;
- color = "#808080"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ship/security/armory)
-"io" = (
-/obj/structure/window/reinforced/spawner/north,
-/obj/structure/toilet{
- dir = 4;
- pixel_x = -2;
- pixel_y = 5
- },
-/turf/open/floor/plating/catwalk_floor,
-/area/ship/security/armory)
-"iw" = (
-/obj/effect/turf_decal/spline/fancy/wood{
- dir = 9
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/glass{
- pixel_x = 9;
- pixel_y = -11
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/carpet/red,
-/area/ship/crew/canteen)
-"iA" = (
-/obj/effect/turf_decal/techfloor{
- dir = 8
- },
-/obj/effect/turf_decal/trimline/transparent/lightgrey/line{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/door/firedoor/border_only{
- dir = 1
- },
-/obj/structure/extinguisher_cabinet/directional/west,
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ship/engineering/atmospherics)
-"iB" = (
-/obj/effect/decal/cleanable/blood{
- pixel_x = 16;
- pixel_y = -1
- },
-/obj/structure/catwalk/over/plated_catwalk,
-/obj/effect/mob_spawn/human/botanist,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/ship/hallway/central)
-"iC" = (
-/turf/closed/wall/rust,
-/area/ship/engineering/communications)
-"iG" = (
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/ship/maintenance/central)
-"iJ" = (
-/obj/machinery/door/window/brigdoor/southright{
- dir = 1
- },
-/obj/effect/decal/cleanable/vomit,
-/turf/open/floor/plating/rust,
-/area/ship/security/armory)
-"iM" = (
-/obj/structure/railing{
- dir = 2;
- layer = 4.1
- },
-/obj/effect/turf_decal/borderfloorblack,
-/obj/effect/turf_decal/spline/fancy/opaque/black,
-/obj/effect/turf_decal/techfloor{
- dir = 1
- },
-/obj/item/radio/intercom/wideband/directional/north,
-/turf/open/floor/plasteel/tech,
-/area/ship/bridge)
-"iN" = (
-/obj/structure/railing{
- dir = 2;
- layer = 4.1
- },
-/obj/structure/rack,
-/obj/item/storage/firstaid/ancient{
- pixel_x = 4
- },
-/obj/item/storage/firstaid/medical{
- pixel_x = -3;
- pixel_y = -3
- },
-/obj/item/hypospray/mkii/CMO/combat{
- pixel_x = -10
- },
-/obj/structure/extinguisher_cabinet/directional/north,
-/obj/item/radio/intercom/directional/west,
-/turf/open/floor/plasteel/patterned/cargo_one,
-/area/ship/medical)
-"iT" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 6
- },
-/obj/machinery/firealarm/directional/south,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood{
- icon_state = "wood-broken5"
- },
-/area/ship/crew/office)
-"iY" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/plating{
- icon_state = "foam_plating"
- },
-/area/ship/hallway/central)
-"je" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
-/area/ship/hallway/central)
-"jf" = (
-/obj/machinery/button/door{
- id = "cutter_bridge_lockdown";
- name = "Bridge Lockdown";
- pixel_x = -8;
- pixel_y = -22;
- dir = 1;
- req_access_txt = "20"
- },
-/turf/open/floor/plasteel/stairs{
- icon = 'icons/obj/stairs.dmi';
- dir = 4
- },
-/area/ship/crew/office)
-"jg" = (
-/obj/structure/table_frame/wood,
-/obj/effect/decal/cleanable/blood/old,
-/obj/item/kitchen/knife,
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/plating/rust,
-/area/ship/maintenance/fore)
-"jh" = (
-/obj/structure/chair{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/ship/security)
-"jk" = (
-/obj/machinery/door/window/brigdoor/southleft{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/green/visible,
-/obj/machinery/door/poddoor/shutters/preopen{
- name = "Lockdown Shutters";
- id = "cutter_sm_lockdown"
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/engine)
-"jl" = (
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/ship/security)
-"jn" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/turf/open/floor/plasteel,
-/area/ship/hallway/central)
-"jq" = (
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/glass{
- pixel_x = -7;
- pixel_y = -16
- },
-/obj/effect/turf_decal/steeldecal/steel_decals10,
-/obj/effect/turf_decal/steeldecal/steel_decals10{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/ship/engineering/communications)
-"jt" = (
-/obj/structure/table/reinforced,
-/obj/effect/turf_decal/techfloor{
- dir = 4
- },
-/obj/item/kitchen/knife/combat/survival{
- pixel_x = -1
- },
-/obj/item/kitchen/knife/combat/survival{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/kitchen/knife/combat/survival{
- pixel_x = -3;
- pixel_y = 8
- },
-/obj/structure/sign/poster/contraband/punch_shit{
- pixel_x = 32
- },
-/obj/item/toy/plush/goatplushie{
- pixel_x = 8;
- pixel_y = -9
- },
-/obj/item/trash/can{
- pixel_y = -10
- },
-/obj/item/trash/boritos{
- pixel_y = -17
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/dark,
-/area/ship/security/armory)
-"jv" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/oil,
-/obj/effect/spawner/lootdrop/maintenance/three,
-/turf/open/floor/plating/airless{
- icon_state = "plating_rust"
- },
-/area/ship/maintenance/port)
-"jA" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{
- dir = 4
- },
-/turf/open/floor/engine/air,
-/area/ship/engineering/atmospherics)
-"jB" = (
-/obj/item/flashlight/lamp{
- pixel_x = -4;
- pixel_y = 7
- },
-/obj/item/storage/fancy/cigarettes/derringer{
- pixel_x = 9;
- pixel_y = 2
- },
-/obj/item/lighter/greyscale{
- pixel_x = 4
- },
-/obj/structure/table/reinforced{
- color = "#c1b6a5"
- },
-/obj/machinery/airalarm/directional/west,
-/obj/item/trash/chips{
- pixel_x = -5;
- pixel_y = 2
- },
-/obj/machinery/power/apc/auto_name/directional/north,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/bridge)
-"jC" = (
-/obj/effect/turf_decal/techfloor{
- dir = 9
- },
-/obj/machinery/button/door{
- id = "cutter_sm_lockdown";
- name = "Lockdown Shutters";
- pixel_y = 23
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/engine)
-"jF" = (
-/obj/effect/turf_decal/techfloor{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 4
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/engine)
-"jG" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 8
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/door/airlock/freezer{
- name = "Kitchen";
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/crew/canteen/kitchen)
-"jI" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 1
- },
-/obj/item/reagent_containers/food/condiment/flour{
- pixel_x = 8;
- pixel_y = 5
- },
-/obj/item/reagent_containers/food/condiment/flour{
- pixel_x = -2;
- pixel_y = -4
- },
-/turf/open/floor/concrete/tiles,
-/area/ship/crew/canteen/kitchen)
-"jO" = (
-/obj/structure/closet/crate/secure/loot,
-/obj/effect/decal/cleanable/glass{
- pixel_x = -7;
- pixel_y = -16
- },
-/obj/structure/tubes,
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/obj/item/reagent_containers/glass/bottle/nutrient/ez{
- pixel_y = 1;
- pixel_x = -2
- },
-/obj/item/reagent_containers/glass/bottle/nutrient/ez{
- pixel_y = -3;
- pixel_x = -6
- },
-/obj/item/reagent_containers/glass/bottle/nutrient/l4z{
- pixel_x = -11;
- pixel_y = -4
- },
-/obj/item/reagent_containers/glass/bottle/mutagen{
- pixel_x = 4;
- pixel_y = -3
- },
-/obj/item/reagent_containers/glass/bottle/nutrient/rh{
- pixel_y = -7
- },
-/obj/item/reagent_scanner{
- pixel_y = 5;
- pixel_x = 4
- },
-/obj/item/reagent_containers/glass/bottle/facid{
- pixel_y = -8;
- pixel_x = -5
- },
-/turf/open/floor/plating,
-/area/ship/maintenance/fore)
-"jW" = (
-/turf/closed/wall/r_wall/rust,
-/area/ship/security/armory)
-"jY" = (
-/turf/closed/wall/rust,
-/area/ship/security)
-"jZ" = (
-/obj/effect/decal/fakelattice{
- icon_state = "lattice-8"
- },
-/turf/open/floor/plating/airless{
- icon_state = "platingdmg1"
- },
-/area/ship/maintenance/port)
-"kb" = (
-/obj/effect/turf_decal/techfloor{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/closet/crate/engineering,
-/obj/item/stack/sheet/metal/fifty{
- pixel_y = 2
- },
-/obj/item/stack/sheet/metal/fifty{
- pixel_y = 6;
- pixel_x = 6
- },
-/obj/item/stack/sheet/mineral/plastitanium/fifty{
- pixel_x = -3
- },
-/obj/item/stack/sheet/mineral/plastitanium/twenty{
- pixel_y = 2
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/electrical)
-"kc" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 9;
- color = "#808080"
- },
-/obj/machinery/light/directional/west,
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 4
- },
-/obj/machinery/button/door{
- id = "cutter_armoury";
- name = "Armoury Lockdown";
- pixel_x = -23;
- pixel_y = 6;
- dir = 4;
- req_access_txt = "3"
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ship/security/armory)
-"kf" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/spawner/lootdrop/salvage_manipulator,
-/turf/open/floor/plating/airless,
-/area/ship/maintenance/port)
-"kk" = (
-/turf/closed/wall,
-/area/ship/cargo)
-"kn" = (
-/obj/effect/turf_decal/techfloor{
- dir = 1
- },
-/obj/effect/turf_decal/techfloor,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
- },
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/crew)
-"ko" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/siding/thinplating/dark{
- dir = 8
- },
-/obj/effect/turf_decal/siding/thinplating/dark{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/security)
-"kr" = (
-/obj/effect/turf_decal/techfloor{
- dir = 1
- },
-/obj/effect/turf_decal/techfloor,
-/obj/machinery/suit_storage_unit/inherit/industrial,
-/obj/structure/sign/poster/contraband/bulldog{
- pixel_y = -32
- },
-/obj/item/tank/jetpack/carbondioxide,
-/obj/item/clothing/suit/space/hardsuit/security/independent/frontier,
-/obj/item/clothing/mask/breath,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/security/armory)
-"kt" = (
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 1
- },
-/obj/structure/catwalk/over/plated_catwalk/dark,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 8
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/door/airlock/atmos{
- name = "Atmospherics Office";
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/purple/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ship/engineering/incinerator)
-"ku" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 5
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/concrete/tiles,
-/area/ship/crew)
-"kx" = (
-/obj/machinery/cryopod{
- dir = 8
- },
-/obj/effect/turf_decal/techfloor{
- dir = 1
- },
-/obj/item/radio/intercom/directional/south,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 8
- },
-/turf/open/floor/plasteel/telecomms_floor,
-/area/ship/crew)
-"ky" = (
-/turf/closed/wall/r_wall/syndicate/nodiagonal,
-/area/ship/security)
-"kC" = (
-/obj/effect/turf_decal/techfloor/corner{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/sign/poster/contraband/eoehoma{
- pixel_y = 32;
- pixel_x = -32
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/hallway/fore)
-"kD" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/on{
- dir = 4
- },
-/turf/open/floor/engine/air,
-/area/ship/engineering/atmospherics)
-"kG" = (
-/obj/structure/catwalk/over/plated_catwalk/dark,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/airalarm/directional/north,
-/obj/machinery/atmospherics/pipe/simple/brown/hidden{
- dir = 4
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
-/area/ship/engineering/incinerator)
-"kK" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
- },
-/turf/open/floor/plating/rust,
-/area/ship/hallway/central)
-"kM" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 6
- },
-/obj/structure/closet/secure_closet/personal/cabinet,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/directional/south,
-/obj/item/storage/backpack/duffelbag{
- pixel_y = -3
- },
-/obj/item/storage/backpack/duffelbag{
- pixel_y = -1;
- pixel_x = 4
- },
-/obj/item/storage/backpack,
-/obj/item/storage/backpack,
-/turf/open/floor/wood/walnut{
- icon_state = "wood-broken7"
- },
-/area/ship/crew)
-"kO" = (
-/obj/structure/chair{
- dir = 1
- },
-/obj/effect/turf_decal/trimline/opaque/red/line{
- dir = 4
- },
-/obj/effect/decal/cleanable/blood/old,
-/obj/machinery/light/directional/east,
-/obj/item/radio/intercom/directional/east,
-/obj/machinery/firealarm/directional/east,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/security)
-"kP" = (
-/obj/machinery/atmospherics/pipe/layer_manifold{
- dir = 8
- },
-/turf/closed/wall/r_wall/syndicate/nodiagonal,
-/area/ship/maintenance/fore)
-"kS" = (
-/obj/structure/window/plasma/reinforced/spawner/west,
-/obj/machinery/power/rad_collector/anchored,
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/engine)
-"kT" = (
-/obj/structure/window/plasma/reinforced/spawner/east,
-/obj/machinery/power/rad_collector/anchored,
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/engine)
-"kZ" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/obj/machinery/advanced_airlock_controller{
- pixel_y = 26
- },
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/engineering/communications)
-"ld" = (
-/obj/machinery/power/shuttle/engine/fueled/plasma{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ship/engineering)
-"lf" = (
-/obj/structure/table/wood/poker,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/item/storage/pill_bottle/dice{
- pixel_x = 6;
- pixel_y = 6
- },
-/obj/item/toy/cards/deck,
-/obj/effect/spawner/lootdrop/gambling{
- pixel_x = -5;
- pixel_y = 4
- },
-/turf/open/floor/concrete/tiles,
-/area/ship/crew)
-"lm" = (
-/obj/effect/turf_decal/corner/opaque/yellow/half{
- dir = 4
- },
-/obj/machinery/power/apc/auto_name/directional/north,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/machinery/light_switch{
- pixel_x = -12;
- pixel_y = 23;
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ship/cargo)
-"ln" = (
-/turf/closed/wall,
-/area/ship/maintenance/fore)
-"lo" = (
-/obj/effect/turf_decal/atmos/plasma,
-/turf/open/floor/engine/plasma,
-/area/ship/engineering/incinerator)
-"lp" = (
-/obj/structure/window/plasma/reinforced/spawner/north,
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 6
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- name = "Lockdown Shutters";
- id = "cutter_sm_lockdown"
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/engine)
-"lq" = (
-/obj/machinery/power/smes/engineering,
-/obj/structure/railing{
- dir = 4;
- layer = 4.1
- },
-/obj/effect/turf_decal/techfloor{
- dir = 4
- },
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plasteel/telecomms_floor,
-/area/ship/engineering/electrical)
-"lu" = (
-/obj/machinery/door/airlock/grunge{
- name = "Bathroom"
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/ship/engineering/communications)
-"lz" = (
-/turf/closed/wall/r_wall/rust,
-/area/ship/crew)
-"lA" = (
-/turf/closed/wall/r_wall/rust,
-/area/ship/engineering/incinerator)
-"lH" = (
-/obj/machinery/smartfridge/organ,
-/turf/open/floor/plasteel/patterned/cargo_one,
-/area/ship/medical)
-"lJ" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/security/range)
-"lN" = (
-/obj/structure/salvageable/computer{
- dir = 4;
- pixel_x = -3
- },
-/obj/effect/turf_decal/techfloor,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/light_switch{
- pixel_y = 24
- },
-/turf/open/floor/circuit/green/off,
-/area/ship/security/range)
-"lO" = (
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/structure/closet/crate/engineering,
-/obj/item/stack/conveyor/thirty{
- pixel_x = -2;
- pixel_y = 6
- },
-/obj/item/rcl/pre_loaded,
-/obj/item/stack/cable_coil,
-/obj/item/stack/cable_coil,
-/obj/structure/sign/poster/contraband/ambrosia_vulgaris{
- pixel_y = 32
- },
-/turf/open/floor/plasteel/patterned/cargo_one,
-/area/ship/cargo)
-"lR" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood/tracks,
-/obj/effect/decal/cleanable/blood/old{
- icon_state = "gib6-old";
- pixel_x = 8
- },
-/obj/machinery/vending/wallmed{
- pixel_x = 32
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/plating,
-/area/ship/medical)
-"lT" = (
-/obj/machinery/door/poddoor{
- id = "cutter_disposals_hatch";
- dir = 4
- },
-/turf/open/floor/engine/hull/reinforced/interior,
-/area/ship/engineering/incinerator)
-"lV" = (
-/obj/machinery/holopad/emergency/engineering,
-/obj/effect/turf_decal/box,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/purple/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/electrical)
-"mh" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "6-9"
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/purple/hidden,
-/turf/open/floor/plasteel/stairs{
- dir = 1
- },
-/area/ship/engineering/electrical)
-"mi" = (
-/obj/structure/closet/wall/red/directional/west{
- name = "armory locker";
- req_one_access_txt = "1"
- },
-/obj/effect/turf_decal/techfloor{
- dir = 8
- },
-/obj/item/clothing/suit/armor/vest/bulletproof/frontier,
-/obj/item/clothing/suit/armor/vest/bulletproof/frontier,
-/obj/item/clothing/suit/armor/vest/bulletproof/frontier,
-/obj/item/clothing/suit/armor/vest/bulletproof/frontier,
-/obj/item/clothing/suit/armor/vest/bulletproof/frontier,
-/obj/item/clothing/head/helmet/bulletproof/x11/frontier,
-/obj/item/clothing/head/helmet/bulletproof/x11/frontier,
-/obj/item/clothing/head/helmet/bulletproof/x11/frontier,
-/obj/item/clothing/head/helmet/bulletproof/x11/frontier,
-/obj/item/clothing/head/helmet/bulletproof/x11/frontier,
-/turf/open/floor/plasteel/dark,
-/area/ship/security/armory)
-"mn" = (
-/obj/structure/railing{
- dir = 8;
- layer = 4.1
- },
-/obj/machinery/computer/security{
- layer = 3.0;
- pixel_y = 4;
- pixel_x = 4
- },
-/obj/effect/turf_decal/techfloor,
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 8
- },
-/turf/open/floor/plasteel/telecomms_floor,
-/area/ship/bridge)
-"mq" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/plasteel,
-/area/ship/hallway/central)
-"mw" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 8
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/door/airlock/hatch{
- name = "Cannon Bay";
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/security/range)
-"mz" = (
-/obj/effect/turf_decal/techfloor,
-/obj/structure/table/reinforced{
- color = "#c1b6a5"
- },
-/obj/item/paper_bin{
- pixel_x = -5
- },
-/obj/item/pen{
- pixel_x = -5;
- pixel_y = 1
- },
-/obj/machinery/airalarm/directional/south,
-/obj/item/reagent_containers/food/drinks/mug{
- pixel_x = 9;
- pixel_y = 8
- },
-/obj/item/reagent_containers/food/drinks/flask{
- pixel_x = 5
- },
-/obj/machinery/light/directional/south,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/electrical)
-"mE" = (
-/obj/structure/cable{
- icon_state = "0-9"
- },
-/obj/machinery/power/shieldwallgen/atmos{
- anchored = 1;
- dir = 8;
- id = "cutter_cargo";
- locked = 1
- },
-/obj/docking_port/mobile{
- can_move_docking_ports = 1;
- launch_status = 0;
- port_direction = 4;
- preferred_direction = 4
- },
-/obj/machinery/door/poddoor/shutters{
- id = "cutter_cargo_shutters";
- name = "Cargo Shutters"
- },
-/turf/open/floor/plating,
-/area/ship/cargo)
-"mI" = (
-/turf/closed/wall/r_wall/syndicate,
-/area/ship/cargo)
-"mJ" = (
-/obj/structure/tank_dispenser/oxygen,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/sign/warning/vacuum/external{
- pixel_y = -32
- },
-/obj/machinery/light/directional/south,
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/communications)
-"mL" = (
-/obj/machinery/power/shuttle/engine/fueled/plasma{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ship/engineering/incinerator)
-"mR" = (
-/obj/effect/turf_decal/techfloor{
- dir = 9
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/hallway/fore)
-"mS" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/ship/hallway/central)
-"mU" = (
-/obj/structure/girder,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/ship/hallway/central)
-"mW" = (
-/obj/structure/table/reinforced{
- color = "#c1b6a5"
- },
-/obj/machinery/button/door{
- id = "cutter_bridge_window";
- name = "Bridge Window Shutters";
- pixel_x = 7;
- pixel_y = 6;
- dir = 1
- },
-/obj/machinery/button/door{
- id = "cutter_windows_general";
- name = "Window Shutters";
- pixel_x = 7;
- pixel_y = -3;
- dir = 1
- },
-/obj/machinery/button/door{
- id = "cutter_bridge_lockdown";
- name = "Bridge Lockdown";
- pixel_x = -7;
- pixel_y = 6;
- dir = 1;
- req_access_txt = "20"
- },
-/obj/machinery/button/door{
- id = "cutter_general_lockdown";
- name = "Ship Lockdown";
- pixel_x = -7;
- pixel_y = -3;
- dir = 1;
- req_access_txt = "20"
- },
-/obj/machinery/light/small/directional/south,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/bridge)
-"mY" = (
-/obj/effect/turf_decal/techfloor{
- dir = 8
- },
-/obj/effect/turf_decal/trimline/transparent/lightgrey/line{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/structure/girder/displaced,
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ship/engineering/atmospherics)
-"na" = (
-/obj/machinery/atmospherics/pipe/manifold/orange/visible{
- dir = 4
- },
-/obj/item/tank/internals/plasma/full,
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/engine)
-"ne" = (
-/turf/closed/wall,
-/area/ship/maintenance/central)
-"nf" = (
-/obj/machinery/holopad/emergency/command,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/box,
-/turf/open/floor/plasteel/tech,
-/area/ship/bridge)
-"ni" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood{
- icon_state = "wood-broken3"
- },
-/area/ship/security)
-"nn" = (
-/obj/structure/sign/poster/ripped{
- pixel_x = -32
- },
-/obj/structure/fluff/hedge,
-/obj/effect/turf_decal/siding/wood/end{
- dir = 1
- },
-/obj/machinery/light/small/directional/west,
-/obj/machinery/power/apc/auto_name/directional/north,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/wood,
-/area/ship/crew/office)
-"np" = (
-/obj/effect/decal/fakelattice{
- color = "#808080"
- },
-/obj/effect/decal/cleanable/plasma,
-/obj/effect/decal/cleanable/robot_debris{
- color = "#808080"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/greenglow{
- color = "#808080"
- },
-/turf/open/floor/plasteel/elevatorshaft{
- color = "#808080"
- },
-/area/ship/engineering/atmospherics)
-"nu" = (
-/obj/effect/turf_decal/siding/wood{
- 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/wood/walnut{
- icon_state = "wood-broken"
- },
-/area/ship/crew)
-"nw" = (
-/obj/structure/table/survival_pod,
-/obj/item/pda/chemist,
-/obj/item/paper/fluff/jobs/toxins/chemical_info{
- pixel_y = -3;
- pixel_x = 7
- },
-/obj/machinery/reagentgrinder{
- pixel_y = 9
- },
-/obj/structure/sign/warning/chemdiamond{
- pixel_x = -32
- },
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/ship/maintenance/fore)
-"nx" = (
-/obj/effect/turf_decal/techfloor,
-/obj/structure/closet/wall/directional/south{
- icon_door = "yellow_wall";
- name = "engineering closet"
- },
-/obj/item/clothing/suit/toggle/industrial,
-/obj/item/clothing/under/utility,
-/obj/item/clothing/under/utility/skirt,
-/obj/item/clothing/suit/hooded/wintercoat,
-/obj/item/clothing/shoes/workboots{
- pixel_y = -7
- },
-/obj/item/clothing/gloves/color/yellow,
-/obj/effect/turf_decal/steeldecal/steel_decals1{
- dir = 10
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/item/storage/belt/utility/full/engi,
-/obj/item/clothing/glasses/meson{
- pixel_y = -6
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 1
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/electrical)
-"nA" = (
-/obj/effect/turf_decal/techfloor,
-/obj/effect/turf_decal/industrial/hatch/red,
-/obj/structure/closet/firecloset,
-/obj/structure/sign/poster/official/moth/hardhats{
- pixel_y = -32
- },
-/obj/machinery/power/apc/auto_name/directional/west,
-/obj/structure/cable,
-/obj/machinery/light_switch{
- dir = 4;
- pixel_x = -20;
- pixel_y = 12
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/electrical)
-"nB" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/obj/machinery/light/directional/south,
-/obj/machinery/mineral/ore_redemption{
- dir = 8;
- output_dir = 8;
- input_dir = 8
- },
-/obj/structure/grille/broken,
-/turf/open/floor/plasteel/patterned,
-/area/ship/cargo)
-"nD" = (
-/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium,
-/obj/machinery/door/poddoor{
- id = "cutter_windows_general"
- },
-/turf/open/floor/plating,
-/area/ship/engineering/incinerator)
-"nI" = (
-/turf/closed/wall/r_wall/syndicate,
-/area/ship/engineering)
-"nJ" = (
-/obj/effect/turf_decal/siding/wood,
-/obj/machinery/light/directional/south,
-/turf/open/floor/carpet/green,
-/area/ship/crew/office)
-"nL" = (
-/obj/effect/turf_decal/industrial/warning,
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/obj/machinery/light/directional/east,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/security/armory)
-"nM" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 8
- },
-/obj/effect/turf_decal/siding/wood{
- dir = 4
- },
-/obj/structure/chair,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/airalarm/directional/west,
-/turf/open/floor/wood,
-/area/ship/crew/canteen)
-"nO" = (
-/obj/structure/catwalk/over/plated_catwalk,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/purple/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/plating/rust,
-/area/ship/engineering/atmospherics)
-"nP" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 1;
- color = "#808080"
- },
-/obj/item/kitchen/knife/combat{
- pixel_x = 9;
- pixel_y = -9
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ship/security/armory)
-"nX" = (
-/obj/effect/turf_decal/techfloor{
- dir = 4
- },
-/obj/structure/closet/wall/red/directional/south{
- name = "Firearm Locker"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/steeldecal/steel_decals_central2{
- dir = 4;
- pixel_x = -1
- },
-/obj/item/gun/ballistic/derringer{
- pixel_y = -4;
- pixel_x = 3
- },
-/obj/item/gun/ballistic/rifle/polymer{
- pixel_y = -8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/bridge)
-"nZ" = (
-/obj/structure/sign/poster/official/here_for_your_safety{
- pixel_y = -32
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/plasteel/stairs{
- icon = 'icons/obj/stairs.dmi';
- dir = 8
- },
-/area/ship/bridge)
-"oa" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/ship/maintenance/central)
-"oh" = (
-/obj/structure/railing{
- dir = 2;
- layer = 4.1
- },
-/obj/effect/turf_decal/spline/fancy/opaque/black,
-/obj/machinery/light/directional/north,
-/turf/open/floor/plasteel/stairs{
- icon = 'icons/obj/stairs.dmi';
- dir = 8
- },
-/area/ship/bridge)
-"oj" = (
-/obj/machinery/door/airlock/atmos/glass,
-/obj/machinery/door/poddoor/shutters/preopen{
- name = "Lockdown Shutters";
- id = "cutter_sm_lockdown"
- },
-/turf/open/floor/engine,
-/area/ship/engineering/engine)
-"ok" = (
-/obj/effect/turf_decal/techfloor{
- dir = 4
- },
-/obj/effect/turf_decal/trimline/transparent/lightgrey/line{
- dir = 8
- },
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ship/engineering/atmospherics)
-"oq" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/plastic{
- pixel_x = 12;
- pixel_y = 7
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/ship/maintenance/fore)
-"oy" = (
-/obj/machinery/door/airlock/engineering/glass{
- req_access_txt = "10";
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 8
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/purple/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering)
-"oA" = (
-/obj/effect/turf_decal/techfloor{
- dir = 6
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/power/emitter{
- dir = 1
- },
-/obj/structure/railing{
- dir = 4;
- layer = 4.1
- },
-/obj/effect/turf_decal/industrial/hatch/yellow,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/engine)
-"oE" = (
-/obj/effect/turf_decal/techfloor{
- dir = 8
- },
-/obj/effect/turf_decal/industrial/loading{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/purple/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/incinerator)
-"oM" = (
-/obj/structure/table/reinforced{
- color = "#c1b6a5"
- },
-/obj/item/book/manual/wiki/hacking{
- pixel_x = 5;
- pixel_y = 4
- },
-/obj/item/reagent_containers/food/drinks/soda_cans/efuel{
- pixel_x = -7;
- pixel_y = 3
- },
-/obj/machinery/airalarm/directional/south,
-/turf/open/floor/plating/rust,
-/area/ship/engineering/communications)
-"oN" = (
-/obj/structure/railing{
- dir = 2;
- layer = 4.1
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 1
- },
-/turf/open/floor/plasteel/patterned,
-/area/ship/cargo)
-"oO" = (
-/obj/structure/sign/poster/contraband/energy_swords{
- pixel_x = 32;
- pixel_y = -32
- },
-/obj/structure/catwalk/over,
-/turf/open/floor/plating{
- icon_state = "foam_plating"
- },
-/area/ship/hallway/central)
-"oS" = (
-/obj/structure/railing{
- dir = 8;
- layer = 4.1
- },
-/obj/effect/turf_decal/borderfloorblack{
- dir = 8
- },
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 8
- },
-/obj/effect/turf_decal/steeldecal/steel_decals10{
- dir = 5
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/bridge)
-"oT" = (
-/obj/effect/turf_decal/spline/fancy/opaque/black,
-/obj/machinery/light/directional/north,
-/turf/open/floor/carpet/nanoweave,
-/area/ship/security)
-"oU" = (
-/obj/effect/turf_decal/corner_techfloor_grid{
- dir = 6
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/curtain/bounty,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/hallway/fore)
-"oX" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 8
- },
-/obj/effect/turf_decal/siding/wood{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/ship/crew/canteen)
-"oY" = (
-/turf/closed/wall/r_wall,
-/area/ship/engineering/atmospherics)
-"pc" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/obj/structure/catwalk/over/plated_catwalk/dark,
-/obj/structure/sign/poster/official/moth/piping{
- pixel_y = -32
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/purple/hidden{
- dir = 8
- },
-/turf/open/floor/plating{
- icon_state = "foam_plating"
- },
-/area/ship/engineering/incinerator)
-"pd" = (
-/turf/open/floor/engine/air,
-/area/ship/engineering/atmospherics)
-"ph" = (
-/obj/effect/decal/fakelattice{
- color = "#808080"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/directional/east,
-/turf/open/floor/plasteel/elevatorshaft{
- color = "#808080"
- },
-/area/ship/engineering/atmospherics)
-"pj" = (
-/obj/structure/catwalk/over/plated_catwalk,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/plating{
- icon_state = "foam_plating"
- },
-/area/ship/hallway/central)
-"pn" = (
-/obj/structure/bed,
-/obj/structure/curtain/cloth/grey,
-/obj/item/bedsheet/dorms,
-/obj/effect/turf_decal/siding/wood{
- dir = 6
- },
-/obj/machinery/light/directional/east,
-/turf/open/floor/wood/walnut,
-/area/ship/crew)
-"po" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/glass,
-/obj/structure/frame/machine,
-/obj/effect/decal/cleanable/xenoblood,
-/obj/effect/turf_decal/industrial/radiation{
- dir = 5
- },
-/obj/structure/sign/poster/official/safety_eye_protection{
- pixel_x = -32
- },
-/turf/open/floor/engine/hull/reinforced/interior,
-/area/ship/maintenance/fore)
-"pA" = (
-/obj/structure/window/plasma/reinforced/spawner/east,
-/obj/machinery/power/rad_collector/anchored,
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/engine)
-"pB" = (
-/obj/structure/table/reinforced,
-/obj/item/reagent_containers/food/condiment/soysauce{
- pixel_x = -6;
- pixel_y = 7
- },
-/obj/item/reagent_containers/food/condiment/saltshaker{
- pixel_y = 3;
- pixel_x = -4
- },
-/obj/item/reagent_containers/food/condiment/peppermill{
- pixel_x = -1
- },
-/obj/item/table_bell{
- pixel_x = 4;
- pixel_y = 8
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/plating,
-/area/ship/crew/canteen/kitchen)
-"pC" = (
-/obj/effect/turf_decal/steeldecal/steel_decals6,
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/atmospherics)
-"pD" = (
-/obj/item/stock_parts/subspace/ansible{
- pixel_x = 4;
- pixel_y = 7
- },
-/obj/item/stock_parts/cell/high{
- pixel_y = -4
- },
-/obj/machinery/light/small/broken/directional/south,
-/turf/open/floor/plating/airless{
- icon_state = "panelscorched"
- },
-/area/ship/maintenance/port)
-"pF" = (
-/obj/effect/turf_decal/corner_techfloor_grid{
- dir = 5
- },
-/obj/effect/turf_decal/techfloor/corner{
- dir = 4
- },
-/obj/structure/fermenting_barrel{
- pixel_x = -2;
- pixel_y = 9
- },
-/obj/structure/fermenting_barrel{
- pixel_x = 9;
- pixel_y = 2
- },
-/obj/item/reagent_containers/glass/bucket/wooden{
- pixel_y = -4;
- pixel_x = -1
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/hallway/fore)
-"pM" = (
-/turf/closed/wall,
-/area/ship/security)
-"pO" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 1
- },
-/obj/structure/window/reinforced/spawner/west,
-/obj/item/reagent_containers/food/condiment/flour{
- pixel_x = 12;
- pixel_y = 5
- },
-/obj/item/reagent_containers/food/condiment/rice{
- pixel_x = -6;
- pixel_y = 8
- },
-/obj/item/reagent_containers/food/condiment/sugar,
-/obj/item/reagent_containers/food/condiment/flour{
- pixel_x = 8;
- pixel_y = -2
- },
-/turf/open/floor/concrete/slab_3,
-/area/ship/crew/canteen/kitchen)
-"pQ" = (
-/obj/machinery/smartfridge/disks,
-/obj/structure/table/glass,
-/obj/effect/turf_decal/siding/wood{
- dir = 8
- },
-/turf/open/floor/concrete/tiles,
-/area/ship/crew/canteen/kitchen)
-"pR" = (
-/obj/effect/turf_decal/number/zero,
-/turf/closed/wall/r_wall/syndicate/nodiagonal,
-/area/ship/security/armory)
-"pT" = (
-/obj/structure/flora/rock/pile,
-/obj/structure/flora/junglebush/c,
-/mob/living/simple_animal/chicken,
-/turf/open/floor/grass,
-/area/ship/maintenance/central)
-"pU" = (
-/turf/closed/wall/r_wall/rust,
-/area/ship/maintenance/fore)
-"pZ" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/high_volume{
- dir = 8
- },
-/turf/open/floor/engine,
-/area/ship/engineering/engine)
-"qf" = (
-/obj/effect/decal/fakelattice{
- icon_state = "lattice-2"
- },
-/turf/open/floor/plating/airless,
-/area/ship/maintenance/port)
-"qi" = (
-/obj/structure/catwalk/over/plated_catwalk,
-/obj/machinery/light_switch{
- dir = 1;
- pixel_y = -20
- },
-/turf/open/floor/plating,
-/area/ship/hallway/central)
-"qk" = (
-/turf/closed/wall/r_wall/syndicate,
-/area/ship/maintenance/fore)
-"qp" = (
-/obj/structure/closet/emcloset/anchored,
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/obj/item/reagent_containers/food/drinks/bottle/pruno,
-/obj/structure/extinguisher_cabinet/directional/east,
-/turf/open/floor/plasteel/dark,
-/area/ship/hallway/fore)
-"qr" = (
-/obj/structure/closet/emcloset/wall/directional/north,
-/obj/item/seeds/berry{
- pixel_x = -8;
- pixel_y = 6
- },
-/turf/open/floor/plating{
- icon_state = "foam_plating"
- },
-/area/ship/hallway/central)
-"qv" = (
-/obj/effect/turf_decal/techfloor{
- dir = 1
- },
-/obj/effect/turf_decal/techfloor/hole{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/security/armory)
-"qw" = (
-/obj/structure/catwalk/over/plated_catwalk,
-/obj/structure/sign/departments/botany{
- pixel_x = 32
- },
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/ship/hallway/central)
-"qG" = (
-/obj/effect/turf_decal/techfloor{
- dir = 9
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/item/card/emag/limited{
- pixel_x = 1;
- pixel_y = -4
- },
-/obj/structure/closet/wall/blue/directional/west{
- name = "Component Storage"
- },
-/obj/item/stack/cable_coil/blue,
-/obj/item/stack/cable_coil/orange{
- pixel_y = -6;
- pixel_x = 5
- },
-/obj/item/stock_parts/manipulator,
-/obj/item/stock_parts/manipulator{
- pixel_x = 5;
- pixel_y = 10
- },
-/obj/item/stock_parts/manipulator{
- pixel_y = 5
- },
-/obj/item/stock_parts/micro_laser/high{
- pixel_x = 3;
- pixel_y = -7
- },
-/obj/item/stock_parts/micro_laser/high{
- pixel_x = -3;
- pixel_y = -1
- },
-/obj/item/stock_parts/micro_laser/high{
- pixel_y = -2;
- pixel_x = 1
- },
-/obj/item/screwdriver{
- pixel_x = -7;
- pixel_y = 1
- },
-/obj/item/jammer,
-/turf/open/floor/plasteel/telecomms_floor,
-/area/ship/maintenance/port)
-"qK" = (
-/obj/structure/closet/secure_closet/freezer/meat/open,
-/obj/item/reagent_containers/food/snacks/meat/slab/monkey,
-/obj/item/reagent_containers/food/snacks/meat/slab/monkey,
-/obj/item/reagent_containers/food/snacks/meat/slab/monkey,
-/obj/item/reagent_containers/food/snacks/meat/slab/monkey,
-/obj/item/reagent_containers/food/snacks/meat/slab/monkey,
-/obj/item/reagent_containers/food/snacks/meat/slab/monkey,
-/obj/effect/turf_decal/box/corners{
- dir = 8
- },
-/obj/item/storage/box/ingredients/wildcard,
-/obj/item/storage/box/ingredients/wildcard,
-/obj/item/storage/box/ingredients/wildcard,
-/obj/item/storage/box/ingredients/wildcard,
-/obj/effect/turf_decal/box/corners,
-/obj/structure/railing{
- dir = 2;
- layer = 4.1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/crew/canteen/kitchen)
-"qP" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/item/radio/intercom/directional/south,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/obj/structure/catwalk/over/plated_catwalk,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/turf/open/floor/plating,
-/area/ship/hallway/central)
-"qQ" = (
-/obj/structure/bed/roller,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood/old{
- pixel_x = -9;
- pixel_y = 11;
- icon_state = "floor6-old"
- },
-/obj/effect/decal/cleanable/blood/old{
- pixel_x = -2;
- pixel_y = -3;
- icon_state = "gib2-old"
- },
-/obj/effect/turf_decal/arrows{
- pixel_y = 15
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 8
- },
-/turf/open/floor/plasteel/patterned/cargo_one,
-/area/ship/medical)
-"qT" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ship/engineering/communications)
-"qU" = (
-/obj/structure/table/reinforced{
- color = "#c1b6a5"
- },
-/obj/item/storage/toolbox/mechanical{
- pixel_y = -4
- },
-/obj/item/clothing/head/hardhat/weldhat/orange{
- pixel_x = 7;
- pixel_y = -7
- },
-/turf/open/floor/plating,
-/area/ship/engineering/communications)
-"qX" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/components/trinary/filter{
- dir = 8
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/engine)
-"rd" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/obj/structure/tank_dispenser/oxygen,
-/obj/effect/turf_decal/industrial/hatch/yellow,
-/obj/machinery/light/small/directional/east,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/hallway/fore)
-"re" = (
-/obj/effect/turf_decal/techfloor{
- dir = 10
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/incinerator)
-"rg" = (
-/turf/closed/wall,
-/area/ship/hallway/central)
-"rm" = (
-/obj/structure/foamedmetal,
-/turf/open/floor/plating,
-/area/ship/maintenance/port)
-"ro" = (
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ship/security/armory)
-"rp" = (
-/obj/structure/window/reinforced/spawner/east,
-/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/plating/rust,
-/area/ship/maintenance/port)
-"rq" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 4
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ship/hallway/central)
-"ru" = (
-/obj/structure/disposaloutlet{
- dir = 8
- },
-/obj/structure/window/reinforced/spawner,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/conveyor{
- dir = 8;
- id = "cutter_conveyor"
- },
-/obj/structure/disposalpipe/trunk,
-/turf/open/floor/engine/hull/reinforced/interior,
-/area/ship/engineering/incinerator)
-"rw" = (
-/turf/closed/wall/r_wall/syndicate,
-/area/ship/security)
-"rz" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{
- dir = 8
- },
-/turf/open/floor/engine/n2,
-/area/ship/engineering/atmospherics)
-"rF" = (
-/obj/structure/foamedmetal,
-/turf/open/floor/plating/airless{
- icon_state = "foam_plating"
- },
-/area/ship/maintenance/port)
-"rG" = (
-/obj/structure/catwalk/over/plated_catwalk,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/ship/hallway/central)
-"rJ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small/directional/east,
-/obj/structure/closet/wall/directional/south,
-/obj/item/reagent_containers/syringe/contraband/fentanyl{
- pixel_x = -3;
- pixel_y = 4
- },
-/obj/item/reagent_containers/syringe/contraband/morphine,
-/obj/item/reagent_containers/syringe/contraband/space_drugs,
-/obj/item/reagent_containers/syringe/contraband/space_drugs,
-/obj/item/reagent_containers/pill/floorpill,
-/obj/item/reagent_containers/pill/floorpill,
-/obj/item/reagent_containers/pill/floorpill,
-/obj/item/reagent_containers/pill/happy{
- pixel_x = 7;
- pixel_y = -11
- },
-/obj/item/reagent_containers/pill/happy{
- pixel_x = 3;
- pixel_y = -7
- },
-/obj/item/reagent_containers/pill/happy{
- pixel_x = 7;
- pixel_y = -7
- },
-/obj/item/reagent_containers/pill/happy{
- pixel_x = 5;
- pixel_y = -3
- },
-/obj/item/reagent_containers/pill/happy{
- pixel_x = 5;
- pixel_y = -5
- },
-/obj/item/reagent_containers/pill/happy{
- pixel_x = 12;
- pixel_y = -10
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/ship/crew)
-"rN" = (
-/turf/closed/wall/rust,
-/area/ship/crew/canteen)
-"rQ" = (
-/obj/structure/closet/emcloset/wall/directional/west,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ship/hallway/central)
-"rV" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/closet/crate/trashcart,
-/obj/item/trash/candy,
-/obj/effect/decal/cleanable/vomit/old,
-/obj/item/book/manual/wiki/ghetto_chemistry{
- pixel_x = 6;
- pixel_y = -5
- },
-/obj/item/trash/sosjerky,
-/obj/item/storage/portable_chem_mixer{
- pixel_x = -1;
- pixel_y = -3
- },
-/obj/item/trash/syndi_cakes{
- pixel_x = -4;
- pixel_y = 3
- },
-/obj/item/trash/energybar{
- pixel_y = -6
- },
-/turf/open/floor/plating,
-/area/ship/maintenance/fore)
-"rW" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{
- dir = 8
- },
-/turf/open/floor/engine/o2,
-/area/ship/engineering/atmospherics)
-"sa" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ship/hallway/central)
-"sb" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 1
- },
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/ship/hallway/central)
-"se" = (
-/obj/effect/turf_decal/industrial/warning,
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/dark,
-/area/ship/security/armory)
-"sg" = (
-/obj/machinery/power/smes/engineering,
-/obj/structure/railing{
- dir = 4;
- layer = 4.1
- },
-/obj/effect/turf_decal/techfloor{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/machinery/light/directional/north,
-/turf/open/floor/plasteel/telecomms_floor,
-/area/ship/engineering/electrical)
-"sj" = (
-/obj/effect/turf_decal/techfloor{
- dir = 4
- },
-/obj/effect/turf_decal/techfloor/hole{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "2-9"
- },
-/obj/machinery/power/ship_gravity,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/electrical)
-"sp" = (
-/obj/structure/chair/e_chair,
-/turf/open/floor/plasteel/tech,
-/area/ship/security)
-"sq" = (
-/obj/machinery/mass_driver{
- dir = 4;
- id = "cutter_gun_driver"
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 1;
- color = "#808080"
- },
-/turf/open/floor/plasteel/elevatorshaft{
- color = "#808080"
- },
-/area/ship/security/range)
-"ss" = (
-/turf/closed/wall/r_wall,
-/area/ship/hallway/fore)
-"sw" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ship/hallway/central)
-"sy" = (
-/turf/closed/wall/r_wall/syndicate/nodiagonal,
-/area/ship/security/armory)
-"sF" = (
-/obj/structure/table/reinforced,
-/obj/item/trash/semki{
- pixel_y = 7;
- pixel_x = 5
- },
-/obj/item/reagent_containers/food/drinks/soda_cans/cola{
- pixel_x = -7
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/plating,
-/area/ship/crew/canteen/kitchen)
-"sH" = (
-/obj/effect/turf_decal/techfloor{
- dir = 1
- },
-/obj/effect/turf_decal/techfloor,
-/obj/machinery/computer/cryopod/directional/east,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/crew)
-"sK" = (
-/obj/structure/chair/office{
- dir = 1;
- name = "tactical swivel chair";
- pixel_y = 9;
- pixel_x = -5
- },
-/obj/effect/turf_decal/steeldecal/steel_decals10{
- dir = 10
- },
-/obj/effect/turf_decal/steeldecal/steel_decals10{
- dir = 9
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/tech,
-/area/ship/bridge)
-"sP" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/turf/open/floor/plasteel/stairs{
- icon = 'icons/obj/stairs.dmi';
- dir = 8
- },
-/area/ship/bridge)
-"sR" = (
-/obj/machinery/vending/dinnerware,
-/obj/effect/turf_decal/siding/wood{
- dir = 1
- },
-/obj/machinery/airalarm/directional/north,
-/turf/open/floor/concrete/slab_4,
-/area/ship/crew/canteen/kitchen)
-"sS" = (
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 10
- },
-/obj/structure/table/reinforced,
-/obj/machinery/recharger{
- pixel_x = -5
- },
-/obj/machinery/recharger{
- pixel_x = 6
- },
-/obj/machinery/button/door{
- id = "cutter_armoury";
- name = "Armoury Lockdown";
- pixel_x = -23;
- pixel_y = 6;
- dir = 4;
- req_access_txt = "3"
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ship/security/armory)
-"ta" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/ship/hallway/central)
-"tl" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 1;
- color = "#808080"
- },
-/obj/structure/cable{
- icon_state = "0-10"
- },
-/obj/machinery/power/shieldwallgen/atmos{
- anchored = 1;
- id = "cutter_gun_holo";
- locked = 1
- },
-/obj/machinery/door/poddoor{
- id = "cutter_gun_hatch";
- dir = 4
- },
-/turf/open/floor/plasteel/elevatorshaft{
- color = "#808080"
- },
-/area/ship/security/range)
-"to" = (
-/turf/open/floor/engine/plasma,
-/area/ship/engineering/incinerator)
-"tp" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/holopad,
-/turf/open/floor/carpet/nanoweave,
-/area/ship/security)
-"tq" = (
-/obj/effect/turf_decal/techfloor,
-/obj/effect/turf_decal/techfloor/hole/right{
- dir = 2
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/structure/closet/secure_closet/engineering_electrical{
- req_access = null
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/electrical)
-"tr" = (
-/obj/effect/turf_decal/corner/opaque/yellow/half{
- dir = 8
- },
-/obj/structure/cable{
- 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/ship/cargo)
-"tu" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/sign/poster/contraband/ambrosia_vulgaris{
- pixel_x = 32
- },
-/obj/machinery/vending/syndichem,
-/obj/structure/sign/departments/chemistry{
- pixel_y = 32
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ship/hallway/central)
-"tv" = (
-/obj/effect/decal/fakelattice{
- icon_state = "lattice-74"
- },
-/obj/item/stack/ore/salvage/scrapmetal/ten,
-/turf/open/floor/plating/airless{
- icon_state = "foam_plating"
- },
-/area/ship/maintenance/port)
-"tw" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/firealarm/directional/south,
-/obj/item/radio/intercom/directional/south,
-/turf/open/floor/plasteel,
-/area/ship/hallway/central)
-"tD" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating{
- icon_state = "foam_plating"
- },
-/area/ship/hallway/central)
-"tH" = (
-/obj/effect/turf_decal/techfloor{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/sign/warning/vacuum/external{
- pixel_y = 32
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/hallway/fore)
-"tL" = (
-/obj/structure/catwalk/over/plated_catwalk,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/purple/hidden{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/ship/engineering/atmospherics)
-"tM" = (
-/obj/structure/table/wood/reinforced,
-/obj/item/flashlight/lamp{
- pixel_x = -6;
- pixel_y = 8
- },
-/obj/item/paper_bin{
- pixel_x = 8
- },
-/obj/item/pen{
- pixel_y = 4;
- pixel_x = 8
- },
-/obj/item/phone{
- pixel_x = -4;
- pixel_y = -4
- },
-/obj/structure/sign/poster/official/fruit_bowl{
- pixel_y = 32
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/crew/office)
-"tQ" = (
-/obj/structure/bed,
-/obj/item/bedsheet/dorms,
-/obj/structure/curtain/cloth/grey,
-/obj/effect/turf_decal/siding/wood{
- dir = 5
- },
-/obj/machinery/airalarm/directional/north,
-/turf/open/floor/carpet/red_gold,
-/area/ship/crew)
-"tT" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ship/hallway/central)
-"tX" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 1
- },
-/obj/effect/turf_decal/siding/wood,
-/obj/structure/fluff/hedge{
- icon_state = "hedge-4";
- pixel_x = 2;
- pixel_y = 2
- },
-/obj/structure/railing{
- color = "#A47449";
- dir = 10
- },
-/obj/structure/sign/barsign{
- icon_state = "thewretchedhive";
- pixel_y = 32
- },
-/turf/open/floor/wood,
-/area/ship/crew/canteen)
-"ul" = (
-/obj/structure/rack,
-/obj/item/storage/box/zipties{
- pixel_y = 7;
- pixel_x = 4
- },
-/obj/item/storage/box/syndie_kit/throwing_weapons,
-/obj/machinery/light/directional/south,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/sign/poster/contraband/stechkin{
- pixel_y = -32
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/security/armory)
-"um" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/ship/hallway/central)
-"uq" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/industrial/radiation{
- dir = 6
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/chem_master,
-/turf/open/floor/engine/hull/reinforced/interior,
-/area/ship/maintenance/fore)
-"us" = (
-/obj/structure/catwalk/over/plated_catwalk,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/plating{
- icon_state = "foam_plating"
- },
-/area/ship/hallway/central)
-"ut" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/plasteel/stairs{
- icon = 'icons/obj/stairs.dmi';
- dir = 4
- },
-/area/ship/engineering/atmospherics)
-"uu" = (
-/obj/structure/table/wood,
-/obj/item/storage/fancy/cigarettes/cigpack_uplift{
- pixel_x = 6;
- pixel_y = 7
- },
-/obj/item/lighter/greyscale{
- pixel_x = 8;
- pixel_y = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/item/toy/figure/chemist{
- pixel_x = -6;
- pixel_y = 4
- },
-/obj/item/trash/syndi_cakes,
-/obj/machinery/power/apc/auto_name/directional/north,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/ship/maintenance/fore)
-"uy" = (
-/obj/structure/table/reinforced,
-/obj/effect/turf_decal/techfloor{
- dir = 4
- },
-/obj/item/desk_flag{
- pixel_x = 10;
- pixel_y = 13
- },
-/obj/item/newspaper{
- pixel_x = -6;
- pixel_y = 5
- },
-/obj/item/gps{
- pixel_x = -6
- },
-/obj/item/megaphone/command{
- pixel_x = 4;
- pixel_y = 7
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/bridge)
-"uz" = (
-/obj/effect/turf_decal/industrial/warning/cee,
-/obj/machinery/suit_storage_unit/inherit/industrial,
-/obj/machinery/airalarm/directional/north,
-/obj/item/clothing/suit/space/scar,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/crew/office)
-"uB" = (
-/obj/effect/turf_decal/techfloor/corner,
-/obj/item/stock_parts/subspace/amplifier{
- pixel_x = -8;
- pixel_y = 5
- },
-/obj/item/stock_parts/subspace/amplifier{
- pixel_x = -5;
- pixel_y = -1
- },
-/obj/item/stack/cable_coil/cut/yellow,
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/item/stock_parts/subspace/filter{
- pixel_x = 7;
- pixel_y = -13
- },
-/turf/open/floor/plating/airless{
- icon_state = "plating_rust"
- },
-/area/ship/maintenance/port)
-"uD" = (
-/obj/structure/girder/displaced,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/directional/east,
-/turf/open/floor/plating,
-/area/ship/hallway/central)
-"uH" = (
-/obj/structure/railing{
- dir = 8;
- layer = 4.1
- },
-/obj/machinery/portable_atmospherics/canister/air,
-/obj/effect/turf_decal/techfloor/orange{
- dir = 8
- },
-/obj/effect/turf_decal/industrial/outline,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
-/obj/machinery/atmospherics/pipe/simple/yellow/hidden/layer4{
- dir = 5
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/incinerator)
-"uK" = (
-/turf/open/floor/plasteel/white,
-/area/ship/crew/canteen/kitchen)
-"uL" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/mineral/plastitanium,
-/area/ship/security/armory)
-"uN" = (
-/obj/structure/reagent_dispensers,
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/structure/railing{
- dir = 4;
- layer = 3.1
- },
-/obj/structure/sign/warning/nosmoking{
- pixel_x = 28
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ship/engineering)
-"uO" = (
-/obj/structure/chair/office{
- name = "tactical swivel chair";
- dir = 8
- },
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
- },
-/turf/open/floor/plating{
- icon_state = "foam_plating"
- },
-/area/ship/engineering/communications)
-"uP" = (
-/obj/structure/railing{
- dir = 8;
- layer = 4.1
- },
-/obj/machinery/computer/crew/syndie{
- dir = 1;
- pixel_x = 4;
- pixel_y = -3
- },
-/obj/effect/turf_decal/techfloor{
- dir = 1
- },
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 8
- },
-/turf/open/floor/plasteel/telecomms_floor,
-/area/ship/bridge)
-"uQ" = (
-/obj/machinery/processor,
-/obj/effect/turf_decal/siding/wood{
- dir = 5
- },
-/obj/structure/railing{
- dir = 1
- },
-/turf/open/floor/concrete/tiles,
-/area/ship/crew/canteen/kitchen)
-"uX" = (
-/obj/effect/decal/cleanable/sprayweb,
-/obj/structure/sign/warning/vacuum/external{
- pixel_y = 32
- },
-/turf/open/floor/plasteel,
-/area/ship/hallway/central)
-"va" = (
-/obj/effect/turf_decal/techfloor{
- dir = 1
- },
-/obj/effect/turf_decal/techfloor,
-/obj/machinery/suit_storage_unit/inherit/industrial,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/airalarm/directional/east,
-/obj/item/tank/jetpack/carbondioxide,
-/obj/item/clothing/suit/space/hardsuit/security/independent/frontier,
-/obj/item/clothing/mask/breath,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/security/armory)
-"vc" = (
-/obj/item/stock_parts/subspace/filter,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 5
- },
-/obj/effect/spawner/lootdrop/maintenance/three,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/ship/maintenance/port)
-"ve" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/hallway/fore)
-"vg" = (
-/turf/closed/wall/rust,
-/area/ship/maintenance/central)
-"vh" = (
-/obj/machinery/door/airlock/external,
-/obj/structure/catwalk/over/plated_catwalk/dark,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/plating,
-/area/ship/engineering/communications)
-"vl" = (
-/obj/effect/turf_decal/techfloor/corner{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/hallway/fore)
-"vm" = (
-/obj/machinery/computer/crew/syndie,
-/obj/machinery/airalarm/directional/north,
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ship/security)
-"vo" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 6
- },
-/obj/structure/bed/dogbed,
-/obj/machinery/light/small/directional/south,
-/obj/machinery/light_switch{
- pixel_x = 22;
- dir = 8;
- pixel_y = -11
- },
-/mob/living/simple_animal/parrot,
-/turf/open/floor/wood{
- icon_state = "wood-broken5"
- },
-/area/ship/security)
-"vq" = (
-/obj/effect/decal/cleanable/glass{
- dir = 8
- },
-/obj/item/reagent_containers/glass/beaker{
- pixel_y = -7
- },
-/obj/item/reagent_containers/glass/beaker{
- pixel_y = -1;
- pixel_x = 9
- },
-/obj/item/reagent_containers/glass/beaker{
- pixel_x = 7;
- pixel_y = -8
- },
-/obj/item/restraints/handcuffs/cable/white,
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/ship/maintenance/fore)
-"vr" = (
-/obj/item/stack/ore/salvage/scrapsilver,
-/turf/open/floor/plating/airless,
-/area/ship/maintenance/port)
-"vs" = (
-/obj/effect/turf_decal/siding/wood/corner,
-/turf/open/floor/concrete/tiles,
-/area/ship/crew/canteen/kitchen)
-"vt" = (
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/airlock/maintenance_hatch{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 4
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/barricade/wooden/crude,
-/turf/open/floor/plating,
-/area/ship/maintenance/central)
-"vu" = (
-/obj/structure/foamedmetal,
-/turf/open/floor/plating{
- icon_state = "platingdmg2"
- },
-/area/ship/maintenance/port)
-"vw" = (
-/obj/structure/rack,
-/obj/effect/turf_decal/techfloor{
- dir = 8
- },
-/obj/structure/sign/poster/official/mini_energy_gun{
- pixel_x = -32
- },
-/obj/item/grenade/frag{
- pixel_x = 6;
- pixel_y = -3
- },
-/obj/item/grenade/frag{
- pixel_x = 1;
- pixel_y = -8
- },
-/obj/item/grenade/firecracker,
-/obj/item/grenade/firecracker{
- pixel_x = 2;
- pixel_y = -3
- },
-/obj/item/grenade/flashbang{
- pixel_y = -4;
- pixel_x = -10
- },
-/obj/item/grenade/flashbang{
- pixel_y = -5;
- pixel_x = -7
- },
-/obj/item/grenade/flashbang{
- pixel_y = -9;
- pixel_x = -8
- },
-/obj/machinery/light_switch{
- pixel_x = -12;
- dir = 1;
- pixel_y = -22
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/security/armory)
-"vy" = (
-/obj/structure/plaque/static_plaque/golden{
- pixel_x = 32;
- pixel_y = 32
- },
-/obj/machinery/holopad/emergency/command,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/carpet/green,
-/area/ship/crew/office)
-"vz" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/ship/maintenance/central)
-"vC" = (
-/turf/open/floor/plasteel/dark,
-/area/ship/security/armory)
-"vD" = (
-/obj/machinery/suit_storage_unit/standard_unit,
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/hallway/central)
-"vE" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 5
- },
-/obj/effect/turf_decal/siding/wood/corner{
- dir = 8
- },
-/obj/structure/fluff/hedge{
- icon_state = "hedge-8";
- pixel_y = 2;
- pixel_x = 2
- },
-/obj/structure/railing{
- color = "#A47449";
- dir = 2
- },
-/obj/structure/sign/poster/contraband/mothpill{
- pixel_x = 32
- },
-/turf/open/floor/wood,
-/area/ship/crew/canteen)
-"vG" = (
-/obj/item/stock_parts/cell/crap{
- pixel_x = 4;
- pixel_y = 7
- },
-/obj/item/stock_parts/subspace/analyzer{
- pixel_x = 7;
- pixel_y = -7
- },
-/obj/item/stock_parts/subspace/analyzer{
- pixel_x = 2;
- pixel_y = -5
- },
-/obj/item/stock_parts/subspace/analyzer{
- pixel_y = -10;
- pixel_x = 6
- },
-/turf/open/floor/plating/airless{
- icon_state = "plating_rust"
- },
-/area/ship/maintenance/port)
-"vH" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/ship/hallway/central)
-"vK" = (
-/obj/effect/turf_decal/techfloor{
- dir = 10
- },
-/obj/structure/table/wood,
-/obj/item/reagent_containers/syringe/contraband/bath_salts{
- pixel_y = 6;
- pixel_x = -4
- },
-/obj/item/reagent_containers/syringe/contraband/space_drugs{
- pixel_x = -5;
- pixel_y = 3
- },
-/obj/item/reagent_containers/glass/mortar/metal,
-/obj/machinery/airalarm/directional/south,
-/turf/open/floor/plasteel/dark,
-/area/ship/hallway/fore)
-"vL" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 4
- },
-/obj/effect/turf_decal/siding/wood{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/reagent_containers/food/snacks/breadslice/moldy{
- pixel_x = -6;
- pixel_y = 10
- },
-/obj/structure/table/wood/reinforced,
-/obj/item/reagent_containers/food/snacks/breadslice/creamcheese{
- pixel_x = -1
- },
-/turf/open/floor/wood{
- icon_state = "wood-broken5"
- },
-/area/ship/crew/canteen)
-"vX" = (
-/obj/machinery/light/broken/directional/west,
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/obj/machinery/power/ship_gravity/unanchored,
-/turf/open/floor/plating/rust,
-/area/ship/hallway/central)
-"vY" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/directional/south,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/ship/hallway/central)
-"vZ" = (
-/obj/structure/railing{
- dir = 8;
- layer = 4.1
- },
-/obj/effect/turf_decal/borderfloorblack{
- dir = 8
- },
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 8
- },
-/obj/effect/turf_decal/steeldecal/steel_decals10{
- dir = 10
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/bridge)
-"wc" = (
-/turf/closed/wall/rust,
-/area/ship/cargo)
-"wd" = (
-/obj/item/disk/plantgene{
- pixel_x = -6;
- pixel_y = -6
- },
-/obj/item/disk/plantgene{
- pixel_x = 10;
- pixel_y = 2
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/concrete/tiles,
-/area/ship/crew/canteen/kitchen)
-"wh" = (
-/obj/machinery/atmospherics/pipe/simple/brown/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall/syndicate/nodiagonal,
-/area/ship/engineering/incinerator)
-"wi" = (
-/obj/structure/grille,
-/obj/structure/window/plasma/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/layer_manifold/visible,
-/turf/open/floor/plating,
-/area/ship/engineering/incinerator)
-"wm" = (
-/obj/effect/turf_decal/steeldecal/steel_decals10{
- dir = 9
- },
-/obj/effect/turf_decal/steeldecal/steel_decals10{
- dir = 10
- },
-/obj/effect/turf_decal/techfloor/corner{
- dir = 1
- },
-/obj/effect/turf_decal/techfloor/corner{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 10
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/engine)
-"wo" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/item/stack/rods{
- pixel_x = 7
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/ship/hallway/central)
-"wp" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 1
- },
-/turf/open/floor/carpet/red_gold,
-/area/ship/crew)
-"ws" = (
-/turf/template_noop,
-/area/template_noop)
-"wt" = (
-/obj/effect/turf_decal/steeldecal/steel_decals10{
- dir = 9
- },
-/obj/effect/turf_decal/steeldecal/steel_decals10{
- dir = 10
- },
-/obj/effect/turf_decal/techfloor/corner{
- dir = 1
- },
-/obj/effect/turf_decal/techfloor/corner{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/plasteel/dark,
-/area/ship/hallway/fore)
-"ww" = (
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/plating/rust,
-/area/ship/maintenance/central)
-"wC" = (
-/obj/structure/catwalk/over/plated_catwalk,
-/obj/structure/closet/firecloset/wall/directional/north,
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
-/turf/open/floor/plating,
-/area/ship/hallway/central)
-"wD" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/mineral/plastitanium,
-/area/ship/security/armory)
-"wG" = (
-/obj/structure/table/wood/reinforced,
-/obj/item/modular_computer/laptop/preset/civilian{
- pixel_x = 1;
- pixel_y = 8
- },
-/obj/item/paicard{
- pixel_x = 7;
- pixel_y = 4
- },
-/obj/structure/noticeboard{
- pixel_y = 32
- },
-/obj/item/reagent_containers/food/drinks/bottle/hooch{
- pixel_x = -12;
- pixel_y = 4
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/crew/office)
-"wN" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/catwalk/over/plated_catwalk/dark,
-/turf/open/floor/plating,
-/area/ship/engineering/communications)
-"wQ" = (
-/obj/effect/turf_decal/techfloor{
- dir = 8
- },
-/obj/effect/turf_decal/trimline/transparent/lightgrey/line{
- dir = 4
- },
-/obj/structure/closet/emcloset/wall/directional/west,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ship/engineering/atmospherics)
-"wS" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 2;
- color = "#808080"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "5-8"
- },
-/turf/open/floor/plasteel/elevatorshaft{
- color = "#808080"
- },
-/area/ship/security/range)
-"wT" = (
-/obj/effect/turf_decal/corner_techfloor_grid{
- dir = 2
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/sign/poster/official/help_others{
- pixel_x = 32;
- pixel_y = -32
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/hallway/fore)
-"wV" = (
-/obj/effect/decal/cleanable/cobweb,
-/obj/item/clothing/gloves/krav_maga/combatglovesplus,
-/obj/item/clothing/under/syndicate/camo,
-/obj/item/clothing/under/syndicate/camo,
-/obj/item/clothing/neck/scarf/black,
-/obj/item/clothing/neck/cloak/hos,
-/obj/item/clothing/mask/bandana/black{
- pixel_x = 1;
- pixel_y = -4
- },
-/obj/item/clothing/mask/gas/sechailer/balaclava,
-/obj/item/clothing/suit/armor/vest/marine/medium,
-/obj/item/storage/belt/military,
-/obj/item/clothing/shoes/cowboy/black,
-/obj/item/clothing/head/helmet/bulletproof/x11/frontier,
-/obj/structure/extinguisher_cabinet/directional/north,
-/obj/structure/closet/secure_closet{
- anchored = 1;
- icon_state = "hos";
- name = "master at arm's locker";
- req_access_txt = "3"
- },
-/obj/item/gun/ballistic/automatic/pistol/APS,
-/obj/item/ammo_box/magazine/pistolm9mm,
-/obj/item/clothing/mask/gas/atmos{
- name = "tactical gas mask";
- desc = "Improved gas mask utilized by pirates. Still not very good at blocking gas flow, but it's flameproof!"
- },
-/turf/open/floor/carpet/black,
-/area/ship/security)
-"wZ" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 8;
- color = "#808080"
- },
-/obj/effect/turf_decal/techfloor{
- dir = 4
- },
-/obj/machinery/computer/cargo/express{
- dir = 8
- },
-/obj/machinery/vending/wallmed{
- pixel_y = 32
- },
-/obj/item/radio/intercom/directional/east,
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ship/cargo)
-"xh" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ship/hallway/central)
-"xj" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/crew/canteen/kitchen)
-"xk" = (
-/turf/closed/wall/r_wall,
-/area/ship/cargo)
-"xo" = (
-/obj/machinery/mass_driver{
- dir = 4;
- id = "cutter_gun_driver"
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 2;
- color = "#808080"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/elevatorshaft{
- color = "#808080"
- },
-/area/ship/security/range)
-"xs" = (
-/obj/structure/railing{
- dir = 2;
- layer = 4.1
- },
-/obj/structure/chair{
- dir = 1
- },
-/turf/open/floor/plating/foam,
-/area/ship/security)
-"xx" = (
-/obj/effect/turf_decal/techfloor,
-/obj/machinery/power/port_gen/pacman/super,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/shreds,
-/obj/structure/cable/yellow{
- icon_state = "0-1"
- },
-/obj/machinery/light/directional/south,
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 1
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/atmospherics)
-"xB" = (
-/obj/effect/turf_decal/techfloor{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/curtain/bounty,
-/turf/open/floor/plasteel/dark,
-/area/ship/hallway/fore)
-"xK" = (
-/turf/closed/wall/r_wall/syndicate/nodiagonal,
-/area/ship/hallway/fore)
-"xO" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/bed{
- icon_state = "dirty_mattress"
- },
-/obj/structure/sign/warning/incident{
- pixel_y = 32
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
-/area/ship/hallway/central)
-"xP" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/concrete/slab_2,
-/area/ship/crew/canteen/kitchen)
-"xS" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 1
- },
-/turf/open/floor/concrete/tiles,
-/area/ship/crew/canteen/kitchen)
-"yd" = (
-/obj/effect/turf_decal/techfloor{
- dir = 1
- },
-/obj/effect/turf_decal/techfloor,
-/obj/machinery/suit_storage_unit/inherit/industrial,
-/obj/machinery/power/apc/auto_name/directional/north,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/item/tank/jetpack/carbondioxide,
-/obj/item/clothing/suit/space/hardsuit/security/independent/frontier,
-/obj/item/clothing/mask/breath,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/security/armory)
-"yh" = (
-/obj/machinery/hydroponics/constructable,
-/obj/effect/turf_decal/siding/wood,
-/obj/machinery/light/directional/south,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/concrete/tiles,
-/area/ship/crew/canteen/kitchen)
-"yk" = (
-/obj/effect/turf_decal/techfloor{
- dir = 1
- },
-/obj/machinery/light/directional/north,
-/obj/machinery/light_switch{
- pixel_x = 11;
- pixel_y = 19
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/bridge)
-"yl" = (
-/obj/structure/table/reinforced,
-/obj/effect/turf_decal/techfloor{
- dir = 1
- },
-/obj/item/modular_computer/laptop{
- pixel_y = 7
- },
-/obj/item/reagent_containers/food/drinks/bottle/moonshine{
- pixel_x = 9
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/item/stack/sheet/mineral/diamond,
-/turf/open/floor/plasteel/tech,
-/area/ship/bridge)
-"yo" = (
-/turf/open/floor/engine/n2,
-/area/ship/engineering/atmospherics)
-"yq" = (
-/obj/effect/decal/cleanable/sprayweb,
-/obj/structure/extinguisher_cabinet/directional/north,
-/turf/open/floor/plating/rust,
-/area/ship/hallway/central)
-"ys" = (
-/obj/structure/catwalk/over/plated_catwalk,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/ship/hallway/central)
-"yv" = (
-/turf/closed/wall/r_wall/rust,
-/area/ship/hallway/fore)
-"yw" = (
-/obj/structure/table/reinforced,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/item/paper_bin{
- pixel_x = 5;
- pixel_y = 4
- },
-/obj/item/pen/fountain{
- pixel_x = 5;
- pixel_y = 6
- },
-/obj/item/megaphone/sec,
-/turf/open/floor/carpet/nanoweave,
-/area/ship/security)
-"yx" = (
-/turf/closed/wall/rust,
-/area/ship/maintenance/port)
-"yy" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/toolbox/mechanical{
- pixel_y = 5
- },
-/obj/item/storage/belt/utility/full/engi{
- pixel_y = -1;
- pixel_x = 3
- },
-/obj/item/clothing/glasses/welding{
- pixel_y = 5
- },
-/obj/item/multitool{
- pixel_x = 9
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/security/range)
-"yF" = (
-/obj/machinery/door/window/northleft{
- dir = 2;
- name = "Animal Pen";
- req_access_txt = "35"
- },
-/obj/structure/flora/ausbushes/ywflowers,
-/obj/effect/decal/cleanable/blood/gibs,
-/mob/living/simple_animal/cow{
- desc = "Allegedly a bull.";
- name = "Otis";
- real_name = "Betsy"
- },
-/turf/open/floor/grass,
-/area/ship/maintenance/central)
-"yG" = (
-/obj/structure/foamedmetal,
-/turf/open/floor/plating/rust,
-/area/ship/maintenance/port)
-"yJ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 4
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 8
- },
-/turf/open/floor/plating{
- icon_state = "foam_plating"
- },
-/area/ship/hallway/central)
-"yL" = (
-/turf/closed/wall/r_wall/syndicate/nodiagonal,
-/area/ship/crew/office)
-"yM" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/stock_parts/scanning_module{
- pixel_x = 8
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating{
- icon_state = "foam_plating"
- },
-/area/ship/maintenance/fore)
-"yO" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/blood/old,
-/obj/structure/grille,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/ship/maintenance/fore)
-"zc" = (
-/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium,
-/obj/machinery/door/poddoor{
- id = "cutter_windows_general"
- },
-/turf/open/floor/plating,
-/area/ship/security/armory)
-"zf" = (
-/obj/structure/girder/reinforced,
-/obj/effect/decal/cleanable/blood/old,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/plating/rust,
-/area/ship/hallway/central)
-"zh" = (
-/obj/machinery/light/small/directional/south,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ship/security/armory)
-"zi" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/backpack/duffelbag/med/surgery,
-/obj/item/clothing/gloves/color/latex/nitrile/evil,
-/obj/item/healthanalyzer,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/reagentgrinder{
- pixel_y = 5
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/window/reinforced,
-/obj/machinery/vending/wallmed{
- pixel_x = -32
- },
-/turf/open/floor/plasteel/patterned/cargo_one,
-/area/ship/medical)
-"zn" = (
-/obj/effect/spawner/lootdrop/salvage_scanning,
-/turf/open/floor/plating/airless{
- icon_state = "panelscorched"
- },
-/area/ship/maintenance/port)
-"zo" = (
-/obj/structure/catwalk/over/plated_catwalk,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/sign/departments/engineering{
- pixel_x = -32
- },
-/turf/open/floor/plating{
- icon_state = "foam_plating"
- },
-/area/ship/hallway/central)
-"zu" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/plating{
- icon_state = "foam_plating"
- },
-/area/ship/hallway/central)
-"zv" = (
-/obj/machinery/door/airlock/external,
-/obj/structure/catwalk/over/plated_catwalk/dark,
-/turf/open/floor/plating,
-/area/ship/hallway/fore)
-"zw" = (
-/turf/closed/wall,
-/area/ship/engineering/communications)
-"zE" = (
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/mineral/plastitanium,
-/area/ship/security/armory)
-"zF" = (
-/obj/machinery/modular_computer/console/preset/command{
- dir = 8
- },
-/obj/effect/turf_decal/techfloor{
- dir = 6
- },
-/turf/open/floor/plasteel/telecomms_floor,
-/area/ship/bridge)
-"zH" = (
-/obj/item/stock_parts/subspace/filter,
-/obj/item/stock_parts/subspace/filter{
- pixel_x = 2;
- pixel_y = -8
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating/airless{
- icon_state = "panelscorched"
- },
-/area/ship/maintenance/port)
-"zJ" = (
-/obj/effect/turf_decal/corner_techfloor_grid{
- dir = 4;
- layer = 2.36
- },
-/obj/effect/turf_decal/techfloor/corner{
- dir = 4;
- layer = 2.37
- },
-/obj/effect/turf_decal/corner_techfloor_gray{
- dir = 10;
- layer = 2.36
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/ship/engineering/electrical)
-"zK" = (
-/turf/closed/wall/rust,
-/area/ship/medical)
-"zP" = (
-/obj/effect/turf_decal/techfloor{
- dir = 1
- },
-/obj/effect/turf_decal/techfloor,
-/obj/machinery/suit_storage_unit/inherit/industrial,
-/obj/item/tank/jetpack/carbondioxide,
-/obj/item/clothing/suit/space/hardsuit/security/independent/frontier,
-/obj/item/clothing/mask/breath,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/security/armory)
-"zS" = (
-/obj/machinery/door/window/brigdoor/northleft{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/concrete/slab_4,
-/area/ship/crew/canteen/kitchen)
-"zV" = (
-/turf/closed/wall/r_wall/syndicate/nodiagonal,
-/area/ship/engineering/engine)
-"zY" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/turf/open/floor/plasteel/patterned,
-/area/ship/cargo)
-"zZ" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 2;
- color = "#808080"
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ship/security/armory)
-"Ab" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/plasteel/white,
-/area/ship/crew/canteen/kitchen)
-"Ad" = (
-/obj/machinery/suit_storage_unit/inherit/industrial,
-/obj/item/tank/jetpack/carbondioxide,
-/obj/item/clothing/suit/space/engineer,
-/obj/item/clothing/head/helmet/space/light/engineer,
-/obj/effect/turf_decal/industrial/hatch/yellow,
-/obj/effect/turf_decal/industrial/hatch/yellow,
-/obj/structure/extinguisher_cabinet/directional/north,
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/communications)
-"Ag" = (
-/obj/structure/catwalk/over/plated_catwalk/dark,
-/obj/machinery/light_switch{
- pixel_x = -8;
- dir = 1;
- pixel_y = -22
- },
-/obj/machinery/firealarm/directional/south,
-/obj/machinery/atmospherics/pipe/simple/brown/hidden{
- dir = 4
- },
-/obj/structure/extinguisher_cabinet/directional/west,
-/turf/open/floor/plating,
-/area/ship/engineering/incinerator)
-"Ah" = (
-/obj/effect/decal/cleanable/robot_debris{
- pixel_x = 7
- },
-/obj/effect/decal/cleanable/plastic,
-/obj/machinery/light/broken/directional/south,
-/obj/item/kirbyplants/random,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
- },
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/ship/hallway/central)
-"Ak" = (
-/obj/effect/turf_decal/techfloor{
- dir = 1
- },
-/obj/effect/turf_decal/techfloor,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/airlock/grunge{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/crew)
-"Al" = (
-/obj/effect/turf_decal/techfloor{
- dir = 8
- },
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 9
- },
-/obj/item/stock_parts/subspace/filter{
- pixel_x = 10;
- pixel_y = -11
- },
-/obj/item/circuitboard/machine/telecomms/processor{
- pixel_y = -9;
- pixel_x = 10
- },
-/obj/effect/decal/cleanable/blood/gibs/old{
- pixel_x = 10;
- pixel_y = 1
- },
-/obj/machinery/power/apc/auto_name/directional/west,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/machinery/light/broken/directional/west,
-/turf/open/floor/plasteel/telecomms_floor,
-/area/ship/maintenance/port)
-"Am" = (
-/turf/closed/wall/r_wall/syndicate/nodiagonal,
-/area/ship/engineering)
-"An" = (
-/obj/structure/railing{
- dir = 1
- },
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 1
- },
-/obj/structure/showcase/cyborg/old,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/ship/security)
-"As" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/on{
- dir = 8
- },
-/turf/open/floor/engine/o2,
-/area/ship/engineering/atmospherics)
-"Au" = (
-/obj/machinery/hydroponics/constructable,
-/obj/effect/turf_decal/siding/wood{
- dir = 6
- },
-/obj/machinery/airalarm/directional/east,
-/turf/open/floor/concrete/tiles,
-/area/ship/crew/canteen/kitchen)
-"AA" = (
-/obj/effect/turf_decal/industrial/warning,
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/obj/machinery/light/directional/east,
-/turf/open/floor/plasteel/dark,
-/area/ship/security/armory)
-"AD" = (
-/turf/closed/wall/r_wall,
-/area/ship/crew/office)
-"AG" = (
-/obj/item/trash/popcorn{
- pixel_y = 4;
- pixel_x = -16
- },
-/obj/item/trash/candy,
-/obj/machinery/light/small/broken/directional/south,
-/turf/open/floor/plating/airless{
- icon_state = "panelscorched"
- },
-/area/ship/maintenance/port)
-"AI" = (
-/obj/effect/turf_decal/corner_techfloor_grid{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/hallway/fore)
-"AL" = (
-/obj/structure/closet/wall/orange/directional/east{
- name = "Engineering locker"
- },
-/obj/effect/decal/cleanable/robot_debris/gib,
-/obj/item/clothing/under/utility,
-/obj/item/clothing/under/utility/skirt,
-/obj/item/clothing/suit/hooded/wintercoat/engineering{
- pixel_x = 6
- },
-/obj/item/clothing/suit/toggle/hazard,
-/obj/item/clothing/shoes/workboots{
- pixel_y = -7
- },
-/obj/structure/catwalk,
-/obj/item/clothing/under/rank/engineering/chief_engineer,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
- },
-/turf/open/floor/plating/rust,
-/area/ship/engineering/communications)
-"AM" = (
-/obj/structure/window/reinforced/spawner/north,
-/obj/structure/bed{
- icon_state = "dirty_mattress"
- },
-/obj/item/bedsheet/grey,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ship/security/armory)
-"AQ" = (
-/obj/machinery/power/smes/engineering,
-/obj/structure/railing{
- dir = 8;
- layer = 4.1
- },
-/obj/effect/turf_decal/techfloor{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/machinery/light/directional/north,
-/turf/open/floor/plasteel/telecomms_floor,
-/area/ship/engineering/electrical)
-"AU" = (
-/obj/structure/railing{
- dir = 4;
- layer = 4.1
- },
-/obj/effect/turf_decal/techfloor,
-/obj/effect/turf_decal/corner_techfloor_grid{
- dir = 4
- },
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 4
- },
-/obj/machinery/power/port_gen/pacman,
-/obj/structure/cable/yellow{
- icon_state = "0-1"
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/atmospherics)
-"AV" = (
-/turf/closed/wall,
-/area/ship/crew/canteen)
-"AZ" = (
-/obj/effect/turf_decal/techfloor{
- dir = 9
- },
-/obj/machinery/light/directional/north,
-/obj/machinery/airalarm/directional/west,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
-/turf/open/floor/plasteel/dark,
-/area/ship/hallway/fore)
-"Bb" = (
-/obj/machinery/door/window/brigdoor/southright{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 9
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- name = "Lockdown Shutters";
- id = "cutter_sm_lockdown"
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/engine)
-"Bh" = (
-/obj/effect/turf_decal/techfloor{
- dir = 10
- },
-/obj/structure/bed{
- icon_state = "dirty_mattress"
- },
-/obj/item/reagent_containers/food/drinks/beer{
- pixel_x = 7;
- pixel_y = -5
- },
-/obj/machinery/light/directional/west,
-/turf/open/floor/plasteel/dark,
-/area/ship/hallway/fore)
-"Bj" = (
-/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium,
-/obj/machinery/door/poddoor{
- id = "cutter_windows_general";
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ship/engineering/incinerator)
-"Bm" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood{
- pixel_y = -8
- },
-/obj/effect/decal/cleanable/blood/gibs,
-/obj/machinery/light/small/broken/directional/east,
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/light_switch{
- pixel_x = 22;
- dir = 8;
- pixel_y = -11
- },
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/ship/medical)
-"Bo" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/dark,
-/area/ship/security/armory)
-"Bp" = (
-/turf/closed/wall/r_wall/syndicate,
-/area/ship/maintenance/port)
-"Bq" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/glass{
- pixel_y = -7
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/plasteel,
-/area/ship/hallway/central)
-"Br" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
-/turf/open/floor/plasteel,
-/area/ship/hallway/central)
-"Bv" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/door/firedoor/border_only{
- dir = 8
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "cutter_bridge_lockdown";
- name = "Lockdown Shutters";
- dir = 4
- },
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/hallway/fore)
-"Bw" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on,
-/turf/open/floor/engine/plasma,
-/area/ship/engineering/incinerator)
-"Bx" = (
-/obj/structure/table/reinforced,
-/obj/item/gun/ballistic/revolver/shadow{
- pixel_y = 6
- },
-/obj/item/gun/ballistic/revolver/shadow,
-/obj/item/gun/ballistic/revolver/shadow{
- pixel_y = -5
- },
-/obj/effect/turf_decal/techfloor{
- dir = 5
- },
-/obj/structure/railing{
- dir = 1
- },
-/obj/structure/extinguisher_cabinet/directional/east,
-/turf/open/floor/plasteel/dark,
-/area/ship/security/armory)
-"By" = (
-/obj/structure/guncase,
-/obj/item/gun/ballistic/automatic/smg/mini_uzi{
- pixel_y = -3
- },
-/obj/effect/turf_decal/techfloor{
- dir = 9
- },
-/obj/structure/railing{
- dir = 1
- },
-/obj/item/gun/ballistic/rifle/illestren{
- pixel_y = 5
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/security/armory)
-"Bz" = (
-/obj/effect/turf_decal/techfloor,
-/obj/structure/extinguisher_cabinet/directional/north,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
- },
-/turf/open/floor/plasteel/telecomms_floor,
-/area/ship/crew)
-"BD" = (
-/obj/structure/railing{
- dir = 2;
- layer = 4.1
- },
-/obj/machinery/holopad/emergency/medical,
-/obj/effect/turf_decal/box,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
- },
-/turf/open/floor/plasteel/patterned/cargo_one,
-/area/ship/medical)
-"BH" = (
-/obj/effect/turf_decal/techfloor{
- dir = 4
- },
-/obj/effect/turf_decal/trimline/transparent/lightgrey/line{
- dir = 8
- },
-/obj/machinery/light/directional/east,
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/door/firedoor/border_only{
- dir = 1
- },
-/obj/machinery/light_switch{
- pixel_x = 22;
- dir = 8;
- pixel_y = -11
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ship/engineering/atmospherics)
-"BI" = (
-/turf/open/floor/engine,
-/area/ship/engineering/engine)
-"BQ" = (
-/obj/effect/turf_decal/techfloor{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark,
-/area/ship/hallway/fore)
-"BR" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/plasteel,
-/area/ship/hallway/central)
-"BT" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 6;
- color = "#808080"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/firedoor/border_only{
- dir = 8
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 4
- },
-/obj/machinery/door/poddoor/shutters{
- id = "cutter_armoury";
- name = "Armoury Shutter";
- dir = 4
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ship/security/armory)
-"BW" = (
-/obj/structure/catwalk/over/plated_catwalk,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/ship/hallway/central)
-"BZ" = (
-/obj/machinery/light/directional/south,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/ship/hallway/central)
-"Ca" = (
-/obj/effect/turf_decal/techfloor{
- dir = 4
- },
-/obj/effect/turf_decal/techfloor/hole{
- dir = 4
- },
-/obj/effect/spawner/lootdrop/random_machine_circuit_rare,
-/obj/item/stack/ore/salvage/scraptitanium/five,
-/turf/open/floor/plating/airless{
- icon_state = "panelscorched"
- },
-/area/ship/maintenance/port)
-"Cc" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 10
- },
-/obj/structure/sign/poster/contraband/kudzu{
- pixel_x = -32
- },
-/obj/structure/extinguisher_cabinet/directional/south,
-/turf/open/floor/wood,
-/area/ship/crew/office)
-"Cg" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 1;
- color = "#808080"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ship/security/armory)
-"Cq" = (
-/obj/structure/frame/machine,
-/obj/item/stock_parts/subspace/filter,
-/obj/item/stock_parts/subspace/filter,
-/obj/item/circuitboard/machine/telecomms/hub{
- pixel_x = -3;
- pixel_y = -4
- },
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/maintenance/port)
-"CA" = (
-/obj/effect/turf_decal/steeldecal/steel_decals_central2{
- dir = 1;
- pixel_y = -2
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/steeldecal/steel_decals7{
- dir = 5
- },
-/obj/effect/turf_decal/steeldecal/steel_decals7{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/bridge)
-"CF" = (
-/obj/effect/turf_decal/techfloor{
- dir = 5
- },
-/obj/machinery/light/directional/east,
-/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
- dir = 8;
- min_temperature = 1;
- target_temperature = 1
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/engine)
-"CI" = (
-/obj/effect/turf_decal/industrial/loading{
- dir = 4;
- layer = 2.37
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "1-6"
- },
-/obj/effect/turf_decal/corner/opaque/yellow/half{
- dir = 8;
- layer = 2.36
- },
-/turf/open/floor/plasteel,
-/area/ship/cargo)
-"CL" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/closet/wall/directional/east{
- name = "Uniform Closet"
- },
-/obj/item/clothing/neck/shemagh,
-/obj/item/clothing/neck/shemagh,
-/obj/item/clothing/neck/shemagh,
-/obj/item/clothing/shoes/jackboots,
-/obj/item/clothing/shoes/jackboots,
-/obj/item/clothing/shoes/jackboots,
-/obj/item/clothing/shoes/jackboots,
-/obj/item/clothing/shoes/jackboots,
-/obj/item/clothing/under/rank/security/officer/frontier,
-/obj/item/clothing/under/rank/security/officer/frontier,
-/obj/item/clothing/under/rank/security/officer/frontier,
-/obj/item/clothing/under/rank/security/officer/frontier,
-/obj/item/clothing/under/rank/security/officer/frontier,
-/obj/item/clothing/under/rank/security/officer/frontier,
-/obj/item/clothing/under/rank/security/officer/frontier,
-/obj/item/clothing/head/beret/sec/frontier,
-/obj/item/clothing/head/beret/sec/frontier,
-/obj/item/clothing/head/beret/sec/frontier,
-/obj/item/clothing/head/beret/sec/frontier,
-/obj/item/clothing/head/beret/sec/frontier,
-/obj/item/clothing/head/beret/sec/frontier,
-/obj/item/clothing/head/beret/sec/frontier,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/wood/walnut,
-/area/ship/crew)
-"CO" = (
-/obj/structure/closet/crate/freezer/blood,
-/obj/machinery/iv_drip,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/obj/effect/turf_decal/industrial/warning{
- dir = 6
- },
-/obj/machinery/light/directional/north,
-/obj/machinery/airalarm/directional/east,
-/turf/open/floor/plasteel/patterned/grid,
-/area/ship/medical)
-"CP" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/obj/structure/catwalk/over/plated_catwalk/dark,
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/light/directional/south,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/purple/hidden{
- dir = 8
- },
-/turf/open/floor/plating{
- icon_state = "foam_plating"
- },
-/area/ship/engineering/incinerator)
-"CS" = (
-/obj/item/stack/rods/ten{
- pixel_x = 9
- },
-/turf/open/floor/plating/airless{
- icon_state = "platingdmg1"
- },
-/area/ship/maintenance/port)
-"CV" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/glass{
- pixel_x = -17;
- pixel_y = 8
- },
-/obj/structure/catwalk/over,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ship/hallway/central)
-"CW" = (
-/obj/structure/table/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/item/modular_computer/laptop/preset,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/seeds/tobacco/space{
- pixel_y = -14;
- pixel_x = 5
- },
-/obj/item/seeds/tobacco/space{
- pixel_y = -14;
- pixel_x = 5
- },
-/turf/open/floor/carpet/nanoweave,
-/area/ship/security)
-"CX" = (
-/obj/effect/turf_decal/corner_techfloor_grid/full{
- dir = 4
- },
-/obj/effect/turf_decal/techfloor/corner,
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/hallway/fore)
-"Db" = (
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 4
- },
-/obj/structure/catwalk/over/plated_catwalk/dark,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/purple/hidden,
-/turf/open/floor/plating,
-/area/ship/engineering/incinerator)
-"De" = (
-/obj/effect/turf_decal/techfloor{
- dir = 6
- },
-/obj/structure/frame/machine,
-/obj/item/stock_parts/subspace/filter,
-/obj/item/stock_parts/subspace/filter,
-/obj/item/circuitboard/machine/telecomms/bus,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/maintenance/port)
-"Dg" = (
-/obj/machinery/computer/monitor,
-/obj/effect/decal/cleanable/robot_debris,
-/obj/machinery/power/apc/auto_name/directional/east,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/machinery/light_switch{
- dir = 8;
- pixel_y = 11;
- pixel_x = 20
- },
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/ship/engineering/communications)
-"Dq" = (
-/obj/machinery/portable_atmospherics/canister/toxins,
-/obj/structure/railing{
- dir = 4;
- layer = 4.1
- },
-/obj/effect/turf_decal/techfloor/orange{
- dir = 4
- },
-/obj/effect/turf_decal/industrial/outline/orange,
-/obj/machinery/power/apc/auto_name/directional/north,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/machinery/atmospherics/pipe/simple/yellow/hidden/layer4{
- dir = 8
- },
-/obj/machinery/light_switch{
- pixel_x = -12;
- pixel_y = 23;
- dir = 2
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/incinerator)
-"Ds" = (
-/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium,
-/obj/machinery/door/poddoor{
- id = "cutter_ce_lockdown";
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ship/engineering/communications)
-"Dv" = (
-/obj/structure/closet/crate/freezer/surplus_limbs,
-/obj/effect/turf_decal/industrial/warning{
- dir = 10
- },
-/obj/structure/sign/poster/official/cleanliness{
- pixel_y = 32
- },
-/turf/open/floor/plasteel/patterned/grid,
-/area/ship/medical)
-"Dw" = (
-/obj/effect/decal/fakelattice{
- icon_state = "lattice-3"
- },
-/obj/structure/girder,
-/turf/open/floor/plating/airless{
- icon_state = "foam_plating"
- },
-/area/ship/maintenance/port)
-"Dy" = (
-/obj/effect/decal/fakelattice{
- icon_state = "lattice-74"
- },
-/turf/open/floor/plating/airless,
-/area/ship/maintenance/port)
-"DC" = (
-/obj/machinery/atmospherics/pipe/layer_manifold{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/ship/hallway/central)
-"DE" = (
-/obj/effect/turf_decal/corner_techfloor_grid/full{
- dir = 1
- },
-/obj/effect/turf_decal/techfloor/corner{
- dir = 4
- },
-/obj/structure/closet/wall/blue/directional/east{
- name = "Bridge Officer's locker"
- },
-/obj/item/clothing/shoes/workboots,
-/obj/item/clothing/gloves/combat,
-/obj/item/clothing/under/rank/security/officer/frontier/officer,
-/obj/item/clothing/head/beret/sec/frontier,
-/obj/item/clothing/neck/cloak/qm,
-/obj/item/clothing/accessory/holster,
-/obj/item/clothing/glasses/hud/diagnostic,
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/item/melee/transforming/energy/sword/saber/pirate/red,
-/turf/open/floor/plasteel/dark,
-/area/ship/hallway/fore)
-"DF" = (
-/obj/effect/turf_decal/techfloor{
- dir = 6
- },
-/obj/item/geiger_counter{
- pixel_x = 1;
- pixel_y = 6
- },
-/obj/item/geiger_counter{
- pixel_x = -2;
- pixel_y = 1
- },
-/obj/structure/table/reinforced{
- color = "#c1b6a5"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 9
- },
-/obj/item/pipe_dispenser{
- pixel_y = -6
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/engine)
-"DG" = (
-/obj/structure/flora/ausbushes/grassybush,
-/obj/structure/flora/ausbushes/leafybush,
-/obj/effect/decal/cleanable/blood/splatter,
-/obj/structure/window/reinforced/spawner,
-/obj/structure/window/reinforced/spawner/west,
-/turf/open/floor/grass,
-/area/ship/maintenance/central)
-"DR" = (
-/obj/effect/decal/fakelattice{
- icon_state = "lattice-3"
- },
-/obj/item/stack/ore/salvage/scrapmetal/ten{
- pixel_y = -4;
- pixel_x = -11
- },
-/turf/open/floor/plating/airless,
-/area/ship/maintenance/port)
-"DS" = (
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 8
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 1
- },
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "cutter_general_lockdown";
- name = "Lockdown Shutters"
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ship/security/armory)
-"Ea" = (
-/obj/machinery/door/airlock/engineering{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 4
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ship/engineering/communications)
-"Eb" = (
-/turf/closed/wall/r_wall/syndicate/nodiagonal,
-/area/ship/cargo)
-"Ec" = (
-/obj/machinery/computer/med_data/syndie{
- dir = 1;
- pixel_y = -3
- },
-/obj/effect/turf_decal/techfloor{
- dir = 1
- },
-/turf/open/floor/plasteel/telecomms_floor,
-/area/ship/bridge)
-"Eg" = (
-/obj/item/paper_bin{
- pixel_x = -6
- },
-/obj/item/pen/fourcolor{
- pixel_x = -4
- },
-/obj/item/stamp{
- pixel_x = 8;
- pixel_y = 5
- },
-/obj/item/stamp/denied{
- pixel_x = 8
- },
-/obj/item/stamp/qm{
- pixel_y = -5;
- pixel_x = 8
- },
-/obj/structure/table/reinforced{
- color = "#c1b6a5"
- },
-/obj/machinery/newscaster/directional/south,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/bridge)
-"Ej" = (
-/obj/structure/railing{
- dir = 8;
- layer = 4.1
- },
-/obj/effect/decal/fakelattice{
- color = "#808080"
- },
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 8
- },
-/obj/effect/decal/cleanable/glass{
- dir = 8;
- pixel_y = 1;
- color = "#808080"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/elevatorshaft{
- color = "#808080"
- },
-/area/ship/engineering/atmospherics)
-"Ek" = (
-/obj/structure/table,
-/obj/item/storage/bag/tray,
-/obj/item/reagent_containers/food/condiment/enzyme{
- pixel_x = 13;
- pixel_y = 10
- },
-/obj/item/reagent_containers/food/snacks/honeybar{
- pixel_x = -3
- },
-/obj/item/reagent_containers/glass/beaker/large{
- pixel_x = 6;
- pixel_y = 2
- },
-/obj/item/reagent_containers/glass/beaker,
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/crew/canteen/kitchen)
-"El" = (
-/turf/closed/wall/r_wall,
-/area/ship/engineering/engine)
-"Em" = (
-/obj/structure/railing/corner{
- dir = 8
- },
-/obj/machinery/door/window/brigdoor/northleft,
-/turf/open/floor/plasteel/stairs,
-/area/ship/security)
-"En" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ship/hallway/central)
-"Er" = (
-/obj/effect/turf_decal/techfloor,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/reagent_containers/food/drinks/bottle/hooch{
- pixel_x = -15;
- pixel_y = -6
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/hallway/fore)
-"Et" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/item/seeds/potato{
- pixel_x = -5;
- pixel_y = 5
- },
-/obj/item/seeds/garlic{
- pixel_x = 5;
- pixel_y = 2
- },
-/obj/item/seeds/grass,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/ship/maintenance/central)
-"Eu" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/fakelattice{
- icon_state = "lattice-3"
- },
-/obj/item/stack/rods{
- pixel_x = -7;
- pixel_y = -2
- },
-/turf/open/floor/plating/airless,
-/area/ship/maintenance/port)
-"Ey" = (
-/obj/effect/turf_decal/techfloor{
- dir = 8
- },
-/obj/effect/turf_decal/trimline/transparent/lightgrey/line{
- dir = 4
- },
-/obj/effect/turf_decal/techfloor/corner,
-/obj/structure/cable{
- icon_state = "1-6"
- },
-/obj/structure/closet/radiation,
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ship/engineering/atmospherics)
-"EC" = (
-/obj/effect/turf_decal/siding/wood,
-/obj/effect/turf_decal/siding/wood{
- dir = 1
- },
-/obj/structure/chair,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/wood,
-/area/ship/crew/canteen)
-"EG" = (
-/turf/closed/wall/r_wall/syndicate/nodiagonal,
-/area/ship/crew)
-"EI" = (
-/obj/effect/turf_decal/techfloor{
- dir = 4
- },
-/obj/machinery/portable_atmospherics/scrubber/huge/movable,
-/obj/effect/turf_decal/industrial/outline/yellow,
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/incinerator)
-"EJ" = (
-/obj/effect/turf_decal/steeldecal/steel_decals10{
- dir = 1
- },
-/obj/effect/turf_decal/steeldecal/steel_decals10{
- dir = 8
- },
-/obj/effect/turf_decal/techfloor/corner{
- dir = 1
- },
-/obj/effect/turf_decal/techfloor/corner{
- dir = 8
- },
-/obj/effect/turf_decal/trimline/transparent/lightgrey/line{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ship/engineering/atmospherics)
-"EM" = (
-/turf/closed/wall/r_wall/syndicate,
-/area/ship/security/armory)
-"EP" = (
-/obj/effect/turf_decal/steeldecal/steel_decals_central2{
- dir = 4;
- pixel_x = -1
- },
-/obj/effect/turf_decal/techfloor/corner{
- dir = 4
- },
-/obj/effect/turf_decal/steeldecal/steel_decals8,
-/obj/effect/turf_decal/steeldecal/steel_decals9{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/bridge)
-"ER" = (
-/obj/effect/turf_decal/corner_techfloor_grid{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/hallway/fore)
-"EX" = (
-/obj/machinery/suit_storage_unit/inherit/industrial,
-/obj/item/tank/jetpack/carbondioxide,
-/obj/item/clothing/suit/space/engineer,
-/obj/item/clothing/head/helmet/space/light/engineer,
-/obj/effect/turf_decal/industrial/hatch/yellow,
-/obj/machinery/airalarm/directional/east,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/communications)
-"Fb" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/turf/open/floor/plasteel/stairs{
- icon = 'icons/obj/stairs.dmi';
- dir = 8
- },
-/area/ship/security/armory)
-"Fd" = (
-/obj/effect/turf_decal/techfloor,
-/obj/structure/chair{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 4
- },
-/obj/structure/extinguisher_cabinet/directional/south,
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/electrical)
-"Fg" = (
-/obj/effect/turf_decal/trimline/opaque/red/corner,
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 8
- },
-/obj/structure/railing{
- dir = 8;
- layer = 4.1
- },
-/obj/machinery/light/directional/east,
-/turf/open/floor/plasteel/dark,
-/area/ship/security)
-"Fi" = (
-/obj/structure/table/reinforced{
- color = "#c1b6a5"
- },
-/obj/machinery/light/small/directional/west,
-/obj/machinery/light_switch{
- pixel_y = 24
- },
-/obj/machinery/fax/frontiersmen,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/bridge)
-"Fo" = (
-/obj/effect/turf_decal/techfloor{
- dir = 9
- },
-/obj/machinery/light/directional/west,
-/turf/open/floor/plasteel/dark,
-/area/ship/hallway/fore)
-"Fu" = (
-/obj/machinery/door/airlock/external,
-/obj/structure/catwalk/over/plated_catwalk,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/barricade/wooden/crude,
-/turf/open/floor/plating,
-/area/ship/hallway/central)
-"Fx" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/crew/canteen/kitchen)
-"FC" = (
-/obj/effect/turf_decal/techfloor{
- dir = 5
- },
-/obj/machinery/airalarm/directional/north,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 4
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/engine)
-"FE" = (
-/obj/effect/turf_decal/spline/fancy/wood{
- dir = 5
- },
-/obj/structure/chair{
- dir = 4;
- pixel_x = 5;
- pixel_y = 4
- },
-/turf/open/floor/carpet/red,
-/area/ship/crew/canteen)
-"FF" = (
-/obj/structure/catwalk/over/plated_catwalk,
-/obj/structure/cable{
- 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/ship/engineering)
-"FG" = (
-/obj/machinery/power/smes/shuttle/precharged{
- dir = 4
- },
-/obj/structure/window/plasma/reinforced/spawner/west,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/machinery/door/window/eastleft{
- name = "Engine Access"
- },
-/obj/machinery/door/poddoor{
- id = "cutter_engines_lockdown";
- name = "Engine Blast Door";
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ship/engineering/atmospherics)
-"FI" = (
-/obj/effect/turf_decal/techfloor{
- dir = 9
- },
-/obj/effect/turf_decal/trimline/transparent/lightgrey/corner,
-/obj/effect/turf_decal/radiation,
-/obj/effect/decal/cleanable/cobweb,
-/obj/structure/sign/warning/radiation{
- pixel_y = 32
- },
-/obj/machinery/light/directional/west,
-/obj/structure/closet/radiation,
-/obj/item/clothing/glasses/meson{
- pixel_y = -6
- },
-/obj/item/clothing/glasses/meson{
- pixel_y = -6
- },
-/obj/item/reagent_containers/syringe/salacid,
-/obj/item/reagent_containers/hypospray/medipen/penacid,
-/obj/item/reagent_containers/hypospray/medipen/penacid,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/yellow/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ship/engineering/atmospherics)
-"FK" = (
-/obj/effect/turf_decal/techfloor,
-/obj/item/stack/sheet/plasteel/twenty{
- pixel_x = -3;
- pixel_y = 6
- },
-/obj/machinery/autolathe,
-/obj/item/stack/sheet/glass/fifty{
- pixel_x = 6
- },
-/obj/item/stack/sheet/metal/fifty{
- pixel_y = 2
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/electrical)
-"FL" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/catwalk/over,
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/ship/hallway/central)
-"FM" = (
-/obj/effect/turf_decal/techfloor{
- dir = 1
- },
-/obj/effect/turf_decal/steeldecal/steel_decals_central6{
- pixel_y = -7
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/power/terminal{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/machinery/button/door{
- id = "cutter_engines_lockdown";
- name = "Engine Shutters";
- pixel_y = 23;
- pixel_x = -10
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/atmospherics)
-"FQ" = (
-/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium,
-/turf/open/floor/plating,
-/area/ship/security/armory)
-"FR" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 2;
- color = "#808080"
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/machinery/power/shieldwallgen/atmos{
- anchored = 1;
- id = "cutter_gun_holo";
- locked = 1;
- dir = 1
- },
-/obj/machinery/door/poddoor{
- id = "cutter_gun_hatch";
- dir = 4
- },
-/turf/open/floor/plasteel/elevatorshaft{
- color = "#808080"
- },
-/area/ship/security/range)
-"FU" = (
-/obj/structure/reagent_dispensers/watertank,
-/obj/effect/turf_decal/industrial/hatch/yellow,
-/obj/machinery/airalarm/directional/east,
-/turf/open/floor/plating{
- icon_state = "platingdmg2"
- },
-/area/ship/cargo)
-"FV" = (
-/obj/effect/decal/fakelattice,
-/obj/structure/salvageable/computer{
- dir = 4;
- pixel_x = -1
- },
-/turf/open/floor/plating/airless,
-/area/ship/maintenance/port)
-"FW" = (
-/obj/item/stock_parts/subspace/filter{
- pixel_x = -7;
- pixel_y = -13
- },
-/obj/item/stock_parts/subspace/crystal,
-/obj/item/stock_parts/subspace/crystal{
- pixel_x = 8;
- pixel_y = -9
- },
-/obj/item/stock_parts/subspace/crystal{
- pixel_x = 1;
- pixel_y = -4
- },
-/obj/item/stock_parts/subspace/crystal{
- pixel_x = 7;
- pixel_y = 6
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood/tracks,
-/obj/effect/decal/cleanable/blood/gibs/body{
- pixel_y = -13
- },
-/turf/open/floor/plating/airless{
- icon_state = "plating_rust"
- },
-/area/ship/maintenance/port)
-"Gf" = (
-/obj/machinery/computer/secure_data/syndie{
- layer = 3.0;
- pixel_y = 4
- },
-/obj/effect/turf_decal/techfloor,
-/obj/item/reagent_containers/food/drinks/mug{
- pixel_y = 2;
- pixel_x = 8
- },
-/turf/open/floor/plasteel/telecomms_floor,
-/area/ship/bridge)
-"Gl" = (
-/obj/effect/turf_decal/techfloor{
- dir = 4
- },
-/obj/effect/turf_decal/trimline/transparent/lightgrey/line{
- dir = 8
- },
-/obj/effect/turf_decal/techfloor/corner{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/closet/crate/bin,
-/obj/item/flashlight,
-/obj/item/trash/candy,
-/obj/item/trash/boritos{
- pixel_y = -3
- },
-/obj/item/taperecorder,
-/obj/item/switchblade,
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ship/engineering/atmospherics)
-"Gn" = (
-/obj/effect/turf_decal/industrial/warning,
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/obj/effect/turf_decal/industrial/caution,
-/obj/effect/decal/cleanable/oil/streak,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ship/engineering/communications)
-"Gp" = (
-/obj/structure/window/reinforced/spawner,
-/obj/item/trash/cheesie{
- pixel_x = -4
- },
-/obj/machinery/conveyor{
- dir = 8;
- id = "cutter_conveyor"
- },
-/turf/open/floor/engine/hull/reinforced/interior,
-/area/ship/engineering/incinerator)
-"Gq" = (
-/turf/closed/wall/r_wall/rust,
-/area/ship/bridge)
-"Gr" = (
-/obj/structure/chair/comfy/grey/directional/west,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/carpet/green,
-/area/ship/crew/office)
-"Gw" = (
-/obj/machinery/door/firedoor/border_only{
- dir = 1
- },
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/door/airlock/highsecurity{
- name = "Master At Arm's Office";
- req_access_txt = "3"
- },
-/turf/open/floor/plasteel,
-/area/ship/security)
-"Gz" = (
-/obj/effect/turf_decal/corner/opaque/yellow/half{
- dir = 4
- },
-/obj/effect/turf_decal/industrial/warning/corner,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/ship/cargo)
-"GE" = (
-/turf/closed/wall/r_wall/syndicate/nodiagonal,
-/area/ship/maintenance/fore)
-"GF" = (
-/obj/effect/turf_decal/techfloor,
-/obj/structure/closet/wall/directional/south{
- icon_door = "yellow_wall";
- name = "engineering closet"
- },
-/obj/item/clothing/suit/toggle/industrial,
-/obj/item/clothing/under/utility,
-/obj/item/clothing/under/utility/skirt,
-/obj/item/clothing/suit/hooded/wintercoat,
-/obj/item/clothing/shoes/workboots{
- pixel_y = -7
- },
-/obj/item/clothing/gloves/color/yellow,
-/obj/item/storage/belt/utility/full/engi,
-/obj/item/clothing/glasses/meson{
- pixel_y = -6
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/electrical)
-"GH" = (
-/obj/structure/toilet{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/showroomfloor,
-/area/ship/engineering/communications)
-"GL" = (
-/turf/closed/wall/r_wall/syndicate/nodiagonal,
-/area/ship/bridge)
-"GM" = (
-/turf/closed/wall/r_wall/syndicate/nodiagonal,
-/area/ship/engineering/incinerator)
-"GO" = (
-/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/hallway/fore)
-"GQ" = (
-/turf/closed/wall/r_wall/rust,
-/area/ship/engineering/atmospherics)
-"GS" = (
-/turf/closed/wall/r_wall/rust,
-/area/ship/engineering/engine)
-"GU" = (
-/obj/effect/turf_decal/techfloor{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/purple/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/electrical)
-"GV" = (
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/structure/closet/crate/critter,
-/obj/item/stack/sheet/animalhide/human,
-/obj/item/stack/sheet/animalhide/human{
- pixel_x = -3;
- pixel_y = -6
- },
-/obj/item/stack/sheet/animalhide/human{
- pixel_y = 6;
- pixel_x = -4
- },
-/obj/item/reagent_containers/food/snacks/meat/slab/human,
-/obj/item/reagent_containers/food/snacks/meat/slab/human,
-/obj/item/reagent_containers/food/snacks/meat/slab/human,
-/turf/open/floor/plasteel/patterned/cargo_one,
-/area/ship/cargo)
-"GY" = (
-/obj/structure/railing{
- dir = 1
- },
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/showcase/cyborg/old,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/ship/security)
-"Hc" = (
-/obj/item/stock_parts/subspace/ansible{
- pixel_x = 4;
- pixel_y = 7
- },
-/obj/item/stock_parts/subspace/filter{
- pixel_x = 7;
- pixel_y = -13
- },
-/obj/item/stock_parts/subspace/filter{
- pixel_x = -7
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/item/stock_parts/subspace/ansible,
-/obj/item/stock_parts/subspace/ansible{
- pixel_x = 10;
- pixel_y = -9
- },
-/turf/open/floor/plating/airless{
- icon_state = "panelscorched"
- },
-/area/ship/maintenance/port)
-"Hd" = (
-/obj/effect/turf_decal/techfloor{
- dir = 6
- },
-/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
- dir = 8;
- min_temperature = 1;
- target_temperature = 1
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/engine)
-"Hf" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 4
- },
-/obj/effect/turf_decal/siding/wood{
- dir = 8
- },
-/obj/structure/chair{
- dir = 1;
- pixel_x = 6;
- pixel_y = 7
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 8
- },
-/turf/open/floor/wood,
-/area/ship/crew/canteen)
-"Hi" = (
-/obj/structure/bed,
-/obj/structure/curtain/cloth/grey,
-/obj/item/bedsheet/dorms,
-/obj/effect/turf_decal/siding/wood{
- dir = 10
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/item/radio/intercom/directional/west,
-/turf/open/floor/wood/walnut,
-/area/ship/crew)
-"Hm" = (
-/obj/structure/bed{
- icon_state = "dirty_mattress"
- },
-/obj/item/bedsheet/grey,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/dark,
-/area/ship/security/armory)
-"Hs" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/catwalk/over/plated_catwalk/dark,
-/obj/machinery/door/airlock/external,
-/turf/open/floor/plating,
-/area/ship/hallway/fore)
-"Ht" = (
-/obj/structure/bed/dogbed,
-/obj/effect/decal/cleanable/molten_object/large{
- pixel_x = 19;
- pixel_y = -2
- },
-/turf/open/floor/plating/airless,
-/area/ship/maintenance/port)
-"Hz" = (
-/obj/structure/curtain/bounty,
-/obj/effect/decal/cleanable/greenglow/ecto,
-/obj/effect/decal/cleanable/glass,
-/turf/open/floor/plating/airless{
- icon_state = "panelscorched"
- },
-/area/ship/maintenance/port)
-"HD" = (
-/obj/structure/bed,
-/obj/item/bedsheet/dorms,
-/obj/structure/curtain/cloth/grey,
-/obj/effect/turf_decal/siding/wood{
- dir = 9
- },
-/obj/item/paicard{
- pixel_x = -7;
- pixel_y = 4
- },
-/turf/open/floor/carpet/red_gold,
-/area/ship/crew)
-"HE" = (
-/obj/structure/chair/wood{
- dir = 1
- },
-/obj/effect/turf_decal/siding/wood{
- dir = 10
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/extinguisher_cabinet/directional/north,
-/obj/machinery/firealarm/directional/south,
-/turf/open/floor/concrete/tiles,
-/area/ship/crew)
-"HG" = (
-/obj/effect/turf_decal/techfloor/corner{
- dir = 8
- },
-/obj/effect/turf_decal/corner_techfloor_gray{
- dir = 6
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 8
- },
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/ship/engineering/engine)
-"HI" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/on{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/ship/engineering/incinerator)
-"HL" = (
-/obj/effect/turf_decal/techfloor/corner,
-/obj/effect/turf_decal/steeldecal/steel_decals9,
-/obj/structure/sign/poster/contraband/smoke{
- pixel_x = -32;
- pixel_y = -32
- },
-/obj/effect/turf_decal/steeldecal/steel_decals_central2{
- dir = 4;
- pixel_x = -1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/plasteel/dark,
-/area/ship/bridge)
-"HM" = (
-/obj/structure/closet/secure_closet{
- icon_door = "tac";
- icon_state = "tac";
- name = "boarding tools locker";
- req_access_txt = "3"
- },
-/obj/effect/turf_decal/techfloor,
-/obj/item/storage/backpack/duffelbag/syndie/x4,
-/obj/item/crowbar/power{
- pixel_y = -4
- },
-/obj/item/radio/intercom/directional/north,
-/turf/open/floor/plasteel/dark,
-/area/ship/security/armory)
-"HN" = (
-/obj/effect/turf_decal/corner/opaque/yellow/half{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/ship/cargo)
-"HR" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/airlock/maintenance_hatch,
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/door/firedoor/border_only{
- dir = 1
- },
-/turf/open/floor/plating{
- icon_state = "foam_plating"
- },
-/area/ship/maintenance/central)
-"HV" = (
-/obj/machinery/shower{
- dir = 4
- },
-/obj/item/soap,
-/turf/open/floor/plating/catwalk_floor,
-/area/ship/security/armory)
-"HW" = (
-/obj/effect/turf_decal/industrial/hatch/yellow,
-/obj/structure/closet/crate,
-/obj/item/storage/box/ingredients/vegetarian,
-/obj/item/storage/box/ingredients/carnivore{
- pixel_x = -4;
- pixel_y = 6
- },
-/obj/item/storage/box/ingredients/exotic{
- pixel_x = 7
- },
-/turf/open/floor/plasteel/patterned/cargo_one,
-/area/ship/cargo)
-"Ij" = (
-/obj/machinery/door/airlock/highsecurity{
- name = "Bridge";
- req_access_txt = "19"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 4
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ship/hallway/fore)
-"Ik" = (
-/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium,
-/obj/machinery/door/poddoor{
- id = "cutter_windows_general"
- },
-/turf/open/floor/plating,
-/area/ship/crew)
-"Im" = (
-/turf/closed/wall/r_wall,
-/area/ship/maintenance/fore)
-"In" = (
-/turf/open/floor/plasteel,
-/area/ship/hallway/central)
-"It" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ship/cargo)
-"Iu" = (
-/obj/effect/decal/cleanable/oil,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/power/terminal{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "0-1"
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/atmospherics)
-"Iv" = (
-/obj/effect/turf_decal/siding/wood,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood{
- icon_state = "wood-broken"
- },
-/area/ship/security)
-"IB" = (
-/obj/effect/turf_decal/spline/fancy/wood{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
- },
-/turf/open/floor/carpet/red,
-/area/ship/crew/canteen)
-"IC" = (
-/obj/structure/table/wood/reinforced,
-/obj/item/storage/fancy/cigarettes/cigars{
- pixel_x = 4;
- pixel_y = 1
- },
-/obj/item/storage/fancy/cigarettes/cigars{
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/item/storage/fancy/cigarettes/cigars{
- pixel_x = 4;
- pixel_y = 7
- },
-/obj/item/toy/cards/deck/cas/black{
- pixel_x = -14;
- pixel_y = 3
- },
-/obj/item/toy/cards/deck/cas{
- pixel_x = -11
- },
-/obj/item/lighter{
- pixel_x = 12;
- pixel_y = -8
- },
-/turf/open/floor/concrete/reinforced,
-/area/ship/crew)
-"ID" = (
-/obj/machinery/hydroponics/constructable,
-/obj/effect/turf_decal/siding/wood{
- dir = 10
- },
-/obj/item/radio/intercom/directional/south,
-/obj/machinery/light_switch{
- pixel_x = -12;
- dir = 1;
- pixel_y = -22
- },
-/turf/open/floor/concrete/tiles,
-/area/ship/crew/canteen/kitchen)
-"IE" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 10
- },
-/obj/effect/turf_decal/siding/wood/corner{
- dir = 4
- },
-/obj/structure/table/wood/reinforced,
-/obj/item/newspaper{
- pixel_x = -5;
- pixel_y = -1
- },
-/obj/item/reagent_containers/food/drinks/mug{
- pixel_x = 9;
- pixel_y = -2
- },
-/obj/item/newspaper{
- pixel_x = -5;
- pixel_y = 2
- },
-/obj/item/newspaper{
- pixel_x = -5;
- pixel_y = 5
- },
-/obj/machinery/light/directional/west,
-/obj/structure/sign/poster/contraband/space_cola{
- pixel_x = -32
- },
-/obj/structure/extinguisher_cabinet/directional/north,
-/turf/open/floor/wood,
-/area/ship/crew/canteen)
-"IF" = (
-/obj/effect/turf_decal/techfloor{
- dir = 8
- },
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 10
- },
-/obj/machinery/telecomms/broadcaster,
-/obj/item/stock_parts/subspace/analyzer,
-/obj/item/stock_parts/subspace/analyzer{
- pixel_x = 7;
- pixel_y = -7
- },
-/obj/item/stock_parts/subspace/analyzer{
- pixel_x = 2;
- pixel_y = -5
- },
-/obj/item/radio/intercom/directional/west,
-/obj/machinery/light_switch{
- pixel_x = -21;
- dir = 4;
- pixel_y = 7
- },
-/obj/item/stack/cable_coil/cut/yellow,
-/turf/open/floor/plasteel/telecomms_floor,
-/area/ship/maintenance/port)
-"II" = (
-/obj/effect/decal/cleanable/insectguts,
-/obj/structure/catwalk/over,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/ship/hallway/central)
-"IL" = (
-/turf/closed/wall/rust,
-/area/ship/maintenance/fore)
-"IM" = (
-/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium,
-/obj/machinery/door/poddoor{
- id = "cutter_windows_general"
- },
-/turf/open/floor/plating,
-/area/ship/hallway/fore)
-"IP" = (
-/obj/effect/turf_decal/number/two,
-/turf/closed/wall/r_wall/syndicate/nodiagonal,
-/area/ship/security/armory)
-"IS" = (
-/obj/structure/window/reinforced/spawner/north,
-/obj/structure/table/reinforced,
-/obj/machinery/button/door{
- id = "cutter_gun_hatch";
- name = "Gun Shutters";
- pixel_x = -8;
- pixel_y = 5;
- dir = 8
- },
-/obj/machinery/button/shieldwallgen{
- id = "cutter_gun_holo";
- pixel_x = -9;
- dir = 8;
- pixel_y = -3
- },
-/obj/machinery/button/massdriver{
- id = "cutter_gun_driver";
- name = "Launch Control";
- pixel_y = -3;
- dir = 8
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/security/range)
-"IX" = (
-/obj/effect/turf_decal/techfloor/corner,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/spawner/lootdrop/glowstick,
-/obj/item/stack/cable_coil/cut/yellow,
-/obj/item/stack/rods{
- pixel_x = 7;
- pixel_y = -9
- },
-/turf/open/floor/plating/airless,
-/area/ship/maintenance/port)
-"Ja" = (
-/obj/structure/table/reinforced,
-/obj/item/radio/intercom/directional/south,
-/obj/item/reagent_containers/food/drinks/coffee{
- pixel_x = -8;
- pixel_y = 3
- },
-/turf/open/floor/carpet/nanoweave,
-/area/ship/security)
-"Jb" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 1
- },
-/obj/effect/turf_decal/siding/wood,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/wood,
-/area/ship/crew/canteen)
-"Jd" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/item/radio/intercom/directional/west,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ship/hallway/central)
-"Jf" = (
-/obj/item/grenade/empgrenade{
- pixel_x = -9
- },
-/obj/item/grenade/empgrenade{
- pixel_x = -6;
- pixel_y = 3
- },
-/obj/item/grenade/syndieminibomb{
- pixel_x = 7;
- pixel_y = -6
- },
-/obj/item/grenade/syndieminibomb{
- pixel_x = 2;
- pixel_y = -1
- },
-/obj/structure/rack,
-/obj/item/grenade/spawnergrenade/manhacks{
- pixel_y = -5;
- pixel_x = -1
- },
-/obj/machinery/light/directional/south,
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/security/range)
-"Jk" = (
-/obj/effect/turf_decal/steeldecal/steel_decals10,
-/obj/effect/turf_decal/steeldecal/steel_decals10{
- dir = 4
- },
-/obj/effect/turf_decal/techfloor/corner{
- dir = 4
- },
-/obj/effect/turf_decal/trimline/transparent/lightgrey/line{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/yellow/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ship/engineering/atmospherics)
-"Jl" = (
-/obj/effect/turf_decal/industrial/traffic,
-/obj/effect/turf_decal/industrial/traffic{
- dir = 1
- },
-/obj/machinery/light/directional/west,
-/turf/open/floor/plasteel/patterned/cargo_one,
-/area/ship/cargo)
-"Jp" = (
-/obj/effect/turf_decal/siding/wood/corner,
-/obj/effect/decal/cleanable/wrapping,
-/obj/effect/decal/cleanable/cobweb{
- layer = 5
- },
-/obj/machinery/jukebox,
-/obj/effect/turf_decal/siding/wood{
- dir = 9
- },
-/obj/machinery/light/directional/west,
-/obj/machinery/light_switch{
- pixel_x = 12;
- pixel_y = 23
- },
-/obj/machinery/power/apc/auto_name/directional/north,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/ship/crew/canteen)
-"Jr" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/stairs{
- icon = 'icons/obj/stairs.dmi';
- dir = 8
- },
-/area/ship/security/range)
-"Jt" = (
-/obj/structure/table/glass,
-/obj/effect/turf_decal/siding/wood{
- dir = 9
- },
-/obj/structure/railing{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/item/storage/bag/plants/portaseeder,
-/turf/open/floor/concrete/tiles,
-/area/ship/crew/canteen/kitchen)
-"Jx" = (
-/obj/machinery/vending/cola/random,
-/obj/structure/sign/directions/command{
- dir = 4;
- pixel_y = 42
- },
-/obj/structure/sign/directions/engineering{
- pixel_y = 21;
- dir = 8
- },
-/obj/structure/sign/directions/medical{
- pixel_y = 28;
- dir = 1
- },
-/obj/structure/sign/directions/security{
- pixel_y = 35;
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ship/hallway/central)
-"Jy" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2,
-/turf/open/floor/plasteel,
-/area/ship/hallway/central)
-"JE" = (
-/obj/effect/turf_decal/siding/wood,
-/obj/structure/window/reinforced/spawner/west,
-/obj/structure/frame/machine,
-/turf/open/floor/concrete/slab_4,
-/area/ship/crew/canteen/kitchen)
-"JK" = (
-/turf/closed/wall,
-/area/ship/security/armory)
-"JO" = (
-/obj/effect/turf_decal/siding/wood,
-/obj/machinery/light/directional/south,
-/obj/structure/sign/departments/botany{
- pixel_x = 32
- },
-/obj/structure/salvageable/seed,
-/turf/open/floor/concrete/slab_1,
-/area/ship/crew/canteen/kitchen)
-"JQ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/sink{
- pixel_y = 22;
- pixel_x = 6
- },
-/obj/structure/mirror{
- pixel_y = 32
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/ship/crew)
-"JS" = (
-/obj/structure/catwalk/over/plated_catwalk,
-/obj/structure/rack,
-/obj/item/storage/toolbox/electrical,
-/obj/item/storage/belt/utility/full/engi,
-/obj/item/clothing/glasses/welding{
- pixel_y = 5
- },
-/obj/item/multitool{
- pixel_x = 9
- },
-/obj/item/geiger_counter{
- pixel_x = 1;
- pixel_y = -6
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/button/door{
- id = "cutter_engines_lockdown";
- name = "Engine Shutters";
- pixel_y = -21;
- pixel_x = -10;
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/purple/hidden{
- dir = 9
- },
-/turf/open/floor/plating/rust,
-/area/ship/engineering)
-"JV" = (
-/obj/structure/catwalk/over/plated_catwalk,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/confetti,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/purple/hidden,
-/turf/open/floor/plating,
-/area/ship/engineering/atmospherics)
-"JX" = (
-/obj/effect/turf_decal/siding/wood/corner{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/carpet/red_gold,
-/area/ship/crew)
-"JZ" = (
-/obj/structure/bed,
-/obj/item/bedsheet/hos,
-/obj/structure/curtain{
- color = "#5c131b"
- },
-/obj/machinery/light/directional/east,
-/obj/item/radio/intercom/directional/north{
- pixel_y = 22;
- pixel_x = 5
- },
-/obj/machinery/firealarm/directional/north,
-/turf/open/floor/carpet/black,
-/area/ship/security)
-"Kb" = (
-/turf/closed/wall,
-/area/ship/crew/canteen/kitchen)
-"Ke" = (
-/obj/structure/catwalk/over/plated_catwalk,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- 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/machinery/atmospherics/pipe/simple/purple/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ship/engineering)
-"Kh" = (
-/obj/structure/catwalk/over/plated_catwalk,
-/obj/effect/decal/cleanable/glass,
-/obj/structure/sign/departments/security{
- pixel_y = -32
- },
-/turf/open/floor/plating,
-/area/ship/hallway/central)
-"Kk" = (
-/obj/effect/turf_decal/atmos/air{
- dir = 4
- },
-/turf/open/floor/engine/air,
-/area/ship/engineering/atmospherics)
-"Kl" = (
-/obj/effect/turf_decal/techfloor{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/layer_manifold/visible{
- dir = 4
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/engine)
-"Kp" = (
-/obj/structure/girder,
-/obj/effect/decal/cleanable/wrapping,
-/obj/structure/grille/broken,
-/turf/open/floor/plating,
-/area/ship/hallway/central)
-"Kq" = (
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ship/security/armory)
-"Kt" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/rust,
-/area/ship/security)
-"Ku" = (
-/obj/machinery/disposal/deliveryChute{
- dir = 8
- },
-/obj/effect/turf_decal/siding/wood/end{
- dir = 4
- },
-/obj/machinery/light/directional/east,
-/obj/item/radio/intercom/directional/south,
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/turf/open/floor/wood,
-/area/ship/engineering/incinerator)
-"Kw" = (
-/obj/structure/sink{
- dir = 4;
- pixel_x = -12;
- pixel_y = 2
- },
-/obj/structure/mirror{
- pixel_y = -4;
- pixel_x = -28
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/showroomfloor,
-/area/ship/engineering/communications)
-"Kx" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 6
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/closet/wall/directional/south{
- name = "Utility Closet"
- },
-/obj/item/radio/old{
- pixel_x = 2;
- pixel_y = 9
- },
-/obj/item/radio/old{
- pixel_x = 2;
- pixel_y = 9
- },
-/obj/item/radio/old{
- pixel_x = 2;
- pixel_y = 9
- },
-/obj/item/radio/old{
- pixel_x = 2;
- pixel_y = 9
- },
-/obj/item/radio/old{
- pixel_x = 2;
- pixel_y = 9
- },
-/obj/item/radio/old{
- pixel_x = 2;
- pixel_y = 9
- },
-/obj/item/radio/old{
- pixel_x = 2;
- pixel_y = 9
- },
-/obj/item/radio/old{
- pixel_x = 2;
- pixel_y = 9
- },
-/obj/item/radio/old{
- pixel_x = 2;
- pixel_y = 9
- },
-/obj/item/radio/old{
- pixel_x = 2;
- pixel_y = 9
- },
-/obj/item/radio/old{
- pixel_x = 2;
- pixel_y = 9
- },
-/obj/item/radio/old{
- pixel_x = 2;
- pixel_y = 9
- },
-/obj/item/flashlight,
-/obj/item/flashlight,
-/obj/item/flashlight,
-/obj/item/flashlight,
-/obj/item/flashlight,
-/obj/item/flashlight,
-/obj/item/flashlight,
-/obj/item/flashlight,
-/obj/item/flashlight,
-/turf/open/floor/concrete/tiles,
-/area/ship/crew)
-"Ky" = (
-/obj/machinery/power/supermatter_crystal/shard/engine,
-/turf/open/floor/engine,
-/area/ship/engineering/engine)
-"KE" = (
-/obj/effect/turf_decal/techfloor{
- dir = 8
- },
-/obj/effect/turf_decal/techfloor/hole{
- dir = 8
- },
-/obj/effect/decal/cleanable/oil{
- icon_state = "floor6";
- pixel_y = 14
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/electrical)
-"KJ" = (
-/obj/structure/railing{
- dir = 8;
- layer = 4.1
- },
-/obj/effect/decal/fakelattice{
- color = "#808080"
- },
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 8
- },
-/turf/open/floor/plasteel/elevatorshaft{
- color = "#808080"
- },
-/area/ship/engineering/atmospherics)
-"KM" = (
-/obj/structure/railing{
- dir = 8;
- layer = 4.1
- },
-/obj/effect/turf_decal/techfloor{
- dir = 8
- },
-/obj/effect/turf_decal/spline/fancy/opaque/black,
-/obj/effect/turf_decal/steeldecal/steel_decals3{
- dir = 10;
- pixel_x = 16
- },
-/obj/effect/decal/cleanable/plastic,
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/obj/machinery/power/terminal{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/telecomms_floor,
-/area/ship/engineering/electrical)
-"KN" = (
-/obj/effect/turf_decal/siding/wood/corner,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/wood/walnut,
-/area/ship/crew)
-"KO" = (
-/obj/structure/chair/office{
- name = "tactical swivel chair";
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/effect/turf_decal/steeldecal/steel_decals10{
- dir = 5
- },
-/obj/effect/turf_decal/steeldecal/steel_decals10{
- dir = 6
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 8
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/bridge)
-"KP" = (
-/turf/closed/wall/rust,
-/area/ship/engineering)
-"KR" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/rack,
-/obj/item/storage/firstaid/advanced{
- pixel_x = 5
- },
-/obj/item/stack/medical/bruise_pack/herb,
-/obj/item/stack/medical/ointment/herb{
- pixel_x = -6;
- pixel_y = -8
- },
-/obj/item/sensor_device{
- pixel_x = -9;
- pixel_y = -1
- },
-/obj/machinery/firealarm/directional/north,
-/turf/open/floor/plasteel/patterned/cargo_one,
-/area/ship/medical)
-"KT" = (
-/obj/structure/railing{
- dir = 4;
- layer = 4.1
- },
-/obj/effect/turf_decal/techfloor{
- dir = 4
- },
-/obj/effect/turf_decal/spline/fancy/opaque/black,
-/obj/effect/turf_decal/steeldecal/steel_decals3{
- dir = 1;
- pixel_x = -16
- },
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/obj/machinery/power/terminal{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/telecomms_floor,
-/area/ship/engineering/electrical)
-"KW" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/turf/open/floor/engine/plasma,
-/area/ship/engineering/incinerator)
-"KY" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/ship/maintenance/port)
-"Lc" = (
-/obj/machinery/airalarm/directional/west,
-/obj/effect/decal/cleanable/garbage,
-/turf/open/floor/plating,
-/area/ship/hallway/central)
-"Ld" = (
-/obj/machinery/light/small/directional/west,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/stock_parts/micro_laser{
- pixel_x = 10;
- pixel_y = 7
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/ship/maintenance/fore)
-"Le" = (
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 4
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ship/security/armory)
-"Lf" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/reagent_containers/syringe,
-/obj/item/reagent_containers/syringe{
- pixel_x = 3
- },
-/obj/item/reagent_containers/syringe{
- pixel_x = 7
- },
-/obj/structure/chair/office{
- dir = 8;
- name = "tactical swivel chair"
- },
-/obj/effect/mob_spawn/human/corpse/frontier,
-/turf/open/floor/plating/rust,
-/area/ship/maintenance/fore)
-"Lg" = (
-/obj/effect/turf_decal/industrial/warning,
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/security/armory)
-"Lj" = (
-/obj/structure/catwalk/over/plated_catwalk,
-/obj/effect/decal/cleanable/glass{
- dir = 8;
- pixel_y = 1;
- color = "#808080"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/purple/hidden,
-/turf/open/floor/plating/rust,
-/area/ship/engineering/atmospherics)
-"Lm" = (
-/obj/item/stock_parts/subspace/ansible{
- pixel_x = -7
- },
-/obj/effect/decal/fakelattice{
- icon_state = "lattice-1"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/item/stack/ore/salvage/scrapsilver/five,
-/turf/open/floor/plating/airless,
-/area/ship/maintenance/port)
-"Ln" = (
-/obj/effect/turf_decal/steeldecal/steel_decals_central2{
- pixel_y = 2
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/steeldecal/steel_decals7{
- dir = 6
- },
-/obj/effect/turf_decal/steeldecal/steel_decals7{
- dir = 9
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/bridge)
-"Lq" = (
-/obj/structure/catwalk/over/plated_catwalk,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/glass{
- dir = 8;
- pixel_y = -10;
- color = "#808080"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 8
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "cutter_general_lockdown";
- name = "Lockdown Shutters";
- dir = 4
- },
-/turf/open/floor/plating{
- icon_state = "foam_plating"
- },
-/area/ship/hallway/central)
-"Ls" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- 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/ship/hallway/central)
-"Lx" = (
-/obj/effect/turf_decal/steeldecal/steel_decals_central2{
- dir = 4;
- pixel_x = -1
- },
-/obj/effect/turf_decal/techfloor{
- dir = 4
- },
-/obj/structure/plaque/static_plaque/golden/captain{
- pixel_y = 29
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/bridge)
-"Lz" = (
-/obj/structure/catwalk/over/plated_catwalk,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- 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/ship/hallway/central)
-"LA" = (
-/obj/effect/turf_decal/atmos/nitrogen{
- dir = 8
- },
-/turf/open/floor/engine/n2,
-/area/ship/engineering/atmospherics)
-"LB" = (
-/turf/closed/wall,
-/area/ship/engineering)
-"LE" = (
-/obj/effect/turf_decal/industrial/warning,
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/obj/effect/turf_decal/industrial/caution,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ship/engineering/communications)
-"LH" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/spline/fancy/opaque/black,
-/turf/open/floor/carpet/nanoweave,
-/area/ship/security)
-"LQ" = (
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 6
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 1
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ship/security/armory)
-"LT" = (
-/obj/machinery/door/airlock/external,
-/obj/structure/catwalk/over/plated_catwalk/dark,
-/obj/machinery/atmospherics/pipe/layer_manifold{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/ship/engineering/communications)
-"LU" = (
-/obj/effect/turf_decal/corner_techfloor_grid/full{
- dir = 1
- },
-/obj/effect/turf_decal/techfloor/corner{
- dir = 4
- },
-/obj/structure/closet/wall/blue/directional/east{
- name = "Bridge Officer's locker"
- },
-/obj/item/clothing/shoes/workboots,
-/obj/item/clothing/gloves/combat,
-/obj/item/clothing/under/rank/security/officer/frontier/officer,
-/obj/item/clothing/head/beret/sec/frontier,
-/obj/item/clothing/neck/cloak/qm,
-/obj/item/clothing/accessory/holster,
-/obj/item/clothing/glasses/hud/diagnostic,
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/item/melee/transforming/energy/sword/saber/pirate/red,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/hallway/fore)
-"LV" = (
-/obj/effect/turf_decal/techfloor{
- dir = 8
- },
-/obj/effect/turf_decal/techfloor{
- dir = 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 = "1-2"
- },
-/obj/machinery/door/airlock/atmos{
- name = "Engine Room";
- req_access_txt = "10"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/engine)
-"LZ" = (
-/obj/structure/table/reinforced{
- color = "#c1b6a5"
- },
-/obj/item/flashlight/lamp{
- pixel_x = -8;
- pixel_y = 13
- },
-/obj/item/paper_bin{
- pixel_x = -6;
- pixel_y = -5
- },
-/obj/item/clipboard{
- pixel_x = -4;
- pixel_y = -8
- },
-/obj/item/pen{
- pixel_x = -6;
- pixel_y = -4
- },
-/obj/item/phone{
- pixel_x = 7;
- pixel_y = 10
- },
-/obj/machinery/light_switch{
- pixel_x = -22;
- dir = 4;
- pixel_y = 8
- },
-/obj/machinery/firealarm/directional/west,
-/turf/open/floor/plating,
-/area/ship/engineering/communications)
-"Mb" = (
-/obj/docking_port/stationary{
- height = 15;
- width = 15;
- dwidth = 7;
- name = "main ember dock"
- },
-/turf/template_noop,
-/area/template_noop)
-"Mf" = (
-/obj/structure/railing{
- dir = 1
- },
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 1
- },
-/obj/machinery/light/directional/south,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/plasteel/stairs{
- icon = 'icons/obj/stairs.dmi';
- dir = 8
- },
-/area/ship/bridge)
-"Mh" = (
-/obj/effect/turf_decal/techfloor{
- dir = 8
- },
-/obj/structure/table/reinforced{
- color = "#c1b6a5"
- },
-/obj/item/paper_bin{
- pixel_x = -6;
- pixel_y = 4
- },
-/obj/item/pen{
- pixel_x = -6;
- pixel_y = 5
- },
-/obj/item/multitool{
- pixel_x = 4;
- pixel_y = 2
- },
-/obj/machinery/atmospherics/components/trinary/filter/atmos/plasma{
- dir = 8;
- piping_layer = 4
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/incinerator)
-"Mj" = (
-/obj/effect/decal/cleanable/wrapping,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 1
- },
-/turf/open/floor/plating/rust,
-/area/ship/hallway/central)
-"Ml" = (
-/obj/effect/turf_decal/corner_techfloor_grid{
- dir = 6
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/hallway/fore)
-"Mn" = (
-/obj/structure/closet/secure_closet{
- icon_state = "sec";
- name = "equipment locker";
- req_access_txt = "1"
- },
-/obj/effect/turf_decal/techfloor,
-/obj/item/clothing/mask/bandana/black{
- pixel_x = 1;
- pixel_y = -4
- },
-/obj/item/clothing/mask/bandana/black{
- pixel_x = 1;
- pixel_y = -4
- },
-/obj/item/clothing/mask/bandana/black{
- pixel_x = 1;
- pixel_y = -4
- },
-/obj/item/clothing/mask/gas/sechailer/balaclava,
-/obj/item/clothing/mask/gas/sechailer/balaclava,
-/obj/item/clothing/mask/gas/sechailer/balaclava,
-/obj/item/storage/belt/military,
-/obj/item/storage/belt/military,
-/obj/item/storage/belt/military/army,
-/obj/item/storage/belt/military/army,
-/obj/item/clothing/head/helmet/old{
- pixel_x = 7
- },
-/obj/item/clothing/head/helmet/old{
- pixel_x = 7;
- pixel_y = -4
- },
-/obj/item/clothing/suit/armor/riot,
-/obj/machinery/light_switch{
- pixel_y = 24
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/security/armory)
-"Mo" = (
-/obj/effect/turf_decal/industrial/traffic,
-/obj/effect/turf_decal/industrial/traffic{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/turf/open/floor/plasteel/patterned/cargo_one,
-/area/ship/cargo)
-"Ms" = (
-/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium,
-/obj/machinery/door/poddoor{
- id = "cutter_bridge_window";
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ship/bridge)
-"Mt" = (
-/obj/structure/catwalk/over/plated_catwalk,
-/obj/structure/sign/poster/contraband/d_day_promo{
- pixel_y = -32
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 8
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 4
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "cutter_general_lockdown";
- name = "Lockdown Shutters";
- dir = 4
- },
-/turf/open/floor/plating{
- icon_state = "foam_plating"
- },
-/area/ship/hallway/central)
-"Mu" = (
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/ship/security)
-"Mv" = (
-/turf/closed/wall,
-/area/ship/medical)
-"Mx" = (
-/obj/structure/bed,
-/obj/item/bedsheet/dorms,
-/obj/structure/curtain/cloth/grey,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
-/obj/item/radio/intercom/directional/north,
-/turf/open/floor/carpet/red_gold,
-/area/ship/crew)
-"Mz" = (
-/obj/structure/closet/crate/bin,
-/obj/item/trash/syndi_cakes,
-/obj/item/trash/plate,
-/obj/item/trash/candy,
-/obj/item/trash/waffles,
-/obj/item/flashlight,
-/obj/item/seeds/chili{
- pixel_y = -7;
- pixel_x = -2
- },
-/obj/structure/extinguisher_cabinet/directional/south,
-/turf/open/floor/plating,
-/area/ship/hallway/central)
-"MF" = (
-/turf/closed/wall/rust,
-/area/ship/crew/canteen/kitchen)
-"ML" = (
-/obj/effect/turf_decal/techfloor,
-/obj/item/kirbyplants{
- icon_state = "plant-22";
- pixel_x = -10
- },
-/turf/open/floor/plasteel/telecomms_floor,
-/area/ship/bridge)
-"MO" = (
-/obj/effect/turf_decal/siding/wood/end{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/conveyor_switch/oneway{
- id = "cutter_conveyor"
- },
-/turf/open/floor/wood{
- icon_state = "wood-broken3"
- },
-/area/ship/engineering/incinerator)
-"MQ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/glass{
- pixel_x = 9;
- pixel_y = -11
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/plating/rust,
-/area/ship/hallway/central)
-"MS" = (
-/obj/effect/decal/fakelattice{
- icon_state = "lattice-7"
- },
-/turf/open/floor/plating/airless{
- icon_state = "foam_plating"
- },
-/area/ship/maintenance/port)
-"MW" = (
-/obj/effect/turf_decal/industrial/hatch/yellow,
-/obj/structure/rack,
-/obj/item/storage/bag/ore,
-/obj/item/storage/bag/ore,
-/obj/item/pickaxe/rusted,
-/obj/item/pickaxe/drill,
-/obj/item/pickaxe/drill,
-/obj/machinery/button/door{
- id = "cutter_cargo_shutters";
- name = "Cargo Shutters";
- pixel_y = -23;
- dir = 1
- },
-/obj/machinery/button/shieldwallgen{
- id = "cutter_cargo";
- pixel_x = -8;
- pixel_y = -22;
- dir = 1
- },
-/turf/open/floor/plasteel/patterned/cargo_one,
-/area/ship/cargo)
-"Nb" = (
-/obj/machinery/atmospherics/pipe/simple/yellow/visible/layer4{
- dir = 8
- },
-/turf/closed/wall/r_wall,
-/area/ship/engineering/incinerator)
-"Nc" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ship/hallway/central)
-"Nj" = (
-/obj/effect/turf_decal/corner_techfloor_grid{
- dir = 10
- },
-/obj/effect/turf_decal/techfloor/corner,
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/hallway/fore)
-"Nn" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 10
- },
-/obj/structure/chair/comfy/grey/directional/north,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood,
-/area/ship/security)
-"No" = (
-/obj/effect/turf_decal/techfloor{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/electrical)
-"Np" = (
-/obj/structure/catwalk/over,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/ship/hallway/central)
-"Nr" = (
-/obj/machinery/vending/snack/random,
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/hallway/fore)
-"Nx" = (
-/obj/effect/turf_decal/techfloor{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/power/apc/auto_name/directional/west,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/hallway/fore)
-"Ny" = (
-/obj/effect/turf_decal/corner/opaque/yellow/half{
- dir = 8
- },
-/obj/effect/turf_decal/industrial/loading{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/ship/cargo)
-"Nz" = (
-/obj/structure/table,
-/obj/machinery/microwave{
- pixel_y = 5
- },
-/obj/item/storage/box/donkpockets{
- pixel_x = 4;
- pixel_y = 5
- },
-/obj/item/storage/box/donkpockets{
- pixel_x = -2
- },
-/obj/machinery/firealarm/directional/east,
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/crew/canteen/kitchen)
-"NC" = (
-/obj/effect/turf_decal/corner_techfloor_grid{
- dir = 2
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/hallway/fore)
-"NE" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/curtain/bounty,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/turf/open/floor/wood/walnut,
-/area/ship/crew)
-"NI" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/window/reinforced/spawner/west,
-/obj/structure/window/reinforced/spawner/east,
-/obj/structure/grille,
-/turf/open/floor/plating,
-/area/ship/maintenance/port)
-"NJ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/turf/open/floor/plasteel/patterned/cargo_one,
-/area/ship/medical)
-"NM" = (
-/obj/structure/table/reinforced,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/item/radio/intercom/wideband/table{
- dir = 8;
- pixel_x = -4
- },
-/turf/open/floor/carpet/nanoweave,
-/area/ship/security)
-"NW" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/structure/catwalk/over/plated_catwalk/dark,
-/turf/open/floor/plating,
-/area/ship/hallway/fore)
-"NX" = (
-/obj/effect/turf_decal/trimline/opaque/red/line{
- dir = 4
- },
-/obj/structure/railing/corner{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/noticeboard{
- dir = 8;
- pixel_x = 31
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/security)
-"NZ" = (
-/obj/effect/turf_decal/corner_techfloor_grid{
- dir = 1
- },
-/obj/effect/turf_decal/techfloor/corner{
- dir = 1
- },
-/obj/effect/turf_decal/steeldecal/steel_decals7,
-/obj/effect/decal/cleanable/glass{
- pixel_y = -8;
- pixel_x = 9
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- 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/machinery/atmospherics/pipe/simple/purple/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/electrical)
-"Oc" = (
-/turf/closed/wall/rust,
-/area/ship/engineering/atmospherics)
-"Oh" = (
-/obj/effect/decal/cleanable/greenglow{
- color = "#808080"
- },
-/obj/machinery/airalarm/directional/north,
-/obj/structure/catwalk/over,
-/turf/open/floor/plating/rust,
-/area/ship/hallway/central)
-"Oi" = (
-/obj/structure/window/reinforced/spawner,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/mass_driver{
- dir = 8;
- id = "cutter_disposals"
- },
-/turf/open/floor/engine/hull/reinforced/interior,
-/area/ship/engineering/incinerator)
-"Oj" = (
-/obj/machinery/door/airlock/mining{
- name = "Cargo Bay"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/plasteel,
-/area/ship/cargo)
-"On" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 8
- },
-/obj/structure/curtain/bounty,
-/turf/open/floor/wood/walnut,
-/area/ship/crew)
-"Oq" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/garbage,
-/obj/effect/decal/cleanable/food/flour,
-/obj/item/reagent_containers/glass/bucket/wooden{
- pixel_y = -5;
- pixel_x = -8
- },
-/obj/item/clothing/suit/longcoat/chemist,
-/obj/item/clothing/head/beret/chem{
- pixel_y = -9;
- pixel_x = 4
- },
-/obj/structure/sink/kitchen{
- dir = 4;
- pixel_x = -12
- },
-/turf/open/floor/plating,
-/area/ship/maintenance/fore)
-"Ou" = (
-/obj/effect/turf_decal/techfloor{
- dir = 4
- },
-/obj/effect/turf_decal/trimline/transparent/lightgrey/line{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ship/engineering/atmospherics)
-"Ox" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/obj/structure/table/reinforced{
- color = "#c1b6a5"
- },
-/obj/item/clothing/head/hardhat/red/upgraded{
- pixel_x = 8;
- pixel_y = -1
- },
-/obj/machinery/jukebox/boombox{
- pixel_y = 5
- },
-/obj/machinery/atmospherics/components/binary/pump,
-/obj/machinery/atmospherics/pipe/simple/yellow/hidden/layer4{
- dir = 8
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/incinerator)
-"Oy" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 4
- },
-/obj/effect/decal/cleanable/blood/old,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/carpet/red_gold,
-/area/ship/crew)
-"OC" = (
-/turf/open/floor/plating{
- icon_state = "platingdmg2"
- },
-/area/ship/hallway/central)
-"OL" = (
-/obj/effect/turf_decal/techfloor/corner{
- dir = 8
- },
-/obj/structure/sign/poster/contraband/hacking_guide{
- pixel_y = -32;
- pixel_x = -32
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/hallway/fore)
-"OM" = (
-/obj/effect/turf_decal/siding/wood,
-/obj/structure/sign/poster/contraband/have_a_puff{
- pixel_y = -32
- },
-/turf/open/floor/carpet/green,
-/area/ship/crew/office)
-"ON" = (
-/obj/effect/turf_decal/techfloor,
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/hallway/fore)
-"OP" = (
-/obj/effect/turf_decal/siding/wideplating/dark,
-/turf/open/floor/mineral/plastitanium,
-/area/ship/security/armory)
-"OW" = (
-/obj/structure/rack,
-/obj/item/clothing/shoes/magboots{
- pixel_x = -5;
- pixel_y = 1
- },
-/obj/item/clothing/shoes/magboots{
- pixel_x = 2;
- pixel_y = 4
- },
-/obj/item/radio/intercom/directional/south,
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 1
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/communications)
-"Pa" = (
-/obj/structure/chair{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
- },
-/turf/open/floor/plating/rust,
-/area/ship/security)
-"Pb" = (
-/obj/structure/railing{
- dir = 1
- },
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 1
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
-/turf/open/floor/plasteel/dark,
-/area/ship/security)
-"Pf" = (
-/obj/structure/girder,
-/turf/open/floor/plating/airless,
-/area/ship/maintenance/port)
-"Pk" = (
-/obj/effect/turf_decal/trimline/opaque/red/line{
- dir = 8
- },
-/obj/machinery/power/apc/auto_name/directional/west,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/effect/decal/cleanable/glass,
-/obj/structure/chair{
- dir = 4;
- pixel_x = 5;
- pixel_y = 4
- },
-/obj/item/reagent_containers/food/drinks/soda_cans/sodawater{
- pixel_x = 7;
- pixel_y = 6
- },
-/obj/machinery/light_switch{
- dir = 4;
- pixel_y = 12;
- pixel_x = -20
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/security)
-"Pl" = (
-/obj/structure/extinguisher_cabinet/directional/north,
-/obj/machinery/door/firedoor/border_only{
- dir = 8
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 4
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "cutter_general_lockdown";
- name = "Lockdown Shutters";
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ship/hallway/central)
-"Pn" = (
-/obj/structure/closet/wall/red/directional/west{
- name = "Ammo locker"
- },
-/obj/effect/turf_decal/techfloor{
- dir = 8
- },
-/obj/effect/turf_decal/techfloor/hole{
- dir = 8
- },
-/obj/item/ammo_box/c45_speedloader{
- pixel_y = -3
- },
-/obj/item/ammo_box/c45_speedloader{
- pixel_y = -1;
- pixel_x = 1
- },
-/obj/item/storage/box/lethalshot{
- pixel_x = -3
- },
-/obj/item/storage/box/lethalshot{
- pixel_y = 2;
- pixel_x = -4
- },
-/obj/item/ammo_box/magazine/uzim9mm{
- pixel_y = -4
- },
-/obj/item/ammo_box/magazine/uzim9mm,
-/obj/item/ammo_box/c45_speedloader{
- pixel_y = -3
- },
-/obj/item/ammo_box/c45_speedloader{
- pixel_y = -5;
- pixel_x = -1
- },
-/obj/item/ammo_box/magazine/illestren_a850r,
-/obj/item/ammo_box/magazine/illestren_a850r,
-/obj/item/storage/toolbox/ammo/a850r{
- pixel_y = -6;
- pixel_x = 5
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/security/armory)
-"Ps" = (
-/obj/structure/railing{
- dir = 1
- },
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 1
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
-/turf/open/floor/plasteel/dark,
-/area/ship/security)
-"Pv" = (
-/obj/effect/turf_decal/techfloor/corner,
-/obj/effect/turf_decal/steeldecal/steel_decals9,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/manifold4w/orange,
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/engine)
-"Pw" = (
-/obj/machinery/suit_storage_unit/inherit/industrial,
-/obj/machinery/button/door{
- id = "cutter_ce_lockdown";
- name = "Window Shutters";
- pixel_y = 23;
- pixel_x = -10
- },
-/obj/item/clothing/mask/gas,
-/obj/item/clothing/suit/space/hardsuit/engine/elite,
-/turf/open/floor/plating,
-/area/ship/engineering/communications)
-"PC" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/plasteel,
-/area/ship/hallway/central)
-"PE" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
- },
-/turf/open/floor/plasteel/white,
-/area/ship/crew/canteen/kitchen)
-"PG" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/item/circuitboard/machine/telecomms/message_server{
- pixel_x = -6;
- pixel_y = 8
- },
-/obj/item/circuitboard/machine/telecomms/relay,
-/obj/item/stack/cable_coil/cut/yellow,
-/obj/item/stack/rods,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating/airless,
-/area/ship/maintenance/port)
-"PJ" = (
-/obj/effect/turf_decal/trimline/opaque/red/corner{
- dir = 8
- },
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 4
- },
-/obj/structure/railing{
- dir = 4;
- layer = 4.1
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/light/directional/west,
-/turf/open/floor/plasteel/dark,
-/area/ship/security)
-"PP" = (
-/obj/structure/railing/corner{
- dir = 8
- },
-/obj/effect/turf_decal/borderfloorblack/corner{
- dir = 8
- },
-/obj/effect/turf_decal/techfloor{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/tech,
-/area/ship/bridge)
-"PX" = (
-/obj/effect/turf_decal/techfloor{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
- },
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 4
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/engine)
-"PY" = (
-/obj/structure/window/plasma/reinforced/spawner/west,
-/obj/machinery/power/rad_collector/anchored,
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/engine)
-"Qb" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 10
- },
-/obj/item/tank/internals/plasma/full,
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/engine)
-"Qe" = (
-/obj/item/stock_parts/subspace/transmitter,
-/obj/item/stock_parts/subspace/transmitter{
- pixel_x = -5;
- pixel_y = -7
- },
-/obj/item/stock_parts/subspace/transmitter{
- pixel_x = 1;
- pixel_y = -4
- },
-/obj/item/stock_parts/subspace/transmitter{
- pixel_x = 3;
- pixel_y = -8
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/item/stock_parts/subspace/transmitter{
- pixel_x = -5;
- pixel_y = -7
- },
-/obj/item/stock_parts/subspace/transmitter{
- pixel_x = 1;
- pixel_y = -4
- },
-/turf/open/floor/plating/airless{
- icon_state = "plating_rust"
- },
-/area/ship/maintenance/port)
-"Qi" = (
-/obj/structure/table/reinforced,
-/obj/effect/turf_decal/techfloor{
- dir = 4
- },
-/obj/item/ammo_casing/shotgun/laserscatter{
- pixel_x = -7;
- pixel_y = -8
- },
-/obj/item/ammo_casing/shotgun/laserscatter{
- pixel_x = -4;
- pixel_y = -6
- },
-/obj/item/ammo_casing/shotgun/stunslug,
-/obj/item/ammo_casing/shotgun/stunslug{
- pixel_x = 3;
- pixel_y = -4
- },
-/obj/item/gun/ballistic/shotgun/automatic/dual_tube{
- pixel_y = 2
- },
-/obj/item/gun/ballistic/shotgun/doublebarrel{
- pixel_y = -4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/dark,
-/area/ship/security/armory)
-"Qk" = (
-/obj/machinery/door/airlock/hatch{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ship/crew)
-"Qs" = (
-/turf/open/floor/plasteel/stairs{
- icon = 'icons/obj/stairs.dmi';
- dir = 8
- },
-/area/ship/security/armory)
-"Qv" = (
-/obj/structure/railing{
- dir = 1
- },
-/obj/effect/turf_decal/borderfloorblack{
- dir = 1
- },
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 1
- },
-/obj/effect/turf_decal/techfloor,
-/obj/item/radio/intercom/wideband/directional/south,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/bridge)
-"Qw" = (
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 8
- },
-/obj/structure/sign/warning/firingrange{
- pixel_x = -32
- },
-/obj/machinery/light/directional/west,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/mineral/plastitanium,
-/area/ship/security/armory)
-"Qx" = (
-/obj/structure/chair{
- dir = 1
- },
-/obj/effect/turf_decal/trimline/opaque/red/line{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/dark,
-/area/ship/security)
-"Qz" = (
-/obj/structure/catwalk/over/plated_catwalk/dark,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/manifold/purple/hidden{
- dir = 1
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
-/area/ship/engineering/incinerator)
-"QC" = (
-/obj/machinery/atmospherics/pipe/manifold/green/visible{
- dir = 8
- },
-/obj/item/tank/internals/plasma/full,
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/engine)
-"QH" = (
-/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/closet/emcloset/wall/directional/west,
-/obj/structure/catwalk/over/plated_catwalk/dark,
-/turf/open/floor/plating,
-/area/ship/engineering/communications)
-"QK" = (
-/turf/closed/wall,
-/area/ship/maintenance/port)
-"QP" = (
-/turf/open/floor/engine/o2,
-/area/ship/engineering/atmospherics)
-"QR" = (
-/obj/structure/catwalk/over/plated_catwalk,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/purple/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/plating,
-/area/ship/engineering/atmospherics)
-"Ra" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 6
- },
-/obj/effect/turf_decal/siding/wood/corner{
- dir = 1
- },
-/turf/open/floor/wood,
-/area/ship/crew/canteen)
-"Re" = (
-/turf/closed/wall/r_wall/syndicate,
-/area/ship/security/range)
-"Rf" = (
-/obj/structure/catwalk,
-/obj/item/kirbyplants{
- icon_state = "plant-22";
- pixel_x = -10;
- pixel_y = 21
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 4
- },
-/turf/open/floor/plating{
- icon_state = "foam_plating"
- },
-/area/ship/engineering/communications)
-"Rn" = (
-/obj/effect/turf_decal/steeldecal/steel_decals7{
- dir = 5
- },
-/obj/effect/turf_decal/steeldecal/steel_decals7{
- dir = 10
- },
-/obj/effect/turf_decal/steeldecal/steel_decals_central2{
- dir = 1;
- pixel_y = -2
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/bridge)
-"Rs" = (
-/obj/structure/railing{
- dir = 8;
- layer = 4.1
- },
-/obj/effect/decal/fakelattice{
- color = "#808080"
- },
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 8
- },
-/obj/effect/decal/cleanable/insectguts{
- color = "#808080"
- },
-/obj/effect/decal/cleanable/wrapping{
- color = "#808080"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/elevatorshaft{
- color = "#808080"
- },
-/area/ship/engineering/atmospherics)
-"RB" = (
-/obj/effect/turf_decal/techfloor/corner{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/bridge)
-"RP" = (
-/obj/machinery/door/window/brigdoor/northleft{
- dir = 4
- },
-/obj/effect/turf_decal/techfloor,
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/tech,
-/area/ship/security/range)
-"RQ" = (
-/obj/effect/decal/cleanable/sprayweb,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/ship/hallway/central)
-"RR" = (
-/obj/effect/decal/fakelattice{
- icon_state = "lattice-55"
- },
-/turf/open/floor/plating/airless{
- icon_state = "foam_plating"
- },
-/area/ship/maintenance/port)
-"RS" = (
-/obj/machinery/door/poddoor{
- id = "pirate_cutter_escape";
- dir = 4
- },
-/obj/structure/barricade/wooden/crude{
- layer = 3.1
- },
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/crew/office)
-"RT" = (
-/obj/effect/turf_decal/techfloor{
- dir = 1
- },
-/obj/structure/table/reinforced{
- color = "#c1b6a5"
- },
-/obj/machinery/cell_charger,
-/obj/item/stock_parts/cell/high,
-/obj/item/stock_parts/cell/hyper{
- pixel_y = -2;
- pixel_x = -6
- },
-/obj/machinery/power/apc/auto_name/directional/north,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/light_switch{
- pixel_y = 22;
- pixel_x = -12
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/atmospherics)
-"RW" = (
-/turf/closed/wall/r_wall/syndicate,
-/area/ship/engineering/incinerator)
-"RX" = (
-/obj/structure/bookcase/random/fiction,
-/obj/machinery/light_switch{
- pixel_x = 6;
- pixel_y = 22
- },
-/obj/item/radio/intercom/directional/north{
- pixel_x = -8
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/crew/office)
-"RY" = (
-/obj/effect/spawner/lootdrop/salvage_capacitor,
-/obj/item/stack/cable_coil/cut/yellow,
-/obj/item/stack/rods{
- pixel_x = 7
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg2"
- },
-/area/ship/maintenance/port)
-"Sa" = (
-/obj/structure/catwalk/over/plated_catwalk,
-/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/atmospherics/pipe/simple/purple/hidden,
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 8
- },
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/ship/engineering/atmospherics)
-"Sb" = (
-/obj/effect/turf_decal/techfloor{
- dir = 4
- },
-/obj/effect/turf_decal/techfloor{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 4
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/door/airlock/wood{
- req_access_txt = "20";
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/crew/office)
-"Sc" = (
-/obj/structure/chair/office{
- dir = 1;
- name = "tactical swivel chair"
- },
-/obj/effect/decal/cleanable/wrapping,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/bridge)
-"Sk" = (
-/obj/structure/sign/warning/deathsposal{
- pixel_y = 32
- },
-/obj/item/trash/can,
-/obj/item/trash/chips{
- pixel_x = 9;
- pixel_y = 5
- },
-/obj/machinery/conveyor{
- dir = 8;
- id = "cutter_conveyor"
- },
-/obj/machinery/door/window/brigdoor/southright{
- req_access_txt = "1"
- },
-/turf/open/floor/engine/hull/reinforced/interior,
-/area/ship/engineering/incinerator)
-"Sq" = (
-/obj/effect/turf_decal/corner_techfloor_grid{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/hallway/fore)
-"Sr" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ship/hallway/central)
-"Ss" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ship/engineering/communications)
-"SA" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 8;
- color = "#808080"
- },
-/obj/effect/turf_decal/techfloor{
- dir = 4
- },
-/obj/structure/frame/computer{
- anchored = 1;
- dir = 8
- },
-/obj/structure/railing{
- dir = 2;
- layer = 4.1
- },
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ship/cargo)
-"SB" = (
-/obj/structure/catwalk/over/plated_catwalk,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/purple/hidden,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/ship/engineering/atmospherics)
-"SE" = (
-/obj/effect/turf_decal/siding/wood/corner{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood/walnut{
- icon_state = "wood-broken4"
- },
-/area/ship/crew)
-"SF" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- 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/plasteel,
-/area/ship/hallway/central)
-"SH" = (
-/turf/closed/wall,
-/area/ship/engineering/atmospherics)
-"SK" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ship/hallway/central)
-"SM" = (
-/obj/structure/foamedmetal,
-/obj/structure/foamedmetal,
-/turf/open/floor/plating,
-/area/ship/maintenance/port)
-"SO" = (
-/obj/structure/chair/comfy/shuttle{
- dir = 4;
- name = "tactical chair"
- },
-/obj/effect/turf_decal/steeldecal/steel_decals3{
- dir = 6
- },
-/obj/effect/turf_decal/steeldecal/steel_decals3,
-/obj/effect/turf_decal/steeldecal/steel_decals_central4{
- dir = 8
- },
-/turf/open/floor/plasteel/telecomms_floor,
-/area/ship/bridge)
-"SP" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/door/firedoor/border_only{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "cutter_general_lockdown";
- name = "Lockdown Shutters"
- },
-/turf/open/floor/plating{
- icon_state = "foam_plating"
- },
-/area/ship/hallway/central)
-"SQ" = (
-/obj/structure/catwalk/over/plated_catwalk,
-/obj/machinery/light_switch{
- pixel_x = -22;
- dir = 4;
- pixel_y = 6
- },
-/obj/item/radio/intercom/directional/west,
-/obj/machinery/light_switch{
- dir = 4;
- pixel_x = -20;
- pixel_y = 12
- },
-/turf/open/floor/plating{
- icon_state = "foam_plating"
- },
-/area/ship/hallway/central)
-"SR" = (
-/obj/structure/chair{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/plasteel/dark,
-/area/ship/security)
-"SW" = (
-/obj/structure/fireaxecabinet{
- pixel_y = 27
- },
-/obj/structure/catwalk/over/plated_catwalk/dark,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/layer_manifold/visible{
- dir = 4
- },
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/ship/engineering/incinerator)
-"Td" = (
-/obj/effect/turf_decal/techfloor{
- dir = 1
- },
-/obj/effect/turf_decal/techfloor/hole/right{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/purple/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/electrical)
-"Tk" = (
-/obj/machinery/atmospherics/components/unary/shuttle/heater{
- dir = 4
- },
-/obj/structure/window/plasma/reinforced/spawner/west,
-/obj/structure/window/plasma/reinforced/spawner/east,
-/obj/machinery/door/poddoor{
- id = "cutter_engines_lockdown";
- name = "Engine Blast Door";
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ship/engineering)
-"Tn" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 6
- },
-/obj/item/tank/internals/plasma/full,
-/obj/structure/extinguisher_cabinet/directional/north,
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/engine)
-"To" = (
-/turf/closed/wall/r_wall/syndicate/nodiagonal,
-/area/ship/crew/canteen/kitchen)
-"Tp" = (
-/obj/structure/table,
-/obj/machinery/reagentgrinder{
- pixel_y = 5
- },
-/obj/item/kitchen/knife{
- pixel_x = -6;
- pixel_y = 6
- },
-/obj/item/kitchen/rollingpin,
-/obj/item/kitchen/knife/butcher{
- pixel_x = -1
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/obj/machinery/light/directional/east,
-/turf/open/floor/plasteel/dark,
-/area/ship/crew/canteen/kitchen)
-"Tw" = (
-/obj/machinery/atmospherics/pipe/layer_manifold{
- dir = 8
- },
-/turf/closed/wall/r_wall,
-/area/ship/maintenance/fore)
-"Tx" = (
-/obj/machinery/biogenerator,
-/obj/effect/turf_decal/siding/wood{
- dir = 6
- },
-/turf/open/floor/concrete/tiles,
-/area/ship/crew/canteen/kitchen)
-"TI" = (
-/turf/closed/wall/r_wall,
-/area/ship/security/armory)
-"TO" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 1
- },
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "cutter_general_lockdown";
- name = "Lockdown Shutters"
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ship/security/armory)
-"TS" = (
-/obj/structure/chair/plastic{
- dir = 8
- },
-/obj/effect/turf_decal/siding/wood{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/concrete/tiles,
-/area/ship/crew)
-"TW" = (
-/obj/structure/reagent_dispensers/watertank,
-/obj/item/reagent_containers/glass/bucket,
-/obj/effect/turf_decal/weather/dirt{
- dir = 6
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg2"
- },
-/area/ship/maintenance/central)
-"TY" = (
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 8
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ship/security/armory)
-"Uj" = (
-/obj/structure/table/wood/reinforced,
-/obj/item/areaeditor/shuttle{
- pixel_x = -4;
- pixel_y = 4
- },
-/obj/item/reagent_containers/food/drinks/coffee{
- pixel_x = 10;
- pixel_y = 3
- },
-/obj/item/storage/photo_album{
- pixel_x = -5;
- pixel_y = 12
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/item/vibro_weapon,
-/turf/open/floor/plasteel/tech,
-/area/ship/crew/office)
-"Uk" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 5
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/glass{
- pixel_y = -5;
- pixel_x = -9
- },
-/turf/open/floor/wood,
-/area/ship/security)
-"Ul" = (
-/obj/effect/turf_decal/techfloor,
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/obj/structure/table/reinforced{
- color = "#c1b6a5"
- },
-/obj/item/extinguisher/advanced{
- pixel_x = 8;
- pixel_y = 3
- },
-/obj/item/pipe_dispenser{
- pixel_y = -6
- },
-/obj/item/reagent_containers/glass/maunamug{
- pixel_x = -5;
- pixel_y = 9
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/purple/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/incinerator)
-"Um" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/obj/structure/closet/emcloset/wall/directional/west,
-/obj/machinery/advanced_airlock_controller{
- pixel_y = 26
- },
-/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/hallway/fore)
-"Ut" = (
-/obj/structure/table/reinforced,
-/obj/item/toy/figure/botanist{
- pixel_x = -9;
- pixel_y = 7
- },
-/obj/item/spear/bonespear,
-/obj/item/scythe,
-/obj/machinery/power/apc/auto_name/directional/west,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/item/cultivator,
-/obj/item/cultivator,
-/turf/open/floor/plating,
-/area/ship/maintenance/central)
-"Uw" = (
-/turf/closed/wall/r_wall/syndicate,
-/area/ship/crew/office)
-"Uz" = (
-/obj/effect/turf_decal/techfloor/corner{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/chair/greyscale{
- dir = 8;
- pixel_y = -7;
- pixel_x = -3
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/hallway/fore)
-"UA" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/fakelattice{
- icon_state = "lattice-9"
- },
-/turf/open/floor/plating,
-/area/ship/maintenance/port)
-"UC" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
- },
-/area/ship/cargo)
-"UF" = (
-/obj/structure/railing{
- dir = 8;
- layer = 4.1
- },
-/obj/machinery/portable_atmospherics/canister/air,
-/obj/effect/turf_decal/techfloor/orange{
- dir = 8
- },
-/obj/effect/turf_decal/industrial/outline,
-/obj/structure/sign/warning/explosives/alt{
- pixel_y = 32
- },
-/obj/machinery/atmospherics/pipe/simple/yellow/hidden/layer4{
- dir = 10
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/incinerator)
-"UH" = (
-/obj/structure/catwalk/over/plated_catwalk,
-/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating/rust,
-/area/ship/hallway/central)
-"UT" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/ship/hallway/central)
-"UV" = (
-/obj/machinery/power/smes/engineering,
-/obj/structure/railing{
- dir = 8;
- layer = 4.1
- },
-/obj/effect/turf_decal/techfloor{
- dir = 8
- },
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 8
- },
-/obj/structure/sign/poster/official/build{
- pixel_y = 32
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plasteel/telecomms_floor,
-/area/ship/engineering/electrical)
-"UX" = (
-/turf/closed/wall/r_wall/syndicate,
-/area/ship/crew/canteen/kitchen)
-"UY" = (
-/obj/item/stack/rods{
- pixel_x = 7
- },
-/turf/open/floor/plasteel,
-/area/ship/hallway/central)
-"Va" = (
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 4
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 1
- },
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "cutter_general_lockdown";
- name = "Lockdown Shutters"
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ship/security/armory)
-"Vb" = (
-/obj/structure/railing{
- dir = 2;
- layer = 4.1
- },
-/obj/structure/chair{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/plasteel/dark,
-/area/ship/security)
-"Vh" = (
-/obj/machinery/light/directional/south,
-/obj/structure/closet/crate/bin,
-/obj/item/trash/energybar,
-/obj/item/trash/candy,
-/obj/item/trash/cheesie,
-/obj/item/trash/pistachios{
- pixel_x = 5
- },
-/obj/item/flashlight/flare,
-/turf/open/floor/plasteel,
-/area/ship/hallway/central)
-"Vr" = (
-/obj/effect/turf_decal/steeldecal/steel_decals10{
- dir = 1
- },
-/obj/effect/turf_decal/steeldecal/steel_decals10{
- dir = 8
- },
-/obj/effect/turf_decal/techfloor/corner{
- dir = 8
- },
-/obj/effect/turf_decal/trimline/transparent/lightgrey/line{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ship/engineering/atmospherics)
-"Vs" = (
-/obj/effect/decal/fakelattice{
- icon_state = "lattice-29"
- },
-/obj/structure/extinguisher_cabinet/directional/north,
-/obj/item/grenade/chem_grenade/smart_metal_foam{
- pixel_x = 3;
- pixel_y = -5
- },
-/obj/item/stack/ore/salvage/scrapgold/five,
-/turf/open/floor/plating/airless{
- icon_state = "platingdmg3"
- },
-/area/ship/maintenance/port)
-"Vt" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/arrows{
- pixel_y = 15
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
- },
-/turf/open/floor/plating/rust,
-/area/ship/medical)
-"Vu" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/sign/departments/cargo{
- pixel_y = -32
- },
-/turf/open/floor/plasteel,
-/area/ship/hallway/central)
-"Vw" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 1
- },
-/obj/effect/turf_decal/siding/wood,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood{
- icon_state = "wood-broken6"
- },
-/area/ship/engineering/incinerator)
-"Vx" = (
-/obj/structure/table,
-/obj/item/reagent_containers/food/condiment/peppermill{
- pixel_y = 15;
- pixel_x = -10
- },
-/obj/item/reagent_containers/food/condiment/saltshaker{
- pixel_y = 13;
- pixel_x = -7
- },
-/obj/item/reagent_containers/food/snacks/dough{
- pixel_x = 3
- },
-/obj/item/book/manual/chef_recipes{
- pixel_x = -4;
- pixel_y = -2
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/crew/canteen/kitchen)
-"VA" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/spawner/lootdrop/mafia_outfit,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating/airless,
-/area/ship/maintenance/port)
-"VB" = (
-/obj/structure/railing{
- dir = 2;
- layer = 4.1
- },
-/obj/structure/chair{
- dir = 1
- },
-/obj/effect/turf_decal/trimline/opaque/red/corner{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/ship/security)
-"VC" = (
-/obj/structure/railing/corner,
-/obj/structure/extinguisher_cabinet/directional/west,
-/turf/open/floor/plasteel/stairs,
-/area/ship/security)
-"VD" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/on{
- dir = 8
- },
-/turf/open/floor/engine/n2,
-/area/ship/engineering/atmospherics)
-"VG" = (
-/obj/structure/table/reinforced,
-/obj/effect/turf_decal/techfloor{
- dir = 5
- },
-/obj/item/paper_bin{
- pixel_x = -8;
- pixel_y = 4
- },
-/obj/item/pen/red{
- pixel_x = -8;
- pixel_y = 6
- },
-/obj/item/camera_bug{
- pixel_x = 2;
- pixel_y = 10
- },
-/obj/machinery/recharger{
- pixel_x = 4;
- pixel_y = -3
- },
-/obj/item/clipboard{
- pixel_x = -10
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/bridge)
-"VI" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/firedoor/border_only{
- dir = 4
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ship/hallway/central)
-"VL" = (
-/obj/machinery/atmospherics/components/unary/shuttle/heater{
- dir = 4
- },
-/obj/structure/window/plasma/reinforced/spawner/west,
-/obj/structure/window/plasma/reinforced/spawner/east,
-/obj/machinery/door/poddoor{
- id = "cutter_engines_lockdown";
- name = "Engine Blast Door";
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ship/engineering/incinerator)
-"VN" = (
-/obj/machinery/portable_atmospherics/pump,
-/obj/structure/railing{
- dir = 8;
- layer = 4.1
- },
-/obj/effect/turf_decal/techfloor{
- dir = 8
- },
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/button/door{
- id = "cutter_engines_lockdown";
- name = "Engine Shutters";
- pixel_y = 9;
- pixel_x = -23;
- dir = 4
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/incinerator)
-"VP" = (
-/obj/structure/guncase,
-/obj/effect/turf_decal/techfloor,
-/obj/item/gun/energy/taser,
-/obj/structure/sign/poster/official/ion_carbine{
- pixel_y = 32
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/security/armory)
-"VU" = (
-/obj/effect/turf_decal/corner_techfloor_grid/full{
- dir = 4
- },
-/obj/effect/turf_decal/techfloor/corner,
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/obj/structure/extinguisher_cabinet/directional/east,
-/turf/open/floor/plasteel/dark,
-/area/ship/hallway/fore)
-"Wb" = (
-/obj/structure/bed,
-/obj/item/bedsheet/dorms,
-/obj/effect/turf_decal/siding/wood{
- dir = 6
- },
-/obj/structure/curtain/cloth/grey,
-/obj/machinery/newscaster/directional/south,
-/obj/item/toy/plush/beeplushie,
-/turf/open/floor/carpet/green,
-/area/ship/crew/office)
-"Wc" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/glass{
- pixel_y = 10
- },
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/door/firedoor/border_only{
- dir = 1
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "cutter_general_lockdown";
- name = "Lockdown Shutters"
- },
-/turf/open/floor/plasteel,
-/area/ship/hallway/central)
-"Wd" = (
-/obj/effect/turf_decal/steeldecal/steel_decals10{
- dir = 8
- },
-/obj/effect/turf_decal/steeldecal/steel_decals10{
- dir = 1
- },
-/obj/effect/turf_decal/techfloor/corner{
- dir = 1
- },
-/obj/effect/turf_decal/techfloor/corner{
- dir = 8
- },
-/obj/effect/turf_decal/trimline/transparent/lightgrey/line{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/purple/hidden{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ship/engineering/atmospherics)
-"Wj" = (
-/obj/effect/turf_decal/corner_techfloor_grid{
- dir = 2
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/turf/open/floor/plasteel/dark,
-/area/ship/hallway/fore)
-"Wm" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/item/poster/random_contraband,
-/obj/item/poster/random_contraband{
- pixel_y = -4
- },
-/obj/item/stock_parts/subspace/amplifier{
- pixel_x = -8;
- pixel_y = 5
- },
-/obj/item/stock_parts/subspace/amplifier{
- pixel_x = -5;
- pixel_y = -1
- },
-/turf/open/floor/plating/airless{
- icon_state = "panelscorched"
- },
-/area/ship/maintenance/port)
-"Wq" = (
-/obj/effect/turf_decal/techfloor,
-/obj/machinery/power/terminal{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "0-1"
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/atmospherics)
-"Wt" = (
-/obj/effect/turf_decal/techfloor{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/engine)
-"WA" = (
-/obj/effect/turf_decal/atmos/oxygen{
- dir = 8
- },
-/turf/open/floor/engine/o2,
-/area/ship/engineering/atmospherics)
-"WH" = (
-/turf/closed/wall/rust,
-/area/ship/crew)
-"WK" = (
-/obj/structure/table/reinforced,
-/obj/item/reagent_containers/food/snacks/grown/corn{
- pixel_y = 6
- },
-/obj/item/reagent_containers/food/snacks/grown/pumpkin{
- pixel_y = 6
- },
-/obj/item/reagent_containers/food/snacks/grown/carrot,
-/obj/item/reagent_containers/food/snacks/grown/tomato,
-/obj/item/radio/intercom/directional/south,
-/obj/machinery/light/small/directional/west,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/ship/maintenance/central)
-"WL" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ship/hallway/central)
-"WR" = (
-/obj/structure/table/wood/reinforced,
-/obj/item/flashlight/lamp{
- pixel_x = -5;
- pixel_y = 10
- },
-/obj/item/paper_bin{
- pixel_x = 7;
- pixel_y = 2
- },
-/obj/item/pen{
- pixel_x = 5;
- pixel_y = 1
- },
-/obj/item/toy/cards/deck/tarot{
- pixel_x = -3;
- pixel_y = 1
- },
-/turf/open/floor/concrete/reinforced,
-/area/ship/crew)
-"WV" = (
-/obj/structure/chair{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/plasteel/dark,
-/area/ship/security)
-"Xd" = (
-/obj/structure/sink/puddle,
-/obj/structure/flora/ausbushes/stalkybush{
- pixel_y = 6
- },
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/turf/open/floor/grass,
-/area/ship/maintenance/central)
-"Xj" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 4;
- color = "#808080"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/airalarm/directional/east,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ship/engineering)
-"Xm" = (
-/obj/structure/catwalk,
-/obj/item/weldingtool{
- pixel_x = 7;
- pixel_y = 11
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/directional/south,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/ship/engineering/communications)
-"Xn" = (
-/obj/structure/catwalk/over/plated_catwalk,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/door/firedoor/border_only{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/purple/hidden,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ship/engineering/atmospherics)
-"Xp" = (
-/obj/item/stock_parts/subspace/ansible{
- pixel_x = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/item/stack/rods{
- pixel_x = -7;
- pixel_y = -2
- },
-/turf/open/floor/plating/airless,
-/area/ship/maintenance/port)
-"Xt" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 8;
- color = "#808080"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 4
- },
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ship/engineering)
-"Xu" = (
-/obj/effect/decal/cleanable/blood/tracks,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/door/firedoor/border_only{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/door/airlock/medical{
- name = "Medbay"
- },
-/turf/open/floor/plating,
-/area/ship/medical)
-"Xz" = (
-/obj/machinery/shower{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating/catwalk_floor,
-/area/ship/crew)
-"XA" = (
-/obj/structure/chair{
- dir = 1
- },
-/obj/effect/turf_decal/trimline/opaque/red/line{
- dir = 8
- },
-/obj/machinery/light/directional/west,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/security)
-"XL" = (
-/obj/effect/turf_decal/steeldecal/steel_decals10,
-/obj/effect/turf_decal/steeldecal/steel_decals10{
- dir = 4
- },
-/obj/effect/turf_decal/techfloor/corner,
-/obj/effect/turf_decal/trimline/transparent/lightgrey/line{
- dir = 8
- },
-/obj/machinery/atmospherics/components/trinary/filter/atmos/o2{
- dir = 1;
- piping_layer = 4
- },
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ship/engineering/atmospherics)
-"XP" = (
-/obj/machinery/holopad/emergency/bar,
-/obj/effect/turf_decal/box,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/ship/crew/canteen/kitchen)
-"XU" = (
-/obj/machinery/power/apc/auto_name/directional/north,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/structure/catwalk/over,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/ship/hallway/central)
-"XV" = (
-/obj/effect/turf_decal/steeldecal/steel_decals10{
- dir = 9
- },
-/obj/effect/turf_decal/steeldecal/steel_decals10{
- dir = 10
- },
-/obj/effect/turf_decal/techfloor/corner{
- dir = 4
- },
-/obj/effect/turf_decal/techfloor/corner{
- dir = 1
- },
-/obj/effect/turf_decal/trimline/transparent/lightgrey/line,
-/obj/effect/turf_decal/industrial/stand_clear,
-/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/yellow/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ship/engineering/atmospherics)
-"XZ" = (
-/obj/structure/chair/wood,
-/obj/effect/turf_decal/siding/wood{
- dir = 9
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/power/apc/auto_name/directional/west,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 4
- },
-/obj/machinery/light_switch{
- dir = 4;
- pixel_x = -20;
- pixel_y = 12
- },
-/turf/open/floor/concrete/tiles,
-/area/ship/crew)
-"Yf" = (
-/obj/structure/catwalk/over/plated_catwalk/dark,
-/obj/machinery/door/firedoor/border_only{
- dir = 1
- },
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/door/airlock/hatch{
- name = "The Plank"
- },
-/turf/open/floor/plating,
-/area/ship/engineering/incinerator)
-"Yg" = (
-/obj/structure/bed/roller,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/greenglow,
-/obj/structure/sign/poster/contraband/xenofauna_parasite{
- pixel_x = -32
- },
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/ship/medical)
-"Yh" = (
-/obj/structure/curtain/bounty,
-/obj/item/trash/chips,
-/turf/open/floor/plating/airless{
- icon_state = "plating_rust"
- },
-/area/ship/maintenance/port)
-"Yj" = (
-/obj/effect/spawner/lootdrop/salvage_manipulator,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/security/range)
-"Yk" = (
-/obj/item/stock_parts/subspace/treatment{
- pixel_x = 2;
- pixel_y = -5
- },
-/obj/item/stock_parts/subspace/treatment{
- pixel_x = 5;
- pixel_y = 8
- },
-/obj/item/stock_parts/subspace/treatment{
- pixel_x = -4;
- pixel_y = -10
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/item/stack/cable_coil/cut/yellow,
-/turf/open/floor/plating/airless{
- icon_state = "plating_rust"
- },
-/area/ship/maintenance/port)
-"Yn" = (
-/obj/effect/turf_decal/techfloor/corner{
- dir = 1
- },
-/obj/effect/turf_decal/steeldecal/steel_decals1,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/bridge)
-"Ys" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/ship/hallway/central)
-"Yv" = (
-/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium,
-/obj/machinery/door/poddoor{
- id = "cutter_ce_lockdown"
- },
-/turf/open/floor/plating,
-/area/ship/engineering/communications)
-"YB" = (
-/obj/structure/catwalk/over/plated_catwalk,
-/obj/effect/decal/cleanable/glass,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ship/engineering)
-"YC" = (
-/obj/structure/catwalk/over/plated_catwalk,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/plating/rust,
-/area/ship/hallway/central)
-"YG" = (
-/obj/machinery/computer/helm{
- dir = 8
- },
-/obj/effect/turf_decal/techfloor{
- dir = 4
- },
-/turf/open/floor/plasteel/telecomms_floor,
-/area/ship/bridge)
-"YH" = (
-/obj/structure/rack,
-/obj/item/storage/belt/utility/chief/full,
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/ship/engineering/communications)
-"YR" = (
-/obj/effect/decal/fakelattice{
- icon_state = "lattice-3"
- },
-/turf/open/floor/plating/airless{
- icon_state = "panelscorched"
- },
-/area/ship/maintenance/port)
-"YW" = (
-/obj/structure/janitorialcart,
-/obj/item/mop,
-/obj/item/reagent_containers/glass/bucket,
-/obj/item/reagent_containers/spray/cleaner{
- pixel_x = -4;
- pixel_y = 4
- },
-/obj/machinery/door/window/southleft{
- dir = 4
- },
-/obj/item/storage/box/mousetraps{
- pixel_x = 7;
- pixel_y = -3
- },
-/obj/item/soap/syndie,
-/turf/open/floor/plating/rust,
-/area/ship/maintenance/port)
-"YX" = (
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 4
- },
-/turf/open/floor/plating/foam,
-/area/ship/cargo)
-"YY" = (
-/obj/structure/railing/corner{
- dir = 1
- },
-/obj/effect/turf_decal/borderfloorblack/corner{
- dir = 1
- },
-/obj/effect/turf_decal/techfloor,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/sign/poster/contraband/space_cube{
- pixel_y = -32
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/bridge)
-"Zb" = (
-/obj/structure/table/reinforced,
-/obj/machinery/cell_charger,
-/obj/item/stock_parts/cell/high{
- pixel_x = 2;
- pixel_y = 3
- },
-/obj/item/stock_parts/cell/high,
-/obj/structure/window/reinforced/spawner/east,
-/obj/machinery/power/apc/auto_name/directional/north,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/security/range)
-"Zf" = (
-/obj/structure/catwalk/over/plated_catwalk,
-/obj/effect/decal/cleanable/oil,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/purple/hidden{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/ship/engineering)
-"Zh" = (
-/obj/structure/railing{
- dir = 4;
- layer = 4.1
- },
-/obj/effect/turf_decal/techfloor{
- dir = 1
- },
-/obj/effect/turf_decal/corner_techfloor_grid{
- dir = 2
- },
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 4
- },
-/obj/structure/table/reinforced{
- color = "#c1b6a5"
- },
-/obj/item/storage/toolbox/mechanical{
- pixel_y = 6;
- pixel_x = -6
- },
-/obj/item/stack/sheet/mineral/plasma/twenty{
- pixel_x = -5;
- pixel_y = -5
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/atmospherics)
-"Zl" = (
-/obj/effect/turf_decal/corner_techfloor_grid{
- dir = 6
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/hallway/fore)
-"Zn" = (
-/obj/effect/decal/cleanable/robot_debris/limb,
-/obj/effect/decal/cleanable/vomit/old{
- pixel_x = 15
- },
-/obj/structure/sign/departments/medbay/alt{
- pixel_y = 32
- },
-/obj/item/stack/rods{
- pixel_x = -7;
- pixel_y = -2
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 4
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 8
- },
-/turf/open/floor/plating/rust,
-/area/ship/hallway/central)
-"Zt" = (
-/obj/effect/turf_decal/techfloor{
- dir = 10
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
- },
-/obj/machinery/power/emitter{
- dir = 1
- },
-/obj/effect/turf_decal/industrial/hatch/yellow,
-/turf/open/floor/plasteel/tech,
-/area/ship/engineering/engine)
-"Zw" = (
-/obj/structure/chair/wood{
- dir = 1
- },
-/obj/effect/turf_decal/siding/wood,
-/turf/open/floor/concrete/tiles,
-/area/ship/crew)
-"Zy" = (
-/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium,
-/obj/machinery/door/poddoor{
- id = "cutter_windows_general";
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ship/crew/canteen/kitchen)
-"ZB" = (
-/obj/effect/turf_decal/steeldecal/steel_decals10,
-/obj/effect/turf_decal/techfloor{
- dir = 1
- },
-/obj/effect/turf_decal/steeldecal/steel_decals10{
- dir = 4
- },
-/obj/effect/turf_decal/techfloor/corner{
- dir = 4
- },
-/obj/effect/turf_decal/trimline/transparent/lightgrey/corner{
- dir = 8
- },
-/obj/structure/sign/warning/nosmoking{
- pixel_y = 32
- },
-/obj/effect/turf_decal/radiation,
-/obj/machinery/pipedispenser,
-/obj/machinery/atmospherics/pipe/simple/yellow/hidden/layer4{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/tech/techmaint,
-/area/ship/engineering/atmospherics)
-"ZC" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 1
- },
-/obj/effect/turf_decal/siding/wood,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/button/door{
- id = "cutter_disposals_hatch";
- name = "Plank Opener";
- pixel_x = -1;
- pixel_y = -23;
- dir = 1
- },
-/obj/machinery/button/massdriver{
- id = "cutter_disposals";
- name = "disposals button";
- pixel_x = 7;
- pixel_y = -22;
- dir = 1
- },
-/turf/open/floor/wood,
-/area/ship/engineering/incinerator)
-"ZK" = (
-/turf/closed/wall/r_wall,
-/area/ship/crew)
-"ZT" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 8
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "cutter_bridge_lockdown";
- name = "Lockdown Shutters";
- dir = 4
- },
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/hallway/fore)
-"ZV" = (
-/obj/effect/turf_decal/industrial/hatch/yellow,
-/turf/open/floor/plasteel/patterned/cargo_one,
-/area/ship/cargo)
-"ZW" = (
-/obj/effect/turf_decal/spline/fancy/wood{
- dir = 6
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/robot_debris,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/carpet/red,
-/area/ship/crew/canteen)
-"ZX" = (
-/obj/structure/table/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/item/reagent_containers/food/snacks/grown/tobacco/space,
-/obj/item/reagent_containers/food/snacks/grown/tobacco/space{
- pixel_y = 3;
- pixel_x = 3
- },
-/obj/item/clothing/mask/cigarette/pipe/cobpipe,
-/turf/open/floor/carpet/nanoweave,
-/area/ship/security)
-"ZY" = (
-/obj/effect/turf_decal/techfloor{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/glass,
-/obj/machinery/light/directional/south,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
- },
-/turf/open/floor/plasteel/telecomms_floor,
-/area/ship/crew)
-
-(1,1,1) = {"
-ws
-ws
-ws
-ws
-ws
-GM
-lT
-Bj
-aO
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-fH
-fH
-fH
-fH
-ws
-ws
-ws
-ws
-ws
-"}
-(2,1,1) = {"
-ws
-ws
-ws
-ws
-ws
-GM
-Oi
-MO
-nD
-HI
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-Ds
-Yv
-LZ
-qU
-fH
-ws
-ws
-ws
-ws
-ws
-"}
-(3,1,1) = {"
-ws
-ws
-ws
-ws
-ws
-GM
-Sk
-ZC
-aO
-wh
-GM
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-Ds
-Yv
-YH
-uO
-oM
-fH
-ws
-ws
-ws
-ws
-ws
-"}
-(4,1,1) = {"
-ws
-ws
-ws
-ws
-GM
-GM
-Gp
-Vw
-Yf
-Ag
-GM
-mL
-mL
-GM
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-Am
-ld
-ld
-fH
-Pw
-Rf
-Xm
-zw
-fH
-fH
-ws
-ws
-ws
-ws
-"}
-(5,1,1) = {"
-ws
-ws
-ws
-ws
-GM
-GM
-ru
-Ku
-aO
-kG
-GM
-VL
-VL
-GM
-RW
-ws
-ws
-ws
-ws
-ws
-nI
-Am
-Tk
-Tk
-fH
-Dg
-jq
-AL
-lu
-Kw
-fH
-ws
-ws
-ws
-ws
-"}
-(6,1,1) = {"
-ws
-ws
-ws
-ws
-GM
-aO
-aO
-aO
-aO
-SW
-hq
-Qz
-oE
-VN
-GM
-RW
-ws
-ws
-ws
-nI
-Am
-bx
-Zf
-JS
-iC
-zw
-Ea
-zw
-zw
-GH
-fH
-ws
-ws
-ws
-ws
-"}
-(7,1,1) = {"
-ws
-ws
-ws
-GM
-GM
-to
-lo
-KW
-wi
-Mh
-re
-hm
-eE
-dP
-EI
-GM
-eA
-eA
-eA
-Am
-dB
-Xt
-YB
-eQ
-zw
-Ad
-Gn
-mJ
-zw
-zw
-fH
-fH
-ws
-ws
-ws
-"}
-(8,1,1) = {"
-ws
-ws
-ws
-GM
-to
-to
-to
-Bw
-wi
-Ox
-Ul
-Db
-aO
-aO
-lA
-aO
-FG
-FG
-FG
-Am
-uN
-Xj
-Ke
-FF
-bF
-qT
-cn
-Ss
-vh
-wN
-QH
-LT
-ws
-ws
-ws
-"}
-(9,1,1) = {"
-ws
-ws
-zV
-zV
-El
-GS
-El
-El
-El
-UF
-uH
-pc
-oY
-Kk
-pd
-oY
-FM
-Iu
-Wq
-LB
-KP
-KP
-oy
-LB
-zw
-EX
-LE
-OW
-zw
-kZ
-fl
-fH
-ws
-ws
-ws
-"}
-(10,1,1) = {"
-ws
-ws
-zV
-Tn
-QC
-jk
-bA
-bG
-El
-aO
-Dq
-CP
-GQ
-kD
-jA
-oY
-RT
-pC
-xx
-fw
-AQ
-KM
-GU
-nA
-gC
-ed
-ed
-ed
-WH
-ed
-ed
-EG
-EG
-ws
-ws
-"}
-(11,1,1) = {"
-ws
-ws
-zV
-pA
-kT
-aP
-Wt
-HG
-Zt
-aO
-Nb
-kt
-oY
-fu
-fu
-oY
-Zh
-ut
-AU
-gC
-lq
-al
-Td
-Fd
-gC
-WR
-XZ
-bI
-HE
-WH
-dy
-Xz
-EG
-ws
-ws
-"}
-(12,1,1) = {"
-ws
-ws
-zV
-pZ
-pZ
-El
-FC
-Kl
-oA
-hl
-FI
-Wd
-wQ
-fX
-Vr
-iA
-mY
-EJ
-Ey
-gC
-ah
-KE
-NZ
-mz
-gC
-IC
-dX
-lf
-Zw
-ed
-JQ
-rJ
-EG
-ws
-ws
-"}
-(13,1,1) = {"
-ws
-ws
-zV
-Ky
-BI
-oj
-wm
-qX
-bt
-LV
-XV
-tL
-SB
-Sa
-JV
-Xn
-QR
-Lj
-nO
-mh
-em
-ic
-lV
-GF
-gC
-eV
-ku
-TS
-Kx
-ed
-ck
-ed
-EG
-ws
-ws
-"}
-(14,1,1) = {"
-ws
-ws
-zV
-ew
-ew
-El
-jC
-jF
-PX
-oY
-ZB
-fd
-gb
-Jk
-XL
-BH
-ok
-Ou
-Gl
-gC
-sj
-kb
-zJ
-nx
-gC
-HD
-JX
-cA
-SE
-On
-cb
-Hi
-Ik
-ws
-ws
-"}
-(15,1,1) = {"
-ws
-ws
-zV
-kS
-PY
-lp
-aL
-Pv
-DF
-GQ
-fu
-fu
-oY
-fu
-fu
-oY
-Rs
-Ej
-KJ
-gC
-UV
-ho
-No
-tq
-gC
-Mx
-wp
-KN
-CL
-NE
-nu
-pn
-Ik
-ws
-ws
-"}
-(16,1,1) = {"
-ws
-ws
-zV
-Qb
-na
-Bb
-CF
-Hd
-GS
-oY
-rz
-VD
-oY
-rW
-As
-oY
-hS
-ph
-np
-fw
-sg
-KT
-cQ
-FK
-gC
-tQ
-Oy
-kM
-ZK
-lz
-Ak
-ZK
-EG
-ws
-ws
-"}
-(17,1,1) = {"
-ws
-df
-df
-GS
-El
-El
-El
-El
-El
-oY
-LA
-yo
-oY
-QP
-WA
-oY
-SH
-SH
-Oc
-gC
-gC
-gC
-cE
-fw
-fw
-ed
-Qk
-ed
-ZK
-Bz
-kn
-ZY
-EG
-EG
-ws
-"}
-(18,1,1) = {"
-ws
-df
-rm
-vu
-yG
-Al
-IF
-rm
-rm
-oY
-GQ
-oY
-oY
-GQ
-oY
-oY
-yq
-Jd
-rQ
-Wc
-Lc
-mU
-WL
-zo
-SQ
-aQ
-YC
-Mz
-lz
-bh
-sH
-kx
-ZK
-EG
-ws
-"}
-(19,1,1) = {"
-ws
-df
-rm
-SM
-Cq
-vc
-FW
-Qe
-rm
-rm
-rg
-vD
-vX
-aD
-rg
-uX
-dc
-eY
-us
-SP
-Lz
-Bq
-FL
-sa
-BR
-pj
-Jy
-hy
-xk
-xk
-xk
-xk
-xk
-Eb
-ws
-"}
-(20,1,1) = {"
-df
-df
-rm
-QK
-yx
-uB
-De
-zH
-PG
-VA
-um
-DC
-UH
-bb
-Fu
-RQ
-wo
-Ys
-Np
-dF
-aq
-qw
-iB
-aZ
-uD
-sw
-tT
-vY
-kk
-lO
-Jl
-GV
-fb
-Eb
-Eb
-"}
-(21,1,1) = {"
-Pf
-rF
-yG
-yx
-qG
-Hc
-Wm
-pD
-Mv
-Mv
-zK
-Mv
-zK
-Mv
-zK
-xO
-vH
-CV
-II
-ne
-vg
-ne
-vt
-ne
-ne
-Jx
-BW
-Vu
-kk
-ZV
-fz
-HW
-Mo
-MW
-Eb
-"}
-(22,1,1) = {"
-df
-rF
-rF
-rm
-IX
-Ca
-bV
-RY
-Mv
-fM
-zi
-iN
-fy
-Mv
-Mv
-mU
-tD
-Nc
-ne
-ne
-Ut
-Et
-iG
-WK
-ne
-ge
-sb
-Ls
-Oj
-ce
-tr
-Ny
-HN
-CI
-fQ
-"}
-(23,1,1) = {"
-Dw
-RR
-rF
-QK
-ht
-QK
-QK
-vG
-Mv
-KR
-du
-BD
-cp
-Yg
-Mv
-Zn
-yJ
-bg
-ne
-pT
-DG
-oa
-ww
-vz
-HR
-pO
-zS
-JE
-wc
-lm
-Gz
-UC
-It
-YX
-mE
-"}
-(24,1,1) = {"
-ws
-tv
-MS
-FV
-Lm
-Xp
-QK
-Yk
-zK
-Dv
-Vt
-NJ
-Bm
-lR
-Xu
-zf
-ch
-qP
-ne
-Xd
-yF
-fo
-cF
-TW
-ne
-sR
-xP
-JO
-kk
-FU
-fB
-zY
-oN
-nB
-Eb
-"}
-(25,1,1) = {"
-ws
-ws
-jZ
-Dy
-YR
-Eu
-Vs
-kf
-Mv
-CO
-qQ
-hw
-Mv
-zK
-Mv
-Oh
-dM
-Ah
-rN
-rN
-AV
-AV
-AV
-Kb
-Kb
-Kb
-jG
-Kb
-kk
-kk
-kk
-wZ
-SA
-Eb
-mI
-"}
-(26,1,1) = {"
-ws
-ws
-ws
-ws
-zn
-vr
-QK
-NI
-Mv
-Mv
-lH
-pM
-pM
-ax
-pM
-XU
-Sr
-Kp
-AV
-Jp
-oX
-nM
-IE
-Kb
-bZ
-qK
-xj
-Jt
-pQ
-ID
-Kb
-Eb
-Eb
-mI
-ws
-"}
-(27,1,1) = {"
-ws
-ws
-ws
-ws
-ws
-gK
-yx
-YW
-rp
-QK
-pM
-pM
-er
-Nn
-jY
-aS
-SF
-mq
-hp
-Jb
-iw
-IB
-eG
-pB
-PE
-Ab
-Fx
-xS
-wd
-yh
-To
-mI
-ws
-ws
-ws
-"}
-(28,1,1) = {"
-ws
-ws
-ws
-ws
-qf
-DR
-UA
-KY
-Yh
-Ht
-jY
-wV
-ni
-Iv
-Gw
-Br
-mS
-Mj
-AV
-tX
-FE
-ZW
-EC
-sF
-XP
-uK
-Vx
-jI
-vs
-Au
-To
-ws
-ws
-ws
-ws
-"}
-(29,1,1) = {"
-ws
-ws
-ws
-ws
-ws
-df
-jv
-CS
-Hz
-AG
-jY
-JZ
-Uk
-vo
-pM
-qr
-iY
-rG
-AV
-vE
-vL
-Hf
-Ra
-MF
-Ek
-Tp
-Nz
-uQ
-Tx
-To
-UX
-ws
-ws
-ws
-ws
-"}
-(30,1,1) = {"
-ws
-ws
-ws
-ws
-ws
-Bp
-ky
-ky
-pM
-jY
-pM
-pM
-jY
-jY
-pM
-Pl
-Lq
-Mt
-TI
-TI
-TI
-jW
-TI
-TI
-TI
-TI
-sy
-Zy
-Zy
-UX
-ws
-ws
-ws
-ws
-ws
-"}
-(31,1,1) = {"
-ws
-ws
-ws
-ws
-ws
-ws
-ky
-cr
-bq
-VC
-PJ
-bo
-Pk
-XA
-VB
-um
-ys
-UY
-TI
-Mn
-kc
-fm
-By
-mi
-Pn
-vw
-sy
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-"}
-(32,1,1) = {"
-ws
-ws
-ws
-ws
-ws
-ws
-ky
-vm
-LH
-NM
-yw
-GY
-jl
-ko
-ko
-In
-En
-BZ
-TI
-VP
-nP
-im
-qv
-vC
-Bo
-ul
-sy
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-"}
-(33,1,1) = {"
-ws
-ws
-ws
-ws
-ws
-ws
-rw
-ky
-oT
-fD
-Ja
-Ps
-jh
-SR
-Vb
-MQ
-jn
-qi
-jW
-HM
-Cg
-zZ
-Bx
-jt
-Qi
-sy
-EM
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-"}
-(34,1,1) = {"
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-eh
-LH
-tp
-cl
-Pb
-WV
-Pa
-xs
-fY
-ta
-Kh
-jW
-JK
-aR
-BT
-JK
-JK
-JK
-sy
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-"}
-(35,1,1) = {"
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-eh
-bS
-CW
-ZX
-An
-Kt
-gu
-Mu
-xh
-zu
-OC
-DS
-Qw
-Kq
-TY
-sS
-io
-HV
-sy
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-"}
-(36,1,1) = {"
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ky
-sp
-Em
-Fg
-NX
-Qx
-kO
-fN
-PC
-UT
-dN
-TO
-wD
-fe
-uL
-OP
-iJ
-zh
-sy
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-"}
-(37,1,1) = {"
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-rw
-ky
-pM
-jY
-pM
-pM
-jY
-pM
-wC
-jn
-oO
-Va
-Le
-ro
-zE
-LQ
-AM
-Hm
-zc
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-"}
-(38,1,1) = {"
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-GE
-nw
-Oq
-ln
-po
-uq
-ln
-fv
-rq
-VI
-TI
-FQ
-Fb
-FQ
-Qs
-JK
-JK
-sy
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-"}
-(39,1,1) = {"
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-GE
-jO
-Lf
-yO
-vq
-oq
-fP
-kK
-SK
-tw
-jW
-yd
-Lg
-zP
-se
-kr
-gP
-pR
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-"}
-(40,1,1) = {"
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-GE
-ln
-ln
-IL
-yM
-rV
-IL
-tu
-je
-Vh
-TI
-gL
-nL
-va
-AA
-ar
-JK
-pR
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-"}
-(41,1,1) = {"
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-GE
-cm
-jg
-Ld
-dv
-Im
-ss
-ss
-Ij
-ss
-TI
-jW
-jW
-TI
-TI
-TI
-TI
-IP
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-"}
-(42,1,1) = {"
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-qk
-GE
-uu
-gd
-pU
-pU
-Fo
-BQ
-fc
-gg
-Nx
-xB
-cT
-Bh
-yv
-ss
-ft
-xK
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-"}
-(43,1,1) = {"
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-GE
-kP
-Tw
-Im
-pU
-mR
-kC
-NC
-Zl
-Ml
-bi
-oU
-ER
-OL
-vK
-ss
-ss
-xK
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-"}
-(44,1,1) = {"
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-xK
-Um
-GO
-ss
-AZ
-vl
-wT
-CX
-ss
-ZT
-Bv
-ss
-DE
-AI
-Uz
-cH
-ss
-xK
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-"}
-(45,1,1) = {"
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-Mb
-zv
-aw
-NW
-Hs
-wt
-Wj
-VU
-ad
-ad
-sP
-nZ
-ad
-ss
-LU
-Sq
-Er
-Nr
-IM
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-"}
-(46,1,1) = {"
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-xK
-rd
-ve
-ss
-tH
-Nj
-ad
-Gq
-jB
-Ln
-Rn
-Eg
-ad
-ad
-pF
-ON
-qp
-IM
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-"}
-(47,1,1) = {"
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-yL
-yL
-AD
-hW
-Sb
-AD
-ad
-Fi
-Sc
-hP
-CA
-mW
-ad
-ad
-fL
-mw
-fL
-fC
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-"}
-(48,1,1) = {"
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-Uw
-yL
-nn
-aJ
-Cc
-ad
-Lx
-EP
-Yn
-RB
-HL
-nX
-ad
-yy
-lJ
-Jf
-fC
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-"}
-(49,1,1) = {"
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-yL
-uz
-hF
-iT
-Gq
-oh
-yl
-nf
-SO
-ML
-Mf
-ad
-Zb
-Yj
-gi
-fC
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-"}
-(50,1,1) = {"
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-yL
-tM
-Uj
-jf
-ad
-iM
-VG
-uy
-YG
-zF
-Qv
-ad
-lN
-Jr
-gA
-fC
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-"}
-(51,1,1) = {"
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-yL
-wG
-Gr
-OM
-ad
-PP
-oS
-uP
-mn
-vZ
-YY
-Gq
-RP
-fU
-co
-fC
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-"}
-(52,1,1) = {"
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-yL
-RX
-vy
-nJ
-ad
-yk
-KO
-Ec
-Gf
-sK
-gc
-ad
-sq
-xo
-IS
-fC
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-"}
-(53,1,1) = {"
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-Uw
-yL
-af
-Wb
-GL
-Ms
-Ms
-Ms
-Ms
-Ms
-Ms
-GL
-aG
-wS
-fC
-Re
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-"}
-(54,1,1) = {"
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-yL
-RS
-eb
-yL
-ws
-ws
-ws
-ws
-ws
-ws
-fC
-tl
-FR
-fC
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-ws
-"}
diff --git a/_maps/shuttles/pirate/pirate_noderider.dmm b/_maps/shuttles/pirate/pirate_noderider.dmm
index 10c591d8f52..2e0352c54a5 100644
--- a/_maps/shuttles/pirate/pirate_noderider.dmm
+++ b/_maps/shuttles/pirate/pirate_noderider.dmm
@@ -435,9 +435,7 @@
id = "noderiders";
name = "cargo airshield"
},
-/obj/machinery/computer/crew{
- icon_state = "computer-right"
- },
+/obj/machinery/computer/crew,
/turf/open/floor/plasteel/telecomms_floor,
/area/ship/bridge)
"fG" = (
@@ -1570,9 +1568,7 @@
pixel_y = 25
},
/obj/machinery/firealarm/directional/west,
-/obj/machinery/computer/communications{
- icon_state = "computer-left"
- },
+/obj/structure/frame/computer,
/obj/machinery/light/small/built/directional/north{
pixel_x = 16
},
diff --git a/_maps/shuttles/pirate/pirate_tortuga.dmm b/_maps/shuttles/pirate/pirate_tortuga.dmm
new file mode 100644
index 00000000000..1f94be7c5b0
--- /dev/null
+++ b/_maps/shuttles/pirate/pirate_tortuga.dmm
@@ -0,0 +1,5354 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"ah" = (
+/turf/closed/wall/r_wall/rust,
+/area/ship/bridge)
+"aA" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/door/firedoor/window,
+/turf/open/floor/plating,
+/area/ship/maintenance/port)
+"aE" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/box/corners{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"aT" = (
+/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/catwalk/over/plated_catwalk,
+/turf/open/floor/plating,
+/area/ship/cargo)
+"bj" = (
+/obj/machinery/light/directional/north,
+/obj/structure/rack,
+/obj/item/book/manual/wiki/command{
+ pixel_x = -8;
+ pixel_y = 6
+ },
+/obj/item/book/manual/wiki/piloting{
+ pixel_y = 5;
+ pixel_x = -5
+ },
+/turf/open/floor/plasteel/tech,
+/area/ship/bridge)
+"bu" = (
+/obj/machinery/door/poddoor/shutters{
+ dir = 4;
+ id = "watchdog_cargo"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/shieldwallgen/atmos{
+ id = "watchdog_holo"
+ },
+/turf/open/floor/plating,
+/area/ship/cargo)
+"bv" = (
+/obj/effect/decal/cleanable/crayon{
+ icon_state = "skull";
+ pixel_x = 4;
+ pixel_y = 10
+ },
+/obj/effect/decal/cleanable/crayon{
+ icon_state = "f";
+ pixel_x = -8;
+ pixel_y = -4
+ },
+/obj/effect/decal/cleanable/crayon{
+ icon_state = "u";
+ pixel_y = -7;
+ pixel_x = 1
+ },
+/obj/effect/decal/cleanable/crayon{
+ icon_state = "k";
+ pixel_x = 12;
+ pixel_y = -6
+ },
+/turf/open/floor/plating/airless{
+ icon_state = "plating_rust"
+ },
+/area/ship/maintenance)
+"bD" = (
+/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/effect/turf_decal/siding/wideplating,
+/obj/machinery/light/directional/south,
+/turf/open/floor/plasteel,
+/area/ship/crew/canteen)
+"bF" = (
+/obj/structure/table,
+/obj/effect/turf_decal/siding/wideplating{
+ dir = 1
+ },
+/obj/item/storage/bag/tray/cafeteria{
+ pixel_y = 3
+ },
+/obj/item/storage/bag/tray/cafeteria{
+ pixel_y = 5
+ },
+/obj/item/storage/bag/tray/cafeteria{
+ pixel_y = 7
+ },
+/obj/item/storage/bag/tray/cafeteria{
+ pixel_y = 9
+ },
+/obj/item/storage/bag/tray/cafeteria{
+ pixel_y = 11
+ },
+/obj/item/storage/bag/tray/cafeteria{
+ pixel_y = 13
+ },
+/obj/item/storage/bag/tray/cafeteria{
+ pixel_y = 15
+ },
+/obj/machinery/light_switch{
+ pixel_y = 22
+ },
+/turf/open/floor/plasteel/patterned/grid,
+/area/ship/crew/canteen)
+"bH" = (
+/obj/structure/salvageable/autolathe,
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/plating/airless,
+/area/ship/maintenance)
+"bJ" = (
+/obj/machinery/door/airlock/grunge{
+ req_one_access = list(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/plating,
+/area/ship/security/armory)
+"bN" = (
+/obj/machinery/holopad/emergency/command,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/tech,
+/area/ship/bridge)
+"bP" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/firedoor/window,
+/turf/open/floor/plating,
+/area/ship/maintenance/starboard)
+"bR" = (
+/obj/effect/spawner/lootdrop/waste/trash,
+/turf/open/floor/plating/airless,
+/area/ship/maintenance)
+"cb" = (
+/obj/effect/turf_decal/spline/fancy/opaque/black/corner{
+ dir = 1
+ },
+/obj/machinery/computer/crew{
+ dir = 8;
+ icon_state = "computer-left"
+ },
+/obj/effect/decal/cleanable/glass{
+ pixel_x = -9;
+ dir = 8
+ },
+/turf/open/floor/plasteel/mono/dark,
+/area/ship/bridge)
+"ci" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/structure/railing{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
+ },
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/ship/cargo)
+"cv" = (
+/obj/structure/chair/stool{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
+/turf/open/floor/plasteel/grimy,
+/area/ship/crew/canteen)
+"cx" = (
+/obj/structure/table/wood,
+/obj/structure/showcase/machinery/tv{
+ name = "\improper old TV";
+ desc = "You don't get any signal in space, unfortunately.";
+ pixel_y = 6;
+ pixel_x = 6
+ },
+/obj/machinery/light/directional/north,
+/turf/open/floor/wood,
+/area/ship/crew/crewtwo)
+"cz" = (
+/obj/effect/turf_decal/siding/wideplating{
+ dir = 9
+ },
+/obj/machinery/light/directional/north,
+/obj/structure/reagent_dispensers/water_cooler,
+/turf/open/floor/plasteel/patterned/grid,
+/area/ship/crew/canteen)
+"cG" = (
+/obj/structure/chair/stool{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/grimy,
+/area/ship/crew/canteen)
+"cS" = (
+/obj/structure/flippedtable{
+ dir = 8
+ },
+/obj/structure/fluff/paper/stack{
+ pixel_x = 9
+ },
+/turf/open/floor/plating/airless,
+/area/ship/maintenance)
+"dl" = (
+/obj/effect/turf_decal/siding/wideplating/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/wideplating/corner{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/ship/crew/canteen)
+"dm" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/mineral/titanium,
+/area/ship/security/armory)
+"ds" = (
+/obj/machinery/door/poddoor/shutters{
+ dir = 4;
+ id = "watchdog_cargo"
+ },
+/turf/open/floor/plating,
+/area/ship/cargo)
+"dA" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 1
+ },
+/obj/machinery/door/firedoor/border_only,
+/turf/open/floor/pod/dark,
+/area/ship/maintenance/starboard)
+"dE" = (
+/obj/structure/table,
+/obj/item/storage/cans/sixbeer,
+/turf/open/floor/plasteel/tech,
+/area/ship/maintenance/port)
+"dF" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plating/airless,
+/area/ship/maintenance)
+"dN" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/structure/railing/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/ship/cargo)
+"dV" = (
+/obj/structure/toilet{
+ dir = 4;
+ pixel_x = -2;
+ pixel_y = 5
+ },
+/obj/machinery/shower,
+/obj/machinery/light/directional/west,
+/obj/structure/curtain/cloth,
+/turf/open/floor/plating,
+/area/ship/security/armory)
+"dX" = (
+/obj/structure/railing/corner{
+ dir = 4;
+ layer = 2.8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-9"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/pod/dark,
+/area/ship/maintenance/port)
+"dY" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/pod/dark,
+/area/ship/maintenance/port)
+"dZ" = (
+/obj/effect/turf_decal/industrial/stand_clear{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/tech/techmaint,
+/area/ship/cargo)
+"em" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/pod/dark,
+/area/ship/maintenance/port)
+"es" = (
+/obj/machinery/door/window/westright,
+/turf/open/floor/pod/dark,
+/area/ship/maintenance/starboard)
+"et" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-9"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating/airless,
+/area/ship/maintenance)
+"eA" = (
+/obj/item/flashlight/flare,
+/turf/open/floor/plating/airless,
+/area/ship/maintenance)
+"eD" = (
+/obj/structure/railing/corner,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/pod/dark,
+/area/ship/maintenance/starboard)
+"eE" = (
+/obj/machinery/light_switch{
+ pixel_y = 22
+ },
+/turf/open/floor/pod/dark,
+/area/ship/maintenance/starboard)
+"eS" = (
+/obj/machinery/cryopod{
+ dir = 4
+ },
+/obj/structure/railing,
+/turf/open/floor/plasteel/telecomms_floor,
+/area/ship/crew)
+"eU" = (
+/obj/effect/turf_decal/techfloor,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/light_switch{
+ dir = 4;
+ pixel_x = -22;
+ pixel_y = -10
+ },
+/obj/structure/rack,
+/turf/open/floor/plasteel/tech,
+/area/ship/bridge)
+"ff" = (
+/obj/machinery/power/terminal{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/turf/open/floor/plasteel/tech,
+/area/ship/maintenance/port)
+"fj" = (
+/obj/effect/turf_decal/box/corners,
+/obj/machinery/autolathe/hacked,
+/obj/effect/decal/cleanable/wrapping{
+ pixel_y = -7
+ },
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"fn" = (
+/obj/effect/gibspawner/human/bodypartless,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating/airless{
+ icon_state = "plating_rust"
+ },
+/area/ship/maintenance)
+"fq" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/ship/cargo)
+"fA" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/spline/fancy/opaque/black{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/ship/maintenance/starboard)
+"fE" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-9"
+ },
+/obj/structure/grille/broken,
+/obj/effect/decal/cleanable/crayon{
+ icon_state = "c";
+ pixel_x = -10;
+ pixel_y = 11
+ },
+/obj/effect/decal/cleanable/crayon{
+ icon_state = "l";
+ pixel_y = 8
+ },
+/obj/effect/decal/cleanable/crayon{
+ icon_state = "i";
+ pixel_x = 7;
+ pixel_y = 10
+ },
+/obj/effect/decal/cleanable/crayon{
+ icon_state = "p";
+ pixel_x = 16;
+ pixel_y = 9
+ },
+/turf/open/floor/plating/airless{
+ icon_state = "plating_rust"
+ },
+/area/ship/maintenance)
+"fF" = (
+/obj/machinery/light/directional/south,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/dark,
+/area/ship/bridge)
+"fM" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/mineral/titanium/tiled,
+/area/ship/security/armory)
+"fR" = (
+/obj/docking_port/stationary{
+ dir = 8;
+ dwidth = 15;
+ height = 15;
+ name = "tortuga dock";
+ width = 15
+ },
+/turf/template_noop,
+/area/template_noop)
+"fW" = (
+/turf/open/floor/carpet/nanoweave,
+/area/ship/crew/crewtwo)
+"gi" = (
+/obj/machinery/door/airlock/grunge{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/wideplating/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/wideplating/corner,
+/turf/open/floor/plasteel/showroomfloor,
+/area/ship/crew/canteen)
+"gr" = (
+/obj/machinery/door/airlock/maintenance,
+/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/door/firedoor/border_only,
+/obj/machinery/door/firedoor/border_only{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/ship/maintenance/port)
+"gB" = (
+/obj/effect/turf_decal/spline/fancy/opaque/black{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/ship/bridge)
+"gD" = (
+/turf/open/floor/plasteel/tech/grid,
+/area/ship/security/armory)
+"gG" = (
+/obj/effect/spawner/lootdrop/waste/trash,
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/plating/airless,
+/area/ship/maintenance)
+"gI" = (
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/turf/open/floor/pod/dark,
+/area/ship/maintenance/starboard)
+"gM" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/carpet/nanoweave,
+/area/ship/crew/crewtwo)
+"gQ" = (
+/obj/effect/turf_decal/siding/wideplating{
+ dir = 4
+ },
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/ship/crew/canteen)
+"hh" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating/airless{
+ icon_state = "plating_rust"
+ },
+/area/ship/maintenance)
+"hi" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/ship/crew/canteen)
+"hz" = (
+/obj/machinery/suit_storage_unit/industrial{
+ suit_type = /obj/item/clothing/suit/space/hardsuit/security/independent/frontier
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/mineral/plastitanium,
+/area/ship/security/armory)
+"hD" = (
+/obj/machinery/door/airlock/command{
+ 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/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
+ },
+/turf/open/floor/plasteel/tech,
+/area/ship/bridge)
+"hG" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/mineral/titanium/tiled,
+/area/ship/security/armory)
+"hL" = (
+/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/structure/catwalk/over/plated_catwalk,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/ship/cargo)
+"hP" = (
+/obj/effect/turf_decal/techfloor{
+ dir = 10
+ },
+/obj/structure/guncase{
+ anchored = 1
+ },
+/obj/item/gun/ballistic/automatic/assault/skm/pirate,
+/obj/item/gun/ballistic/rifle/illestren,
+/obj/item/gun/ballistic/rifle/illestren,
+/turf/open/floor/plasteel/tech/grid,
+/area/ship/security/armory)
+"hT" = (
+/obj/machinery/suit_storage_unit/industrial{
+ suit_type = /obj/item/clothing/suit/space/hardsuit/security/independent/frontier
+ },
+/obj/machinery/light/directional/south,
+/turf/open/floor/mineral/plastitanium,
+/area/ship/security/armory)
+"hU" = (
+/obj/structure/rack,
+/obj/item/ammo_box/c45{
+ pixel_x = -9;
+ pixel_y = 8
+ },
+/obj/item/storage/toolbox/ammo/a762_40{
+ pixel_x = 5;
+ pixel_y = 6
+ },
+/obj/item/storage/toolbox/ammo/a850r{
+ pixel_x = -6;
+ pixel_y = 2
+ },
+/obj/item/ammo_box/magazine/m45{
+ pixel_x = 5
+ },
+/obj/item/ammo_box/magazine/m45{
+ pixel_x = 5
+ },
+/obj/item/ammo_box/magazine/m45{
+ pixel_x = 5
+ },
+/obj/item/ammo_box/magazine/m45{
+ pixel_x = 5
+ },
+/obj/item/ammo_box/magazine/m45{
+ pixel_x = 5
+ },
+/obj/item/ammo_box/magazine/m45{
+ pixel_x = 5
+ },
+/obj/item/ammo_box/magazine/skm_762_40{
+ pixel_x = 5
+ },
+/obj/item/ammo_box/magazine/skm_762_40{
+ pixel_y = -3
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/ship/security/armory)
+"iq" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
+ },
+/obj/machinery/light/directional/south,
+/turf/open/floor/plasteel,
+/area/ship/crew)
+"iw" = (
+/obj/effect/turf_decal/siding/wideplating,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/ship/crew/canteen)
+"iy" = (
+/obj/structure/cable/yellow{
+ icon_state = "6-10"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating/airless{
+ icon_state = "plating_rust"
+ },
+/area/ship/maintenance)
+"iB" = (
+/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/plasteel,
+/area/ship/crew/canteen)
+"iD" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/open/floor/pod/dark,
+/area/ship/maintenance/port)
+"iN" = (
+/obj/structure/closet/crate{
+ icon_state = "o2crate"
+ },
+/obj/item/spear/explosive,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating/airless,
+/area/ship/maintenance)
+"iP" = (
+/obj/machinery/power/port_gen/pacman{
+ anchored = 1
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/item/stack/sheet/mineral/plasma/twenty,
+/turf/open/floor/pod/dark,
+/area/ship/maintenance/port)
+"iW" = (
+/turf/open/floor/plasteel/white,
+/area/ship/crew/canteen)
+"iY" = (
+/obj/machinery/microwave{
+ pixel_y = 6;
+ pixel_x = -1
+ },
+/obj/structure/table,
+/obj/effect/turf_decal/siding/wideplating{
+ dir = 1
+ },
+/obj/structure/sign/poster/retro/build{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/patterned/grid,
+/area/ship/crew/canteen)
+"ja" = (
+/obj/structure/railing,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "5-10"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-5"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/pod/dark,
+/area/ship/maintenance/starboard)
+"jh" = (
+/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 = 6
+ },
+/turf/open/floor/plasteel,
+/area/ship/crew)
+"jp" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/power/smes/shuttle/precharged{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/open/floor/plasteel/tech,
+/area/ship/maintenance/starboard)
+"js" = (
+/obj/structure/cable/yellow{
+ icon_state = "5-8"
+ },
+/turf/open/floor/plating/airless{
+ icon_state = "plating_rust"
+ },
+/area/ship/maintenance)
+"jt" = (
+/obj/machinery/telecomms/relay/preset/frontiersmen,
+/obj/machinery/door/window/southleft,
+/turf/open/floor/plasteel/telecomms_floor,
+/area/ship/bridge)
+"jA" = (
+/obj/structure/railing,
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/reagent_dispensers/fueltank,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/pod/dark,
+/area/ship/maintenance/starboard)
+"jH" = (
+/obj/machinery/cryopod{
+ dir = 4
+ },
+/obj/structure/railing{
+ dir = 1;
+ layer = 2.89
+ },
+/obj/machinery/computer/cryopod/directional/west,
+/turf/open/floor/plasteel/telecomms_floor,
+/area/ship/crew)
+"jJ" = (
+/obj/structure/table,
+/obj/effect/turf_decal/siding/wideplating{
+ dir = 1
+ },
+/obj/item/reagent_containers/glass/bowl{
+ pixel_y = 3;
+ w_class = 2
+ },
+/obj/item/reagent_containers/glass/bowl{
+ pixel_y = 5;
+ w_class = 2
+ },
+/obj/item/reagent_containers/glass/bowl{
+ pixel_y = 7;
+ w_class = 2
+ },
+/obj/item/reagent_containers/glass/bowl{
+ pixel_y = 9;
+ w_class = 2
+ },
+/obj/item/reagent_containers/glass/bowl{
+ pixel_y = 11;
+ w_class = 2
+ },
+/obj/item/reagent_containers/glass/bowl{
+ pixel_y = 13;
+ w_class = 2
+ },
+/turf/open/floor/plasteel/patterned/grid,
+/area/ship/crew/canteen)
+"jK" = (
+/obj/machinery/power/shuttle/engine/electric/bad{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating/airless,
+/area/ship/maintenance/port)
+"jV" = (
+/obj/structure/table,
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/machinery/recharger{
+ pixel_x = -8
+ },
+/obj/machinery/light_switch{
+ pixel_y = 20;
+ pixel_x = 12
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/ship/security/armory)
+"kp" = (
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating/airless{
+ icon_state = "plating_rust"
+ },
+/area/ship/maintenance)
+"kv" = (
+/obj/effect/spawner/lootdrop/waste/trash,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating/airless,
+/area/ship/maintenance)
+"kK" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-6"
+ },
+/turf/open/floor/plating/airless,
+/area/ship/maintenance)
+"kO" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/spawner/lootdrop/grille_or_trash,
+/turf/open/floor/plating/airless,
+/area/ship/maintenance)
+"la" = (
+/obj/machinery/power/smes/shuttle/precharged{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/open/floor/plasteel/tech,
+/area/ship/maintenance/starboard)
+"ld" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/industrial/warning{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/ship/cargo)
+"lh" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
+/turf/open/floor/plasteel/tech/techmaint,
+/area/ship/cargo)
+"li" = (
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating/airless,
+/area/ship/maintenance)
+"lo" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/ship/cargo)
+"lx" = (
+/obj/structure/cable/yellow{
+ icon_state = "6-9"
+ },
+/turf/open/floor/plasteel/tech/techmaint,
+/area/ship/cargo)
+"lE" = (
+/obj/effect/decal/fakelattice{
+ icon_state = "lattice-12"
+ },
+/obj/effect/turf_decal/industrial/warning/cee{
+ dir = 4
+ },
+/turf/open/floor/plasteel/elevatorshaft,
+/area/ship/cargo)
+"lJ" = (
+/turf/closed/mineral/ship,
+/area/ship/maintenance)
+"lQ" = (
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/turf/open/floor/plasteel,
+/area/ship/crew)
+"lY" = (
+/obj/structure/table,
+/obj/machinery/recharger{
+ pixel_x = 8
+ },
+/obj/machinery/light/directional/north,
+/turf/open/floor/mineral/plastitanium,
+/area/ship/security/armory)
+"mf" = (
+/obj/effect/spawner/lootdrop/grille_or_trash,
+/obj/structure/cable/yellow{
+ icon_state = "5-9"
+ },
+/turf/open/floor/plating/airless,
+/area/ship/maintenance)
+"mg" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/spline/fancy/opaque/black/corner,
+/turf/open/floor/mineral/titanium,
+/area/ship/security/armory)
+"ml" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating/airless,
+/area/ship/maintenance)
+"mp" = (
+/obj/structure/chair/stool{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/grimy,
+/area/ship/crew/canteen)
+"mu" = (
+/obj/effect/turf_decal/borderfloor,
+/obj/machinery/light/directional/south,
+/turf/open/floor/plasteel/tech/techmaint,
+/area/ship/cargo)
+"mw" = (
+/turf/closed/wall/r_wall/rust,
+/area/ship/crew/crewtwo)
+"mB" = (
+/turf/closed/wall/r_wall,
+/area/ship/crew/crewtwo)
+"mD" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/grunge,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/turf_decal/siding/wideplating/corner,
+/obj/effect/turf_decal/siding/wideplating/corner{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/ship/crew)
+"mE" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/pod/dark,
+/area/ship/maintenance/port)
+"mG" = (
+/obj/structure/closet/secure_closet{
+ icon_state = "sec";
+ name = "equipment locker";
+ req_access_txt = "1"
+ },
+/obj/effect/turf_decal/box,
+/obj/item/clothing/head/helmet/bulletproof/x11/frontier{
+ pixel_y = 6;
+ pixel_x = 7
+ },
+/obj/item/clothing/suit/armor/vest/bulletproof/frontier{
+ pixel_y = -4;
+ pixel_x = 8
+ },
+/obj/machinery/light/directional/north,
+/obj/item/clothing/suit/armor/vest/bulletproof/frontier{
+ pixel_y = -4;
+ pixel_x = 8
+ },
+/obj/item/clothing/suit/armor/vest/bulletproof/frontier{
+ pixel_y = -4;
+ pixel_x = 8
+ },
+/obj/item/clothing/suit/armor/vest/bulletproof/frontier{
+ pixel_y = -4;
+ pixel_x = 8
+ },
+/obj/item/clothing/head/helmet/bulletproof/x11/frontier{
+ pixel_y = 6;
+ pixel_x = 7
+ },
+/obj/item/clothing/head/helmet/bulletproof/x11/frontier{
+ pixel_y = 6;
+ pixel_x = 7
+ },
+/obj/item/clothing/head/helmet/bulletproof/x11/frontier{
+ pixel_y = 6;
+ pixel_x = 7
+ },
+/obj/item/storage/belt/military/assault{
+ pixel_x = -4;
+ pixel_y = -11
+ },
+/obj/item/storage/belt/military/assault{
+ pixel_x = -4;
+ pixel_y = -11
+ },
+/obj/item/storage/belt/military/assault{
+ pixel_x = -4;
+ pixel_y = -11
+ },
+/obj/item/storage/belt/military/assault{
+ pixel_x = -4;
+ pixel_y = -11
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/ship/security/armory)
+"mZ" = (
+/obj/structure/curtain,
+/turf/open/floor/plasteel/white,
+/area/ship/crew/canteen)
+"nc" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/tech/techmaint,
+/area/ship/cargo)
+"ng" = (
+/turf/closed/wall/r_wall,
+/area/ship/crew/canteen)
+"nt" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-5"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/effect/turf_decal/industrial/warning{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/ship/cargo)
+"nv" = (
+/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
+ },
+/turf/open/floor/plasteel,
+/area/ship/crew/canteen)
+"ny" = (
+/obj/effect/mob_spawn/human/corpse/frontier{
+ mob_type = /mob/living/carbon/human/species/moth
+ },
+/obj/effect/decal/cleanable/crayon{
+ icon_state = "body"
+ },
+/obj/item/clothing/mask/muzzle{
+ pixel_x = 10;
+ pixel_y = -10
+ },
+/turf/open/floor/plating/airless,
+/area/ship/maintenance)
+"nE" = (
+/obj/machinery/light_switch{
+ pixel_y = 20
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/carpet/nanoweave,
+/area/ship/crew/crewtwo)
+"nT" = (
+/obj/effect/turf_decal/box/corners{
+ dir = 4
+ },
+/obj/machinery/light/directional/east,
+/obj/structure/closet/crate{
+ icon_state = "o2crate"
+ },
+/obj/item/stack/sheet/metal/twenty,
+/obj/item/stack/sheet/glass/twenty,
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"nV" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/mineral/titanium/tiled,
+/area/ship/security/armory)
+"oe" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
+/obj/machinery/light/floor,
+/turf/open/floor/plasteel/tech/techmaint,
+/area/ship/cargo)
+"om" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-10"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/wideplating,
+/obj/effect/turf_decal/siding/wideplating,
+/turf/open/floor/plasteel,
+/area/ship/crew/canteen)
+"oq" = (
+/obj/effect/turf_decal/siding/wood,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/wood,
+/area/ship/crew/crewtwo)
+"ov" = (
+/obj/structure/cable/yellow{
+ icon_state = "6-8"
+ },
+/obj/machinery/light/floor,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/tech/techmaint,
+/area/ship/cargo)
+"oy" = (
+/obj/machinery/door/airlock/hatch,
+/obj/effect/mapping_helpers/airlock/locked,
+/obj/machinery/door/firedoor/heavy,
+/turf/open/floor/plating/airless,
+/area/ship/crew)
+"oG" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/ship/cargo)
+"oH" = (
+/turf/closed/wall/rust,
+/area/ship/maintenance/port)
+"oI" = (
+/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/siding/wideplating/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/wideplating/corner{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/ship/crew/canteen)
+"oK" = (
+/obj/effect/spawner/lootdrop/grille_or_trash,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating/airless,
+/area/ship/maintenance)
+"oS" = (
+/obj/effect/turf_decal/borderfloor,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/tech/techmaint,
+/area/ship/cargo)
+"oU" = (
+/obj/structure/table,
+/turf/open/floor/plasteel/grimy,
+/area/ship/crew/canteen)
+"oV" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/structure/railing/corner,
+/obj/effect/turf_decal/industrial/stand_clear{
+ dir = 1
+ },
+/obj/effect/turf_decal/industrial/warning,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/industrial/warning,
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/open/floor/plating,
+/area/ship/cargo)
+"ph" = (
+/obj/machinery/power/terminal{
+ dir = 4
+ },
+/obj/structure/cable,
+/turf/open/floor/plasteel/tech,
+/area/ship/maintenance/starboard)
+"pr" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/structure/railing/corner,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/ship/cargo)
+"pA" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/effect/turf_decal/industrial/warning/fulltile,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/ship/cargo)
+"pB" = (
+/obj/structure/closet/secure_closet/engineering_personal{
+ populate = 0
+ },
+/obj/item/storage/belt/utility/full/engi{
+ pixel_y = -9
+ },
+/obj/item/clothing/accessory/armband/engine{
+ pixel_y = 2;
+ pixel_x = -12
+ },
+/obj/item/clothing/accessory/armband/engine{
+ pixel_y = 2;
+ pixel_x = -12
+ },
+/obj/item/clothing/glasses/welding{
+ pixel_x = 9
+ },
+/obj/item/storage/toolbox/electrical{
+ pixel_y = 14
+ },
+/turf/open/floor/plasteel/tech,
+/area/ship/maintenance/port)
+"pE" = (
+/obj/effect/decal/cleanable/chem_pile{
+ pixel_x = 9
+ },
+/turf/open/floor/plating/airless,
+/area/ship/maintenance)
+"qd" = (
+/turf/closed/wall,
+/area/ship/crew/canteen)
+"qi" = (
+/obj/effect/spawner/lootdrop/grille_or_trash,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/crayon{
+ icon_state = "med"
+ },
+/turf/open/floor/plating/airless,
+/area/ship/maintenance)
+"qp" = (
+/obj/machinery/door/airlock/medical{
+ req_one_access = list(5)
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/firedoor/border_only{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/ship/crew/canteen)
+"qu" = (
+/obj/machinery/door/window/brigdoor/eastleft,
+/turf/open/floor/plating,
+/area/ship/security/armory)
+"qy" = (
+/obj/machinery/light/directional/north,
+/obj/machinery/power/port_gen/pacman{
+ anchored = 1
+ },
+/obj/structure/cable{
+ icon_state = "0-10"
+ },
+/obj/item/stack/sheet/mineral/plasma/twenty,
+/turf/open/floor/pod/dark,
+/area/ship/maintenance/starboard)
+"qD" = (
+/turf/closed/wall/r_wall/rust,
+/area/ship/security/armory)
+"qE" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/open/floor/plating/airless,
+/area/ship/maintenance)
+"qI" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/plasteel/tech/techmaint,
+/area/ship/cargo)
+"qM" = (
+/obj/effect/decal/cleanable/garbage{
+ pixel_y = 7;
+ pixel_x = 6
+ },
+/turf/open/floor/plating/airless,
+/area/ship/maintenance)
+"qT" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating/airless{
+ icon_state = "plating_rust"
+ },
+/area/ship/maintenance)
+"ra" = (
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/structure/cable/yellow,
+/obj/structure/table,
+/obj/item/paper_bin{
+ pixel_y = 4;
+ pixel_x = 10
+ },
+/obj/item/pen{
+ pixel_y = 4;
+ pixel_x = 10
+ },
+/obj/item/flashlight/lamp{
+ pixel_x = -6
+ },
+/turf/open/floor/plasteel/dark,
+/area/ship/bridge)
+"rd" = (
+/turf/closed/wall/r_wall,
+/area/ship/cargo)
+"rU" = (
+/turf/closed/wall/r_wall,
+/area/ship/crew)
+"rW" = (
+/obj/structure/cable/yellow{
+ icon_state = "5-10"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating/airless{
+ icon_state = "plating_rust"
+ },
+/area/ship/maintenance)
+"rY" = (
+/obj/effect/decal/cleanable/crayon{
+ icon_state = "!";
+ pixel_y = 6;
+ pixel_x = -7
+ },
+/turf/open/floor/plating/airless,
+/area/ship/maintenance)
+"so" = (
+/turf/closed/wall/rust,
+/area/ship/crew)
+"ss" = (
+/obj/machinery/light/directional/south,
+/obj/structure/closet/crate/bin,
+/turf/open/floor/plasteel/tech,
+/area/ship/maintenance/starboard)
+"sA" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 6
+ },
+/turf/open/floor/pod/dark,
+/area/ship/maintenance/starboard)
+"sQ" = (
+/turf/closed/wall,
+/area/ship/maintenance/starboard)
+"tb" = (
+/obj/structure/flippedtable,
+/turf/open/floor/plating/airless,
+/area/ship/maintenance)
+"tc" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/cable/yellow{
+ icon_state = "1-6"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-10"
+ },
+/turf/open/floor/pod/dark,
+/area/ship/maintenance/starboard)
+"td" = (
+/obj/structure/bonfire,
+/turf/open/floor/plating/airless,
+/area/ship/maintenance)
+"te" = (
+/obj/effect/turf_decal/siding/wideplating/corner{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/ship/crew/canteen)
+"ti" = (
+/obj/effect/spawner/lootdrop/donut,
+/turf/open/floor/plating/airless{
+ icon_state = "plating_rust"
+ },
+/area/ship/maintenance)
+"tq" = (
+/turf/closed/wall,
+/area/ship/cargo)
+"ts" = (
+/obj/item/storage/pill_bottle/floorpill/full{
+ pixel_x = 10;
+ pixel_y = 1
+ },
+/obj/structure/large_mortar{
+ pixel_x = -6;
+ pixel_y = -1
+ },
+/obj/item/pestle{
+ pixel_y = 8;
+ pixel_x = 7
+ },
+/obj/structure/table/rolling,
+/turf/open/floor/plating/airless{
+ icon_state = "platingdmg3"
+ },
+/area/ship/maintenance)
+"tu" = (
+/obj/structure/bed{
+ dir = 1
+ },
+/obj/structure/curtain/cloth,
+/obj/item/bedsheet/dorms,
+/turf/open/floor/carpet,
+/area/ship/crew)
+"tI" = (
+/obj/machinery/door/airlock/hatch,
+/obj/effect/mapping_helpers/airlock/locked,
+/obj/machinery/door/firedoor/heavy,
+/turf/open/floor/plating/airless,
+/area/ship/security/armory)
+"tL" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/chair/comfy/grey/old/directional/south,
+/turf/open/floor/carpet/nanoweave,
+/area/ship/crew/crewtwo)
+"tR" = (
+/turf/open/floor/plasteel/tech/techmaint,
+/area/ship/cargo)
+"tS" = (
+/obj/structure/railing,
+/turf/open/floor/plasteel/telecomms_floor,
+/area/ship/crew)
+"tT" = (
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
+ },
+/turf/open/floor/plasteel/elevatorshaft,
+/area/ship/cargo)
+"tV" = (
+/obj/machinery/space_heater,
+/obj/effect/decal/cleanable/blood/gibs/old,
+/turf/open/floor/plating/airless,
+/area/ship/maintenance)
+"ub" = (
+/obj/effect/turf_decal/techfloor,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/tech,
+/area/ship/bridge)
+"uh" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/tech/techmaint,
+/area/ship/cargo)
+"ut" = (
+/obj/structure/table/glass,
+/obj/item/reagent_containers/food/drinks/bottle/whiskey{
+ pixel_y = 10;
+ pixel_x = -1
+ },
+/obj/item/reagent_containers/food/drinks/bottle/whiskey{
+ pixel_y = 7;
+ pixel_x = -8
+ },
+/obj/effect/turf_decal/corner/opaque/blue/full,
+/obj/item/stack/tape{
+ pixel_x = 6
+ },
+/turf/open/floor/plasteel/white,
+/area/ship/crew/canteen)
+"ux" = (
+/obj/machinery/power/terminal{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plasteel/tech,
+/area/ship/maintenance/starboard)
+"uC" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/chair/sofa/brown{
+ dir = 1;
+ icon_state = "brown_sofa_end_right"
+ },
+/turf/open/floor/wood,
+/area/ship/crew/crewtwo)
+"uE" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
+/obj/machinery/light/directional/north,
+/turf/open/floor/plasteel/tech/techmaint,
+/area/ship/cargo)
+"uG" = (
+/obj/structure/closet,
+/obj/item/flashlight{
+ pixel_x = -8;
+ pixel_y = -2
+ },
+/obj/item/flashlight{
+ pixel_y = -7;
+ pixel_x = -3
+ },
+/obj/item/flashlight{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/obj/item/flashlight{
+ pixel_x = 8;
+ pixel_y = -9
+ },
+/obj/effect/turf_decal/techfloor{
+ dir = 4
+ },
+/obj/machinery/light/directional/north,
+/obj/item/radio{
+ pixel_x = 6;
+ pixel_y = 9
+ },
+/obj/item/radio{
+ pixel_x = -10;
+ pixel_y = 5
+ },
+/obj/item/radio{
+ pixel_x = -6;
+ pixel_y = 8
+ },
+/obj/item/radio{
+ pixel_x = 1;
+ pixel_y = 7
+ },
+/turf/open/floor/plasteel/telecomms_floor,
+/area/ship/crew)
+"uL" = (
+/obj/effect/decal/fakelattice{
+ icon_state = "lattice-12"
+ },
+/obj/effect/turf_decal/industrial/warning,
+/turf/open/floor/plasteel/elevatorshaft,
+/area/ship/cargo)
+"uP" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/ship/maintenance/port)
+"uQ" = (
+/obj/structure/reagent_dispensers/cooking_oil{
+ desc = "A huge metal vat with a tap on the front. Contains your backup fuel.";
+ name = "vat of engine oil";
+ reagent_id = /datum/reagent/fuel/oil;
+ tank_volume = 3000
+ },
+/turf/open/floor/pod/dark,
+/area/ship/maintenance/starboard)
+"va" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/pod/dark,
+/area/ship/maintenance/port)
+"vb" = (
+/obj/machinery/atmospherics/pipe/layer_manifold{
+ dir = 4
+ },
+/obj/machinery/light/directional/south,
+/turf/open/floor/pod/dark,
+/area/ship/maintenance/port)
+"vl" = (
+/turf/closed/wall/rust,
+/area/ship/crew/canteen)
+"vm" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
+/obj/machinery/light/directional/north,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/tech/techmaint,
+/area/ship/cargo)
+"vD" = (
+/obj/structure/cable/yellow{
+ icon_state = "5-10"
+ },
+/turf/open/floor/plating/airless{
+ icon_state = "plating_rust"
+ },
+/area/ship/maintenance)
+"vQ" = (
+/obj/structure/railing,
+/obj/structure/cable/yellow{
+ icon_state = "2-9"
+ },
+/obj/structure/cable{
+ icon_state = "5-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/open/floor/pod/dark,
+/area/ship/maintenance/starboard)
+"vV" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/machinery/computer/helm/viewscreen/directional/east,
+/turf/open/floor/plasteel/grimy,
+/area/ship/crew)
+"vW" = (
+/obj/item/flashlight/flare,
+/obj/structure/bed/double/maint{
+ dir = 1
+ },
+/obj/effect/gibspawner/human/bodypartless,
+/turf/open/floor/plating/airless,
+/area/ship/maintenance)
+"wa" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/spline/fancy/opaque/black{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/ship/maintenance/starboard)
+"wb" = (
+/obj/item/flashlight/glowstick/pink,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating/airless,
+/area/ship/maintenance)
+"wg" = (
+/obj/machinery/blackbox_recorder,
+/obj/machinery/door/window/southright,
+/turf/open/floor/plasteel/telecomms_floor,
+/area/ship/bridge)
+"wp" = (
+/obj/effect/decal/fakelattice{
+ icon_state = "lattice-12"
+ },
+/obj/effect/turf_decal/industrial/warning{
+ dir = 10
+ },
+/obj/effect/landmark/subship{
+ subship_template = /datum/map_template/shuttle/subshuttles/brawler
+ },
+/turf/open/floor/plasteel/elevatorshaft,
+/area/ship/cargo)
+"wC" = (
+/obj/structure/bed/double,
+/obj/item/bedsheet/double/black,
+/obj/machinery/light/directional/north,
+/turf/open/floor/carpet/nanoweave,
+/area/ship/crew/crewtwo)
+"wF" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/tech/techmaint,
+/area/ship/cargo)
+"wH" = (
+/obj/machinery/light/directional/north,
+/turf/open/floor/pod/dark,
+/area/ship/maintenance/starboard)
+"wL" = (
+/obj/effect/turf_decal/box/corners{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/obj/machinery/airalarm/directional/south,
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"wN" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/open/floor/pod/dark,
+/area/ship/maintenance/port)
+"wQ" = (
+/obj/effect/turf_decal/box/corners,
+/obj/structure/closet/crate/bin,
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"wY" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/flippedtable{
+ dir = 8
+ },
+/turf/open/floor/plating/airless,
+/area/ship/maintenance)
+"xb" = (
+/turf/closed/wall/r_wall/rust,
+/area/ship/cargo)
+"xf" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/machinery/computer/helm/viewscreen/directional/north,
+/turf/open/floor/carpet/nanoweave,
+/area/ship/crew/crewtwo)
+"xB" = (
+/obj/structure/closet/secure_closet{
+ icon_door = "tac";
+ icon_state = "tac";
+ name = "boarding tools locker";
+ req_access_txt = "3"
+ },
+/obj/effect/turf_decal/box,
+/obj/item/storage/backpack/duffelbag/syndie/c4{
+ pixel_y = 8
+ },
+/obj/item/door_seal{
+ pixel_y = -7
+ },
+/obj/item/door_seal{
+ pixel_y = -7
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/ship/security/armory)
+"xX" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/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/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/ship/crew/canteen)
+"yc" = (
+/obj/effect/spawner/lootdrop/grille_or_trash,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating/airless,
+/area/ship/maintenance)
+"yd" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp{
+ pixel_x = -6;
+ pixel_y = 12
+ },
+/turf/open/floor/plasteel/grimy,
+/area/ship/crew)
+"yl" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/turf/open/floor/plasteel/tech,
+/area/ship/maintenance/port)
+"yt" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/book/fish_catalog{
+ pixel_y = 5;
+ pixel_x = 6
+ },
+/obj/item/storage/toolbox/fishing{
+ pixel_x = -6;
+ pixel_y = -2
+ },
+/turf/open/floor/plating/airless{
+ icon_state = "plating_rust"
+ },
+/area/ship/maintenance)
+"yv" = (
+/obj/structure/table,
+/obj/effect/turf_decal/siding/wideplating{
+ dir = 1
+ },
+/obj/structure/reagent_dispensers/servingdish,
+/obj/machinery/airalarm/directional/north,
+/turf/open/floor/plasteel/patterned/grid,
+/area/ship/crew/canteen)
+"yz" = (
+/turf/open/floor/plasteel/tech,
+/area/ship/bridge)
+"yC" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-9"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-9"
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"yH" = (
+/obj/effect/turf_decal/techfloor,
+/turf/open/floor/plasteel/tech/grid,
+/area/ship/security/armory)
+"yK" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/firedoor/window,
+/turf/open/floor/plating,
+/area/ship/bridge)
+"yV" = (
+/obj/effect/turf_decal/borderfloor,
+/obj/machinery/light/floor,
+/turf/open/floor/plasteel/tech/techmaint,
+/area/ship/cargo)
+"yX" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/item/shard{
+ pixel_x = -6
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating/airless{
+ icon_state = "plating_rust"
+ },
+/area/ship/maintenance)
+"ze" = (
+/obj/structure/cable/yellow{
+ icon_state = "6-8"
+ },
+/turf/open/floor/plasteel/dark,
+/area/ship/maintenance/starboard)
+"zG" = (
+/obj/structure/chair/sofa/brown{
+ dir = 1;
+ icon_state = "brown_sofa_end_left"
+ },
+/turf/open/floor/wood,
+/area/ship/crew/crewtwo)
+"zJ" = (
+/obj/item/flashlight/glowstick,
+/obj/effect/decal/cleanable/crayon{
+ icon_state = "radiation"
+ },
+/turf/open/floor/plating/airless,
+/area/ship/maintenance)
+"zZ" = (
+/obj/structure/bed{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/ship/security/armory)
+"Ab" = (
+/turf/closed/wall/r_wall/rust,
+/area/ship/crew)
+"Ar" = (
+/obj/structure/bed,
+/obj/structure/curtain/cloth,
+/obj/item/bedsheet/dorms,
+/turf/open/floor/carpet,
+/area/ship/crew)
+"Az" = (
+/obj/structure/curtain/bounty,
+/obj/machinery/light_switch{
+ pixel_y = 22
+ },
+/turf/open/floor/plasteel,
+/area/ship/crew)
+"AG" = (
+/obj/effect/spawner/lootdrop/grille_or_trash,
+/turf/open/floor/plating/airless,
+/area/ship/maintenance)
+"AQ" = (
+/obj/structure/closet/crate/bin,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/airalarm/directional/north,
+/turf/open/floor/plasteel/tech,
+/area/ship/bridge)
+"AZ" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/pod/dark,
+/area/ship/maintenance/starboard)
+"Bk" = (
+/turf/open/floor/plating/airless,
+/area/ship/maintenance)
+"Bp" = (
+/turf/closed/wall/rust,
+/area/ship/maintenance)
+"BA" = (
+/obj/structure/cable/yellow{
+ icon_state = "5-10"
+ },
+/turf/open/floor/plasteel/dark,
+/area/ship/maintenance/starboard)
+"BF" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/effect/turf_decal/industrial/warning/fulltile,
+/turf/open/floor/plasteel/tech/grid,
+/area/ship/cargo)
+"BG" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/wideplating,
+/turf/open/floor/plasteel,
+/area/ship/crew/canteen)
+"BN" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/siding/wood,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/wood,
+/area/ship/crew/crewtwo)
+"BV" = (
+/obj/structure/salvageable/server,
+/turf/open/floor/plating/airless{
+ icon_state = "plating_rust"
+ },
+/area/ship/maintenance)
+"Ca" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/structure/catwalk/over/plated_catwalk,
+/turf/open/floor/plating,
+/area/ship/cargo)
+"Cx" = (
+/obj/machinery/portable_atmospherics/pump,
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/plating/airless,
+/area/ship/maintenance)
+"Cy" = (
+/obj/structure/chair/stool{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/grimy,
+/area/ship/crew/canteen)
+"CA" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/tech,
+/area/ship/bridge)
+"CE" = (
+/obj/structure/table,
+/obj/machinery/jukebox/boombox{
+ pixel_y = 2;
+ pixel_x = -3
+ },
+/turf/open/floor/plasteel/grimy,
+/area/ship/crew/canteen)
+"CG" = (
+/turf/closed/wall,
+/area/ship/maintenance/port)
+"CN" = (
+/obj/effect/turf_decal/industrial/stand_clear{
+ dir = 4
+ },
+/turf/open/floor/plasteel/tech/techmaint,
+/area/ship/cargo)
+"CQ" = (
+/obj/effect/turf_decal/spline/fancy/opaque/black{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/dark,
+/area/ship/bridge)
+"CT" = (
+/obj/machinery/power/shuttle/engine/liquid/oil{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/ship/maintenance/port)
+"Dv" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating/airless{
+ icon_state = "plating_rust"
+ },
+/area/ship/maintenance)
+"Dw" = (
+/obj/structure/dresser{
+ dir = 1;
+ pixel_y = -5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 5
+ },
+/obj/machinery/light/directional/south,
+/turf/open/floor/plasteel,
+/area/ship/crew)
+"DF" = (
+/obj/structure/cable/yellow{
+ icon_state = "6-8"
+ },
+/obj/structure/chair/plastic{
+ dir = 4
+ },
+/turf/open/floor/plasteel/tech,
+/area/ship/maintenance/port)
+"DG" = (
+/turf/open/floor/plasteel/elevatorshaft,
+/area/ship/cargo)
+"DN" = (
+/obj/structure/bed{
+ dir = 1
+ },
+/obj/structure/curtain/cloth,
+/obj/item/bedsheet/dorms,
+/obj/machinery/airalarm/directional/north,
+/turf/open/floor/carpet,
+/area/ship/crew)
+"DR" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-10"
+ },
+/obj/effect/gibspawner/human/bodypartless,
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/plating/airless{
+ icon_state = "plating_rust"
+ },
+/area/ship/maintenance)
+"DU" = (
+/obj/structure/cable/yellow{
+ icon_state = "5-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating/airless,
+/area/ship/maintenance)
+"Eb" = (
+/obj/effect/spawner/lootdrop/waste/trash,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating/airless{
+ icon_state = "plating_rust"
+ },
+/area/ship/maintenance)
+"Ek" = (
+/turf/template_noop,
+/area/template_noop)
+"Er" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/structure/railing/corner,
+/obj/structure/cable/yellow{
+ icon_state = "4-10"
+ },
+/turf/open/floor/plating,
+/area/ship/cargo)
+"Ev" = (
+/obj/effect/turf_decal/box/corners{
+ dir = 1
+ },
+/obj/structure/closet/crate/trashcart,
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"EB" = (
+/obj/effect/decal/fakelattice{
+ icon_state = "lattice-12"
+ },
+/obj/effect/turf_decal/industrial/warning{
+ dir = 1
+ },
+/turf/open/floor/plasteel/elevatorshaft,
+/area/ship/cargo)
+"EI" = (
+/obj/machinery/power/smes/shuttle/precharged{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/open/floor/plasteel/tech,
+/area/ship/maintenance/port)
+"EN" = (
+/obj/machinery/atmospherics/components/unary/tank/air{
+ dir = 4
+ },
+/turf/open/floor/pod/dark,
+/area/ship/maintenance/port)
+"EO" = (
+/turf/open/floor/plasteel,
+/area/ship/crew)
+"EQ" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/firedoor/window,
+/turf/open/floor/plating,
+/area/ship/maintenance/port)
+"Fc" = (
+/obj/structure/toilet{
+ dir = 4;
+ pixel_x = -2;
+ pixel_y = 5
+ },
+/obj/effect/decal/cleanable/vomit/old,
+/obj/effect/decal/cleanable/vomit/old{
+ icon_state = "vomit_4";
+ pixel_x = 15;
+ pixel_y = -12
+ },
+/obj/effect/decal/cleanable/vomit/old{
+ icon_state = "vomit_2";
+ pixel_x = -13
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/ship/crew/canteen)
+"Fh" = (
+/obj/structure/flippedtable,
+/obj/effect/decal/cleanable/garbage{
+ pixel_x = -7;
+ pixel_y = 11
+ },
+/turf/open/floor/plating/airless,
+/area/ship/maintenance)
+"Fk" = (
+/obj/structure/table,
+/obj/item/reagent_containers/food/drinks/soda_cans/sol_dry{
+ pixel_x = -5;
+ pixel_y = 10
+ },
+/obj/item/reagent_containers/food/drinks/soda_cans/sol_dry{
+ pixel_x = 6;
+ pixel_y = 6
+ },
+/obj/item/reagent_containers/food/drinks/soda_cans/sol_dry{
+ pixel_x = -3;
+ pixel_y = 2
+ },
+/obj/effect/turf_decal/techfloor{
+ dir = 4
+ },
+/obj/machinery/light/directional/south,
+/turf/open/floor/plasteel/telecomms_floor,
+/area/ship/crew)
+"Fy" = (
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
+ },
+/turf/open/floor/plasteel/elevatorshaft,
+/area/ship/cargo)
+"FB" = (
+/obj/structure/rack,
+/obj/item/kitchen/knife/combat/survival{
+ pixel_y = 8;
+ pixel_x = -9
+ },
+/obj/item/kitchen/knife/combat/survival{
+ pixel_y = 7;
+ pixel_x = 5
+ },
+/obj/item/kitchen/knife/combat/survival{
+ pixel_y = 7;
+ pixel_x = -4
+ },
+/obj/item/kitchen/knife/combat/survival{
+ pixel_y = 7;
+ pixel_x = 1
+ },
+/obj/item/melee/baton/boomerang/loaded{
+ pixel_y = -14;
+ pixel_x = 3
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/ship/security/armory)
+"FL" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
+/turf/open/floor/plasteel/tech/techmaint,
+/area/ship/cargo)
+"FP" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/spline/fancy/opaque/black,
+/turf/open/floor/mineral/titanium/tiled,
+/area/ship/security/armory)
+"FQ" = (
+/turf/open/floor/mineral/titanium,
+/area/ship/security/armory)
+"FR" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-6"
+ },
+/obj/effect/decal/cleanable/garbage{
+ pixel_x = -7;
+ pixel_y = 8
+ },
+/turf/open/floor/plating/airless{
+ icon_state = "plating_rust"
+ },
+/area/ship/maintenance)
+"FU" = (
+/obj/machinery/light/directional/west,
+/turf/open/floor/plasteel/tech/techmaint,
+/area/ship/cargo)
+"FW" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/ship/crew)
+"Gd" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-5"
+ },
+/obj/effect/turf_decal/spline/fancy/opaque/black{
+ dir = 1
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/ship/crew/canteen)
+"Gm" = (
+/obj/structure/cable/yellow{
+ icon_state = "5-8"
+ },
+/turf/open/floor/plasteel/tech,
+/area/ship/maintenance/starboard)
+"Gr" = (
+/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/sign/poster/retro/lasergun{
+ pixel_x = 32
+ },
+/turf/open/floor/plasteel/dark,
+/area/ship/crew/canteen)
+"Gx" = (
+/obj/machinery/vending/coffee,
+/turf/open/floor/plasteel/dark,
+/area/ship/crew/canteen)
+"Gy" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/light/directional/east,
+/turf/open/floor/plasteel/dark,
+/area/ship/crew/canteen)
+"GA" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/open/floor/pod/dark,
+/area/ship/maintenance/starboard)
+"GM" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
+/turf/open/floor/plasteel,
+/area/ship/crew)
+"GV" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/wideplating,
+/turf/open/floor/plasteel,
+/area/ship/crew/canteen)
+"GY" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 5
+ },
+/obj/effect/turf_decal/spline/fancy/opaque/black,
+/turf/open/floor/plasteel/dark,
+/area/ship/maintenance/port)
+"Ha" = (
+/obj/machinery/light/directional/north,
+/obj/structure/rack,
+/obj/item/storage/toolbox/mechanical{
+ pixel_y = 9;
+ pixel_x = -5
+ },
+/obj/item/storage/toolbox/electrical{
+ pixel_x = 4
+ },
+/turf/open/floor/plasteel/tech,
+/area/ship/maintenance/port)
+"Hk" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating/airless,
+/area/ship/maintenance)
+"Hx" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/plating,
+/area/ship/cargo)
+"HG" = (
+/obj/structure/railing/corner{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/airalarm/directional/north,
+/turf/open/floor/pod/dark,
+/area/ship/maintenance/port)
+"HS" = (
+/obj/structure/cable/yellow{
+ icon_state = "6-9"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "6-8"
+ },
+/obj/effect/turf_decal/spline/fancy/opaque/black,
+/turf/open/floor/plasteel/dark,
+/area/ship/maintenance/port)
+"HX" = (
+/obj/machinery/power/terminal{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plasteel/tech,
+/area/ship/maintenance/port)
+"HY" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 4;
+ layer = 2.35;
+ name = "air pump"
+ },
+/turf/open/floor/pod/dark,
+/area/ship/maintenance/port)
+"Il" = (
+/obj/effect/turf_decal/siding/wood,
+/turf/open/floor/wood{
+ icon_state = "wood-broken5"
+ },
+/area/ship/crew/crewtwo)
+"Iw" = (
+/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
+ },
+/turf/open/floor/plasteel/dark,
+/area/ship/crew/canteen)
+"Iy" = (
+/obj/machinery/shower{
+ pixel_y = 14
+ },
+/obj/item/bikehorn/rubberducky{
+ pixel_x = 7;
+ pixel_y = -2
+ },
+/obj/structure/curtain,
+/turf/open/floor/plasteel/showroomfloor,
+/area/ship/crew/canteen)
+"ID" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/structure/railing/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/industrial/stand_clear,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/industrial/warning{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/ship/cargo)
+"II" = (
+/obj/machinery/door/airlock/hatch,
+/obj/effect/mapping_helpers/airlock/locked,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/heavy,
+/turf/open/floor/plating,
+/area/ship/maintenance/port)
+"IO" = (
+/obj/structure/sign/poster/rilena/tali{
+ pixel_y = 32
+ },
+/obj/structure/table/wood,
+/obj/item/gun/ballistic/derringer{
+ pixel_x = 5;
+ pixel_y = 6
+ },
+/obj/item/ammo_casing/c38{
+ pixel_x = 9
+ },
+/obj/item/ammo_casing/c38{
+ pixel_x = 6;
+ pixel_y = -1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/wood,
+/area/ship/crew/crewtwo)
+"Je" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/structure/railing/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/ship/cargo)
+"Jh" = (
+/obj/structure/closet/crate/bin,
+/turf/open/floor/carpet/nanoweave,
+/area/ship/crew/crewtwo)
+"Ji" = (
+/obj/effect/turf_decal/techfloor,
+/obj/item/radio/intercom/wideband/directional/east,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/tech,
+/area/ship/bridge)
+"Jv" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-10"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating/airless,
+/area/ship/maintenance)
+"JA" = (
+/turf/open/floor/plating/airless{
+ icon_state = "plating_rust"
+ },
+/area/ship/maintenance)
+"JE" = (
+/obj/effect/turf_decal/spline/fancy/opaque/black{
+ dir = 1
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 1
+ },
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/ship/crew/canteen)
+"JJ" = (
+/obj/effect/turf_decal/spline/fancy/opaque/black{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
+ },
+/obj/effect/decal/cleanable/glass{
+ pixel_x = 4;
+ pixel_y = 5;
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/ship/bridge)
+"JS" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
+/turf/open/floor/pod/dark,
+/area/ship/maintenance/port)
+"JX" = (
+/obj/structure/table/wood,
+/obj/item/paicard{
+ pixel_x = -5;
+ pixel_y = 4
+ },
+/obj/item/paicard{
+ pixel_x = 4
+ },
+/turf/open/floor/plasteel/grimy,
+/area/ship/crew)
+"JZ" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/on/layer4,
+/obj/structure/fluff/fokoff_sign{
+ pixel_x = -8;
+ pixel_y = 21
+ },
+/turf/open/floor/engine/hull,
+/area/ship/external/dark)
+"Ke" = (
+/obj/machinery/door/airlock/hatch{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/abandoned,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating/airless{
+ icon_state = "plating_rust"
+ },
+/area/ship/maintenance)
+"Kf" = (
+/obj/effect/turf_decal/siding/wood,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/wood{
+ icon_state = "wood-broken2"
+ },
+/area/ship/crew/crewtwo)
+"Kn" = (
+/obj/structure/frame/machine,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating/airless,
+/area/ship/maintenance)
+"Ko" = (
+/turf/closed/wall/rust,
+/area/ship/maintenance/starboard)
+"Kp" = (
+/obj/machinery/power/terminal{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/machinery/light/directional/south,
+/turf/open/floor/plasteel/tech,
+/area/ship/maintenance/starboard)
+"Kx" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/shieldwallgen/atmos{
+ id = "watchdog_holo";
+ dir = 1
+ },
+/obj/machinery/door/poddoor/shutters{
+ dir = 4;
+ id = "watchdog_cargo"
+ },
+/turf/open/floor/plating,
+/area/ship/cargo)
+"KM" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/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 = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-6"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/pod/dark,
+/area/ship/maintenance/port)
+"KO" = (
+/obj/effect/turf_decal/siding/wideplating{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/ship/crew/canteen)
+"Lb" = (
+/obj/structure/table,
+/obj/effect/spawner/lootdrop/ration,
+/obj/effect/spawner/lootdrop/ration,
+/obj/effect/spawner/lootdrop/ration,
+/obj/effect/turf_decal/siding/wideplating{
+ dir = 5
+ },
+/obj/machinery/light/directional/north,
+/turf/open/floor/plasteel/patterned/grid,
+/area/ship/crew/canteen)
+"Ld" = (
+/obj/item/toy/plush/moth/error,
+/turf/open/floor/plating/airless,
+/area/ship/maintenance)
+"Lg" = (
+/obj/effect/gibspawner/human/bodypartless,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating/airless,
+/area/ship/maintenance)
+"Lm" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating/airless{
+ icon_state = "plating_rust"
+ },
+/area/ship/maintenance)
+"Lt" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/chair/plastic{
+ dir = 8
+ },
+/turf/open/floor/plasteel/tech,
+/area/ship/maintenance/port)
+"Lz" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/mineral/titanium,
+/area/ship/security/armory)
+"LG" = (
+/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/siding/wideplating/corner,
+/obj/effect/turf_decal/siding/wideplating/corner{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/ship/crew/canteen)
+"LH" = (
+/obj/effect/decal/fakelattice{
+ icon_state = "lattice-12"
+ },
+/obj/effect/turf_decal/industrial/warning{
+ dir = 9
+ },
+/turf/open/floor/plasteel/elevatorshaft,
+/area/ship/cargo)
+"Mb" = (
+/turf/open/floor/pod/dark,
+/area/ship/maintenance/starboard)
+"Mk" = (
+/obj/machinery/light/directional/south,
+/obj/structure/table,
+/obj/item/dyespray{
+ pixel_x = -5;
+ pixel_y = 7
+ },
+/obj/item/lipstick/jade{
+ pixel_x = 9;
+ pixel_y = 5
+ },
+/obj/item/lipstick/purple{
+ pixel_x = 8
+ },
+/obj/item/lipstick{
+ pixel_x = 5;
+ pixel_y = -4
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/ship/crew/canteen)
+"Mn" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/structure/railing{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 5
+ },
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/ship/cargo)
+"Mo" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/structure/railing/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/industrial/stand_clear,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/industrial/warning{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/ship/cargo)
+"MC" = (
+/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/plasteel/dark,
+/area/ship/crew/canteen)
+"MD" = (
+/obj/structure/table/wood,
+/turf/open/floor/carpet,
+/area/ship/crew)
+"MF" = (
+/obj/structure/floodlight_frame,
+/turf/open/floor/plating/airless,
+/area/ship/maintenance)
+"MH" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/spawner/lootdrop/grille_or_trash,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating/airless{
+ icon_state = "plating_rust"
+ },
+/area/ship/maintenance)
+"MI" = (
+/obj/machinery/door/airlock/hatch{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/abandoned,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating/airless,
+/area/ship/maintenance)
+"MK" = (
+/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/spline/fancy/opaque/black{
+ dir = 1
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/ship/crew/canteen)
+"MO" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-6"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/tech/techmaint,
+/area/ship/cargo)
+"MS" = (
+/turf/open/floor/plasteel/showroomfloor,
+/area/ship/crew/canteen)
+"Nr" = (
+/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
+ },
+/turf/open/floor/plasteel,
+/area/ship/crew/canteen)
+"NI" = (
+/obj/effect/turf_decal/techfloor{
+ dir = 4
+ },
+/turf/open/floor/plasteel/telecomms_floor,
+/area/ship/crew)
+"Od" = (
+/obj/machinery/computer/helm{
+ dir = 8;
+ icon_state = "computer-right"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/mono/dark,
+/area/ship/bridge)
+"Ol" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/structure/railing/corner{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-9"
+ },
+/turf/open/floor/plating,
+/area/ship/cargo)
+"Oo" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/ship/cargo)
+"Op" = (
+/obj/effect/turf_decal/siding/wood,
+/obj/structure/closet/cabinet,
+/obj/item/clothing/under/frontiersmen/officer{
+ pixel_x = -5
+ },
+/obj/item/clothing/shoes/jackboots{
+ pixel_y = -13
+ },
+/obj/item/clothing/head/frontier/peaked{
+ pixel_y = 9
+ },
+/obj/item/clothing/suit/armor/frontier{
+ pixel_x = 8
+ },
+/obj/item/clothing/suit/armor/frontier{
+ pixel_x = 8
+ },
+/obj/item/clothing/under/frontiersmen/officer{
+ pixel_x = -5
+ },
+/obj/item/clothing/head/frontier/peaked{
+ pixel_y = 9
+ },
+/obj/item/clothing/shoes/jackboots{
+ pixel_y = -13
+ },
+/obj/item/ammo_box/c38_box/surplus,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/carpet/nanoweave,
+/area/ship/crew/crewtwo)
+"OF" = (
+/obj/effect/decal/fakelattice{
+ icon_state = "lattice-12"
+ },
+/obj/effect/turf_decal/industrial/warning{
+ dir = 1
+ },
+/obj/effect/turf_decal/industrial/warning/corner,
+/turf/open/floor/plasteel/elevatorshaft,
+/area/ship/cargo)
+"OG" = (
+/obj/effect/decal/cleanable/vomit{
+ pixel_x = 8;
+ pixel_y = 14
+ },
+/turf/open/floor/plating/airless,
+/area/ship/maintenance)
+"OI" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/table,
+/obj/machinery/fax/frontiersmen{
+ pixel_y = 5
+ },
+/obj/structure/fluff/paper/stack{
+ dir = 5;
+ layer = 2.79;
+ pixel_y = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/ship/bridge)
+"Pa" = (
+/obj/structure/table/glass,
+/obj/effect/turf_decal/corner/opaque/blue/full,
+/obj/item/storage/backpack/duffelbag/med/surgery{
+ pixel_x = 4;
+ pixel_y = 5
+ },
+/obj/machinery/light_switch{
+ pixel_y = 22
+ },
+/obj/item/clothing/suit/apron/surgical{
+ pixel_x = -7;
+ pixel_y = 10
+ },
+/turf/open/floor/plasteel/white,
+/area/ship/crew/canteen)
+"Pb" = (
+/obj/effect/spawner/lootdrop/grille_or_trash,
+/turf/open/floor/plating/airless{
+ icon_state = "platingdmg1"
+ },
+/area/ship/maintenance)
+"Pl" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/structure/railing/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/ship/cargo)
+"Po" = (
+/obj/structure/bed{
+ dir = 1
+ },
+/obj/effect/turf_decal/corner/opaque/blue/full,
+/obj/machinery/computer/helm/viewscreen/directional/north,
+/obj/machinery/light/directional/west,
+/turf/open/floor/plasteel/white,
+/area/ship/crew/canteen)
+"Pu" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/power/smes/shuttle/precharged{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/open/floor/plasteel/tech,
+/area/ship/maintenance/port)
+"Pw" = (
+/obj/structure/cable{
+ icon_state = "4-9"
+ },
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_x = -9;
+ pixel_y = -20
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/pod/dark,
+/area/ship/maintenance/port)
+"Px" = (
+/obj/effect/turf_decal/techfloor,
+/obj/structure/guncase{
+ anchored = 1
+ },
+/obj/item/gun/ballistic/automatic/pistol/candor,
+/obj/item/gun/ballistic/automatic/pistol/candor,
+/obj/item/gun/ballistic/automatic/pistol/candor,
+/turf/open/floor/plasteel/tech/grid,
+/area/ship/security/armory)
+"PC" = (
+/obj/effect/turf_decal/siding/wideplating{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/ship/crew/canteen)
+"PI" = (
+/obj/effect/turf_decal/borderfloor,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/tech/techmaint,
+/area/ship/cargo)
+"PV" = (
+/obj/structure/chair/office,
+/turf/open/floor/plasteel/grimy,
+/area/ship/crew)
+"Qi" = (
+/obj/effect/turf_decal/siding/wood,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/carpet/nanoweave,
+/area/ship/crew/crewtwo)
+"Ql" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
+/turf/open/floor/plasteel,
+/area/ship/crew)
+"QJ" = (
+/turf/closed/wall/r_wall/rust,
+/area/ship/maintenance)
+"QK" = (
+/obj/effect/turf_decal/box/corners{
+ dir = 4
+ },
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"QM" = (
+/obj/effect/spawner/lootdrop/maintenance/three,
+/obj/structure/closet/cardboard,
+/turf/open/floor/plating/airless,
+/area/ship/maintenance)
+"QP" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/dark,
+/area/ship/maintenance/port)
+"QT" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/ship/crew/canteen)
+"QV" = (
+/obj/item/book/manual/wiki/ghetto_chemistry{
+ pixel_y = 11;
+ pixel_x = -7
+ },
+/obj/item/lighter{
+ pixel_x = 5
+ },
+/turf/open/floor/plating/airless{
+ icon_state = "panelscorched"
+ },
+/area/ship/maintenance)
+"Rg" = (
+/obj/machinery/button/door{
+ id = "watchdog_cargo";
+ pixel_y = 25;
+ pixel_x = -3
+ },
+/obj/machinery/button/shieldwallgen{
+ id = "watchdog_holo";
+ pixel_x = 8;
+ pixel_y = 23
+ },
+/obj/machinery/light/directional/west,
+/turf/open/floor/plasteel/tech/techmaint,
+/area/ship/cargo)
+"Rn" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/effect/turf_decal/industrial/warning/fulltile,
+/turf/open/floor/plating,
+/area/ship/cargo)
+"Rs" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/spawner/lootdrop/grille_or_trash,
+/turf/open/floor/plating/airless{
+ icon_state = "plating_rust"
+ },
+/area/ship/maintenance)
+"Ry" = (
+/obj/machinery/light/floor,
+/turf/open/floor/plasteel/tech/techmaint,
+/area/ship/cargo)
+"RB" = (
+/obj/structure/cable/yellow{
+ icon_state = "6-8"
+ },
+/turf/open/floor/plasteel/tech/techmaint,
+/area/ship/cargo)
+"RF" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/closet/secure_closet/engineering_electrical,
+/turf/open/floor/plasteel/tech,
+/area/ship/maintenance/starboard)
+"RH" = (
+/obj/effect/turf_decal/techfloor{
+ dir = 8
+ },
+/turf/open/floor/plasteel/tech/grid,
+/area/ship/security/armory)
+"RP" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/cable/yellow{
+ icon_state = "1-10"
+ },
+/turf/open/floor/plating,
+/area/ship/cargo)
+"RV" = (
+/obj/item/kitchen/knife/plastic{
+ pixel_x = 8
+ },
+/obj/item/reagent_containers/food/snacks/grown/potato{
+ pixel_x = -12;
+ pixel_y = 15
+ },
+/obj/item/reagent_containers/food/snacks/grown/potato{
+ pixel_x = -11;
+ pixel_y = 12
+ },
+/obj/item/reagent_containers/food/snacks/grown/potato{
+ pixel_x = -12;
+ pixel_y = 9
+ },
+/obj/item/reagent_containers/food/snacks/grown/potato{
+ pixel_x = -14;
+ pixel_y = 6
+ },
+/obj/item/reagent_containers/food/snacks/grown/potato{
+ pixel_x = -10;
+ pixel_y = 3
+ },
+/obj/item/reagent_containers/food/snacks/grown/potato{
+ pixel_x = -15
+ },
+/obj/item/reagent_containers/food/snacks/grown/potato{
+ pixel_x = -12;
+ pixel_y = -3
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/ship/security/armory)
+"Se" = (
+/turf/closed/wall/r_wall,
+/area/ship/bridge)
+"So" = (
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"Ss" = (
+/obj/structure/table/wood/reinforced,
+/obj/item/modular_computer/laptop/preset/civilian/rilena{
+ pixel_x = -16;
+ pixel_y = 4
+ },
+/turf/open/floor/carpet/nanoweave,
+/area/ship/crew/crewtwo)
+"Su" = (
+/obj/machinery/grill,
+/obj/machinery/light/directional/east,
+/obj/effect/decal/cleanable/wrapping,
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"Sv" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/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/catwalk/over/plated_catwalk,
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/ship/cargo)
+"Sy" = (
+/obj/machinery/iv_drip,
+/obj/effect/turf_decal/corner/opaque/blue/full,
+/turf/open/floor/plasteel/white,
+/area/ship/crew/canteen)
+"SC" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/tech,
+/area/ship/bridge)
+"SD" = (
+/obj/machinery/airalarm/directional/east,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/spline/fancy/opaque/black,
+/turf/open/floor/mineral/titanium/tiled,
+/area/ship/security/armory)
+"SG" = (
+/obj/structure/closet/crate/bin,
+/obj/effect/turf_decal/siding/wideplating{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/ship/crew/canteen)
+"SJ" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/item/kirbyplants/fullysynthetic{
+ pixel_x = 6
+ },
+/turf/open/floor/carpet/nanoweave,
+/area/ship/crew/crewtwo)
+"SS" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/light/directional/south,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/pod/dark,
+/area/ship/maintenance/port)
+"SV" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/ship/crew)
+"SX" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/ship/cargo)
+"SY" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/wood,
+/area/ship/crew/crewtwo)
+"Td" = (
+/obj/effect/turf_decal/borderfloor,
+/turf/open/floor/plasteel/tech/techmaint,
+/area/ship/cargo)
+"Tq" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/smes/engineering,
+/turf/open/floor/plasteel/tech,
+/area/ship/maintenance/port)
+"TG" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/spline/fancy/opaque/black,
+/turf/open/floor/mineral/titanium/tiled,
+/area/ship/security/armory)
+"TM" = (
+/obj/effect/turf_decal/borderfloor,
+/obj/machinery/light/directional/south,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/tech/techmaint,
+/area/ship/cargo)
+"TN" = (
+/turf/open/floor/plasteel/tech,
+/area/ship/maintenance/starboard)
+"TO" = (
+/obj/effect/turf_decal/siding/wood,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/wood{
+ icon_state = "wood-broken6"
+ },
+/area/ship/crew/crewtwo)
+"Uk" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 10
+ },
+/turf/open/floor/carpet/nanoweave,
+/area/ship/crew/crewtwo)
+"Uo" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/structure/railing,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/industrial/warning,
+/turf/open/floor/plating,
+/area/ship/cargo)
+"Uw" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 5
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/turf/open/floor/pod/dark,
+/area/ship/maintenance/port)
+"UE" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel,
+/area/ship/crew)
+"UO" = (
+/obj/structure/table/wood,
+/obj/machinery/light/directional/north,
+/turf/open/floor/carpet,
+/area/ship/crew)
+"UQ" = (
+/obj/item/stack/tile/plasteel/tech/techmaint,
+/turf/open/floor/plasteel/tech/techmaint,
+/area/ship/cargo)
+"UT" = (
+/obj/effect/mapping_helpers/airlock/locked,
+/obj/machinery/door/airlock/hatch,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/heavy,
+/turf/open/floor/plating/airless,
+/area/ship/maintenance)
+"Vd" = (
+/obj/structure/curtain/bounty,
+/turf/open/floor/plasteel,
+/area/ship/crew)
+"Vf" = (
+/obj/structure/sink{
+ pixel_x = 2;
+ pixel_y = 20
+ },
+/obj/structure/mirror{
+ pixel_y = 28;
+ pixel_x = 1
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/ship/crew/canteen)
+"Vg" = (
+/obj/structure/closet/cabinet,
+/obj/item/clothing/under/frontiersmen{
+ pixel_x = -7
+ },
+/obj/item/clothing/under/frontiersmen{
+ pixel_x = -4
+ },
+/obj/item/clothing/under/frontiersmen,
+/obj/item/clothing/under/frontiersmen{
+ pixel_x = 4
+ },
+/obj/item/clothing/under/frontiersmen{
+ pixel_x = 8
+ },
+/obj/item/clothing/shoes/jackboots{
+ pixel_y = -13;
+ pixel_x = -8
+ },
+/obj/item/clothing/shoes/jackboots{
+ pixel_y = -13;
+ pixel_x = -4
+ },
+/obj/item/clothing/shoes/jackboots{
+ pixel_y = -13
+ },
+/obj/item/clothing/shoes/jackboots{
+ pixel_y = -13;
+ pixel_x = 4
+ },
+/obj/item/clothing/shoes/jackboots{
+ pixel_y = -13;
+ pixel_x = 8
+ },
+/turf/open/floor/plasteel,
+/area/ship/crew)
+"Vm" = (
+/obj/item/reagent_containers/glass/bucket{
+ desc = "Better get scoopin'.";
+ name = "oil-soaked bucket";
+ pixel_x = -5;
+ pixel_y = 5
+ },
+/turf/open/floor/pod/dark,
+/area/ship/maintenance/starboard)
+"Vt" = (
+/turf/closed/wall/r_wall,
+/area/ship/security/armory)
+"Vx" = (
+/obj/item/reagent_containers/food/snacks/deadmouse{
+ pixel_x = -9;
+ pixel_y = 12
+ },
+/obj/item/crowbar{
+ pixel_x = 21
+ },
+/obj/effect/decal/cleanable/blood/drip{
+ pixel_y = 3;
+ pixel_x = -9;
+ icon_state = "drip1"
+ },
+/obj/effect/decal/cleanable/blood/drip{
+ pixel_y = 6;
+ pixel_x = 6
+ },
+/obj/effect/decal/cleanable/blood/splatter{
+ pixel_y = -4
+ },
+/turf/open/floor/plating/airless{
+ icon_state = "platingdmg1"
+ },
+/area/ship/cargo)
+"VE" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/structure/railing/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/industrial/stand_clear{
+ dir = 1
+ },
+/obj/effect/turf_decal/industrial/warning,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/industrial/warning,
+/turf/open/floor/plating,
+/area/ship/cargo)
+"VH" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
+/obj/structure/table,
+/obj/item/folder{
+ pixel_x = -6;
+ pixel_y = 12
+ },
+/obj/item/folder{
+ pixel_x = -2;
+ pixel_y = 7
+ },
+/turf/open/floor/plasteel/tech,
+/area/ship/bridge)
+"VO" = (
+/obj/docking_port/mobile{
+ name = "tortuga docking port";
+ port_direction = 8;
+ preferred_direction = 4;
+ dir = 2
+ },
+/turf/closed/wall,
+/area/ship/maintenance/port)
+"VP" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/tech/techmaint,
+/area/ship/cargo)
+"VQ" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/structure/salvageable/computer,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating/airless,
+/area/ship/maintenance)
+"Wa" = (
+/obj/structure/cable/yellow{
+ icon_state = "5-8"
+ },
+/turf/open/floor/plasteel/tech/techmaint,
+/area/ship/cargo)
+"Wd" = (
+/obj/effect/decal/cleanable/crayon{
+ icon_state = "engie"
+ },
+/turf/open/floor/plating/airless,
+/area/ship/maintenance)
+"We" = (
+/obj/effect/turf_decal/box/corners{
+ dir = 1
+ },
+/obj/structure/closet/cardboard,
+/obj/item/pickaxe/rusted{
+ pixel_y = 14;
+ pixel_x = 13
+ },
+/obj/item/pickaxe/rusted{
+ pixel_y = 14;
+ pixel_x = 13
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/obj/item/clothing/head/hardhat/mining{
+ pixel_x = 8;
+ pixel_y = -4
+ },
+/obj/item/clothing/head/hardhat/mining{
+ pixel_x = 8;
+ pixel_y = -4
+ },
+/obj/item/storage/bag/ore{
+ pixel_x = -11
+ },
+/obj/item/storage/bag/ore{
+ pixel_x = -11
+ },
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"Wv" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/salvageable/computer{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/plating/airless,
+/area/ship/maintenance)
+"Wx" = (
+/turf/closed/wall/r_wall/rust,
+/area/ship/crew/canteen)
+"WF" = (
+/turf/closed/wall/rust,
+/area/ship/cargo)
+"Xb" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/structure/railing/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-9"
+ },
+/turf/open/floor/plating,
+/area/ship/cargo)
+"Xc" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/open/floor/plasteel/telecomms_floor,
+/area/ship/crew)
+"Xn" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-9"
+ },
+/obj/structure/closet/secure_closet/engineering_welding,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/tech,
+/area/ship/maintenance/starboard)
+"Xs" = (
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/machinery/light_switch{
+ pixel_y = -12;
+ dir = 8;
+ pixel_x = 21
+ },
+/obj/structure/closet/crate{
+ icon_state = "o2crate"
+ },
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"Xu" = (
+/obj/structure/table/wood/reinforced,
+/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{
+ pixel_x = 11;
+ pixel_y = 14
+ },
+/obj/item/reagent_containers/food/drinks/bottle/champagne{
+ pixel_y = 15;
+ pixel_x = -5
+ },
+/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{
+ pixel_x = 13;
+ pixel_y = 8
+ },
+/obj/item/reagent_containers/food/drinks/bottle/champagne{
+ pixel_y = 10;
+ pixel_x = 2
+ },
+/turf/open/floor/carpet/nanoweave,
+/area/ship/crew/crewtwo)
+"XC" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating/airless{
+ icon_state = "plating_rust"
+ },
+/area/ship/maintenance)
+"XJ" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/fluff/paper/stack{
+ dir = 4;
+ pixel_y = 9;
+ layer = 2.79
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating/airless{
+ icon_state = "plating_rust"
+ },
+/area/ship/maintenance)
+"XM" = (
+/obj/structure/table,
+/obj/item/reagent_containers/food/snacks/nachos{
+ desc = "You're pretty sure these are stolen from an outpost."
+ },
+/turf/open/floor/plasteel/grimy,
+/area/ship/crew/canteen)
+"XX" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating/airless,
+/area/ship/maintenance)
+"Yk" = (
+/obj/structure/railing,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/pod/dark,
+/area/ship/maintenance/starboard)
+"Yo" = (
+/obj/machinery/icecream_vat{
+ desc = "Ding-aling ding dong. Get your Frontiersmen-approved ice cream!"
+ },
+/turf/open/floor/plating/airless,
+/area/ship/maintenance)
+"Yr" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/dark,
+/area/ship/bridge)
+"Ys" = (
+/obj/effect/turf_decal/industrial/loading{
+ dir = 8
+ },
+/turf/open/floor/plasteel/tech/techmaint,
+/area/ship/cargo)
+"Yu" = (
+/obj/machinery/vending/cigarette,
+/turf/open/floor/plasteel/dark,
+/area/ship/crew/canteen)
+"YD" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/item/reagent_containers/glass/bucket{
+ pixel_y = 14;
+ pixel_x = 6
+ },
+/obj/item/mop{
+ pixel_x = -10;
+ pixel_y = -3
+ },
+/turf/open/floor/plasteel/tech,
+/area/ship/maintenance/starboard)
+"YE" = (
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/plating/airless,
+/area/ship/maintenance)
+"YG" = (
+/obj/effect/turf_decal/techfloor,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/tech,
+/area/ship/bridge)
+"YH" = (
+/obj/machinery/door/airlock/command{
+ req_one_access = list(19)
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/firedoor/border_only{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/ship/crew/crewtwo)
+"YI" = (
+/obj/effect/turf_decal/siding/wideplating{
+ dir = 6
+ },
+/obj/machinery/light/directional/south,
+/turf/open/floor/plasteel,
+/area/ship/crew/canteen)
+"YJ" = (
+/obj/structure/salvageable/machine,
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/plating/airless,
+/area/ship/maintenance)
+"YL" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/structure/railing,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 5
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/effect/turf_decal/industrial/warning,
+/turf/open/floor/plating,
+/area/ship/cargo)
+"YU" = (
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating/airless{
+ icon_state = "plating_rust"
+ },
+/area/ship/maintenance)
+"YX" = (
+/obj/structure/cable/yellow,
+/obj/machinery/power/smes/engineering,
+/turf/open/floor/plasteel/tech,
+/area/ship/maintenance/starboard)
+"Zf" = (
+/obj/structure/table/wood/reinforced,
+/obj/item/folder{
+ pixel_x = -7;
+ pixel_y = 2
+ },
+/obj/machinery/light/directional/south,
+/turf/open/floor/carpet/nanoweave,
+/area/ship/crew/crewtwo)
+"Zi" = (
+/obj/effect/turf_decal/spline/fancy/opaque/black{
+ dir = 1
+ },
+/obj/structure/chair/comfy/shuttle{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/ship/bridge)
+"Zp" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/grunge{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/heavy,
+/turf/open/floor/plasteel/tech/techmaint,
+/area/ship/cargo)
+"Zz" = (
+/obj/structure/closet/secure_closet/wall{
+ pixel_y = -28;
+ req_access = list(5)
+ },
+/obj/item/storage/firstaid/brute{
+ pixel_y = 8;
+ pixel_x = 2
+ },
+/obj/item/storage/firstaid/fire{
+ pixel_x = -8;
+ pixel_y = 6
+ },
+/obj/item/clothing/accessory/armband/medblue{
+ pixel_y = -1;
+ pixel_x = -6
+ },
+/obj/item/clothing/gloves/color/latex{
+ pixel_y = -13
+ },
+/obj/item/storage/belt/medical/webbing{
+ pixel_y = 8;
+ pixel_x = 5
+ },
+/obj/item/clothing/head/soft/mime,
+/turf/open/floor/plasteel/white,
+/area/ship/crew/canteen)
+"ZC" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/wood{
+ icon_state = "wood-broken2"
+ },
+/area/ship/crew/crewtwo)
+"ZH" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/crayon{
+ icon_state = "electricdanger"
+ },
+/turf/open/floor/plating/airless,
+/area/ship/maintenance)
+
+(1,1,1) = {"
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+fR
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+"}
+(2,1,1) = {"
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+WF
+WF
+bu
+ds
+ds
+ds
+ds
+ds
+Kx
+tq
+tq
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+"}
+(3,1,1) = {"
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+WF
+tq
+Rg
+Wa
+tR
+tR
+Ys
+tR
+tR
+RB
+FU
+tq
+tq
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+"}
+(4,1,1) = {"
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+tq
+oe
+Er
+SX
+SX
+Pl
+lo
+pr
+SX
+SX
+Ol
+yV
+tq
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+"}
+(5,1,1) = {"
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+tq
+lh
+Uo
+LH
+Fy
+Fy
+Fy
+Fy
+Fy
+wp
+ld
+Td
+tq
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+"}
+(6,1,1) = {"
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+VO
+jK
+jK
+CG
+Ek
+tq
+uE
+Uo
+EB
+DG
+DG
+DG
+DG
+DG
+uL
+ld
+mu
+WF
+Ek
+sQ
+jK
+jK
+Ko
+Ek
+Ek
+Ek
+Ek
+"}
+(7,1,1) = {"
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+CG
+Pu
+EI
+oH
+Ek
+tq
+lh
+Uo
+EB
+DG
+DG
+DG
+DG
+DG
+uL
+ld
+Td
+WF
+Ek
+sQ
+la
+jp
+Ko
+Ek
+Ek
+Ek
+Ek
+"}
+(8,1,1) = {"
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+oH
+HX
+HX
+oH
+CG
+tq
+lh
+VE
+Rn
+DG
+DG
+DG
+DG
+DG
+BF
+Mo
+Td
+WF
+CT
+Ko
+ux
+Kp
+sQ
+Ek
+Ek
+Ek
+Ek
+"}
+(9,1,1) = {"
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+EQ
+DF
+QP
+CG
+EN
+CG
+VP
+oV
+pA
+DG
+DG
+DG
+DG
+DG
+BF
+ID
+Td
+Ko
+es
+sQ
+ze
+RF
+bP
+Ek
+Ek
+Ek
+Ek
+"}
+(10,1,1) = {"
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+EQ
+dE
+HS
+mE
+HY
+oH
+VP
+Uo
+EB
+DG
+DG
+DG
+DG
+DG
+uL
+ld
+Td
+Ko
+Vm
+sA
+fA
+Xn
+bP
+Ek
+Ek
+Ek
+Ek
+"}
+(11,1,1) = {"
+Ek
+Ek
+lJ
+lJ
+Ek
+JZ
+aA
+Lt
+GY
+dX
+vb
+oH
+vm
+Uo
+EB
+DG
+DG
+DG
+DG
+DG
+uL
+ld
+TM
+sQ
+wH
+eD
+wa
+Gm
+bP
+Ek
+Ek
+Ek
+Ek
+"}
+(12,1,1) = {"
+Ek
+Bp
+Bp
+Bp
+Bp
+Bp
+oH
+Ha
+uP
+em
+JS
+oH
+VP
+Uo
+EB
+DG
+DG
+DG
+DG
+DG
+uL
+ld
+PI
+sQ
+Mb
+Yk
+BA
+ss
+sQ
+lJ
+lJ
+Ek
+Ek
+"}
+(13,1,1) = {"
+Ek
+lJ
+lJ
+lJ
+lJ
+BV
+CG
+pB
+yl
+va
+Uw
+CG
+VP
+Uo
+OF
+tT
+tT
+tT
+tT
+tT
+uL
+ld
+PI
+Ko
+gI
+ja
+TN
+YD
+sQ
+lJ
+lJ
+lJ
+Ek
+"}
+(14,1,1) = {"
+Ek
+lJ
+lJ
+lJ
+QV
+Pb
+CG
+CG
+ff
+KM
+iD
+gr
+MO
+YL
+lE
+ci
+fq
+Oo
+fq
+Mn
+lE
+nt
+oS
+dA
+tc
+jA
+ph
+Ko
+Ko
+Bp
+Bp
+Bp
+Bp
+"}
+(15,1,1) = {"
+lJ
+lJ
+lJ
+lJ
+MF
+pE
+ts
+CG
+Tq
+dY
+Pw
+oH
+VP
+Xb
+Hx
+dN
+CN
+Ca
+dZ
+Je
+RP
+dN
+PI
+Ko
+eE
+vQ
+YX
+Ko
+QM
+Hk
+yc
+lJ
+Ek
+"}
+(16,1,1) = {"
+lJ
+lJ
+lJ
+lJ
+zJ
+QJ
+QJ
+oH
+oH
+HG
+SS
+oH
+VP
+ov
+nc
+tR
+nc
+hL
+tR
+tR
+tR
+Ry
+PI
+Ko
+qy
+AZ
+sQ
+Ko
+Hk
+kv
+lJ
+lJ
+Ek
+"}
+(17,1,1) = {"
+lJ
+lJ
+AG
+Bk
+qE
+kO
+wb
+ZH
+II
+wN
+iP
+oH
+Vx
+UQ
+lx
+FL
+qI
+oG
+wF
+uh
+nc
+nc
+Td
+Ko
+uQ
+GA
+UT
+kK
+Bk
+lJ
+lJ
+lJ
+Ek
+"}
+(18,1,1) = {"
+lJ
+lJ
+lJ
+QJ
+wY
+Bk
+Bk
+bR
+so
+vl
+vl
+vl
+qd
+qd
+We
+yC
+aE
+Sv
+Ev
+So
+wL
+Vt
+Vt
+Vt
+qD
+QJ
+QJ
+QJ
+mf
+lJ
+lJ
+lJ
+Ek
+"}
+(19,1,1) = {"
+lJ
+lJ
+lJ
+QJ
+XC
+JA
+Ab
+rU
+rU
+Wx
+Iy
+Fc
+Mk
+qd
+nT
+Xs
+fj
+aT
+QK
+Su
+wQ
+Vt
+dV
+zZ
+Vt
+Kn
+bR
+vD
+hh
+lJ
+lJ
+lJ
+Ek
+"}
+(20,1,1) = {"
+lJ
+lJ
+lJ
+QJ
+XC
+ti
+Ab
+jH
+eS
+ng
+Vf
+MS
+MS
+vl
+WF
+WF
+WF
+Zp
+rd
+xb
+Vt
+Vt
+RV
+qu
+qD
+AG
+Jv
+Eb
+Hk
+lJ
+lJ
+Ek
+Ek
+"}
+(21,1,1) = {"
+QJ
+QJ
+QJ
+QJ
+MI
+Ab
+rU
+Xc
+tS
+ng
+ng
+ng
+gi
+vl
+SG
+PC
+JE
+MC
+Gx
+qD
+lY
+dm
+dm
+FQ
+qD
+Yo
+XX
+Hk
+lJ
+lJ
+Ek
+Ek
+Ek
+"}
+(22,1,1) = {"
+Ek
+lJ
+lJ
+Fh
+XC
+rU
+uG
+NI
+NI
+Fk
+Ab
+cz
+dl
+KO
+te
+iw
+Gd
+Iw
+Yu
+qD
+jV
+Lz
+dm
+mg
+qD
+qD
+MI
+QJ
+QJ
+QJ
+QJ
+Ek
+Ek
+"}
+(23,1,1) = {"
+lJ
+lJ
+lJ
+tb
+XC
+Ab
+Ab
+Az
+Vd
+rU
+Ab
+yv
+QT
+mp
+cv
+om
+MK
+Gy
+Gr
+bJ
+nV
+fM
+hG
+TG
+hT
+qD
+XX
+kv
+lJ
+lJ
+lJ
+Ek
+Ek
+"}
+(24,1,1) = {"
+lJ
+lJ
+eA
+OG
+Rs
+Ab
+DN
+EO
+EO
+Vg
+Ab
+jJ
+QT
+oU
+CE
+bD
+ng
+ng
+ng
+Vt
+xB
+RH
+hP
+FP
+hz
+qD
+Dv
+fn
+lJ
+lJ
+Ek
+Ek
+Ek
+"}
+(25,1,1) = {"
+lJ
+lJ
+tV
+Bk
+Wv
+Ab
+UO
+EO
+Ql
+Dw
+rU
+bF
+QT
+XM
+oU
+GV
+ng
+Po
+Sy
+Vt
+hU
+gD
+yH
+FP
+hz
+qD
+MH
+Eb
+lJ
+lJ
+Ek
+Ek
+Ek
+"}
+(26,1,1) = {"
+lJ
+lJ
+AG
+gG
+js
+Ab
+tu
+UE
+FW
+jh
+mD
+oI
+Nr
+Cy
+cG
+BG
+ng
+mZ
+mZ
+Vt
+mG
+FB
+Px
+SD
+hT
+qD
+XX
+YU
+lJ
+lJ
+lJ
+Ek
+Ek
+"}
+(27,1,1) = {"
+lJ
+lJ
+YJ
+DR
+Wd
+oy
+MD
+SV
+GM
+iq
+rU
+iY
+hi
+iB
+xX
+nv
+qp
+iW
+Zz
+Vt
+Vt
+qD
+qD
+qD
+qD
+Vt
+MI
+QJ
+QJ
+QJ
+QJ
+QJ
+Ek
+"}
+(28,1,1) = {"
+lJ
+lJ
+Cx
+XC
+eA
+Ab
+Ar
+lQ
+PV
+yd
+rU
+Lb
+gQ
+gQ
+LG
+YI
+ng
+Pa
+ut
+tI
+iN
+qi
+Lg
+Hk
+kv
+hh
+DU
+Hk
+lJ
+lJ
+lJ
+Ek
+Ek
+"}
+(29,1,1) = {"
+QJ
+QJ
+QJ
+Ke
+QJ
+Ab
+Ab
+Ab
+vV
+JX
+ah
+Se
+Se
+Se
+hD
+Se
+mB
+mB
+mB
+mB
+mB
+mB
+li
+QJ
+YU
+rW
+kv
+lJ
+lJ
+lJ
+Ek
+Ek
+Ek
+"}
+(30,1,1) = {"
+lJ
+lJ
+lJ
+dF
+kO
+FR
+bR
+rU
+rU
+ah
+ah
+bj
+VH
+eU
+gB
+ra
+mB
+cx
+zG
+Il
+Jh
+mB
+mB
+QJ
+iy
+oK
+lJ
+lJ
+lJ
+Ek
+Ek
+Ek
+Ek
+"}
+(31,1,1) = {"
+Ek
+lJ
+lJ
+lJ
+qM
+bv
+fE
+YE
+bH
+ah
+jt
+yz
+bN
+YG
+CQ
+OI
+mB
+IO
+uC
+TO
+fW
+Xu
+mB
+VQ
+XJ
+et
+lJ
+lJ
+lJ
+Ek
+Ek
+Ek
+Ek
+"}
+(32,1,1) = {"
+Ek
+lJ
+lJ
+lJ
+lJ
+cS
+rY
+bR
+ny
+Se
+wg
+SC
+CA
+ub
+JJ
+Yr
+YH
+SY
+ZC
+BN
+gM
+Zf
+mB
+yX
+fn
+lJ
+lJ
+lJ
+Ek
+Ek
+Ek
+Ek
+Ek
+"}
+(33,1,1) = {"
+Ek
+Ek
+lJ
+lJ
+lJ
+lJ
+lJ
+vW
+td
+ah
+Se
+ah
+AQ
+Ji
+Zi
+fF
+mB
+xf
+Uk
+Kf
+tL
+Ss
+mB
+kp
+Hk
+lJ
+lJ
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+"}
+(34,1,1) = {"
+Ek
+Ek
+Ek
+Ek
+lJ
+lJ
+lJ
+lJ
+QJ
+QJ
+Ld
+ah
+ah
+ah
+cb
+Od
+mB
+nE
+Qi
+oq
+SJ
+mB
+mw
+MI
+QJ
+QJ
+QJ
+QJ
+Ek
+Ek
+Ek
+Ek
+Ek
+"}
+(35,1,1) = {"
+Ek
+Ek
+Ek
+Ek
+Ek
+lJ
+lJ
+lJ
+lJ
+QJ
+lJ
+lJ
+lJ
+ah
+yK
+yK
+mB
+wC
+Op
+mw
+mw
+mw
+yt
+Lm
+Kn
+lJ
+lJ
+lJ
+Ek
+Ek
+Ek
+Ek
+Ek
+"}
+(36,1,1) = {"
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+lJ
+lJ
+lJ
+QJ
+lJ
+lJ
+lJ
+Ek
+Ek
+Ek
+mB
+mB
+mw
+mw
+yc
+hh
+qT
+ml
+lJ
+lJ
+lJ
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+"}
+(37,1,1) = {"
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+lJ
+lJ
+QJ
+lJ
+lJ
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+QJ
+lJ
+lJ
+lJ
+lJ
+lJ
+lJ
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+"}
+(38,1,1) = {"
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+lJ
+QJ
+lJ
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+QJ
+lJ
+lJ
+lJ
+lJ
+lJ
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+"}
+(39,1,1) = {"
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+lJ
+lJ
+lJ
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+Ek
+"}
diff --git a/_maps/shuttles/roumain/srm_elder.dmm b/_maps/shuttles/roumain/srm_elder.dmm
index ff5841d98df..5ea4e25b468 100644
--- a/_maps/shuttles/roumain/srm_elder.dmm
+++ b/_maps/shuttles/roumain/srm_elder.dmm
@@ -273,7 +273,6 @@
dir = 1
},
/obj/machinery/door/poddoor/shutters{
- dir = 2;
id = "elderatriumshuts"
},
/turf/open/floor/plating,
@@ -497,7 +496,6 @@
/obj/machinery/button/door{
id = "elderengineshuts";
name = "Engine Shutters";
- dir = 2;
pixel_x = 7;
pixel_y = 21
},
@@ -955,7 +953,6 @@
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/poddoor/shutters{
- dir = 2;
id = "elderatriumshuts"
},
/turf/open/floor/plating,
@@ -1170,7 +1167,6 @@
/obj/structure/window/reinforced/fulltile,
/obj/structure/grille,
/obj/machinery/door/poddoor/shutters{
- dir = 2;
id = "elderatriumshuts"
},
/turf/open/floor/plating,
@@ -1242,7 +1238,6 @@
/obj/structure/window/reinforced/fulltile,
/obj/structure/grille,
/obj/machinery/door/poddoor/shutters{
- dir = 2;
id = "elderatriumshuts"
},
/turf/open/floor/plating,
@@ -1259,15 +1254,13 @@
/obj/machinery/door/window/eastright{
dir = 8
},
-/obj/item/gun/ballistic/shotgun/flamingarrow{
- pixel_y = -5
- },
-/obj/item/gun/ballistic/shotgun/flamingarrow{
- pixel_y = 0
- },
+/obj/item/gun/ballistic/shotgun/flamingarrow/factory,
/obj/item/gun/ballistic/shotgun/flamingarrow/bolt{
pixel_y = 5
},
+/obj/item/gun/ballistic/shotgun/flamingarrow/factory{
+ pixel_y = -5
+ },
/turf/open/floor/wood/ebony,
/area/ship/storage)
"oC" = (
@@ -1275,7 +1268,6 @@
/obj/structure/grille,
/obj/machinery/door/firedoor/border_only,
/obj/machinery/door/poddoor/shutters{
- dir = 2;
id = "elderatriumshuts"
},
/turf/open/floor/plating,
@@ -1774,7 +1766,6 @@
/obj/structure/window/reinforced/fulltile,
/obj/structure/grille,
/obj/machinery/door/poddoor/shutters{
- dir = 2;
id = "elderatriumshuts"
},
/turf/open/floor/plating,
@@ -2187,18 +2178,18 @@
/obj/machinery/door/window{
dir = 8
},
-/obj/item/gun/ballistic/rifle/illestren{
+/obj/item/gun/ballistic/rifle/illestren/factory{
+ pixel_y = 3;
+ pixel_x = -4
+ },
+/obj/item/gun/ballistic/rifle/illestren/factory{
pixel_x = -4;
pixel_y = -5
},
-/obj/item/gun/ballistic/rifle/illestren{
+/obj/item/gun/ballistic/rifle/illestren/factory{
pixel_x = -4;
pixel_y = -1
},
-/obj/item/gun/ballistic/rifle/illestren{
- pixel_x = -4;
- pixel_y = 3
- },
/turf/open/floor/wood/ebony,
/area/ship/storage)
"Bq" = (
@@ -2278,7 +2269,6 @@
pixel_x = 4
},
/obj/item/reagent_containers/food/snacks/meat/steak{
- pixel_y = 0;
pixel_x = -9
},
/obj/item/reagent_containers/food/snacks/meat/steak{
@@ -2542,9 +2532,7 @@
pixel_x = 3;
pixel_y = -6
},
-/obj/item/storage/toolbox/fishing{
- pixel_y = 0
- },
+/obj/item/storage/toolbox/fishing,
/turf/open/floor/wood/ebony,
/area/ship/storage)
"Fu" = (
@@ -2629,7 +2617,7 @@
/obj/item/clothing/under/suit/roumain,
/obj/item/clothing/suit/armor/roumain,
/obj/item/clothing/head/cowboy/sec/roumain,
-/obj/item/clothing/suit/armor/riot/chaplain/witchhunter,
+/obj/item/clothing/suit/armor/witchhunter,
/obj/item/flashlight/lantern,
/obj/structure/closet/secure_closet/hunter,
/obj/item/lighter,
@@ -2926,7 +2914,6 @@
pixel_x = -2
},
/obj/item/weldingtool{
- pixel_y = 0;
pixel_x = -5
},
/turf/open/floor/wood/ebony,
@@ -3015,8 +3002,7 @@
dir = 1
},
/obj/machinery/door/airlock/medical/glass{
- name = "Medical Bay";
- dir = 2
+ name = "Medical Bay"
},
/obj/effect/turf_decal/siding/blue/end{
dir = 1
@@ -3073,7 +3059,6 @@
pixel_x = 21
},
/obj/item/binoculars{
- pixel_y = 0;
pixel_x = -4
},
/obj/item/megaphone{
@@ -3497,8 +3482,7 @@
pixel_x = 5
},
/obj/item/cultivator/rake{
- pixel_x = -4;
- pixel_y = 0
+ pixel_x = -4
},
/turf/open/floor/grass/ship/jungle,
/area/ship/roumain)
@@ -3763,8 +3747,7 @@
pixel_y = -4
},
/obj/item/pickaxe{
- pixel_x = 1;
- pixel_y = 0
+ pixel_x = 1
},
/obj/item/pickaxe{
pixel_x = 1;
diff --git a/_maps/shuttles/subshuttles/Subshuttle Catalog.txt b/_maps/shuttles/subshuttles/Subshuttle Catalog.txt
index a4296856735..732d43938f3 100644
--- a/_maps/shuttles/subshuttles/Subshuttle Catalog.txt
+++ b/_maps/shuttles/subshuttles/Subshuttle Catalog.txt
@@ -68,3 +68,9 @@ Size = "10x7"
Purpose = "A boarding dropship employed by the PGFN."
File Path = "_maps\shuttles\subshuttles\pgf_nail.dmm"
+Name = "Brawler Attack Shuttle"
+Size = "15x11"
+Purpose = "A hit-and-run vessel made locally by the Frontiersmen."
+File Path = "_maps\shuttles\subshuttles\frontiersmen_brawler.dmm"
+
+
diff --git a/_maps/shuttles/subshuttles/frontiersmen_brawler.dmm b/_maps/shuttles/subshuttles/frontiersmen_brawler.dmm
new file mode 100644
index 00000000000..821918d660f
--- /dev/null
+++ b/_maps/shuttles/subshuttles/frontiersmen_brawler.dmm
@@ -0,0 +1,587 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-9"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-9"
+ },
+/turf/open/floor/plasteel/patterned/ridged,
+/area/ship/bridge)
+"c" = (
+/obj/machinery/door/poddoor/shutters{
+ id = "brawler_starboard"
+ },
+/obj/machinery/power/shieldwallgen/atmos{
+ id = "brawler_starboard_holo";
+ dir = 8
+ },
+/obj/structure/cable/yellow,
+/turf/open/floor/engine/hull/interior,
+/area/ship/bridge)
+"e" = (
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
+ },
+/obj/machinery/telecomms/relay/preset/frontiersmen,
+/obj/machinery/light_switch{
+ pixel_y = -22;
+ dir = 1
+ },
+/turf/open/floor/plasteel/mono,
+/area/ship/bridge)
+"f" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/terminal,
+/turf/open/floor/plasteel/patterned/ridged,
+/area/ship/bridge)
+"g" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/ship/bridge)
+"i" = (
+/obj/effect/decal/cleanable/oil/streak{
+ pixel_x = -1;
+ pixel_y = 19;
+ icon_state = "streak2"
+ },
+/obj/effect/decal/cleanable/oil/streak{
+ pixel_x = 5;
+ pixel_y = -2;
+ icon_state = "streak3"
+ },
+/obj/machinery/button/shieldwallgen{
+ pixel_y = 9;
+ pixel_x = 23;
+ id = "brawler_aft_holo";
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/terminal{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned/ridged,
+/area/ship/bridge)
+"k" = (
+/turf/template_noop,
+/area/template_noop)
+"o" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/open/floor/engine/hull/reinforced,
+/area/ship/bridge)
+"p" = (
+/obj/effect/decal/cleanable/plasma{
+ pixel_x = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/power/smes/engineering,
+/obj/effect/turf_decal/siding/thinplating/end{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-10"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-6"
+ },
+/obj/item/reagent_containers/food/drinks/drinkingglass/filled/cola{
+ pixel_y = 16;
+ pixel_x = -3
+ },
+/obj/item/storage/toolbox/mechanical{
+ pixel_y = -15;
+ pixel_x = -10
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-5"
+ },
+/turf/open/floor/plasteel,
+/area/ship/bridge)
+"r" = (
+/obj/machinery/power/shieldwallgen/atmos{
+ id = "brawler_aft_holo";
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/machinery/door/poddoor/shutters{
+ dir = 8;
+ id = "brawler_aft"
+ },
+/turf/open/floor/engine/hull/interior,
+/area/ship/bridge)
+"s" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/open/floor/engine/hull/reinforced,
+/area/ship/bridge)
+"t" = (
+/obj/item/clothing/head/cone{
+ pixel_y = 8;
+ pixel_x = -5
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/ridged,
+/area/ship/bridge)
+"u" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-10"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-10"
+ },
+/turf/open/floor/plasteel/patterned/ridged,
+/area/ship/bridge)
+"v" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/patterned/ridged,
+/area/ship/bridge)
+"x" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/siding/thinplating{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/thinplating/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/thinplating/corner{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/ship/bridge)
+"y" = (
+/obj/machinery/door/poddoor/shutters{
+ dir = 1;
+ id = "brawler_port"
+ },
+/obj/machinery/power/shieldwallgen/atmos{
+ id = "brawler_port_holo";
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/engine/hull/interior,
+/area/ship/bridge)
+"z" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-6"
+ },
+/obj/docking_port/mobile{
+ dir = 4;
+ name = "brawler shuttle";
+ port_direction = 2;
+ preferred_direction = 4
+ },
+/obj/machinery/door/poddoor/shutters{
+ dir = 8;
+ id = "brawler_aft"
+ },
+/turf/open/floor/engine/hull/interior,
+/area/ship/bridge)
+"A" = (
+/obj/machinery/door/poddoor/shutters{
+ dir = 1;
+ id = "brawler_port"
+ },
+/obj/machinery/power/shieldwallgen/atmos{
+ id = "brawler_port_holo";
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/machinery/button/door{
+ pixel_x = -23;
+ pixel_y = -7;
+ id = "brawler_port";
+ dir = 4
+ },
+/obj/machinery/button/shieldwallgen{
+ pixel_y = 7;
+ pixel_x = -23;
+ id = "brawler_port_holo";
+ dir = 4
+ },
+/turf/open/floor/engine/hull/interior,
+/area/ship/bridge)
+"B" = (
+/obj/machinery/light/directional/north,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/trash/can/food{
+ pixel_x = 7;
+ pixel_y = -5
+ },
+/obj/structure/fluff/broken_flooring{
+ icon_state = "plating";
+ dir = 8
+ },
+/obj/effect/decal/cleanable/garbage{
+ pixel_x = -6;
+ pixel_y = 5
+ },
+/turf/open/floor/plasteel/patterned/ridged,
+/area/ship/bridge)
+"C" = (
+/obj/item/clothing/head/cone{
+ pixel_x = -9;
+ pixel_y = 2
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/ridged,
+/area/ship/bridge)
+"D" = (
+/obj/machinery/light/directional/south,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/oil/streak{
+ pixel_x = 5;
+ pixel_y = -2
+ },
+/obj/effect/turf_decal/siding/thinplating{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/thinplating{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/ship/bridge)
+"E" = (
+/obj/machinery/door/poddoor/shutters{
+ dir = 8;
+ id = "brawler_aft"
+ },
+/obj/machinery/power/shieldwallgen/atmos{
+ id = "brawler_aft_holo"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/turf/open/floor/engine/hull/interior,
+/area/ship/bridge)
+"F" = (
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
+ },
+/obj/structure/table,
+/obj/item/radio/intercom/wideband/table{
+ dir = 4;
+ pixel_x = 6
+ },
+/obj/machinery/button/door{
+ id = "brawler_aft";
+ pixel_x = -7;
+ dir = 8
+ },
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/turf/open/floor/plasteel/mono,
+/area/ship/bridge)
+"G" = (
+/obj/effect/decal/cleanable/wrapping{
+ pixel_y = 25
+ },
+/turf/open/floor/plasteel/patterned/ridged,
+/area/ship/bridge)
+"I" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/power/smes/shuttle/precharged,
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plasteel/tech/grid,
+/area/ship/bridge)
+"J" = (
+/obj/effect/decal/cleanable/plastic,
+/obj/effect/turf_decal/siding/thinplating,
+/obj/effect/turf_decal/siding/thinplating{
+ dir = 1
+ },
+/obj/machinery/power/terminal{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/item/chair/plastic,
+/obj/item/chair/plastic{
+ pixel_y = 4;
+ pixel_x = -2
+ },
+/obj/item/chair/plastic{
+ pixel_y = 7
+ },
+/obj/item/chair/plastic{
+ pixel_y = 5;
+ pixel_x = -6
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plasteel,
+/area/ship/bridge)
+"L" = (
+/obj/effect/turf_decal/siding/thinplating,
+/obj/effect/turf_decal/siding/thinplating{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/power/port_gen/pacman,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/item/stack/sheet/mineral/plasma/twenty{
+ pixel_y = 9;
+ pixel_x = -5
+ },
+/turf/open/floor/plasteel,
+/area/ship/bridge)
+"M" = (
+/obj/machinery/door/poddoor/shutters{
+ id = "brawler_starboard"
+ },
+/obj/machinery/power/shieldwallgen/atmos{
+ id = "brawler_starboard_holo";
+ dir = 4
+ },
+/obj/structure/cable/yellow,
+/obj/machinery/button/door{
+ dir = 4;
+ pixel_y = 7;
+ pixel_x = -23;
+ id = "brawler_starboard"
+ },
+/obj/machinery/button/shieldwallgen{
+ pixel_y = -7;
+ pixel_x = -23;
+ id = "brawler_starboard_holo";
+ dir = 4
+ },
+/turf/open/floor/engine/hull/interior,
+/area/ship/bridge)
+"N" = (
+/obj/structure/chair/comfy/shuttle{
+ dir = 4
+ },
+/turf/open/floor/plasteel/patterned/ridged,
+/area/ship/bridge)
+"O" = (
+/obj/machinery/light/directional/north,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/siding/thinplating{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/thinplating{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/ship/bridge)
+"P" = (
+/obj/machinery/light/directional/south,
+/obj/structure/cable/yellow{
+ icon_state = "5-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "5-9"
+ },
+/turf/open/floor/plasteel/patterned/ridged,
+/area/ship/bridge)
+"R" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel/patterned/ridged,
+/area/ship/bridge)
+"W" = (
+/turf/closed/wall/r_wall,
+/area/ship/bridge)
+"X" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/smes/shuttle/precharged{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/oil{
+ pixel_y = 11;
+ pixel_x = 17
+ },
+/obj/effect/decal/cleanable/oil{
+ pixel_y = 15;
+ pixel_x = -7
+ },
+/turf/open/floor/plasteel/tech/grid,
+/area/ship/bridge)
+"Y" = (
+/obj/machinery/power/shuttle/engine/electric{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/open/floor/engine/hull/reinforced,
+/area/ship/bridge)
+"Z" = (
+/obj/machinery/computer/helm{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/vomit/old{
+ pixel_x = -10;
+ pixel_y = 3
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/plasteel/mono,
+/area/ship/bridge)
+
+(1,1,1) = {"
+k
+W
+E
+z
+r
+W
+k
+"}
+(2,1,1) = {"
+k
+W
+B
+t
+P
+W
+k
+"}
+(3,1,1) = {"
+k
+W
+C
+p
+G
+W
+k
+"}
+(4,1,1) = {"
+k
+A
+u
+J
+a
+M
+k
+"}
+(5,1,1) = {"
+k
+y
+R
+L
+v
+c
+k
+"}
+(6,1,1) = {"
+Y
+W
+O
+x
+D
+W
+Y
+"}
+(7,1,1) = {"
+o
+I
+i
+N
+f
+X
+s
+"}
+(8,1,1) = {"
+k
+W
+F
+Z
+e
+W
+k
+"}
+(9,1,1) = {"
+k
+W
+g
+g
+g
+W
+k
+"}
diff --git a/_maps/shuttles/subshuttles/syndicate_runner.dmm b/_maps/shuttles/subshuttles/syndicate_runner.dmm
index 100a0d23400..69430bf0915 100644
--- a/_maps/shuttles/subshuttles/syndicate_runner.dmm
+++ b/_maps/shuttles/subshuttles/syndicate_runner.dmm
@@ -74,9 +74,7 @@
/obj/effect/turf_decal/trimline/opaque/bar/filled/corner,
/obj/machinery/power/terminal,
/obj/effect/landmark/ert_shuttle_spawn,
-/obj/structure/cable{
- icon_state = "0-1"
- },
+/obj/structure/cable,
/obj/structure/cable{
icon_state = "1-4"
},
@@ -168,15 +166,15 @@
"co" = (
/obj/effect/turf_decal/spline/fancy/opaque/black,
/obj/effect/turf_decal/trimline/opaque/syndiered/filled/line,
-/obj/effect/turf_decal/trimline/opaque/bar/filled/warning{
- dir = 1
- },
/obj/structure/cable{
icon_state = "4-8"
},
/obj/structure/cable{
icon_state = "1-8"
},
+/obj/effect/turf_decal/trimline/opaque/bar/line{
+ dir = 1
+ },
/turf/open/floor/plasteel/dark,
/area/ship/bridge)
"cF" = (
@@ -213,9 +211,7 @@
dir = 4;
id = "runner_sub_holo"
},
-/obj/structure/cable{
- icon_state = "0-1"
- },
+/obj/structure/cable,
/turf/open/floor/plating,
/area/ship/bridge)
"fa" = (
@@ -228,6 +224,15 @@
/obj/machinery/light/directional/south,
/turf/open/floor/plasteel/tech/grid,
/area/ship/bridge)
+"fQ" = (
+/obj/effect/turf_decal/trimline/opaque/bar/filled/warning{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/dark,
+/area/ship/bridge)
"gi" = (
/obj/item/storage/backpack/duffelbag/med/surgery{
pixel_x = -2;
@@ -325,15 +330,32 @@
},
/turf/open/floor/plasteel/mono/dark,
/area/ship/bridge)
+"mN" = (
+/obj/docking_port/mobile{
+ dir = 2;
+ name = "trauma team shuttle";
+ port_direction = 8;
+ preferred_direction = 4
+ },
+/obj/machinery/door/poddoor{
+ id = "runner_sub_door"
+ },
+/obj/machinery/power/shieldwallgen/atmos/roundstart{
+ dir = 8;
+ id = "runner_sub_holo"
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/ship/bridge)
"nP" = (
/obj/effect/turf_decal/spline/fancy/opaque/black,
/obj/effect/turf_decal/trimline/opaque/syndiered/filled/line,
-/obj/effect/turf_decal/trimline/opaque/bar/filled/warning{
- dir = 1
- },
/obj/structure/cable{
icon_state = "1-8"
},
+/obj/effect/turf_decal/trimline/opaque/bar/line{
+ dir = 1
+ },
/turf/open/floor/plasteel/dark,
/area/ship/bridge)
"rR" = (
@@ -389,13 +411,13 @@
/obj/effect/turf_decal/trimline/opaque/syndiered/filled/line{
dir = 1
},
-/obj/effect/turf_decal/trimline/opaque/bar/filled/warning,
/obj/structure/cable{
icon_state = "2-8"
},
/obj/structure/cable{
icon_state = "4-8"
},
+/obj/effect/turf_decal/trimline/opaque/bar/line,
/turf/open/floor/plasteel/dark,
/area/ship/bridge)
"DP" = (
@@ -420,23 +442,11 @@
/turf/open/floor/engine/hull,
/area/ship/external)
"Or" = (
-/obj/docking_port/mobile{
- dir = 2;
- name = "trauma team shuttle";
- port_direction = 8;
- preferred_direction = 4
- },
-/obj/machinery/door/poddoor{
- id = "runner_sub_door"
- },
-/obj/machinery/power/shieldwallgen/atmos/roundstart{
- dir = 8;
- id = "runner_sub_holo"
- },
/obj/structure/cable{
- icon_state = "0-1"
+ icon_state = "1-2"
},
-/turf/open/floor/plating,
+/obj/effect/turf_decal/trimline/opaque/bar/filled/warning,
+/turf/open/floor/plasteel/dark,
/area/ship/bridge)
"Pq" = (
/turf/template_noop,
@@ -568,29 +578,29 @@ gs
te
"}
(4,1,1) = {"
-Pq
bz
+fQ
co
gA
SE
ku
zS
+Or
dB
-Pq
"}
(5,1,1) = {"
-Pq
sl
+fQ
nP
ZN
kM
iR
zS
Or
-Pq
+mN
"}
(6,1,1) = {"
-Pq
+PD
PD
cF
hJ
@@ -598,7 +608,7 @@ ac
hB
bG
PD
-Pq
+PD
"}
(7,1,1) = {"
Pq
diff --git a/_maps/shuttles/syndicate/syndicate_aegis.dmm b/_maps/shuttles/syndicate/syndicate_aegis.dmm
index e001e89d138..3e66121e59b 100644
--- a/_maps/shuttles/syndicate/syndicate_aegis.dmm
+++ b/_maps/shuttles/syndicate/syndicate_aegis.dmm
@@ -5236,9 +5236,8 @@
/turf/open/floor/plasteel/tech,
/area/ship/cargo)
"Zq" = (
-/obj/structure/closet/wall/orange{
- name = "Engineering locker";
- pixel_y = 30
+/obj/structure/closet/wall/orange/directional/north{
+ name = "Engineering locker"
},
/obj/machinery/atmospherics/pipe/simple/orange/hidden{
dir = 8
diff --git a/_maps/shuttles/syndicate/syndicate_gorlex_hyena.dmm b/_maps/shuttles/syndicate/syndicate_gorlex_hyena.dmm
index 93600539c4b..ce77d98f583 100644
--- a/_maps/shuttles/syndicate/syndicate_gorlex_hyena.dmm
+++ b/_maps/shuttles/syndicate/syndicate_gorlex_hyena.dmm
@@ -56,11 +56,11 @@
},
/obj/item/storage/backpack/security,
/obj/item/clothing/under/syndicate/ngr/officer,
-/obj/item/clothing/suit/armor/vest/capcarapace/ngr_captain,
-/obj/item/clothing/shoes/jackboots,
+/obj/item/clothing/suit/armor/ngr/captain,
+/obj/item/clothing/shoes/combat,
/obj/item/clothing/gloves/combat,
/obj/item/clothing/glasses/hud/security/sunglasses/eyepatch,
-/obj/item/clothing/head/ngrcap,
+/obj/item/clothing/head/ngr/peaked,
/obj/effect/decal/cleanable/dirt/dust,
/obj/item/gun/ballistic/revolver,
/obj/item/ammo_box/a357/match,
@@ -75,10 +75,6 @@
icon_state = "syndicate";
name = "armor locker"
},
-/obj/item/clothing/suit/armor/vest/syndie,
-/obj/item/clothing/suit/armor/vest/syndie,
-/obj/item/clothing/head/helmet/operator,
-/obj/item/clothing/head/helmet/operator,
/obj/effect/decal/cleanable/dirt/dust,
/obj/item/radio/intercom/directional/west{
pixel_y = -5
@@ -91,6 +87,12 @@
/obj/machinery/light/small/directional/west{
pixel_y = 7
},
+/obj/item/clothing/glasses/hud/security/sunglasses/ngr,
+/obj/item/clothing/glasses/hud/security/sunglasses/ngr,
+/obj/item/clothing/suit/armor/ngr,
+/obj/item/clothing/suit/armor/ngr,
+/obj/item/clothing/head/helmet/ngr,
+/obj/item/clothing/head/helmet/ngr,
/turf/open/floor/mineral/plastitanium,
/area/ship/security/armory)
"bN" = (
@@ -882,14 +884,10 @@
"pt" = (
/obj/effect/turf_decal/industrial/outline,
/obj/item/clothing/shoes/workboots/mining,
-/obj/item/clothing/under/syndicate/gorlex,
-/obj/item/clothing/gloves/explorer,
/obj/item/clothing/accessory/armband/cargo,
/obj/item/storage/belt/mining,
/obj/item/clothing/glasses/meson,
/obj/item/clothing/glasses/welding,
-/obj/item/clothing/head/hardhat/orange,
-/obj/item/clothing/head/soft/grey,
/obj/machinery/light/small/directional/north,
/obj/structure/closet/secure_closet{
anchored = 1;
@@ -899,15 +897,9 @@
},
/obj/machinery/firealarm/directional/east,
/obj/effect/turf_decal/industrial/outline,
-/obj/item/clothing/shoes/workboots/mining,
-/obj/item/clothing/under/syndicate/gorlex,
-/obj/item/clothing/gloves/explorer,
-/obj/item/clothing/accessory/armband/cargo,
-/obj/item/storage/belt/mining,
-/obj/item/clothing/glasses/meson,
-/obj/item/clothing/glasses/welding,
-/obj/item/clothing/head/hardhat/orange,
-/obj/item/clothing/head/soft/grey,
+/obj/item/clothing/under/syndicate/ngr/jumpsuit,
+/obj/item/clothing/suit/hazardvest/ngr,
+/obj/item/clothing/head/hardhat/ngr,
/turf/open/floor/plasteel/tech/grid,
/area/ship/storage)
"pu" = (
@@ -1028,14 +1020,10 @@
req_access = list(11)
},
/obj/item/clothing/shoes/workboots,
-/obj/item/clothing/under/syndicate/gorlex,
/obj/item/clothing/accessory/armband/engine,
-/obj/item/clothing/suit/hazardvest,
/obj/item/storage/belt/utility,
/obj/item/clothing/glasses/meson,
/obj/item/clothing/glasses/welding,
-/obj/item/clothing/head/hardhat,
-/obj/item/clothing/head/soft/yellow,
/obj/structure/cable,
/obj/machinery/power/apc/auto_name/directional/south,
/obj/machinery/light_switch{
@@ -1043,6 +1031,9 @@
pixel_y = -16;
pixel_x = -12
},
+/obj/item/clothing/under/syndicate/ngr,
+/obj/item/clothing/suit/hazardvest/ngr,
+/obj/item/clothing/head/hardhat/ngr,
/turf/open/floor/plasteel/tech/grid,
/area/ship/storage)
"rM" = (
@@ -1154,15 +1145,14 @@
req_access = list(48)
},
/obj/item/clothing/shoes/workboots/mining,
-/obj/item/clothing/under/syndicate/gorlex,
-/obj/item/clothing/gloves/explorer,
/obj/item/clothing/accessory/armband/cargo,
/obj/item/storage/belt/mining,
/obj/item/clothing/glasses/meson,
/obj/item/clothing/glasses/welding,
-/obj/item/clothing/head/hardhat/orange,
-/obj/item/clothing/head/soft/grey,
/obj/machinery/airalarm/directional/north,
+/obj/item/clothing/under/syndicate/ngr/jumpsuit,
+/obj/item/clothing/suit/hazardvest/ngr,
+/obj/item/clothing/head/hardhat/ngr,
/turf/open/floor/plasteel/tech/grid,
/area/ship/storage)
"tI" = (
@@ -1340,6 +1330,18 @@
/area/ship/crew)
"wP" = (
/obj/effect/turf_decal/industrial/outline,
+/obj/structure/closet/crate{
+ name = "desert equipment crate";
+ desc = "A rectangular steel crate containing supplies to survive a desert environment more easily."
+ },
+/obj/item/clothing/neck/shemagh/ngr,
+/obj/item/clothing/neck/shemagh/ngr,
+/obj/item/clothing/neck/shemagh/ngr,
+/obj/item/clothing/neck/shemagh/ngr,
+/obj/item/clothing/head/ngr/flap,
+/obj/item/clothing/head/ngr/flap,
+/obj/item/clothing/head/ngr/flap,
+/obj/item/clothing/head/ngr/flap,
/turf/open/floor/plasteel/mono/dark,
/area/ship/cargo)
"xm" = (
@@ -1489,25 +1491,32 @@
/obj/structure/closet/wall/red/directional/east{
name = "uniform closet"
},
-/obj/item/clothing/under/syndicate/gorlex,
-/obj/item/clothing/under/syndicate/gorlex,
-/obj/item/clothing/under/syndicate/gorlex,
-/obj/item/clothing/under/syndicate/gorlex,
-/obj/item/clothing/shoes/jackboots,
-/obj/item/clothing/shoes/jackboots,
-/obj/item/clothing/shoes/jackboots,
-/obj/item/clothing/shoes/jackboots,
+/obj/item/tank/jetpack/suit,
+/obj/item/clothing/shoes/combat,
+/obj/item/clothing/shoes/combat,
+/obj/item/clothing/shoes/combat,
+/obj/item/clothing/shoes/combat,
/obj/item/clothing/under/syndicate/ngr,
/obj/item/clothing/under/syndicate/ngr,
/obj/item/clothing/under/syndicate/ngr,
/obj/item/clothing/under/syndicate/ngr,
-/obj/item/clothing/head/soft/black,
-/obj/item/clothing/head/soft/black,
-/obj/item/clothing/head/soft/black,
-/obj/item/clothing/head/soft/black,
/obj/structure/cable{
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/item/clothing/under/syndicate/ngr/jumpsuit,
+/obj/item/clothing/under/syndicate/ngr/jumpsuit,
+/obj/item/clothing/under/syndicate/ngr/jumpsuit,
+/obj/item/clothing/under/syndicate/ngr/jumpsuit,
+/obj/item/clothing/head/ngr,
+/obj/item/clothing/head/ngr,
+/obj/item/clothing/head/ngr,
+/obj/item/clothing/head/ngr,
/obj/item/radio,
/obj/item/radio,
/obj/item/radio,
@@ -1515,12 +1524,6 @@
/obj/item/radio,
/obj/item/radio,
/obj/item/radio,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
/turf/open/floor/plasteel/dark,
/area/ship/crew/dorm)
"zA" = (
@@ -1642,19 +1645,14 @@
name = "foreman's locker";
req_access = list(56)
},
-/obj/item/clothing/shoes/jackboots,
+/obj/item/clothing/shoes/combat,
/obj/item/clothing/under/syndicate/ngr/officer,
-/obj/item/clothing/suit/toggle/industrial,
/obj/item/clothing/gloves/combat,
/obj/item/storage/belt/utility/chief{
name = "\improper Foreman's toolbelt"
},
/obj/item/clothing/glasses/meson,
/obj/item/clothing/glasses/welding,
-/obj/item/clothing/head/hardhat/white,
-/obj/item/clothing/head/beret/ce{
- name = "foreman beret"
- },
/obj/item/storage/toolbox/syndicate,
/obj/item/wrench/combat,
/obj/item/ammo_box/magazine/m10mm,
@@ -1662,6 +1660,8 @@
/obj/item/clothing/accessory/holster,
/obj/item/grenade/chem_grenade/metalfoam,
/obj/machinery/airalarm/directional/west,
+/obj/item/clothing/suit/ngr,
+/obj/item/clothing/head/hardhat/ngr/foreman,
/obj/item/tank/jetpack/suit,
/turf/open/floor/carpet/red,
/area/ship/cargo/office)
@@ -1692,7 +1692,7 @@
dir = 4;
pixel_x = -20
},
-/obj/item/clothing/suit/space/hardsuit/syndi/sbg,
+/obj/item/clothing/suit/space/hardsuit/syndi/ngr,
/obj/item/clothing/mask/gas/syndicate,
/turf/open/floor/carpet/black,
/area/ship/bridge)
diff --git a/_maps/shuttles/syndicate/syndicate_gorlex_komodo.dmm b/_maps/shuttles/syndicate/syndicate_gorlex_komodo.dmm
index fc7e7a029b8..445b6391a30 100644
--- a/_maps/shuttles/syndicate/syndicate_gorlex_komodo.dmm
+++ b/_maps/shuttles/syndicate/syndicate_gorlex_komodo.dmm
@@ -188,17 +188,16 @@
/turf/open/floor/plating/rust,
/area/ship/maintenance/starboard)
"dD" = (
-/obj/item/clothing/shoes/jackboots,
/obj/item/clothing/mask/gas/syndicate,
/obj/effect/turf_decal/techfloor{
dir = 10
},
-/obj/item/clothing/head/beret/black,
-/obj/item/clothing/under/syndicate,
/obj/structure/closet/syndicate{
desc = "It's a basic storage unit.";
name = "uniform closet"
},
+/obj/item/clothing/shoes/combat,
+/obj/item/clothing/under/syndicate/hardliners,
/turf/open/floor/mineral/plastitanium,
/area/ship/hallway/central)
"dG" = (
@@ -372,21 +371,21 @@
pixel_x = -12;
pixel_y = 7
},
-/obj/item/clothing/under/syndicate/sniper,
/obj/item/clothing/shoes/combat,
/obj/item/clothing/mask/gas/syndicate,
-/obj/item/clothing/suit/armor/vest/duster,
/obj/structure/closet/secure_closet/wall/directional/south{
icon_state = "sec_wall";
name = "Bridge Officer's Locker";
req_access_txt = "57"
},
/obj/item/melee/classic_baton/telescopic,
-/obj/item/clothing/neck/chameleon,
/obj/item/radio/headset/syndicate,
/obj/item/megaphone{
pixel_x = -2
},
+/obj/item/clothing/under/syndicate/cybersun/officer,
+/obj/item/clothing/suit/cybersun_suit,
+/obj/item/clothing/head/HoS/cybersun,
/turf/open/floor/plasteel/dark,
/area/ship/bridge)
"eN" = (
@@ -653,12 +652,10 @@
dir = 1;
layer = 2.8
},
-/obj/item/clothing/shoes/jackboots,
/obj/item/clothing/mask/gas/syndicate,
/obj/effect/turf_decal/techfloor{
dir = 8
},
-/obj/item/clothing/under/syndicate,
/obj/structure/closet/syndicate{
desc = "It's a basic storage unit.";
name = "uniform closet"
@@ -668,6 +665,8 @@
pixel_x = -23;
pixel_y = 4
},
+/obj/item/clothing/shoes/combat,
+/obj/item/clothing/under/syndicate/hardliners,
/turf/open/floor/mineral/plastitanium,
/area/ship/hallway/central)
"hk" = (
@@ -1156,8 +1155,6 @@
/obj/structure/closet/wall/orange/directional/south{
name = "Engineering locker"
},
-/obj/item/clothing/under/syndicate/coldres,
-/obj/item/clothing/suit/toggle/industrial,
/obj/item/clothing/shoes/workboots,
/obj/item/clothing/head/welding,
/obj/item/clothing/head/hardhat/red,
@@ -1174,6 +1171,8 @@
/obj/structure/cable{
icon_state = "1-4"
},
+/obj/item/clothing/under/syndicate/hardliners,
+/obj/item/clothing/suit/hazardvest/hardliners,
/turf/open/floor/plasteel/tech,
/area/ship/engineering)
"ls" = (
@@ -2880,11 +2879,6 @@
/obj/item/ammo_box/magazine/m10mm,
/obj/item/ammo_box/c10mm,
/obj/item/clothing/gloves/tackler/combat/insulated,
-/obj/item/clothing/suit/armor/vest/leather{
- desc = "Lightly armored leather overcoat meant as casual wear for high-ranking officers. Bears the crest of the Gorlex Marauders."
- },
-/obj/item/clothing/mask/gas/sechailer/swat,
-/obj/item/clothing/head/HoS/beret/syndicate,
/obj/structure/closet/secure_closet/wall/directional/west{
icon_state = "sec_wall";
name = "Sergeant's Locker";
@@ -2892,11 +2886,12 @@
},
/obj/item/melee/classic_baton/telescopic,
/obj/item/clothing/suit/armor/vest/blueshirt,
-/obj/item/clothing/under/syndicate/combat,
-/obj/item/clothing/under/syndicate,
/obj/item/clothing/accessory/holster,
/obj/item/clothing/shoes/combat,
/obj/item/radio/headset/syndicate,
+/obj/item/clothing/under/syndicate/hardliners/officer,
+/obj/item/clothing/suit/armor/hardliners/sergeant,
+/obj/item/clothing/head/hardliners/peaked,
/turf/open/floor/plasteel/dark,
/area/ship/bridge)
"AS" = (
@@ -3124,18 +3119,17 @@
name = "captain's locker";
req_access_txt = "20"
},
-/obj/item/clothing/under/syndicate/combat,
-/obj/item/clothing/suit/armor/vest/capcarapace/syndicate,
/obj/item/clothing/gloves/krav_maga/combatglovesplus,
-/obj/item/clothing/shoes/jackboots,
/obj/item/clothing/glasses/thermal/eyepatch,
-/obj/item/clothing/head/HoS/beret/syndicate,
-/obj/item/clothing/head/HoS/syndicate,
/obj/item/gun/ballistic/revolver,
/obj/item/clothing/under/syndicate/sniper,
/obj/item/ammo_box/a357,
/obj/item/ammo_box/a357,
/obj/item/radio/headset/syndicate/alt/leader,
+/obj/item/clothing/shoes/combat,
+/obj/item/clothing/under/syndicate/hardliners/officer,
+/obj/item/clothing/suit/toggle/armor/vest/hardliners,
+/obj/item/clothing/head/hardliners/peaked,
/turf/open/floor/carpet/black,
/area/ship/bridge)
"El" = (
@@ -3347,7 +3341,6 @@
},
/area/ship/maintenance/starboard)
"GD" = (
-/obj/item/clothing/shoes/jackboots,
/obj/item/clothing/mask/gas/syndicate,
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
dir = 4
@@ -3356,11 +3349,12 @@
dir = 9
},
/obj/item/clothing/mask/balaclava,
-/obj/item/clothing/under/syndicate/gorlex,
/obj/structure/closet/syndicate{
desc = "It's a basic storage unit.";
name = "uniform closet"
},
+/obj/item/clothing/shoes/combat,
+/obj/item/clothing/under/syndicate/hardliners,
/turf/open/floor/mineral/plastitanium,
/area/ship/hallway/central)
"GJ" = (
@@ -3845,7 +3839,6 @@
/turf/open/floor/mineral/plastitanium,
/area/ship/hallway/aft)
"Lb" = (
-/obj/item/clothing/shoes/jackboots,
/obj/item/clothing/neck/scarf/red,
/obj/item/clothing/mask/bandana/skull,
/obj/item/clothing/mask/gas/syndicate,
@@ -3855,11 +3848,12 @@
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
dir = 4
},
-/obj/item/clothing/under/utility,
/obj/structure/closet/syndicate{
desc = "It's a basic storage unit.";
name = "uniform closet"
},
+/obj/item/clothing/shoes/combat,
+/obj/item/clothing/under/syndicate/hardliners/jumpsuit,
/turf/open/floor/mineral/plastitanium,
/area/ship/hallway/central)
"Lj" = (
@@ -4064,21 +4058,16 @@
/obj/effect/turf_decal/techfloor{
dir = 9
},
-/obj/item/clothing/under/syndicate/skirt,
/obj/structure/closet/syndicate{
desc = "It's a basic storage unit.";
name = "uniform closet"
},
+/obj/item/clothing/shoes/combat,
+/obj/item/clothing/under/syndicate/hardliners/jumpsuit,
/turf/open/floor/mineral/plastitanium,
/area/ship/hallway/central)
"Ni" = (
/obj/effect/turf_decal/industrial/warning,
-/obj/item/clothing/suit/armor/vest/syndie,
-/obj/item/clothing/suit/armor/vest/syndie,
-/obj/item/clothing/suit/armor/vest/syndie,
-/obj/item/clothing/head/helmet/operator,
-/obj/item/clothing/head/helmet/operator,
-/obj/item/clothing/head/helmet/operator,
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
dir = 4
},
@@ -4090,9 +4079,21 @@
name = "Armor Locker";
req_access_txt = "1"
},
-/obj/item/storage/belt/military,
-/obj/item/storage/belt/military,
-/obj/item/storage/belt/military,
+/obj/item/clothing/suit/armor/hardliners/jacket,
+/obj/item/clothing/suit/armor/hardliners/jacket,
+/obj/item/clothing/suit/armor/hardliners/jacket,
+/obj/item/clothing/suit/armor/hardliners,
+/obj/item/clothing/suit/armor/hardliners,
+/obj/item/clothing/suit/armor/hardliners,
+/obj/item/clothing/head/helmet/hardliners,
+/obj/item/clothing/head/helmet/hardliners,
+/obj/item/clothing/head/helmet/hardliners,
+/obj/item/storage/belt/security/webbing/hardliners,
+/obj/item/storage/belt/security/webbing/hardliners,
+/obj/item/storage/belt/security/webbing/hardliners,
+/obj/item/clothing/glasses/hud/security/sunglasses/hardliners,
+/obj/item/clothing/glasses/hud/security/sunglasses/hardliners,
+/obj/item/clothing/glasses/hud/security/sunglasses/hardliners,
/turf/open/floor/mineral/plastitanium/red,
/area/ship/security/armory)
"Nj" = (
@@ -4271,7 +4272,6 @@
/turf/open/floor/plasteel/telecomms_floor,
/area/ship/cargo)
"PE" = (
-/obj/structure/chair/comfy,
/obj/effect/decal/cleanable/dirt/dust,
/obj/effect/turf_decal/trimline/transparent/bar/filled/line{
dir = 8
@@ -4281,6 +4281,7 @@
pixel_y = -1
},
/obj/machinery/airalarm/directional/west,
+/obj/structure/chair/comfy/red,
/turf/open/floor/mineral/plastitanium,
/area/ship/crew/canteen)
"PG" = (
@@ -5096,17 +5097,17 @@
/area/ship/hallway/central)
"WQ" = (
/obj/structure/railing,
-/obj/item/clothing/shoes/jackboots,
/obj/item/clothing/mask/gas/syndicate,
/obj/effect/turf_decal/techfloor{
dir = 8
},
/obj/item/clothing/mask/balaclava,
-/obj/item/clothing/under/syndicate/gorlex,
/obj/structure/closet/syndicate{
desc = "It's a basic storage unit.";
name = "uniform closet"
},
+/obj/item/clothing/shoes/combat,
+/obj/item/clothing/under/syndicate/hardliners,
/turf/open/floor/mineral/plastitanium,
/area/ship/hallway/central)
"WR" = (
@@ -5426,12 +5427,8 @@
/obj/structure/cable{
icon_state = "1-8"
},
-/obj/item/clothing/under/utility,
/obj/item/clothing/suit/longcoat/roboblack,
-/obj/item/clothing/suit/apron/surgical,
-/obj/item/clothing/neck/stethoscope,
/obj/item/clothing/mask/surgical,
-/obj/item/clothing/head/beret/black,
/obj/item/clothing/gloves/color/latex/nitrile/evil{
pixel_x = 1;
pixel_y = -3
@@ -5442,6 +5439,9 @@
pixel_x = -3;
pixel_y = 3
},
+/obj/item/clothing/suit/hardliners,
+/obj/item/clothing/head/hardliners,
+/obj/item/clothing/under/syndicate/hardliners,
/turf/open/floor/mineral/plastitanium,
/area/ship/medical)
"Zy" = (
diff --git a/_maps/shuttles/syndicate/syndicate_litieguai.dmm b/_maps/shuttles/syndicate/syndicate_litieguai.dmm
index 1330108a687..a7e6bb4dbcf 100644
--- a/_maps/shuttles/syndicate/syndicate_litieguai.dmm
+++ b/_maps/shuttles/syndicate/syndicate_litieguai.dmm
@@ -1410,9 +1410,9 @@
name = "armor locker";
req_access_txt = "5"
},
-/obj/item/clothing/suit/armor/vest/marine/trauma,
-/obj/item/clothing/suit/armor/vest/marine/trauma,
-/obj/item/clothing/suit/armor/vest/marine/trauma,
+/obj/item/clothing/suit/armor/vest/trauma,
+/obj/item/clothing/suit/armor/vest/trauma,
+/obj/item/clothing/suit/armor/vest/trauma,
/obj/item/clothing/head/helmet/medical,
/obj/item/clothing/head/helmet/medical,
/obj/item/clothing/head/helmet/medical,
diff --git a/_maps/shuttles/syndicate/syndicate_twinkleshine.dmm b/_maps/shuttles/syndicate/syndicate_twinkleshine.dmm
index 5878f667db1..6d0b0b423e6 100644
--- a/_maps/shuttles/syndicate/syndicate_twinkleshine.dmm
+++ b/_maps/shuttles/syndicate/syndicate_twinkleshine.dmm
@@ -101,8 +101,8 @@
req_access = list(3,150)
},
/obj/item/clothing/under/syndicate/ngr/officer,
-/obj/item/clothing/suit/armor/vest/capcarapace/ngr_captain,
-/obj/item/clothing/head/ngrcap,
+/obj/item/clothing/suit/armor/ngr/captain,
+/obj/item/clothing/head/ngr/peaked,
/obj/item/clothing/shoes/combat,
/obj/item/megaphone/sec{
name = "syndicate megaphone"
@@ -1377,7 +1377,7 @@
/obj/item/clothing/under/syndicate/medic/skirt,
/obj/item/clothing/under/syndicate/medic,
/obj/item/clothing/head/helmet/medical,
-/obj/item/clothing/suit/armor/vest/marine/trauma,
+/obj/item/clothing/suit/armor/vest/trauma,
/obj/item/storage/belt/medical,
/obj/item/storage/belt/medical/webbing,
/obj/item/clothing/gloves/color/latex/nitrile/evil,
@@ -2367,7 +2367,7 @@
dir = 8
},
/obj/machinery/suit_storage_unit/syndicate{
- suit_type = /obj/item/clothing/suit/space/hardsuit/syndi/sbg;
+ suit_type = /obj/item/clothing/suit/space/hardsuit/syndi/ngr;
name = "lieutenant's suit storage unit"
},
/turf/open/floor/mineral/plastitanium,
@@ -2560,11 +2560,8 @@
/obj/effect/turf_decal/corner/opaque/syndiered/half{
dir = 4
},
-/obj/machinery/computer/communications{
- dir = 8;
- req_access = list(151);
- set_obj_flags = "EMAGGED";
- icon_state = "computer-right"
+/obj/structure/frame/computer{
+ dir = 8
},
/turf/open/floor/mineral/plastitanium,
/area/ship/bridge)
@@ -4262,7 +4259,7 @@
/obj/effect/decal/cleanable/dirt/dust,
/obj/machinery/computer/helm{
dir = 8;
- icon_state = "computer-middle"
+ icon_state = "computer-right"
},
/obj/effect/turf_decal/corner/opaque/syndiered/half{
dir = 4
@@ -4675,8 +4672,7 @@
pixel_x = 6;
pixel_y = 1
},
-/obj/item/gun/ballistic/automatic/sniper_rifle/syndicate{
- spawnwithmagazine = 0;
+/obj/item/gun/ballistic/automatic/sniper_rifle/syndicate/no_mag{
pixel_x = -3;
pixel_y = 6
},
@@ -5024,7 +5020,7 @@
/obj/item/clothing/under/syndicate/medic/skirt,
/obj/item/clothing/under/syndicate/medic,
/obj/item/clothing/head/helmet/medical,
-/obj/item/clothing/suit/armor/vest/marine/trauma,
+/obj/item/clothing/suit/armor/vest/trauma,
/obj/item/antag_spawner/nuke_ops/borg_tele/medical/unlocked,
/obj/item/storage/belt/medical,
/obj/item/storage/belt/medical/webbing,
@@ -5612,16 +5608,6 @@
/area/ship/security)
"Gm" = (
/obj/structure/rack,
-/obj/item/gun/ballistic/automatic/ebr{
- pixel_x = -16;
- pixel_y = 7;
- spawnwithmagazine = 0
- },
-/obj/item/gun/ballistic/automatic/ebr{
- pixel_x = -9;
- pixel_y = 2;
- spawnwithmagazine = 0
- },
/obj/item/ammo_box/magazine/ebr{
pixel_x = 10;
pixel_y = -1
@@ -5636,6 +5622,11 @@
/obj/item/ammo_box/magazine/ebr{
pixel_y = -2
},
+/obj/item/gun/ballistic/automatic/ebr/no_mag{
+ pixel_x = -7;
+ pixel_y = 4
+ },
+/obj/item/gun/ballistic/automatic/ebr/no_mag,
/turf/open/floor/mineral/plastitanium,
/area/ship/security/armory)
"Gn" = (
@@ -6100,10 +6091,6 @@
/obj/machinery/camera/autoname{
dir = 6
},
-/obj/item/reagent_containers/spray/syndicate{
- pixel_y = 11;
- pixel_x = -2
- },
/turf/open/floor/wood/walnut,
/area/ship/crew/janitor)
"IE" = (
@@ -7509,15 +7496,13 @@
/area/ship/hallway/aft)
"Rv" = (
/obj/structure/rack,
-/obj/item/gun/ballistic/shotgun/bulldog{
+/obj/item/gun/ballistic/shotgun/bulldog/no_mag{
pixel_x = -7;
- pixel_y = 7;
- spawnwithmagazine = 0
+ pixel_y = 7
},
-/obj/item/gun/ballistic/shotgun/bulldog{
+/obj/item/gun/ballistic/shotgun/bulldog/no_mag{
pixel_y = -3;
- pixel_x = 2;
- spawnwithmagazine = 0
+ pixel_x = 2
},
/obj/machinery/light/directional/north,
/obj/item/ammo_box/magazine/m12g{
@@ -8848,19 +8833,16 @@
/area/ship/engineering/engine)
"YO" = (
/obj/structure/rack,
-/obj/item/gun/ballistic/automatic/smg/c20r{
+/obj/item/gun/ballistic/automatic/smg/c20r/no_mag{
pixel_x = 2;
- pixel_y = 8;
- spawnwithmagazine = 0
+ pixel_y = 8
},
-/obj/item/gun/ballistic/automatic/smg/c20r{
- pixel_y = 3;
- spawnwithmagazine = 0
+/obj/item/gun/ballistic/automatic/smg/c20r/no_mag{
+ pixel_y = 3
},
-/obj/item/gun/ballistic/automatic/smg/c20r{
+/obj/item/gun/ballistic/automatic/smg/c20r/no_mag{
pixel_y = -2;
- pixel_x = 3;
- spawnwithmagazine = 0
+ pixel_x = 3
},
/obj/item/ammo_box/magazine/smgm45,
/obj/item/ammo_box/magazine/smgm45,
diff --git a/code/__DEFINES/DNA.dm b/code/__DEFINES/DNA.dm
index 204e24daeab..8b05ccacd1f 100644
--- a/code/__DEFINES/DNA.dm
+++ b/code/__DEFINES/DNA.dm
@@ -31,7 +31,6 @@
#define GLOWY /datum/mutation/human/glow
#define ANTIGLOWY /datum/mutation/human/glow/anti
#define TELEPATHY /datum/mutation/human/telepathy
-#define FIREBREATH /datum/mutation/human/firebreath
#define VOID /datum/mutation/human/void
#define TONGUESPIKE /datum/mutation/human/tonguespike
#define TONGUESPIKECHEM /datum/mutation/human/tongue_spike/chem
@@ -156,6 +155,7 @@
#define ORGAN_SLOT_HEART_AID "heartdrive"
#define ORGAN_SLOT_BRAIN_ANTIDROP "brain_antidrop"
#define ORGAN_SLOT_BRAIN_ANTISTUN "brain_antistun"
+#define ORGAN_SLOT_BRAIN_JOYWIRE "brain_joywire"
#define ORGAN_SLOT_TAIL "tail"
#define ORGAN_SLOT_WINGS "wings"
#define ORGAN_SLOT_PARASITE_EGG "parasite_egg"
diff --git a/code/__DEFINES/blackmarket.dm b/code/__DEFINES/blackmarket.dm
index 5494c371db7..042066df522 100644
--- a/code/__DEFINES/blackmarket.dm
+++ b/code/__DEFINES/blackmarket.dm
@@ -3,8 +3,6 @@
// The BEST way of shipping items: accurate, "undetectable"
#define SHIPPING_METHOD_LTSRBT "LTSRBT"
-// Picks a random area to teleport the item to and gives you a minute to get there before it is sent.
-#define SHIPPING_METHOD_TELEPORT "Teleport"
-// Throws the item from somewhere at the station.
+// Throws the item from somewhere at the uplink.
#define SHIPPING_METHOD_LAUNCH "Launch"
diff --git a/code/__DEFINES/combat.dm b/code/__DEFINES/combat.dm
index 7df3a453acf..ad0754c85b2 100644
--- a/code/__DEFINES/combat.dm
+++ b/code/__DEFINES/combat.dm
@@ -133,52 +133,6 @@ GLOBAL_LIST_INIT(shove_disarming_types, typecacheof(list(/obj/item/gun)))
#define EMBED_POINTY list("ignore_throwspeed_threshold" = TRUE)
#define EMBED_POINTY_SUPERIOR list("embed_chance" = 100, "ignore_throwspeed_threshold" = TRUE)
-//Gun weapon weight
-/// Allows you to dual wield this gun and your offhand gun
-#define WEAPON_LIGHT 1
-/// Does not allow you to dual wield with this gun and your offhand gun
-#define WEAPON_MEDIUM 2
-/// You must wield the gun to fire this gun
-#define WEAPON_HEAVY 3
-//Gun trigger guards
-#define TRIGGER_GUARD_ALLOW_ALL -1
-#define TRIGGER_GUARD_NONE 0
-#define TRIGGER_GUARD_NORMAL 1
-//Gun bolt types
-///Gun has a bolt, it stays closed while not cycling. The gun must be racked to have a bullet chambered when a mag is inserted.
-/// Example: c20, shotguns, m90
-#define BOLT_TYPE_STANDARD 1
-///Gun has a bolt, it is open when ready to fire. The gun can never have a chambered bullet with no magazine, but the bolt stays ready when a mag is removed.
-/// Example: Some SMGs, the L6
-#define BOLT_TYPE_OPEN 2
-///Gun has no moving bolt mechanism, it cannot be racked. Also dumps the entire contents when emptied instead of a magazine.
-/// Example: Break action shotguns, revolvers
-#define BOLT_TYPE_NO_BOLT 3
-///Gun has a bolt, it locks back when empty. It can be released to chamber a round if a magazine is in.
-/// Example: Pistols with a slide lock, some SMGs
-#define BOLT_TYPE_LOCKING 4
-//Sawn off nerfs
-///accuracy penalty of sawn off guns
-#define SAWN_OFF_ACC_PENALTY 25
-///added recoil of sawn off guns
-#define SAWN_OFF_RECOIL 1
-
-//ammo box sprite defines
-///ammo box will always use provided icon state
-#define AMMO_BOX_ONE_SPRITE 0
-///ammo box will have a different state for each bullet; -
-#define AMMO_BOX_PER_BULLET 1
-///ammo box will have a different state for full and empty; -max_ammo and -0
-#define AMMO_BOX_FULL_EMPTY 2
-
-#define SUPPRESSED_NONE 0
-#define SUPPRESSED_QUIET 1 ///standard suppressed
-#define SUPPRESSED_VERY 2 /// no message
-
-//Projectile Reflect
-#define REFLECT_NORMAL (1<<0)
-#define REFLECT_FAKEPROJECTILE (1<<1)
-
//Object/Item sharpness
#define IS_BLUNT 0
#define IS_SHARP 1
@@ -214,23 +168,3 @@ GLOBAL_LIST_INIT(shove_disarming_types, typecacheof(list(/obj/item/gun)))
//We will round to this value in damage calculations.
#define DAMAGE_PRECISION 0.1
-
-//bullet_act() return values
-#define BULLET_ACT_HIT "HIT" //It's a successful hit, whatever that means in the context of the thing it's hitting.
-#define BULLET_ACT_BLOCK "BLOCK" //It's a blocked hit, whatever that means in the context of the thing it's hitting.
-#define BULLET_ACT_FORCE_PIERCE "PIERCE" //It pierces through the object regardless of the bullet being piercing by default.
-
-#define NICE_SHOT_RICOCHET_BONUS 10 //if the shooter has the NICE_SHOT trait and they fire a ricocheting projectile, add this to the ricochet chance and auto aim angle
-
-//Autofire component
-/// Compatible firemode is in the gun. Wait until it's held in the user hands.
-#define AUTOFIRE_STAT_IDLE (1<<0)
-/// Gun is active and in the user hands. Wait until user does a valid click.
-#define AUTOFIRE_STAT_ALERT (1<<1)
-/// Gun is shooting.
-#define AUTOFIRE_STAT_FIRING (1<<2)
-
-#define COMSIG_AUTOFIRE_ONMOUSEDOWN "autofire_onmousedown"
- #define COMPONENT_AUTOFIRE_ONMOUSEDOWN_BYPASS (1<<0)
-#define COMSIG_AUTOFIRE_SHOT "autofire_shot"
- #define COMPONENT_AUTOFIRE_SHOT_SUCCESS (1<<0)
diff --git a/code/__DEFINES/contracts.dm b/code/__DEFINES/contracts.dm
index c6e23394ba2..0e80652f4f5 100644
--- a/code/__DEFINES/contracts.dm
+++ b/code/__DEFINES/contracts.dm
@@ -7,14 +7,6 @@
#define CONTRACT_KNOWLEDGE "knowledge"
#define CONTRACT_UNWILLING "unwilling"
-#define BANE_SALT "salt"
-#define BANE_LIGHT "light"
-#define BANE_IRON "iron"
-#define BANE_WHITECLOTHES "whiteclothes"
-#define BANE_SILVER "silver"
-#define BANE_HARVEST "harvest"
-#define BANE_TOOLBOX "toolbox"
-
#define OBLIGATION_FOOD "food"
#define OBLIGATION_FIDDLE "fiddle"
#define OBLIGATION_DANCEOFF "danceoff"
diff --git a/code/__DEFINES/dcs/signals.dm b/code/__DEFINES/dcs/signals.dm
index d9edeb83202..97049254cc1 100644
--- a/code/__DEFINES/dcs/signals.dm
+++ b/code/__DEFINES/dcs/signals.dm
@@ -387,6 +387,9 @@
/* #define SPEECH_IGNORE_SPAM 6
#define SPEECH_FORCED 7 */
+///from /mob/living/life()
+#define COMSIG_MOB_LIFE "mob_life"
+
///from /mob/say_dead(): (mob/speaker, message)
#define COMSIG_MOB_DEADSAY "mob_deadsay"
#define MOB_DEADSAY_SIGNAL_INTERCEPT (1<<0)
@@ -420,6 +423,8 @@
///from base of /obj/item/bodypart/proc/attach_limb(): (new_limb, special) allows you to fail limb attachment
#define COMSIG_LIVING_ATTACH_LIMB "living_attach_limb"
#define COMPONENT_NO_ATTACH 1
+///from base of /obj/item/bodypart/proc/drop_limb(): (special)
+#define COMSIG_LIVING_DROP_LIMB "living_drop_limb"
///from base of mob/living/set_buckled(): (new_buckled)
#define COMSIG_LIVING_SET_BUCKLED "living_set_buckled"
@@ -549,6 +554,10 @@
///from [/obj/structure/closet/supplypod/proc/endlaunch]:
#define COMSIG_SUPPLYPOD_LANDED "supplypodgoboom"
+// Item mouse siganls
+#define COMSIG_ITEM_MOUSE_EXIT "item_mouse_exit" //from base of obj/item/MouseExited(): (location, control, params)
+#define COMSIG_ITEM_MOUSE_ENTER "item_mouse_enter" //from base of obj/item/MouseEntered(): (location, control, params)
+
///Called when an item is being offered, from [/obj/item/proc/on_offered(mob/living/carbon/offerer)]
#define COMSIG_ITEM_OFFERING "item_offering"
///Interrupts the offer proc
@@ -770,6 +779,13 @@
/// send when enabling/diabling an autofire component
#define COMSIG_GUN_DISABLE_AUTOFIRE "disable_autofire"
#define COMSIG_GUN_ENABLE_AUTOFIRE "enable_autofire"
+#define COMSIG_GUN_SET_AUTOFIRE_SPEED "set_autofire_speed"
+
+///sent when guns need to notify the gun hud to update. mostly for revolvers.
+#define COMSIG_UPDATE_AMMO_HUD "update_ammo_hud"
///called in /obj/item/gun/process_chamber (src)
#define COMSIG_GUN_CHAMBER_PROCESSED "gun_chamber_processed"
+
+///called when an elzu should unroot
+#define COMSIG_DIGOUT "dig_out"
diff --git a/code/__DEFINES/do_afters.dm b/code/__DEFINES/do_afters.dm
new file mode 100644
index 00000000000..456cf940400
--- /dev/null
+++ b/code/__DEFINES/do_afters.dm
@@ -0,0 +1,4 @@
+#define DOAFTER_SOURCE_SURGERY "doafter_surgery"
+#define DOAFTER_SOURCE_MECHADRILL "doafter_mechadrill"
+#define DOAFTER_SOURCE_SURVIVALPEN "doafter_survivalpen"
+#define DOAFTER_SOURCE_GETTING_UP "doafter_gettingup"
diff --git a/code/__DEFINES/flags.dm b/code/__DEFINES/flags.dm
index e0ac4b17700..c27a78ffd2d 100644
--- a/code/__DEFINES/flags.dm
+++ b/code/__DEFINES/flags.dm
@@ -123,6 +123,7 @@ GLOBAL_LIST_INIT(bitflags, list(1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 204
#define FLOATING (1<<3)
/// When moving, will Cross()/Uncross() everything, but won't stop or Bump() anything.
#define PHASING (1<<4)
+#define THROWN (1<<5)
//Fire and Acid stuff, for resistance_flags
#define LAVA_PROOF (1<<0)
diff --git a/code/__DEFINES/guns.dm b/code/__DEFINES/guns.dm
index 4177d2374ad..29a0dc66fde 100644
--- a/code/__DEFINES/guns.dm
+++ b/code/__DEFINES/guns.dm
@@ -1,4 +1,61 @@
-//weapon manufacturers
+//Gun weapon weight
+/// Allows you to dual wield this gun and your offhand gun
+#define WEAPON_LIGHT 1
+/// Does not allow you to dual wield with this gun and your offhand gun
+#define WEAPON_MEDIUM 2
+/// You must wield the gun to fire this gun
+#define WEAPON_HEAVY 3
+/// You must FULLY wield (wait the full wield delay) the gun to fire this gun
+#define WEAPON_VERY_HEAVY 4
+//Gun trigger guards
+#define TRIGGER_GUARD_ALLOW_ALL -1
+#define TRIGGER_GUARD_NONE 0
+#define TRIGGER_GUARD_NORMAL 1
+//Gun bolt types
+///The gun has a closed bolt, when resting it's closed, and must be racked to get a bullet from a magazine. see: Every Fucking Videogame Gun Ever
+#define BOLT_TYPE_STANDARD 1
+///Gun has a bolt, it is open when ready to fire. The gun can never have a chambered bullet with no magazine, but the bolt stays ready when a mag is removed.
+/// Example: Some SMGs, the L6
+#define BOLT_TYPE_OPEN 2
+///Gun has no moving bolt mechanism, it cannot be racked. Also dumps the entire contents when emptied instead of a magazine.
+/// Example: Break action shotguns, revolvers
+#define BOLT_TYPE_NO_BOLT 3
+///Gun has a bolt, it locks back when empty. It can be released to chamber a round if a magazine is in.
+/// Example: Pistols with a slide lock, some SMGs
+#define BOLT_TYPE_LOCKING 4
+//Sawn off nerfs
+///accuracy penalty of sawn off guns
+#define SAWN_OFF_ACC_PENALTY 25
+///added recoil of sawn off guns
+#define SAWN_OFF_RECOIL 1
+
+//ammo box sprite defines
+///ammo box will always use provided icon state
+#define AMMO_BOX_ONE_SPRITE 0
+///ammo box will have a different state for each bullet; -
+#define AMMO_BOX_PER_BULLET 1
+///ammo box will have a different state for full and empty; -max_ammo and -0
+#define AMMO_BOX_FULL_EMPTY 2
+
+#define SUPPRESSED_NONE 0
+#define SUPPRESSED_QUIET 1 ///standard suppressed
+#define SUPPRESSED_VERY 2 /// no message
+
+//Autofire component
+/// Compatible firemode is in the gun. Wait until it's held in the user hands.
+#define AUTOFIRE_STAT_IDLE (1<<0)
+/// Gun is active and in the user hands. Wait until user does a valid click.
+#define AUTOFIRE_STAT_ALERT (1<<1)
+/// Gun is shooting.
+#define AUTOFIRE_STAT_FIRING (1<<2)
+
+#define COMSIG_AUTOFIRE_ONMOUSEDOWN "autofire_onmousedown"
+ #define COMPONENT_AUTOFIRE_ONMOUSEDOWN_BYPASS (1<<0)
+#define COMSIG_AUTOFIRE_SHOT "autofire_shot"
+ #define COMPONENT_AUTOFIRE_SHOT_SUCCESS (1<<0)
+
+#define DUALWIELD_PENALTY_EXTRA_MULTIPLIER 1.6
+
#define MANUFACTURER_NONE null
#define MANUFACTURER_SHARPLITE "the Sharplite Defense logo"
#define MANUFACTURER_SHARPLITE_NEW "the Nanotrasen-Sharplite logo"
@@ -18,3 +75,28 @@
#define MANUFACTURER_LAKVAR "the letters LKV"
#define MANUFACTURER_HEPHAESTUS "the Hephaestus Industries logo"
#define MANUFACTURER_IMPORT "Lanchester Import Co."
+
+
+/////////////////
+// PROJECTILES //
+/////////////////
+
+//bullet_act() return values
+#define BULLET_ACT_HIT "HIT" //It's a successful hit, whatever that means in the context of the thing it's hitting.
+#define BULLET_ACT_BLOCK "BLOCK" //It's a blocked hit, whatever that means in the context of the thing it's hitting.
+#define BULLET_ACT_FORCE_PIERCE "PIERCE" //It pierces through the object regardless of the bullet being piercing by default.
+
+#define NICE_SHOT_RICOCHET_BONUS 10 //if the shooter has the NICE_SHOT trait and they fire a ricocheting projectile, add this to the ricochet chance and auto aim angle
+
+//Projectile Reflect
+#define REFLECT_NORMAL (1<<0)
+#define REFLECT_FAKEPROJECTILE (1<<1)
+
+#define MOVES_HITSCAN -1 //Not actually hitscan but close as we get without actual hitscan.
+#define MUZZLE_EFFECT_PIXEL_INCREMENT 17 //How many pixels to move the muzzle flash up so your character doesn't look like they're shitting out lasers.
+
+#define FIREMODE_SEMIAUTO "single"
+#define FIREMODE_BURST "burst"
+#define FIREMODE_FULLAUTO "auto"
+#define FIREMODE_OTHER "other"
+#define FIREMODE_OTHER_TWO "other2"
diff --git a/code/__DEFINES/icon_smoothing.dm b/code/__DEFINES/icon_smoothing.dm
index 6c07dd23439..49395e9b397 100644
--- a/code/__DEFINES/icon_smoothing.dm
+++ b/code/__DEFINES/icon_smoothing.dm
@@ -81,7 +81,6 @@ DEFINE_BITFIELD(smoothing_flags, list(
#define SMOOTH_GROUP_CLOSED_TURFS S_TURF(31) ///turf/closed
#define SMOOTH_GROUP_MATERIAL_WALLS S_TURF(32) ///turf/closed/wall/material
#define SMOOTH_GROUP_SYNDICATE_WALLS S_TURF(33) ///turf/closed/wall/r_wall/syndicate
-#define SMOOTH_GROUP_HOTEL_WALLS S_TURF(34) ///turf/closed/indestructible/hotelwall
#define SMOOTH_GROUP_MINERAL_WALLS S_TURF(35) ///turf/closed/mineral, /turf/closed/indestructible
#define SMOOTH_GROUP_BOSS_WALLS S_TURF(36) ///turf/closed/indestructible/riveted/boss
#define SMOOTH_GROUP_SURVIVAL_TITANIUM_WALLS S_TURF(37) ///turf/closed/wall/mineral/titanium/survival
@@ -99,7 +98,6 @@ DEFINE_BITFIELD(smoothing_flags, list(
#define SMOOTH_GROUP_SILVER_WALLS S_OBJ(3) ///turf/closed/wall/mineral/silver, /obj/structure/falsewall/silver
#define SMOOTH_GROUP_DIAMOND_WALLS S_OBJ(4) ///turf/closed/wall/mineral/diamond, /obj/structure/falsewall/diamond
#define SMOOTH_GROUP_PLASMA_WALLS S_OBJ(5) ///turf/closed/wall/mineral/plasma, /obj/structure/falsewall/plasma
-#define SMOOTH_GROUP_BANANIUM_WALLS S_OBJ(6) ///turf/closed/wall/mineral/bananium, /obj/structure/falsewall/bananium
#define SMOOTH_GROUP_SANDSTONE_WALLS S_OBJ(7) ///turf/closed/wall/mineral/sandstone, /obj/structure/falsewall/sandstone
#define SMOOTH_GROUP_WOOD_WALLS S_OBJ(8) ///turf/closed/wall/mineral/wood, /obj/structure/falsewall/wood
#define SMOOTH_GROUP_IRON_WALLS S_OBJ(9) ///turf/closed/wall/mineral/iron, /obj/structure/falsewall/iron
diff --git a/code/__DEFINES/inventory.dm b/code/__DEFINES/inventory.dm
index 066fa330133..1f9d1415114 100644
--- a/code/__DEFINES/inventory.dm
+++ b/code/__DEFINES/inventory.dm
@@ -1,19 +1,5 @@
/*ALL DEFINES RELATED TO INVENTORY OBJECTS, MANAGEMENT, ETC, GO HERE*/
-//ITEM INVENTORY WEIGHT, FOR w_class
-/// Usually items smaller then a human hand, (e.g. playing cards, lighter, scalpel, coins/holochips)
-#define WEIGHT_CLASS_TINY 1
-/// Pockets can hold small and tiny items, (e.g. flashlight, multitool, grenades, GPS device)
-#define WEIGHT_CLASS_SMALL 2
-/// Standard backpacks can carry tiny, small & normal items, (e.g. fire extinguisher, stun baton, gas mask, metal sheets)
-#define WEIGHT_CLASS_NORMAL 3
-/// Items that can be weilded or equipped but not stored in an inventory, (e.g. defibrillator, backpack, space suits)
-#define WEIGHT_CLASS_BULKY 4
-/// Usually represents objects that require two hands to operate, (e.g. shotgun, two-handed melee weapons)
-#define WEIGHT_CLASS_HUGE 5
-/// Essentially means it cannot be picked up or placed in an inventory, (e.g. mech parts, safe)
-#define WEIGHT_CLASS_GIGANTIC 6
-
//Inventory depth: limits how many nested storage items you can access directly.
//1: stuff in mob, 2: stuff in backpack, 3: stuff in box in backpack, etc
#define INVENTORY_DEPTH 3
@@ -93,8 +79,10 @@
#define NO_VARIATION (1<<0)
#define DIGITIGRADE_VARIATION (1<<1)
#define DIGITIGRADE_VARIATION_NO_NEW_ICON (1<<2)
-#define VOX_VARIATION (1<<3)
-#define KEPORI_VARIATION (1<<4)
+#define DIGITIGRADE_VARIATION_SAME_ICON_FILE (1<<3) //intended for use with factional icon files for organization purposes, otherwise use either above. Ex of naming: a state called "nameof_thing" can be named "nameof_thing_digi"
+#define SNOUTED_VARIATION (1<<4) //Ex of naming: a state called "nameof_thing" can be named "nameof_thing_snouted"
+#define VOX_VARIATION (1<<5)
+#define KEPORI_VARIATION (1<<6)
#define NOT_DIGITIGRADE 0
#define FULL_DIGITIGRADE 1
@@ -186,5 +174,4 @@ GLOBAL_LIST_INIT(security_wintercoat_allowed, typecacheof(list(
/obj/item/tank/internals/plasmaman,
/obj/item/toy)))
-//WS Port - Internals checker
#define GET_INTERNAL_SLOTS(C) list(C.head, C.wear_mask)
diff --git a/code/__DEFINES/layers.dm b/code/__DEFINES/layers.dm
index 6f76dae9769..d021558901f 100644
--- a/code/__DEFINES/layers.dm
+++ b/code/__DEFINES/layers.dm
@@ -155,12 +155,22 @@
#define HUD_PLANE 42
#define HUD_LAYER 42
#define HUD_RENDER_TARGET "HUD_PLANE"
-#define ABOVE_HUD_PLANE 43
-#define ABOVE_HUD_LAYER 43
+#define VOLUMETRIC_STORAGE_BOX_PLANE 44
+#define VOLUMETRIC_STORAGE_BOX_LAYER 44
+#define VOLUMETRIC_STORAGE_BOX_RENDER_TARGET "VOLUME_STORAGE_BOX_PLANE"
+
+#define VOLUMETRIC_STORAGE_ITEM_PLANE 46
+#define VOLUMETRIC_STORAGE_ITEM_LAYER 46
+#define VOLUMETRIC_STORAGE_ACTIVE_ITEM_LAYER 48
+#define VOLUMETRIC_STORAGE_ACTIVE_ITEM_PLANE 48
+#define VOLUMETRIC_STORAGE_ITEM_RENDER_TARGET "VOLUME_STORAGE_ITEM_PLANE"
+
+#define ABOVE_HUD_PLANE 50
+#define ABOVE_HUD_LAYER 50
#define ABOVE_HUD_RENDER_TARGET "ABOVE_HUD_PLANE"
-#define SPLASHSCREEN_LAYER 54
-#define SPLASHSCREEN_PLANE 54
+#define SPLASHSCREEN_LAYER 75
+#define SPLASHSCREEN_PLANE 75
#define ADMIN_POPUP_LAYER 1
diff --git a/code/__DEFINES/misc.dm b/code/__DEFINES/misc.dm
index d47980b59c6..ddd395d3879 100644
--- a/code/__DEFINES/misc.dm
+++ b/code/__DEFINES/misc.dm
@@ -445,11 +445,6 @@ GLOBAL_LIST_INIT(ghost_others_options, list(GHOST_OTHERS_SIMPLE, GHOST_OTHERS_DE
#define FALL_NO_MESSAGE (1<<1) //Used to suppress the "[A] falls through [old_turf]" messages where it'd make little sense at all, like going downstairs.
#define FALL_STOP_INTERCEPTING (1<<2) //Used in situations where halting the whole "intercept" loop would be better, like supermatter dusting (and thus deleting) the atom.
-//Religion
-
-#define HOLY_ROLE_PRIEST 1 //default priestly role
-#define HOLY_ROLE_HIGHPRIEST 2 //the one who designates the religion
-
#define ALIGNMENT_GOOD "good"
#define ALIGNMENT_NEUT "neutral"
#define ALIGNMENT_EVIL "evil"
diff --git a/code/__DEFINES/mobs.dm b/code/__DEFINES/mobs.dm
index f7949510d34..6395f394d3d 100644
--- a/code/__DEFINES/mobs.dm
+++ b/code/__DEFINES/mobs.dm
@@ -28,6 +28,13 @@
#define BLOOD_VOLUME_BAD 224
#define BLOOD_VOLUME_SURVIVE 122
+// Bloodloss
+#define BLOOD_LOSS_MAXIMUM 30
+#define BLOOD_LOSS_DAMAGE_MAXIMUM 2
+#define BLOOD_LOSS_DAMAGE_BASE 0.013
+#define BLOOD_CAUTERIZATION_RATIO 10
+#define BLOOD_CAUTERIZATION_DAMAGE_RATIO 300
+
//Sizes of mobs, used by mob/living/var/mob_size
#define MOB_SIZE_TINY 0
#define MOB_SIZE_SMALL 1
@@ -130,10 +137,11 @@
#define BODYTYPE_ORGANIC (1<<0)
#define BODYTYPE_ROBOTIC (1<<1)
#define BODYTYPE_HUMANOID (1<<2) //Everything
-#define BODYTYPE_BOXHEAD (1<<3) //TV Head
-#define BODYTYPE_DIGITIGRADE (1<<4) //Cancer
-#define BODYTYPE_KEPORI (1<<5) //Just Kepori
-#define BODYTYPE_VOX (1<<6) //Big Vox
+#define BODYTYPE_SNOUT (1<<3) //Snouts
+#define BODYTYPE_BOXHEAD (1<<4) //TV Head
+#define BODYTYPE_DIGITIGRADE (1<<5) //Lizard legs
+#define BODYTYPE_KEPORI (1<<6) //Just Kepori
+#define BODYTYPE_VOX (1<<7) //Big Vox
// Health/damage defines
#define MAX_LIVING_HEALTH 100
@@ -397,7 +405,11 @@
#define WABBAJACK (1<<6)
#define SLEEP_CHECK_DEATH(X) sleep(X); if(QDELETED(src) || stat == DEAD) return;
-#define INTERACTING_WITH(X, Y) (Y in X.do_afters)
+
+#define DOING_INTERACTION(user, interaction_key) (LAZYACCESS(user.do_afters, interaction_key))
+#define DOING_INTERACTION_LIMIT(user, interaction_key, max_interaction_count) ((LAZYACCESS(user.do_afters, interaction_key) || 0) >= max_interaction_count)
+#define DOING_INTERACTION_WITH_TARGET(user, target) (LAZYACCESS(user.do_afters, target))
+#define DOING_INTERACTION_WITH_TARGET_LIMIT(user, target, max_interaction_count) ((LAZYACCESS(user.do_afters, target) || 0) >= max_interaction_count)
/// If you examine the same atom twice in this timeframe, we call examine_more() instead of examine()
#define EXAMINE_MORE_TIME 1 SECONDS
diff --git a/code/__DEFINES/obj_flags.dm b/code/__DEFINES/obj_flags.dm
index 86547077403..d9ca63008c1 100644
--- a/code/__DEFINES/obj_flags.dm
+++ b/code/__DEFINES/obj_flags.dm
@@ -33,6 +33,7 @@
#define IN_STORAGE (1<<11) //is this item in the storage item, such as backpack? used for tooltips
#define SURGICAL_TOOL (1<<12) //Tool commonly used for surgery: won't attack targets in an active surgical operation on help intent (in case of mistakes)
#define EYE_STAB (1<<13) /// Item can be used to eyestab
+#define NO_PIXEL_RANDOM_DROP (1<<14) //if dropped, it wont have a randomized pixel_x/pixel_y
// Flags for the clothing_flags var on /obj/item/clothing
diff --git a/code/__DEFINES/power.dm b/code/__DEFINES/power.dm
index a95fec21955..29d6e72dffa 100644
--- a/code/__DEFINES/power.dm
+++ b/code/__DEFINES/power.dm
@@ -12,3 +12,16 @@
#define TESLA_DEFAULT_POWER 1738260
#define TESLA_MINI_POWER 869130
+
+#define LIGHT_DRAW 10 // mulitplied by brightness, typically 4-8
+
+#define IDLE_DRAW_MINIMAL 50 // 20x = 1kw, used for small things and computers on stand-by
+#define IDLE_DRAW_LOW 200 //5x = 1kw, used for always-active computers
+#define IDLE_DRAW_MEDIUM 500 //2x = 1kw
+#define IDLE_DRAW_HIGH 1000 //1kw
+
+#define ACTIVE_DRAW_MINIMAL 200 //5x = 1kw
+#define ACTIVE_DRAW_LOW 500 //2x = 1kw
+#define ACTIVE_DRAW_MEDIUM 1000 //microwaves use this
+#define ACTIVE_DRAW_HIGH 2000
+#define ACTIVE_DRAW_EXTREME 5000 //highest this value should be in most cases
diff --git a/code/__DEFINES/role_preferences.dm b/code/__DEFINES/role_preferences.dm
index 361a24697a3..9e253563fe8 100644
--- a/code/__DEFINES/role_preferences.dm
+++ b/code/__DEFINES/role_preferences.dm
@@ -39,8 +39,6 @@
#define ROLE_LAVALAND "Lavaland"
#define ROLE_INTERNAL_AFFAIRS "Internal Affairs Agent"
#define ROLE_FAMILIES "Familes Antagonists"
-#define ROLE_SYNDICATE_CYBERSUN "Cybersun Space Syndicate" //Ghost role syndi from Forgottenship ruin
-#define ROLE_SYNDICATE_CYBERSUN_CAPTAIN "Cybersun Space Syndicate Captain" //Forgottenship captain syndie
#define ROLE_BORER "borer"
//Missing assignment means it's not a gamemode specific role, IT'S NOT A BUG OR ERROR.
diff --git a/code/__DEFINES/say.dm b/code/__DEFINES/say.dm
index a470b9087b2..96d322285df 100644
--- a/code/__DEFINES/say.dm
+++ b/code/__DEFINES/say.dm
@@ -96,6 +96,8 @@
//Don't set this very much higher then 1024 unless you like inviting people in to dos your server with message spam
#define MAX_MESSAGE_LEN 1024
+#define MAX_FLAVOR_LEN 1024
+#define MAX_SHORTFLAVOR_LEN 100
#define MAX_NAME_LEN 42
#define MAX_BROADCAST_LEN 512
#define MAX_CHARTER_LEN 80
diff --git a/code/__DEFINES/species_clothing_defines.dm b/code/__DEFINES/species_clothing_defines.dm
index df8c2db1afc..51757919263 100644
--- a/code/__DEFINES/species_clothing_defines.dm
+++ b/code/__DEFINES/species_clothing_defines.dm
@@ -31,10 +31,12 @@
#define KEPORI_UNIFORM_PATH 'icons/mob/species/kepori/onmob_uniform_kepori.dmi'
#define KEPORI_SHOES_PATH 'icons/mob/species/kepori/onmob_feet_kepori.dmi'
#define KEPORI_SUIT_PATH 'icons/mob/species/kepori/onmob_suit_kepori.dmi'
+#define KEPORI_EARS_PATH 'icons/mob/species/kepori/onmob_ears_kepori.dmi'
#define KEPORI_MASK_PATH 'icons/mob/species/kepori/onmob_mask_kepori.dmi'
#define KEPORI_HEAD_PATH 'icons/mob/species/kepori/onmob_head_kepori.dmi'
+#define KEPORI_GLASSES_PATH 'icons/mob/species/kepori/onmob_eyes_kepori.dmi'
#define KEPORI_GLOVES_PATH 'icons/mob/species/kepori/onmob_hands_kepori.dmi'
-//#define KEPORI_BELT_PATH 'icons/mob/species/kepori/onmob_belt_kepori.dmi'
-#define KEPORI_UNDERWEAR_TORSO_PATH 'icons/mob/clothing/underwear/species/underwear_torso_kepori.dmi'
-#define KEPORI_UNDERWEAR_LEGS_PATH 'icons/mob/clothing/underwear/species/underwear_legs_kepori.dmi'
-#define KEPORI_UNDERWEAR_SOCKS_PATH 'icons/mob/clothing/underwear/species/underwear_socks_kepori.dmi'
+#define KEPORI_BELT_PATH 'icons/mob/species/kepori/onmob_belt_kepori.dmi'
+#define KEPORI_UNDERWEAR_TORSO_PATH 'icons/mob/clothing/underwear/species/kepori/underwear_torso_kepori.dmi'
+#define KEPORI_UNDERWEAR_LEGS_PATH 'icons/mob/clothing/underwear/species/kepori/underwear_legs_kepori.dmi'
+#define KEPORI_UNDERWEAR_SOCKS_PATH 'icons/mob/clothing/underwear/species/kepori/underwear_socks_kepori.dmi'
diff --git a/code/__DEFINES/subsystems.dm b/code/__DEFINES/subsystems.dm
index 62975548784..36aa57e4862 100644
--- a/code/__DEFINES/subsystems.dm
+++ b/code/__DEFINES/subsystems.dm
@@ -174,6 +174,7 @@
#define FIRE_PRIORITY_PARALLAX 65
#define FIRE_PRIORITY_INSTRUMENTS 80
#define FIRE_PRIORITY_MOBS 100
+#define FIRE_PRIORITY_MOVABLE_PHYSICS 105
#define FIRE_PRIORITY_TGUI 110
#define FIRE_PRIORITY_TICKER 200
#define FIRE_PRIORITY_ATMOS_ADJACENCY 300
diff --git a/code/__DEFINES/timed_action.dm b/code/__DEFINES/timed_action.dm
new file mode 100644
index 00000000000..90572cdc541
--- /dev/null
+++ b/code/__DEFINES/timed_action.dm
@@ -0,0 +1,10 @@
+// timed_action_flags parameter for 'proc/do_after'
+
+// The user can move freely without canceling the do_after
+#define IGNORE_USER_LOC_CHANGE (1<<0)
+// The target can move freely without canceling the do_after
+#define IGNORE_TARGET_LOC_CHANGE (1<<1)
+/// Can do the action even if the item is no longer being held
+#define IGNORE_HELD_ITEM (1<<2)
+/// Can do the action even if the mob is incapacitated
+#define IGNORE_INCAPACITATED (1<<3)
diff --git a/code/__DEFINES/traits.dm b/code/__DEFINES/traits.dm
index 72123b78268..f88f0c9d791 100644
--- a/code/__DEFINES/traits.dm
+++ b/code/__DEFINES/traits.dm
@@ -294,8 +294,6 @@ Remember to update _globalvars/traits.dm if you're adding/removing/renaming trai
#define TRAIT_NIGHT_VISION "night_vision"
#define TRAIT_LIGHT_STEP "light_step"
#define TRAIT_SPIRITUAL "spiritual"
-#define TRAIT_FAN_CLOWN "fan_clown"
-#define TRAIT_FAN_MIME "fan_mime"
#define TRAIT_FAN_RILENA "fan_rilena"
#define TRAIT_VORACIOUS "voracious"
#define TRAIT_SELF_AWARE "self_aware"
diff --git a/code/__HELPERS/_lists.dm b/code/__HELPERS/_lists.dm
index 28e2464aa8a..f603e85292a 100644
--- a/code/__HELPERS/_lists.dm
+++ b/code/__HELPERS/_lists.dm
@@ -16,7 +16,7 @@
#define LAZYREMOVE(L, I) if(L) { L -= I; if(!length(L)) { L = null; } }
#define LAZYADD(L, I) if(!L) { L = list(); } L += I;
#define LAZYOR(L, I) if(!L) { L = list(); } L |= I;
-#define LAZYFIND(L, V) L ? L.Find(V) : 0
+#define LAZYFIND(L, V) (L ? L.Find(V) : 0)
#define LAZYACCESS(L, I) (L ? (isnum(I) ? (I > 0 && I <= length(L) ? L[I] : null) : L[I]) : null)
#define LAZYSET(L, K, V) if(!L) { L = list(); } L[K] = V;
#define LAZYISIN(L, V) (L ? (V in L) : FALSE)
diff --git a/code/__HELPERS/global_lists.dm b/code/__HELPERS/global_lists.dm
index e44755574ee..5eb2686b211 100644
--- a/code/__HELPERS/global_lists.dm
+++ b/code/__HELPERS/global_lists.dm
@@ -42,6 +42,7 @@
init_sprite_accessory_subtypes(/datum/sprite_accessory/spider_spinneret, GLOB.spider_spinneret_list)
init_sprite_accessory_subtypes(/datum/sprite_accessory/kepori_feathers, GLOB.kepori_feathers_list)
init_sprite_accessory_subtypes(/datum/sprite_accessory/kepori_body_feathers, GLOB.kepori_body_feathers_list)
+ init_sprite_accessory_subtypes(/datum/sprite_accessory/kepori_head_feathers, GLOB.kepori_head_feathers_list)
init_sprite_accessory_subtypes(/datum/sprite_accessory/kepori_tail_feathers, GLOB.kepori_tail_feathers_list)
init_sprite_accessory_subtypes(/datum/sprite_accessory/vox_head_quills, GLOB.vox_head_quills_list)
init_sprite_accessory_subtypes(/datum/sprite_accessory/vox_neck_quills, GLOB.vox_neck_quills_list)
diff --git a/code/__HELPERS/mobs.dm b/code/__HELPERS/mobs.dm
index 81ba9ec06dd..6a3028443dc 100644
--- a/code/__HELPERS/mobs.dm
+++ b/code/__HELPERS/mobs.dm
@@ -108,6 +108,7 @@
"ipc_chassis" = pick(GLOB.ipc_chassis_list),
"ipc_screen" = pick(GLOB.ipc_screens_list),
"kepori_body_feathers" = pick(GLOB.kepori_body_feathers_list),
+ "kepori_head_feathers" = pick(GLOB.kepori_head_feathers_list),
"kepori_feathers" = pick(GLOB.kepori_feathers_list),
"kepori_tail_feathers" = pick(GLOB.kepori_tail_feathers_list),
"legs" = "Normal Legs",
@@ -241,66 +242,6 @@ GLOBAL_LIST_EMPTY(species_list)
else
return "unknown"
-///Timed action involving two mobs, the user and the target.
-/proc/do_mob(mob/user , mob/target, time = 3 SECONDS, uninterruptible = FALSE, progress = TRUE, datum/callback/extra_checks = null, ignore_loc_change = FALSE, hidden = FALSE)
- if(!user || !target)
- return FALSE
-
- if(target && INTERACTING_WITH(user, target))
- to_chat(user, "You're already interacting with [target]!")
- return
-
- var/user_loc = user.loc
-
- var/drifting = FALSE
- if(!user.Process_Spacemove(0) && user.inertia_dir)
- drifting = TRUE
-
- var/target_loc = target.loc
-
- LAZYADD(user.do_afters, target)
- LAZYADD(target.targeted_by, user)
- var/holding = user.get_active_held_item()
- var/datum/progressbar/progbar
- var/datum/cogbar/cog
- if (progress)
- progbar = new(user, time, target)
- if(!hidden && time >= 1 SECONDS)
- cog = new(user)
-
- var/endtime = world.time+time
- var/starttime = world.time
- . = TRUE
- while (world.time < endtime)
- stoplag(1)
- if(!QDELETED(progbar))
- progbar.update(world.time - starttime)
- if(QDELETED(user) || QDELETED(target))
- . = FALSE
- break
- if(uninterruptible)
- continue
-
- if(drifting && !user.inertia_dir)
- drifting = FALSE
- user_loc = user.loc
-
-
- if(!ignore_loc_change && ((!drifting && user.loc != user_loc) || target.loc != target_loc))
- . = FALSE
- break
-
- if(user.get_active_held_item() != holding || user.incapacitated() || (extra_checks && !extra_checks.Invoke()))
- . = FALSE
- break
- if(!QDELETED(progbar))
- progbar.end_progress()
-
- cog?.remove()
- if(!QDELETED(target))
- LAZYREMOVE(user.do_afters, target)
- LAZYREMOVE(target.targeted_by, user)
-
//some additional checks as a callback for for do_afters that want to break on losing health or on the mob taking action
/mob/proc/break_do_after_checks(list/checked_health, check_clicks)
if(check_clicks && next_move > world.time)
@@ -315,24 +256,40 @@ GLOBAL_LIST_EMPTY(species_list)
checked_health["health"] = health
return ..()
-///Timed action involving one mob user. Target is optional.
-/proc/do_after(mob/user, delay, needhand = TRUE, atom/target = null, progress = TRUE, datum/callback/extra_checks = null, hidden = FALSE)
+/**
+ * Timed action involving one mob user. A target can also be specified, but it is optional.
+ *
+ * Checks that `user` does not move, change hands, get stunned, etc. for the
+ * given `delay`. Returns `TRUE` on success or `FALSE` on failure.
+ *
+ * Arguments:
+ * * user - the primary "user" of the do_after.
+ * * delay - how long the do_after takes. Defaults to 3 SECONDS.
+ * * target - the (optional) target mob of the do_after. If they move/cease to exist, the do_after is cancelled.
+ * * timed_action_flags - optional flags to override certain do_after checks (see DEFINES/timed_action.dm).
+ * * progress - if TRUE, a progress bar is displayed.
+ * * extra_checks - a callback that can be used to add extra checks to the do_after. Returning false in this callback will cancel the do_after.
+ */
+/proc/do_after(mob/user, delay = 3 SECONDS, atom/target, timed_action_flags = NONE, progress = TRUE, datum/callback/extra_checks, interaction_key, max_interact_count = 1, hidden = FALSE)
if(!user)
return FALSE
+ if(!isnum(delay))
+ CRASH("do_after was passed a non-number delay: [delay || "null"].")
- if(target && INTERACTING_WITH(user, target))
+ if(target && DOING_INTERACTION_WITH_TARGET(user, target))
to_chat(user, "You're already interacting with [target]!")
return
- var/atom/Tloc = null
- if(target && !isturf(target))
- Tloc = target.loc
-
- if(target)
- LAZYADD(user.do_afters, target)
- LAZYADD(target.targeted_by, user)
+ if(!interaction_key && target)
+ interaction_key = target //Use the direct ref to the target
+ if(interaction_key) //Do we have a interaction_key now?
+ var/current_interaction_count = LAZYACCESS(user.do_afters, interaction_key) || 0
+ if(current_interaction_count >= max_interact_count) //We are at our peak
+ return
+ LAZYSET(user.do_afters, interaction_key, current_interaction_count + 1)
- var/atom/Uloc = user.loc
+ var/atom/user_loc = user.loc
+ var/atom/target_loc = target?.loc
var/drifting = FALSE
if(!user.Process_Spacemove(0) && user.inertia_dir)
@@ -340,136 +297,59 @@ GLOBAL_LIST_EMPTY(species_list)
var/holding = user.get_active_held_item()
- var/holdingnull = TRUE //User's hand started out empty, check for an empty hand
- if(holding)
- holdingnull = FALSE //Users hand started holding something, check to see if it's still holding that
-
delay *= user.do_after_coefficent()
var/datum/progressbar/progbar
var/datum/cogbar/cog
+
if(progress)
- progbar = new(user, delay, target || user)
+ if(user.client)
+ progbar = new(user, delay, target || user)
+
if(!hidden && delay >= 1 SECONDS)
cog = new(user)
+
var/endtime = world.time + delay
var/starttime = world.time
. = TRUE
while (world.time < endtime)
stoplag(1)
+
if(!QDELETED(progbar))
progbar.update(world.time - starttime)
if(drifting && !user.inertia_dir)
drifting = FALSE
- Uloc = user.loc
+ user_loc = user.loc
- if(QDELETED(user) || user.stat || (!drifting && user.loc != Uloc) || (extra_checks && !extra_checks.Invoke()))
+ // Check flags
+ if(QDELETED(user) \
+ || (!(timed_action_flags & IGNORE_USER_LOC_CHANGE) && !drifting && user.loc != user_loc) \
+ || (!(timed_action_flags & IGNORE_HELD_ITEM) && user.get_active_held_item() != holding) \
+ || (!(timed_action_flags & IGNORE_INCAPACITATED) && HAS_TRAIT(user, TRAIT_INCAPACITATED)) \
+ || (extra_checks && !extra_checks.Invoke()))
. = FALSE
break
- if(isliving(user))
- var/mob/living/L = user
- if(L.IsStun() || L.IsParalyzed())
- . = FALSE
- break
-
- if(!QDELETED(Tloc) && (QDELETED(target) || Tloc != target.loc))
- if((Uloc != Tloc || Tloc != user) && !drifting)
- . = FALSE
- break
-
- if(target && !(target in user.do_afters))
+ // If we have a target, we check for them moving here. We don't care about it if we're drifting or we ignore target loc change
+ if(target && (user != target) && \
+ (QDELETED(target) \
+ || (!(timed_action_flags & IGNORE_TARGET_LOC_CHANGE) && target.loc != target_loc)))
. = FALSE
break
- if(needhand)
- //This might seem like an odd check, but you can still need a hand even when it's empty
- //i.e the hand is used to pull some item/tool out of the construction
- if(!holdingnull)
- if(!holding)
- . = FALSE
- break
- if(user.get_active_held_item() != holding)
- . = FALSE
- break
if(!QDELETED(progbar))
progbar.end_progress()
cog?.remove()
- if(!QDELETED(target))
- LAZYREMOVE(user.do_afters, target)
- LAZYREMOVE(target.targeted_by, user)
+ if(interaction_key)
+ LAZYREMOVE(user.do_afters, interaction_key)
/mob/proc/do_after_coefficent() // This gets added to the delay on a do_after, default 1
. = 1
return
-///Timed action involving at least one mob user and a list of targets.
-/proc/do_after_mob(mob/user, list/targets, time = 3 SECONDS, uninterruptible = FALSE, progress = TRUE, datum/callback/extra_checks)
- if(!user)
- return FALSE
- if(!islist(targets))
- targets = list(targets)
- if(!length(targets))
- return FALSE
-
- for(var/i in targets)
- var/mob/living/target = i
- if(INTERACTING_WITH(user, target))
- to_chat(user, "You're already interacting with [target]!")
- return
-
-
- var/user_loc = user.loc
-
- var/drifting = FALSE
- if(!user.Process_Spacemove(0) && user.inertia_dir)
- drifting = TRUE
-
- var/list/originalloc = list()
- for(var/atom/target in targets)
- originalloc[target] = target.loc
- LAZYADD(user.do_afters, target)
- LAZYADD(target.targeted_by, user)
-
- var/holding = user.get_active_held_item()
- var/datum/progressbar/progbar
- if(progress)
- progbar = new(user, time, targets[1])
-
- var/endtime = world.time + time
- var/starttime = world.time
- . = TRUE
- mainloop:
- while(world.time < endtime)
- stoplag(1)
- if(!QDELETED(progbar))
- progbar.update(world.time - starttime)
- if(QDELETED(user) || !targets)
- . = FALSE
- break
- if(uninterruptible)
- continue
-
- if(drifting && !user.inertia_dir)
- drifting = FALSE
- user_loc = user.loc
-
- for(var/atom/target in targets)
- if((!drifting && user_loc != user.loc) || QDELETED(target) || originalloc[target] != target.loc || user.get_active_held_item() != holding || user.incapacitated() || (extra_checks && !extra_checks.Invoke()))
- . = FALSE
- break mainloop
- if(!QDELETED(progbar))
- progbar.end_progress()
-
- for(var/thing in targets)
- var/atom/target = thing
- if(!QDELETED(target))
- LAZYREMOVE(user.do_afters, target)
- LAZYREMOVE(target.targeted_by, user)
-
/proc/is_species(A, species_datum)
. = FALSE
if(ishuman(A))
diff --git a/code/__HELPERS/names.dm b/code/__HELPERS/names.dm
index 4348460c24d..8251e6e5c77 100644
--- a/code/__HELPERS/names.dm
+++ b/code/__HELPERS/names.dm
@@ -233,54 +233,55 @@ GLOBAL_DATUM(syndicate_code_response_regex, /regex)
else
. += ", "
+#define FACTION_SYNDICATE "Syndicate"
+ #define FACTION_CYBERSUN "CyberSun"
+ #define FACTION_NGR "New Gorlex Republic"
+ #define FACTION_ROSEUS "Roseus Galactic"
+ #define FACTION_SUNS "Student-Union of Naturalistic Sciences"
+#define FACTION_SOLGOV "SolGov"
+#define FACTION_SRM "Saint-Roumain Militia"
+#define FACTION_INTEQ "Inteq Risk Management Group"
+#define FACTION_CLIP "CLIP Minutemen"
+#define FACTION_NT "Nanotrasen"
+ #define FACTION_NS_LOGI "N+S Logistics"
+ #define FACTION_VIGILITAS "Vigilitas Interstellar"
+#define FACTION_FRONTIER "Frontiersmen Fleet"
+#define FACTION_PGF "Pan-Gezenan Federation"
+#define FACTION_INDEPENDENT "Independent"
+
+#define PREFIX_SYNDICATE list("SEV", "SSV")
+ #define PREFIX_CYBERSUN list("CSSV")
+ #define PREFIX_NGR list("NGRV")
+ #define PREFIX_ROSEUS list("RGSV")
+ #define PREFIX_SUNS list("SUNS")
+#define PREFIX_SOLGOV list("SCSV")
+#define PREFIX_SRM list("SRSV")
+#define PREFIX_INTEQ list("IRMV")
+#define PREFIX_CLIP list("CMSV", "CMGSV")
+#define PREFIX_NT list("NTSV")
+ #define PREFIX_NS_LOGI list("NSSV")
+ #define PREFIX_VIGILITAS list("VISV")
+#define PREFIX_FRONTIER list("FFV")
+#define PREFIX_PGF list("PGF", "PGFMC", "PGFN")
+#define PREFIX_INDEPENDENT list("SV", "IMV", "ISV")
+
/// List of all ship factions to their prefixes.
GLOBAL_LIST_INIT(ship_faction_to_prefixes, list(
- "Syndicate" = list(
- "SEV",
- "SSV",
- ),
- "New Gorlex Republic" = list(
- "NGRV",
- ),
- "CyberSun" = list(
- "CSSV",
- ),
- "Student-Union of Naturalistic Sciences" = list(
- "SUNS",
- ),
- "SolGov" = list(
- "SCSV",
- ),
- "Saint-Roumain Militia" = list(
- "SRSV",
- ),
- "Independent" = list(
- "SV",
- "IMV",
- "ISV",
- "XSV",
- ),
- "Inteq Risk Management Group" = list(
- "IRMV",
- ),
- "CLIP Minutemen" = list(
- "CMSV",
- "CMGSV",
- ),
- "Nanotrasen" = list(
- "NTSV",
- ),
- "Frontiersmen Fleet" = list(
- "FFV",
- ),
- "Saint-Roumaine Militia" = list(
- "SRSV",
- ),
- "Pan-Gezenan Federation" = list(
- "PGF",
- "PGFMC",
- "PGFN",
- ),
+ FACTION_SYNDICATE = PREFIX_SYNDICATE,
+ FACTION_CYBERSUN = PREFIX_CYBERSUN,
+ FACTION_NGR = PREFIX_NGR,
+ FACTION_ROSEUS = PREFIX_ROSEUS,
+ FACTION_SUNS = PREFIX_SUNS,
+ FACTION_SOLGOV = PREFIX_SOLGOV,
+ FACTION_SRM = PREFIX_SRM,
+ FACTION_INTEQ = PREFIX_INTEQ,
+ FACTION_CLIP = PREFIX_CLIP,
+ FACTION_NT = PREFIX_NT,
+ FACTION_NS_LOGI = PREFIX_NS_LOGI,
+ FACTION_VIGILITAS = PREFIX_VIGILITAS,
+ FACTION_FRONTIER = PREFIX_FRONTIER,
+ FACTION_PGF = PREFIX_PGF,
+ FACTION_INDEPENDENT = PREFIX_INDEPENDENT
))
/proc/ship_prefix_to_faction(prefix)
diff --git a/code/__HELPERS/unsorted.dm b/code/__HELPERS/unsorted.dm
index 8e9a1dbc997..c8c7b63d0a0 100644
--- a/code/__HELPERS/unsorted.dm
+++ b/code/__HELPERS/unsorted.dm
@@ -1329,44 +1329,6 @@ GLOBAL_DATUM_INIT(dview_mob, /mob/dview, new)
temp = ((temp + (temp>>3))&29127) % 63 //070707
return temp
-//same as do_mob except for movables and it allows both to drift and doesn't draw progressbar
-/proc/do_atom(atom/movable/user , atom/movable/target, time = 30, uninterruptible = 0,datum/callback/extra_checks = null)
- if(!user || !target)
- return TRUE
- var/user_loc = user.loc
-
- var/drifting = FALSE
- if(!user.Process_Spacemove(0) && user.inertia_dir)
- drifting = TRUE
-
- var/target_drifting = FALSE
- if(!target.Process_Spacemove(0) && target.inertia_dir)
- target_drifting = TRUE
-
- var/target_loc = target.loc
-
- var/endtime = world.time+time
- . = TRUE
- while (world.time < endtime)
- stoplag(1)
- if(QDELETED(user) || QDELETED(target))
- . = 0
- break
- if(uninterruptible)
- continue
-
- if(drifting && !user.inertia_dir)
- drifting = FALSE
- user_loc = user.loc
-
- if(target_drifting && !target.inertia_dir)
- target_drifting = FALSE
- target_loc = target.loc
-
- if((!drifting && user.loc != user_loc) || (!target_drifting && target.loc != target_loc) || (extra_checks && !extra_checks.Invoke()))
- . = FALSE
- break
-
//returns a GUID like identifier (using a mostly made up record format)
//guids are not on their own suitable for access or security tokens, as most of their bits are predictable.
// (But may make a nice salt to one)
diff --git a/code/_globalvars/bitfields.dm b/code/_globalvars/bitfields.dm
index 406f0bb0b10..bbfb0d3a74c 100644
--- a/code/_globalvars/bitfields.dm
+++ b/code/_globalvars/bitfields.dm
@@ -152,6 +152,7 @@ DEFINE_BITFIELD(item_flags, list(
"NOBLUDGEON" = NOBLUDGEON,
"NO_MAT_REDEMPTION" = NO_MAT_REDEMPTION,
"SLOWS_WHILE_IN_HAND" = SLOWS_WHILE_IN_HAND,
+ "NO_PIXEL_RANDOM_DROP" = NO_PIXEL_RANDOM_DROP,
))
DEFINE_BITFIELD(machine_stat, list(
@@ -190,6 +191,7 @@ DEFINE_BITFIELD(movement_type, list(
"GROUND" = GROUND,
"PHASING" = PHASING,
"VENTCRAWLING" = VENTCRAWLING,
+ "THROWN" = THROWN,
))
DEFINE_BITFIELD(obj_flags, list(
@@ -263,6 +265,14 @@ DEFINE_BITFIELD(zap_flags, list(
"ZAP_OBJ_DAMAGE" = ZAP_OBJ_DAMAGE,
))
+
+DEFINE_BITFIELD(storage_flags, list(
+ "STORAGE_LIMIT_MAX_ITEMS" = STORAGE_LIMIT_MAX_ITEMS,
+ "STORAGE_LIMIT_MAX_W_CLASS" = STORAGE_LIMIT_MAX_W_CLASS,
+ "STORAGE_LIMIT_COMBINED_W_CLASS" = STORAGE_LIMIT_COMBINED_W_CLASS,
+ "STORAGE_LIMIT_VOLUME" = STORAGE_LIMIT_VOLUME,
+))
+
DEFINE_BITFIELD(bodytype, list(
"BODYTYPE_ORGANIC" = BODYTYPE_ORGANIC,
"BODYTYPE_ROBOTIC" = BODYTYPE_ROBOTIC,
diff --git a/code/_globalvars/lists/flavor_misc.dm b/code/_globalvars/lists/flavor_misc.dm
index 479e43e3454..f9edbc50014 100644
--- a/code/_globalvars/lists/flavor_misc.dm
+++ b/code/_globalvars/lists/flavor_misc.dm
@@ -46,6 +46,7 @@ GLOBAL_LIST_EMPTY(spider_legs_list)
GLOBAL_LIST_EMPTY(spider_spinneret_list)
GLOBAL_LIST_EMPTY(kepori_feathers_list)
GLOBAL_LIST_EMPTY(kepori_body_feathers_list)
+GLOBAL_LIST_EMPTY(kepori_head_feathers_list)
GLOBAL_LIST_EMPTY(kepori_tail_feathers_list)
GLOBAL_LIST_EMPTY(vox_head_quills_list)
GLOBAL_LIST_EMPTY(vox_neck_quills_list)
@@ -189,6 +190,22 @@ GLOBAL_LIST_INIT(exowearlist, list(PREF_NOEXOWEAR, PREF_EXOWEAR, PREF_ALTEXOWEAR
#define UPLINK_PEN "Pen" //like a real spy!
GLOBAL_LIST_INIT(uplink_spawn_loc_list, list(UPLINK_PDA, UPLINK_RADIO, UPLINK_PEN))
+//favorite cigarette brand
+#define PREF_CIG_SPACE "Space Cigarettes"
+#define PREF_CIG_DROMEDARY "DromedaryCo Cigarettes"
+#define PREF_CIG_UPLIFT "Uplift Smooth Cigarettes"
+#define PREF_CIG_ROBUST "Robust Cigarettes"
+#define PREF_CIG_ROBUSTGOLD "Robust Gold Cigarettes"
+#define PREF_CIG_CARP "Carp Classic Cigarettes"
+#define PREF_CIG_MIDORI "Midori Taboko Rollies"
+#define PREF_CIGAR "Premium Cigars"
+#define PREF_CIGAR_SOLAR "Solarian Cigars"
+#define PREF_CIGAR_COHIBA "Cohiba Cigars"
+#define PREF_VAPE "Vape Pen"
+#define PREF_PIPE "Fancy Pipe"
+
+GLOBAL_LIST_INIT(valid_smoke_types, sortList(list(PREF_CIG_SPACE, PREF_CIG_DROMEDARY, PREF_CIG_UPLIFT, PREF_CIG_ROBUST, PREF_CIG_ROBUSTGOLD, PREF_CIG_CARP, PREF_CIG_MIDORI, PREF_CIGAR, PREF_CIGAR_SOLAR, PREF_CIGAR_COHIBA, PREF_VAPE, PREF_PIPE)))
+
//Female Uniforms
GLOBAL_LIST_EMPTY(female_clothing_icons)
//Alternate species icons
diff --git a/code/_globalvars/lists/names.dm b/code/_globalvars/lists/names.dm
index ee9bc5bb429..888def7a718 100644
--- a/code/_globalvars/lists/names.dm
+++ b/code/_globalvars/lists/names.dm
@@ -41,11 +41,6 @@ List of configurable names in preferences and their metadata
),
*/
GLOBAL_LIST_INIT(preferences_custom_names, list(
- "human" = list("pref_name" = "Backup Human", "qdesc" = "backup human name, used in the event you are assigned a command role as another species", "group" = "backup_human", "allow_null" = FALSE),
- "clown" = list("pref_name" = "Clown" , "qdesc" = "clown name", "group" = "fun", "allow_null" = FALSE),
- "mime" = list("pref_name" = "Mime", "qdesc" = "mime name" , "group" = "fun", "allow_null" = FALSE),
"cyborg" = list("pref_name" = "Cyborg", "qdesc" = "cyborg name (Leave empty to use default naming scheme)", "group" = "silicons", "allow_null" = TRUE),
"ai" = list("pref_name" = "AI", "qdesc" = "ai name", "group" = "silicons", "allow_null" = FALSE),
- "religion" = list("pref_name" = "Chaplain religion", "qdesc" = "religion" , "group" = "chaplain", "allow_null" = FALSE),
- "deity" = list("pref_name" = "Chaplain deity", "qdesc" = "deity", "group" = "chaplain", "allow_null" = FALSE)
- ))
+))
diff --git a/code/_globalvars/traits.dm b/code/_globalvars/traits.dm
index dbc3607129f..5f5c26731d1 100644
--- a/code/_globalvars/traits.dm
+++ b/code/_globalvars/traits.dm
@@ -125,8 +125,6 @@ GLOBAL_LIST_INIT(traits_by_type, list(
"TRAIT_NIGHT_VISION" = TRAIT_NIGHT_VISION,
"TRAIT_LIGHT_STEP" = TRAIT_LIGHT_STEP,
"TRAIT_SPIRITUAL" = TRAIT_SPIRITUAL,
- "TRAIT_FAN_CLOWN" = TRAIT_FAN_CLOWN,
- "TRAIT_FAN_MIME" = TRAIT_FAN_MIME,
"TRAIT_VORACIOUS" = TRAIT_VORACIOUS,
"TRAIT_SELF_AWARE" = TRAIT_SELF_AWARE,
"TRAIT_FREERUNNING" = TRAIT_FREERUNNING,
diff --git a/code/_onclick/hud/screen_objects.dm b/code/_onclick/hud/screen_objects.dm
index 8615b9a9aa6..ef1f614809f 100644
--- a/code/_onclick/hud/screen_objects.dm
+++ b/code/_onclick/hud/screen_objects.dm
@@ -241,20 +241,20 @@
user.swap_hand(held_index)
return TRUE
-/atom/movable/screen/close
- name = "close"
- layer = ABOVE_HUD_LAYER
- plane = ABOVE_HUD_PLANE
- icon_state = "backpack_close"
+// /atom/movable/screen/close
+// name = "close"
+// layer = ABOVE_HUD_LAYER
+// plane = ABOVE_HUD_PLANE
+// icon_state = "backpack_close"
-/atom/movable/screen/close/Initialize(mapload, new_master)
- . = ..()
- master = new_master
+// /atom/movable/screen/close/Initialize(mapload, new_master)
+// . = ..()
+// master = new_master
-/atom/movable/screen/close/Click()
- var/datum/component/storage/S = master
- S.hide_from(usr)
- return TRUE
+// /atom/movable/screen/close/Click()
+// var/datum/component/storage/S = master
+// S.hide_from(usr)
+// return TRUE
/atom/movable/screen/drop
name = "drop"
@@ -437,30 +437,6 @@
icon_state = "[base_icon_state][user.resting ? 0 : null]"
return ..()
-/atom/movable/screen/storage
- name = "storage"
- icon_state = "block"
- screen_loc = "7,7 to 10,8"
- layer = HUD_LAYER
- plane = HUD_PLANE
-
-/atom/movable/screen/storage/Initialize(mapload, new_master)
- . = ..()
- master = new_master
-
-/atom/movable/screen/storage/Click(location, control, params)
- if(world.time <= usr.next_move)
- return TRUE
- if(usr.incapacitated())
- return TRUE
- if (ismecha(usr.loc)) // stops inventory actions in a mech
- return TRUE
- if(master)
- var/obj/item/I = usr.get_active_held_item()
- if(I)
- master.attackby(null, I, usr, params)
- return TRUE
-
/atom/movable/screen/throw_catch
name = "throw/catch"
icon = 'icons/hud/screen_midnight.dmi'
diff --git a/code/_onclick/item_attack.dm b/code/_onclick/item_attack.dm
index 1cf0585c0ed..58b9604e585 100644
--- a/code/_onclick/item_attack.dm
+++ b/code/_onclick/item_attack.dm
@@ -153,7 +153,7 @@
var/armor_value = run_armor_check(attack_flag = "melee", armour_penetration = I.armour_penetration) //WS Edit - Simplemobs can have armor
send_item_attack_message(I, user)
if(I.force)
- apply_damage(I.force, I.damtype, break_modifier = I.force, blocked = armor_value) //Bone break modifier = item force
+ apply_damage(I.force, I.damtype, break_modifier = I.force, blocked = armor_value, sharpness = I.get_sharpness()) //Bone break modifier = item force
if(I.damtype == BRUTE)
if(prob(33))
I.add_mob_blood(src)
diff --git a/code/controllers/subsystem/blackmarket.dm b/code/controllers/subsystem/blackmarket.dm
index 6014259278d..cbd07fcd8fd 100644
--- a/code/controllers/subsystem/blackmarket.dm
+++ b/code/controllers/subsystem/blackmarket.dm
@@ -5,8 +5,8 @@ SUBSYSTEM_DEF(blackmarket)
/// Descriptions for each shipping methods.
var/shipping_method_descriptions = list(
- SHIPPING_METHOD_LAUNCH="Launches the item at your coordinates from across deep space, cheap but you might not recieve your item at all.",
- SHIPPING_METHOD_LTSRBT="Long-To-Short-Range-Bluespace-Transceiver, a machine that prepares items at a remote storage location and then teleports them to the location of the uplink."
+ SHIPPING_METHOD_LAUNCH="Launches the item at your coordinates from across deep space. Cheap, but you might not recieve your item at all. We recommend being stationary in space, away from any large structures, for best results.",
+ SHIPPING_METHOD_LTSRBT="Long-To-Short-Range-Bluespace-Transceiver, a machine that prepares items at a remote storage location and then teleports them to the location of the LTRSBT."
)
/// List of all existing markets.
@@ -29,7 +29,8 @@ SUBSYSTEM_DEF(blackmarket)
if(!markets[M])
stack_trace("SSblackmarket: Item [I] available in market that does not exist.")
continue
- markets[M].add_item(item)
+ markets[M].add_item(item, FALSE)
+
qdel(I)
. = ..()
@@ -47,22 +48,10 @@ SUBSYSTEM_DEF(blackmarket)
switch(purchase.method)
// Find a ltsrbt pad and make it handle the shipping.
if(SHIPPING_METHOD_LTSRBT)
- if(!telepads.len)
- continue
- // Prioritize pads that don't have a cooldown active.
- var/free_pad_found = FALSE
- for(var/obj/machinery/ltsrbt/pad in telepads)
- if(pad.recharge_cooldown)
- continue
- pad.add_to_queue(purchase)
- queued_purchases -= purchase
- free_pad_found = TRUE
- break
-
- if(free_pad_found)
+ if(!purchase.uplink.target)
continue
- var/obj/machinery/ltsrbt/pad = pick(telepads)
+ var/obj/machinery/ltsrbt/pad = purchase.uplink.target
to_chat(recursive_loc_check(purchase.uplink.loc, /mob), "[purchase.uplink] flashes a message noting that the order is being processed by [pad].")
@@ -76,7 +65,7 @@ SUBSYSTEM_DEF(blackmarket)
var/pickedloc = vlevel.get_side_turf(startSide)
var/atom/movable/item = purchase.entry.spawn_item(pickedloc)
- item.throw_at(purchase.uplink, 3, 3, spin = FALSE)
+ item.safe_throw_at(purchase.uplink, 3, 3, spin = FALSE)
to_chat(recursive_loc_check(purchase.uplink.loc, /mob), "[purchase.uplink] flashes a message noting the order is being launched at your coordinates from [dir2text(startSide)].")
@@ -96,7 +85,7 @@ SUBSYSTEM_DEF(blackmarket)
/// Used to add /datum/blackmarket_purchase to queued_purchases var. Returns TRUE when queued.
/datum/controller/subsystem/blackmarket/proc/queue_item(datum/blackmarket_purchase/P)
- if(P.method == SHIPPING_METHOD_LTSRBT && !telepads.len)
+ if(P.method == SHIPPING_METHOD_LTSRBT && !P.uplink.target)
return FALSE
queued_purchases += P
return TRUE
diff --git a/code/controllers/subsystem/events.dm b/code/controllers/subsystem/events.dm
index 32f404c936a..dc55c7ca075 100644
--- a/code/controllers/subsystem/events.dm
+++ b/code/controllers/subsystem/events.dm
@@ -102,7 +102,7 @@ SUBSYSTEM_DEF(events)
// Why the heck is this here! Took me so damn long to find!
/client/proc/forceEvent()
set name = "Trigger Event"
- set category = "Admin.Events"
+ set category = "Event"
if(!holder ||!check_rights(R_FUN))
return
diff --git a/code/controllers/subsystem/machines.dm b/code/controllers/subsystem/machines.dm
index 4440d1c17b3..e8285abafde 100644
--- a/code/controllers/subsystem/machines.dm
+++ b/code/controllers/subsystem/machines.dm
@@ -47,10 +47,7 @@ SUBSYSTEM_DEF(machines)
while(currentrun.len)
var/obj/machinery/thing = currentrun[currentrun.len]
currentrun.len--
- if(!QDELETED(thing) && thing.process(seconds) != PROCESS_KILL)
- if(thing.use_power)
- thing.auto_use_power() //add back the power state
- else
+ if(QDELETED(thing) || thing.process(seconds) == PROCESS_KILL)
processing -= thing
if (!QDELETED(thing))
thing.datum_flags &= ~DF_ISPROCESSING
diff --git a/code/controllers/subsystem/overmap.dm b/code/controllers/subsystem/overmap.dm
index 93852230b24..1304eeeb34e 100644
--- a/code/controllers/subsystem/overmap.dm
+++ b/code/controllers/subsystem/overmap.dm
@@ -133,7 +133,7 @@ SUBSYSTEM_DEF(overmap)
spawn_ruin_levels()
spawn_outpost()
- spawn_initial_ships()
+ //spawn_initial_ships()
/**
* VERY Simple random generation for overmap events, spawns the event in a random turf and sometimes spreads it out similar to ores
@@ -212,6 +212,7 @@ SUBSYSTEM_DEF(overmap)
new found_type(location)
return
+/*
/datum/controller/subsystem/overmap/proc/spawn_initial_ships()
#ifndef UNIT_TESTS
var/datum/map_template/shuttle/selected_template = SSmapping.maplist[pick(SSmapping.maplist)]
@@ -224,10 +225,11 @@ SUBSYSTEM_DEF(overmap)
query_round_map_name.Execute()
qdel(query_round_map_name)
#endif
+*/
/**
* Spawns a controlled ship with the passed template at the template's preferred spawn location.
- * Inteded for ship purchases, etc.
+ * Intended for ship purchases, etc.
*/
/datum/controller/subsystem/overmap/proc/spawn_ship_at_start(datum/map_template/shuttle/template)
//Should never happen, but just in case. This'll delay the next spawn until the current one is done.
diff --git a/code/controllers/subsystem/processing/quirks.dm b/code/controllers/subsystem/processing/quirks.dm
index 9dc117783af..c6f9e4404c0 100644
--- a/code/controllers/subsystem/processing/quirks.dm
+++ b/code/controllers/subsystem/processing/quirks.dm
@@ -23,7 +23,6 @@ PROCESSING_SUBSYSTEM_DEF(quirks)
list("Ageusia","Vegetarian","Deviant Tastes"), \
list("Ananas Affinity","Ananas Aversion"), \
list("Alcohol Tolerance","Light Drinker"), \
- list("Clown Fan","Mime Fan", "RILENA Super Fan"), \
list("Bad Touch", "Friendly"))
species_blacklist = list("Blood Deficiency" = list(SPECIES_IPC, SPECIES_JELLYPERSON, SPECIES_PLASMAMAN, SPECIES_VAMPIRE))
diff --git a/code/controllers/subsystem/throwing.dm b/code/controllers/subsystem/throwing.dm
index 0260e952d10..e8cd514eb48 100644
--- a/code/controllers/subsystem/throwing.dm
+++ b/code/controllers/subsystem/throwing.dm
@@ -47,7 +47,7 @@ SUBSYSTEM_DEF(throwing)
/datum/thrownthing
var/atom/movable/thrownthing
- var/atom/target
+ var/datum/weakref/initial_target
var/turf/target_turf
var/target_zone
var/init_dir
@@ -71,12 +71,13 @@ SUBSYSTEM_DEF(throwing)
var/last_move = 0
-/datum/thrownthing/New(thrownthing, target, target_turf, init_dir, maxrange, speed, thrower, diagonals_first, force, gentle, callback, target_zone)
+/datum/thrownthing/New(thrownthing, target, init_dir, maxrange, speed, thrower, diagonals_first, force, gentle, callback, target_zone)
. = ..()
src.thrownthing = thrownthing
RegisterSignal(thrownthing, COMSIG_PARENT_QDELETING, PROC_REF(on_thrownthing_qdel))
- src.target = target
- src.target_turf = target_turf
+ src.target_turf = get_turf(target)
+ if(target_turf != target)
+ src.initial_target = WEAKREF(target)
src.init_dir = init_dir
src.maxrange = maxrange
src.speed = speed
@@ -87,14 +88,13 @@ SUBSYSTEM_DEF(throwing)
src.callback = callback
src.target_zone = target_zone
-
/datum/thrownthing/Destroy()
SSthrowing.processing -= thrownthing
SSthrowing.currentrun -= thrownthing
thrownthing.throwing = null
thrownthing = null
- target = null
thrower = null
+ initial_target = null
if(callback)
QDEL_NULL(callback) //It stores a reference to the thrownthing, its source. Let's clean that.
return ..()
@@ -109,6 +109,7 @@ SUBSYSTEM_DEF(throwing)
/datum/thrownthing/proc/tick()
var/atom/movable/AM = thrownthing
+ AM.setMovetype(AM.movement_type | THROWN)
if (!isturf(AM.loc) || !AM.throwing)
finalize()
return
@@ -117,9 +118,17 @@ SUBSYSTEM_DEF(throwing)
delayed_time += world.time - last_move
return
- if (dist_travelled && hitcheck()) //to catch sneaky things moving on our tile while we slept
- finalize()
- return
+ var/atom/movable/actual_target = initial_target?.resolve()
+
+ if(dist_travelled) //to catch sneaky things moving on our tile while we slept
+ for(var/atom/movable/obstacle as anything in get_turf(thrownthing))
+ if (obstacle == thrownthing || (obstacle == thrower && !ismob(thrownthing)))
+ continue
+ if(obstacle.pass_flags_self & LETPASSTHROW)
+ continue
+ if (obstacle == actual_target || (obstacle.density && !(obstacle.flags_1 & ON_BORDER_1)))
+ finalize(TRUE, obstacle)
+ return
var/atom/step
@@ -146,10 +155,15 @@ SUBSYSTEM_DEF(throwing)
finalize()
return
- AM.Move(step, get_dir(AM, step), DELAY_TO_GLIDE_SIZE(1 / speed))
+ if(!AM.Move(step, get_dir(AM, step), DELAY_TO_GLIDE_SIZE(1 / speed))) // we hit something during our move...
+ if(AM.throwing) // ...but finalize() wasn't called on Bump() because of a higher level definition that doesn't always call parent.
+ finalize()
+ return
- if (!AM.throwing) // we hit something during our move
- finalize(hit = TRUE)
+ dist_travelled++
+
+ if(actual_target && !(actual_target.pass_flags_self & LETPASSTHROW) && actual_target.loc == AM.loc) // we crossed a movable with no density (e.g. a mouse or APC) we intend to hit anyway.
+ finalize(TRUE, actual_target)
return
dist_travelled++
@@ -158,18 +172,19 @@ SUBSYSTEM_DEF(throwing)
finalize()
return
-/datum/thrownthing/proc/finalize(hit = FALSE, target=null)
+//If the target hasent been hit search for it in the turf we landed on.
+/datum/thrownthing/proc/finalize(hit = FALSE, target = null)
set waitfor = FALSE
//done throwing, either because it hit something or it finished moving
if(!thrownthing)
return
thrownthing.throwing = null
+ thrownthing.setMovetype(thrownthing.movement_type & ~THROWN)
if (!hit)
- for (var/thing in get_turf(thrownthing)) //looking for our target on the turf we land on.
- var/atom/A = thing
- if (A == target)
+ for (var/atom/movable/obstacle as anything in get_turf(thrownthing)) //looking for our target on the turf we land on.
+ if (obstacle == target)
hit = TRUE
- thrownthing.throw_impact(A, src)
+ thrownthing.throw_impact(obstacle, src)
if(QDELETED(thrownthing)) //throw_impact can delete things, such as glasses smashing
return //deletion should already be handled by on_thrownthing_qdel()
break
@@ -195,15 +210,3 @@ SUBSYSTEM_DEF(throwing)
T.zFall(thrownthing)
qdel(src)
-
-/datum/thrownthing/proc/hit_atom(atom/A)
- finalize(hit=TRUE, target=A)
-
-/datum/thrownthing/proc/hitcheck()
- for (var/thing in get_turf(thrownthing))
- var/atom/movable/AM = thing
- if (AM == thrownthing || (AM == thrower && !ismob(thrownthing)))
- continue
- if (AM.density && !(AM.pass_flags_self & LETPASSTHROW) && !(AM.flags_1 & ON_BORDER_1))
- finalize(hit=TRUE, target=AM)
- return TRUE
diff --git a/code/controllers/subsystem/traumas.dm b/code/controllers/subsystem/traumas.dm
index d60eff11f39..25ae750eb0d 100644
--- a/code/controllers/subsystem/traumas.dm
+++ b/code/controllers/subsystem/traumas.dm
@@ -41,7 +41,7 @@ SUBSYSTEM_DEF(traumas)
"spiders" = typecacheof(list(/mob/living/simple_animal/hostile/poison/giant_spider)),
"security" = typecacheof(list(/mob/living/simple_animal/bot/secbot)),
"lizards" = typecacheof(list(/mob/living/simple_animal/hostile/lizard)),
- "skeletons" = typecacheof(list(/mob/living/simple_animal/hostile/skeleton)),
+ "skeletons" = typecacheof(list(/mob/living/simple_animal/hostile/human/skeleton)),
"snakes" = typecacheof(list(/mob/living/simple_animal/hostile/retaliate/poison/snake)),
"robots" = typecacheof(list(/mob/living/silicon/robot, /mob/living/silicon/ai,
/mob/living/simple_animal/drone, /mob/living/simple_animal/bot, /mob/living/simple_animal/hostile/swarmer)),
@@ -90,10 +90,10 @@ SUBSYSTEM_DEF(traumas)
/obj/item/clothing/under/rank/command/captain, /obj/item/clothing/under/rank/security/head_of_security,
/obj/item/clothing/under/rank/engineering/chief_engineer, /obj/item/clothing/under/rank/medical/chief_medical_officer,
/obj/item/clothing/under/rank/command/head_of_personnel, /obj/item/clothing/under/rank/rnd/research_director,
- /obj/item/clothing/under/rank/security/head_of_security/alt,//WS Edit - Better security jumpsuit sprites
+ /obj/item/clothing/under/rank/security/head_of_security/alt,
/obj/item/clothing/under/rank/rnd/research_director/alt, /obj/item/clothing/under/rank/rnd/research_director/turtleneck,
/obj/item/clothing/under/rank/security/head_of_security/parade,
- /obj/item/clothing/under/rank/security/head_of_security/parade/female, //WS Edit - Better Command Uniforms
+ /obj/item/clothing/under/rank/security/head_of_security/parade/female,
/obj/item/clothing/head/helmet/abductor, /obj/item/clothing/suit/armor/abductor/vest, /obj/item/melee/baton/abductor,
/obj/item/storage/belt/military/abductor, /obj/item/gun/energy/alien, /obj/item/abductor/silencer,
/obj/item/abductor/gizmo, /obj/item/clothing/under/rank/centcom/official,
@@ -128,11 +128,10 @@ SUBSYSTEM_DEF(traumas)
/obj/item/melee/cultblade, /obj/item/cult_bastard,
/obj/item/restraints/legcuffs/bola/cult, /obj/item/clothing/suit/space/hardsuit/cult,
/obj/item/clothing/suit/hooded/cultrobes, /obj/item/clothing/head/hooded/cult_hoodie, /obj/effect/rune,
- /obj/item/stack/sheet/runed_metal, /obj/machinery/door/airlock/cult, /obj/singularity/narsie,
+ /obj/machinery/door/airlock/cult, /obj/singularity/narsie,
/obj/item/soulstone,
/obj/item/clothing/suit/wizrobe, /obj/item/clothing/head/wizard, /obj/item/spellbook, /obj/item/staff,
/obj/item/clothing/suit/space/hardsuit/shielded/wizard, /obj/item/clothing/suit/space/hardsuit/wizard,
- /obj/item/gun/magic/staff, /obj/item/gun/magic/wand,
/obj/item/nullrod, /obj/item/clothing/under/rank/civilian/chaplain)),
"aliens" = typecacheof(list(
@@ -149,8 +148,7 @@ SUBSYSTEM_DEF(traumas)
"birds" = typecacheof(list(
/obj/item/clothing/mask/gas/plaguedoctor, /obj/item/reagent_containers/food/snacks/cracker,
/obj/item/clothing/suit/chickensuit, /obj/item/clothing/head/chicken,
- /obj/item/clothing/suit/toggle/owlwings, /obj/item/clothing/under/costume/owl, /obj/item/clothing/mask/gas/owl_mask,
- /obj/item/clothing/head/helmet/space/freedom, /obj/item/clothing/suit/space/freedom)),
+ /obj/item/clothing/suit/toggle/owlwings, /obj/item/clothing/under/costume/owl, /obj/item/clothing/mask/gas/owl_mask)),
"anime" = typecacheof(list(
/obj/item/clothing/under/costume/schoolgirl, /obj/item/katana, /obj/item/reagent_containers/food/snacks/sashimi,
diff --git a/code/datums/action.dm b/code/datums/action.dm
index ff03b689085..de13fc002dd 100644
--- a/code/datums/action.dm
+++ b/code/datums/action.dm
@@ -207,6 +207,7 @@
/datum/action/item_action/toggle_firemode
name = "Toggle Firemode"
+ icon_icon = 'icons/mob/actions/actions_items.dmi'
/datum/action/item_action/rcl_col
name = "Change Cable Color"
diff --git a/code/datums/components/bandage.dm b/code/datums/components/bandage.dm
new file mode 100644
index 00000000000..16f6a2f0b05
--- /dev/null
+++ b/code/datums/components/bandage.dm
@@ -0,0 +1,60 @@
+#define TREATMENT_DAMAGE_MOD 2
+
+/datum/component/bandage
+ /// How fast do we stop bleeding?
+ var/bleed_reduction = 0
+ /// How many healing ticks will this bandage apply? Reduced by incoming damage and current bleeding
+ var/lifespan = 300
+ var/bandage_name = "gauze"
+ /// The person this bandage is applied to
+ var/mob/living/mummy
+
+/datum/component/bandage/Initialize(_bleed_reduction, _lifespan, _bandage_name)
+ if(!istype(parent, /obj/item/bodypart))
+ return COMPONENT_INCOMPATIBLE
+ var/obj/item/bodypart/BP = parent
+ mummy = BP.owner
+ if(!mummy)
+ return COMPONENT_INCOMPATIBLE
+ if(_bleed_reduction)
+ bleed_reduction = _bleed_reduction
+ if(_lifespan)
+ lifespan = _lifespan
+ if(_bandage_name)
+ bandage_name = _bandage_name
+ RegisterSignal(mummy, COMSIG_MOB_APPLY_DAMGE, PROC_REF(check_damage))
+ RegisterSignal(mummy, COMSIG_MOB_LIFE, PROC_REF(bandage_effects))
+ RegisterSignal(parent, COMSIG_LIVING_DROP_LIMB, PROC_REF(drop_bandage))
+
+/// Checks if damage to the owner is applied to this limb and reduces lifespan (perforated bandages dont work as well)
+/datum/component/bandage/proc/check_damage(attacker, damage, damagetype = BRUTE, def_zone = null)
+ SIGNAL_HANDLER
+
+ if(parent != mummy.get_bodypart(check_zone(def_zone)))
+ return
+ lifespan -= damage / 100 * initial(lifespan) * TREATMENT_DAMAGE_MOD //take incoming damage as a % of durability
+ if(lifespan <= 0)
+ drop_bandage()
+
+/// Handles healing effects and passive lifespan usage
+/datum/component/bandage/proc/bandage_effects()
+ SIGNAL_HANDLER
+
+ var/obj/item/bodypart/heal_target = parent
+ lifespan -= 1 + heal_target.bleeding // particularly nasty bleeding can burn through dressing faster
+ heal_target.adjust_bleeding(-bleed_reduction)
+ if(lifespan <= 0 || !heal_target.bleeding) //remove treatment once it's no longer able to treat
+ drop_bandage(TRUE)
+
+/// Handles deleting the component when the bandage runs out of lifespan or finishes healing. Special = bandage didn't get torn off
+/datum/component/bandage/proc/drop_bandage(special = FALSE)
+ SIGNAL_HANDLER
+
+ var/obj/item/bodypart/BP = parent
+ if(special)
+ to_chat(mummy, span_notice("The [bandage_name] on your [parse_zone(BP.body_zone)] has [BP.bleeding ? "done what it can" : "stopped the bleeding"]."))
+ else
+ to_chat(mummy, span_warning("The [bandage_name] on your [parse_zone(BP.body_zone)] is damaged beyond use!"))
+ qdel(src)
+
+#undef TREATMENT_DAMAGE_MOD
diff --git a/code/datums/components/butchering.dm b/code/datums/components/butchering.dm
index 6923760a770..3032a98dc85 100644
--- a/code/datums/components/butchering.dm
+++ b/code/datums/components/butchering.dm
@@ -51,10 +51,14 @@
/datum/component/butchering/proc/startButcher(obj/item/source, mob/living/M, mob/living/user)
to_chat(user, "You begin to butcher [M]...")
playsound(M.loc, butcher_sound, 50, TRUE, -1)
- if(do_mob(user, M, speed) && M.Adjacent(source))
+ if(do_after(user, speed, M) && M.Adjacent(source))
Butcher(user, M)
/datum/component/butchering/proc/startNeckSlice(obj/item/source, mob/living/carbon/human/H, mob/living/user)
+ if(DOING_INTERACTION_WITH_TARGET(user, H))
+ to_chat(user, "You're already interacting with [H]!")
+ return
+
user.visible_message("[user] is slitting [H]'s throat!", \
"You start slicing [H]'s throat!", \
"You hear a cutting noise!", ignored_mobs = H)
@@ -63,17 +67,23 @@
log_combat(user, H, "starts slicing the throat of")
playsound(H.loc, butcher_sound, 50, TRUE, -1)
- if(do_mob(user, H, clamp(500 / source.force, 30, 100)) && H.Adjacent(source))
+ if(do_after(user, clamp(500 / source.force, 30, 100), H) && H.Adjacent(source))
if(H.has_status_effect(/datum/status_effect/neck_slice))
user.show_message("[H]'s neck has already been already cut, you can't make the bleeding any worse!", MSG_VISUAL, \
"Their neck has already been already cut, you can't make the bleeding any worse!")
return
+ var/obj/item/bodypart/throat_in_question = H.get_bodypart(BODY_ZONE_HEAD)
+ if(!throat_in_question)
+ user.show_message("[H]... doesn't have a neck.", MSG_VISUAL, \
+ "They don't seem to have a neck to cut.")
+ return
+
H.visible_message("[user] slits [H]'s throat!", \
"[user] slits your throat...")
log_combat(user, H, "finishes slicing the throat of")
H.apply_damage(source.force, BRUTE, BODY_ZONE_HEAD)
- H.bleed_rate = clamp(H.bleed_rate + 20, 0, 30)
+ throat_in_question.adjust_bleeding(20)
H.apply_status_effect(/datum/status_effect/neck_slice)
/datum/component/butchering/proc/Butcher(mob/living/butcher, mob/living/meat)
diff --git a/code/datums/components/crafting/recipes.dm b/code/datums/components/crafting/recipes.dm
index 9ec90bf09ea..95bbae56a90 100644
--- a/code/datums/components/crafting/recipes.dm
+++ b/code/datums/components/crafting/recipes.dm
@@ -16,6 +16,7 @@
if(!(result in reqs))
blacklist += result
+
/**
* Run custom pre-craft checks for this recipe
*
@@ -24,1112 +25,3 @@
*/
/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
-
-/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
-
-/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/strobeshield/New()
- ..()
- blacklist |= subtypesof(/obj/item/shield/riot/)
-
-/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
-
-/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
-
-/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
-
-/datum/crafting_recipe/bola
- name = "Bola"
- result = /obj/item/restraints/legcuffs/bola
- reqs = list(/obj/item/restraints/handcuffs/cable = 1,
- /obj/item/stack/sheet/metal = 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/metal = 6,
- /obj/item/stack/sheet/animalhide/gondola = 1)
- time = 40
- category= CAT_WEAPONRY
- subcategory = CAT_WEAPON
-
-/datum/crafting_recipe/ed209
- name = "ED209"
- result = /mob/living/simple_animal/bot/secbot/ed209
- reqs = list(/obj/item/robot_suit = 1,
- /obj/item/clothing/head/helmet = 1,
- /obj/item/clothing/suit/armor/vest = 1,
- /obj/item/bodypart/leg/left/robot = 1,
- /obj/item/bodypart/leg/right/robot = 1,
- /obj/item/stack/sheet/metal = 1,
- /obj/item/stack/cable_coil = 1,
- /obj/item/gun/energy/disabler = 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/floorbot
- name = "Floorbot"
- result = /mob/living/simple_animal/bot/floorbot
- reqs = list(/obj/item/storage/toolbox = 1,
- /obj/item/stack/tile/plasteel = 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/hardhat/red = 1)
- time = 40
- category = CAT_ROBOT
-
-/datum/crafting_recipe/Vibebot
- name = "Vibebot"
- result = /mob/living/simple_animal/bot/vibebot
- reqs = list(/obj/item/light/bulb = 2,
- /obj/item/bodypart/head/robot = 1,
- /obj/item/assembly/prox_sensor = 1,
- /obj/item/toy/crayon = 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/metal = 4,
- /obj/item/stack/packageWrap = 8,
- /obj/item/pipe = 2)
- time = 50
- category = CAT_WEAPONRY
- subcategory = CAT_WEAPON
-
-/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
-
-/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
-
-/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
-
-/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
-
-/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
-
-/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
-
-/datum/crafting_recipe/improvisedslug
- name = "Improvised Shotgun Shell"
- result = /obj/item/ammo_casing/shotgun/improvised
- reqs = list(/obj/item/stack/sheet/metal = 2,
- /obj/item/stack/cable_coil = 1,
- /datum/reagent/fuel = 10)
- tools = list(TOOL_SCREWDRIVER)
- time = 12
- category = CAT_WEAPONRY
- subcategory = CAT_AMMO
-
-/datum/crafting_recipe/laserscatter
- name = "Scatter Laser Shell"
- result = /obj/item/ammo_casing/shotgun/laserscatter
- 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
-
-/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/stack/packageWrap = 5)
- tools = list(TOOL_SCREWDRIVER)
- time = 100
- category = CAT_WEAPONRY
- subcategory = CAT_WEAPON
-
-/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
-
-/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
-
-/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/skateboard
- name = "Skateboard"
- result = /obj/vehicle/ridden/scooter/skateboard
- time = 60
- reqs = list(/obj/item/stack/sheet/metal = 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/metal = 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/metal = 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/metal = 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/mineral/wood = 5, /obj/item/paper = 20)
- category = CAT_MISC
-
-/datum/crafting_recipe/naturalpaper
- name = "Hand-Pressed Paper"
- time = 30
- reqs = list(/datum/reagent/water = 50, /obj/item/stack/sheet/mineral/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/curtain
- name = "Curtains"
- reqs = list(/obj/item/stack/sheet/cotton/cloth = 4, /obj/item/stack/rods = 1)
- result = /obj/structure/curtain/cloth
- category = CAT_MISC
-
-/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_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/chemical_payload
- name = "Chemical Payload (C4)"
- result = /obj/item/bombcore/chemical
- reqs = list(
- /obj/item/stock_parts/matter_bin = 1,
- /obj/item/grenade/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
-
-/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
-
-/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/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/bonenecklace
- name = "Hunter's Necklace"
- result = /obj/item/clothing/accessory/wolftalisman
- time = 35
- reqs = list(/obj/item/stack/sheet/bone = 2,
- /obj/item/stack/sheet/sinew = 3,
- /obj/item/crusher_trophy/wolf_ear = 2,
- /obj/item/crusher_trophy/fang = 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/crusher_trophy/legion_skull = 1,
- /obj/item/stack/sheet/animalhide/goliath_hide = 1)
- category = CAT_PRIMAL
-
-/datum/crafting_recipe/bonestaff
- name = "Legion Staff"
- result = /obj/item/legion_staff
- time = 35
- reqs = list(/obj/item/stack/sheet/bone = 2,
- /obj/item/crusher_trophy/legion_skull = 2,\
- /obj/item/crusher_trophy/dwarf_skull = 1,
- /obj/item/organ/regenerative_core/legion = 1)
- category = CAT_PRIMAL
-
-/datum/crafting_recipe/skilt
- name = "Sinew Kilt"
- result = /obj/item/clothing/accessory/skilt
- time = 20
- reqs = list(/obj/item/stack/sheet/bone = 1,
- /obj/item/stack/sheet/sinew = 2)
- 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)
- 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/mineral/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/bonedagger
- name = "Bone Dagger"
- result = /obj/item/kitchen/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
-
-/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
-
-/datum/crafting_recipe/bonfire
- name = "Bonfire"
- time = 60
- reqs = list(/obj/item/grown/log = 5)
- parts = list(/obj/item/grown/log = 5)
- blacklist = list(/obj/item/grown/log/steel)
- result = /obj/structure/bonfire
- category = CAT_PRIMAL
-
-/datum/crafting_recipe/rake //Category resorting incoming
- name = "Rake"
- time = 30
- reqs = list(/obj/item/stack/sheet/mineral/wood = 5)
- result = /obj/item/cultivator/rake
- category = CAT_PRIMAL
-
-/datum/crafting_recipe/woodbucket
- name = "Wooden Bucket"
- time = 30
- reqs = list(/obj/item/stack/sheet/mineral/wood = 3)
- result = /obj/item/reagent_containers/glass/bucket/wooden
- 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)
- result = /obj/structure/headpike
- category = CAT_PRIMAL
-
-/datum/crafting_recipe/legionpike
- name = "Legion on a Spear"
- time = 55
- reqs = list(/obj/item/spear = 1,
- /obj/item/organ/regenerative_core = 1,
- /obj/item/crusher_trophy/legion_skull = 2)
- result = /obj/structure/legionpike
- category = CAT_PRIMAL
-
-/datum/crafting_recipe/tribal_torch
- name = "Tribal Torch"
- result = /obj/item/candle/tribal_torch
- time = 30
- reqs = list(/obj/item/stack/sheet/mineral/wood = 4)
- category = CAT_PRIMAL
-
-/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
-
-/datum/crafting_recipe/pressureplate
- name = "Pressure Plate"
- result = /obj/item/pressure_plate
- time = 5
- reqs = list(/obj/item/stack/sheet/metal = 1,
- /obj/item/stack/tile/plasteel = 1,
- /obj/item/stack/cable_coil = 2,
- /obj/item/assembly/igniter = 1)
- category = CAT_MISC
-
-
-/datum/crafting_recipe/rcl
- name = "Makeshift Rapid Pipe Cleaner Layer"
- result = /obj/item/rcl/ghetto
- time = 40
- tools = list(TOOL_WELDER, TOOL_SCREWDRIVER, TOOL_WRENCH)
- reqs = list(/obj/item/stack/sheet/metal = 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/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/mineral/wood = 20,
- /obj/item/stack/cable_coil = 10)
- tools = list(TOOL_SCREWDRIVER, TOOL_WRENCH, TOOL_WELDER)
- category = CAT_MISC
-
-/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/reagent_containers/food/snacks/grown/potato = 1,
- /obj/item/stack/cable_coil = 5)
- category = CAT_MISC
-
-/datum/crafting_recipe/aitater/check_requirements(mob/user, list/collected_requirements)
- var/obj/item/aicard/aicard = collected_requirements[/obj/item/aicard][1]
- if(!aicard.AI)
- return TRUE
-
- to_chat(user, "You can't craft an intelliTater with an AI in the card!")
- return FALSE
-
-/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/reagent_containers/food/snacks/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 = 2, /obj/item/extinguisher = 1, /obj/item/pipe = 3, /obj/item/stack/cable_coil = MAXCOIL)
- 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/rib
- name = "Collosal Rib"
- always_availible = FALSE
- reqs = list(
- /obj/item/stack/sheet/bone = 10,
- /datum/reagent/fuel/oil = 5)
- result = /obj/structure/statue/bone/rib
- subcategory = CAT_PRIMAL
-
-/datum/crafting_recipe/skull
- name = "Skull Carving"
- always_availible = FALSE
- reqs = list(
- /obj/item/stack/sheet/bone = 6,
- /datum/reagent/fuel/oil = 5)
- result = /obj/structure/statue/bone/skull
- category = CAT_PRIMAL
-
-/datum/crafting_recipe/halfskull
- name = "Cracked Skull Carving"
- always_availible = FALSE
- reqs = list(
- /obj/item/stack/sheet/bone = 3,
- /datum/reagent/fuel/oil = 5)
- result = /obj/structure/statue/bone/skull/half
- category = CAT_PRIMAL
-
-/datum/crafting_recipe/boneshovel
- name = "Serrated Bone Shovel"
- always_availible = FALSE
- reqs = list(
- /obj/item/stack/sheet/bone = 4,
- /datum/reagent/fuel/oil = 5,
- /obj/item/shovel/spade = 1)
- result = /obj/item/shovel/serrated
- category = CAT_PRIMAL
-
-/datum/crafting_recipe/lasso
- name = "Bone Lasso"
- reqs = list(
- /obj/item/stack/sheet/bone = 1,
- /obj/item/stack/sheet/sinew = 5)
- result = /obj/item/key/lasso
- category = CAT_PRIMAL
-
-/datum/crafting_recipe/gripperoffbrand
- name = "Improvised Gripper Gloves"
- reqs = list(
- /obj/item/clothing/gloves/fingerless = 1,
- /obj/item/stack/tape = 1)
- result = /obj/item/clothing/gloves/tackler/offbrand
- category = CAT_CLOTHING
-
-/*WS edit - Normal BoH
-/datum/crafting_recipe/boh
- name = "Bag of Holding"
- reqs = list(
- /obj/item/bag_of_holding_inert = 1,
- /obj/item/assembly/signaler/anomaly/bluespace = 1)
- result = /obj/item/storage/backpack/holding
- category = CAT_CLOTHING
-*/
-
-/datum/crafting_recipe/ipickaxe
- name = "Improvised Pickaxe"
- reqs = list(
- /obj/item/crowbar = 1,
- /obj/item/kitchen/knife = 1,
- /obj/item/stack/tape = 1)
- result = /obj/item/pickaxe/improvised
- category = CAT_MISC
-
-/datum/crafting_recipe/chem_scanner
- name = "Reagent Scanner"
- time = 30
- tools = list(TOOL_WIRECUTTER, TOOL_SCREWDRIVER)
- reqs = list(
- /obj/item/healthanalyzer = 1,
- /obj/item/stack/cable_coil = 5,
- /obj/item/stock_parts/scanning_module = 1)
- result = /obj/item/reagent_scanner
- category = CAT_MISC
-
-/datum/crafting_recipe/filter
- name = "Seperatory Funnel"
- time = 40
- tools = list(TOOL_WELDER, TOOL_WIRECUTTER)
- reqs = list(
- /obj/item/stack/cable_coil = 1,
- /obj/item/reagent_containers/glass/beaker = 3)
- result = /obj/item/reagent_containers/glass/filter
- category = CAT_MISC
-
-/datum/crafting_recipe/dragonspear
- name = "Dragonslayer's Spear"
- result = /obj/item/spear/dragonspear
- time = 45
- reqs = list(/obj/item/crusher_trophy/ash_spike = 1,
- /obj/item/crusher_trophy/tail_spike = 2,
- /obj/item/stack/sheet/bone = 5,
- /obj/item/stack/sheet/sinew = 3)
- category = CAT_PRIMAL
-
-/datum/crafting_recipe/splint
- name = "Makeshift Splint"
- reqs = list(
- /obj/item/stack/rods = 2,
- /obj/item/stack/sheet/cotton/cloth = 4)
- result = /obj/item/stack/medical/splint/ghetto
- category = CAT_MISC
-
-/datum/crafting_recipe/cwzippo
- name = "Clockwork Zippo"
- reqs = list(
- /obj/item/lighter = 1,
- /obj/item/stack/tile/bronze = 5)
- result = /obj/item/lighter/clockwork
- category = CAT_MISC
-
-/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 = 10)
- time = 450
- category = CAT_WEAPONRY
- subcategory = CAT_WEAPON
-
-/datum/crafting_recipe/arrow
- name = "Arrow"
- result = /obj/item/ammo_casing/caseless/arrow/wood
- time = 30
- reqs = list(/obj/item/stack/sheet/mineral/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 = "Fire hardened 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/mineral/wood = 1,
- /obj/item/stack/tile/bronze = 1,
- /obj/item/stack/sheet/silk = 1)
- category = CAT_WEAPONRY
- subcategory = CAT_AMMO
-
-/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/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
-
-/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/bag/quiver/empty
- 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/boneclub
- name = "Bone Club"
- result = /obj/item/melee/baseball_bat/bone
- time = 40
- reqs = list(/obj/item/stack/sheet/bone = 6)
- category = CAT_PRIMAL
-/datum/crafting_recipe/polarbearcloak
- name = "Polar Cloak"
- result = /obj/item/clothing/suit/hooded/cloak/goliath/polar
- time = 50
- reqs = list(/obj/item/stack/sheet/leather = 2,
- /obj/item/stack/sheet/sinew = 2,
- /obj/item/stack/sheet/animalhide/goliath_hide/polar_bear_hide = 2)
- blacklist = list(/obj/item/stack/sheet/animalhide/goliath_hide)
- category = CAT_PRIMAL
-/datum/crafting_recipe/portableseedextractor
- name = "Portable seed extractor"
- reqs = list(
- /obj/item/storage/bag/plants = 1,
- /obj/item/plant_analyzer = 1,
- /obj/item/stock_parts/manipulator = 1,
- /obj/item/stack/cable_coil = 2)
- result = /obj/item/storage/bag/plants/portaseeder //this will probably mean that you can craft portable seed extractors into themselves, sending the other materials into the void, but we still don't have a solution for recipes involving radios stealing your headset, so this is officially not my problem. "no, Tills-The-Soil, adding more analyzers and micro-manipulators to your portable seed extractor does not make it make more seeds. in fact it does exactly nothing."
- time = 20
- tools = list(TOOL_SCREWDRIVER, TOOL_WIRECUTTER)
- category = CAT_MISC
-
-/datum/crafting_recipe/zip_pistol
- name = "Zip Pistol"
- result = /obj/item/gun/ballistic/automatic/zip_pistol
- reqs = list(/obj/item/stack/rods = 4,
- /obj/item/pipe = 1,
- /obj/item/stack/cable_coil = 15,
- /obj/item/weaponcrafting/receiver = 1,
- /obj/item/floor_painter = 1,
- /obj/item/stack/packageWrap = 10)
- tools = list(TOOL_SCREWDRIVER)
- time = 100
- category = CAT_WEAPONRY
- subcategory = CAT_WEAPON
-
-/datum/crafting_recipe/scrap_armor
- name = "Scrap Armor"
- result = /obj/item/clothing/suit/armor/vest/scrap_armor
- time = 60
- reqs = list(
- /obj/item/stack/sheet/metal = 10,
- /obj/item/stack/cable_coil = 20,
- )
- category = CAT_CLOTHING
-
-/datum/crafting_recipe/umbrellared
- name = "Red Drink Umbrella"
- result = /obj/item/garnish/umbrellared
- time = 1 SECONDS
- tools = list(/obj/item/toy/crayon/spraycan)
- reqs = list(
- /obj/item/paper = 1,
- /obj/item/stack/rods = 1)
- category = CAT_DRINK
-
-/datum/crafting_recipe/umbrellablue
- name = "Blue Drink Umbrella"
- result = /obj/item/garnish/umbrellablue
- time = 1 SECONDS
- tools = list(/obj/item/toy/crayon/spraycan)
- reqs = list(
- /obj/item/paper = 1,
- /obj/item/stack/rods = 1)
- category = CAT_DRINK
-
-/datum/crafting_recipe/umbrellagreen
- name = "Green Drink Umbrella"
- result = /obj/item/garnish/umbrellagreen
- time = 1 SECONDS
- tools = list(/obj/item/toy/crayon/spraycan)
- reqs = list(
- /obj/item/paper = 1,
- /obj/item/stack/rods = 1)
- category = CAT_DRINK
-
-/datum/crafting_recipe/ash_garnish
- name = "Ash Garnish"
- result = /obj/item/garnish/ash
- reqs = list(/datum/reagent/ash = 10)
- time = 5
- category = CAT_DRINK
-
-/datum/crafting_recipe/salt_garnish
- name = "Salt Garnish"
- result = /obj/item/garnish/salt
- reqs = list(/datum/reagent/consumable/sodiumchloride = 10)
- time = 5
- category = CAT_DRINK
-
-/datum/crafting_recipe/crystalamulet
- name = "Crystal Amulet"
- result = /obj/item/clothing/neck/crystal_amulet
- time = 4 SECONDS
- reqs = list(/obj/item/strange_crystal = 3)
- category = CAT_MISC
-
-/datum/crafting_recipe/crystalspear
- name = "Crystal Spear"
- result = /obj/item/spear/crystal
- time = 4 SECONDS
- reqs = list(/obj/item/strange_crystal = 2)
- category = CAT_MISC
-
-/datum/crafting_recipe/freezer
- name = "Freezer"
- result = /obj/structure/closet/crate/freezer
- time = 2 SECONDS
- reqs = list(/datum/reagent/consumable/ice = 25,
- /obj/item/stack/sheet/metal = 2)
- category = CAT_MISC
-
-/datum/crafting_recipe/aquarium
- name = "Aquarium"
- result = /obj/structure/aquarium
- time = 10 SECONDS
- reqs = list(/obj/item/stack/sheet/metal = 15,
- /obj/item/stack/sheet/glass = 10,
- /obj/item/aquarium_kit = 1)
- 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/organ/heart = 1,
- /obj/item/stack/sheet/cotton/cloth = 3)
- category = CAT_MISC
-
-/datum/crafting_recipe/breakawayflask
- name = "Breakaway Flask"
- result = /obj/item/reagent_containers/food/drinks/breakawayflask
- time = 5 SECONDS
- reqs = list(/obj/item/stack/sheet/glass = 5,
- /obj/item/stack/sheet/mineral/plasma = 1)
- tools = list(TOOL_WELDER)
- category = CAT_DRINK
-
-/datum/crafting_recipe/fermenting_barrel
- name = "Wooden Barrel"
- result = /obj/structure/fermenting_barrel
- reqs = list(/obj/item/stack/sheet/mineral/wood = 8)
- time = 50
- category = CAT_PRIMAL
-
-/datum/crafting_recipe/distiller
- name = "Distiller"
- result = /obj/structure/fermenting_barrel/distiller
- reqs = list(/obj/item/stack/sheet/mineral/wood = 8, /obj/item/stack/sheet/metal = 5, /datum/reagent/srm_bacteria = 30)
- time = 50
- category = CAT_PRIMAL
diff --git a/code/datums/components/crafting/tailoring.dm b/code/datums/components/crafting/tailoring.dm
deleted file mode 100644
index 4caaa55ded2..00000000000
--- a/code/datums/components/crafting/tailoring.dm
+++ /dev/null
@@ -1,238 +0,0 @@
-// Please separate them based on categories. Made this easier for all of us, god damn it! #Lianvee
-
-// Durathread
-/datum/crafting_recipe/durathread_vest
- name = "Durathread Vest"
- result = /obj/item/clothing/suit/armor/vest/durathread
- reqs = list(
- /obj/item/stack/sheet/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/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/misc/durathread
- reqs = list(/obj/item/stack/sheet/durathread = 4)
- time = 40
- category = CAT_CLOTHING
-
-/datum/crafting_recipe/durathread_beret
- name = "Durathread Beret"
- result = /obj/item/clothing/head/beret/durathread
- reqs = list(/obj/item/stack/sheet/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/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/durathread = 1)
- time = 25
- category = CAT_CLOTHING
-
-// Belts
-/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
-
-// Eyewear
-/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 = 1,
- /obj/item/stack/cable_coil = 5
- )
- category = CAT_CLOTHING
-
-/datum/crafting_recipe/hudsunsecremoval
- name = "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 = 1)
- category = CAT_CLOTHING
-
-/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 = 1,
- /obj/item/stack/cable_coil = 5
- )
- category = CAT_CLOTHING
-
-/datum/crafting_recipe/hudsunmedremoval
- name = "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 = 1)
- category = CAT_CLOTHING
-
-/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 = 1,
- /obj/item/stack/cable_coil = 5
- )
- category = CAT_CLOTHING
-
-/datum/crafting_recipe/hudsundiagremoval
- name = "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 = 1)
- category = CAT_CLOTHING
-
-/datum/crafting_recipe/sciencesunglasses
- name = "Science Sunglasses"
- result = /obj/item/clothing/glasses/sunglasses/chemical
- 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_CLOTHING
-
-/datum/crafting_recipe/sciencesunglassesremoval
- name = "Science Sunglasses Dissemble"
- result = /obj/item/clothing/glasses/sunglasses
- time = 20
- tools = list(TOOL_SCREWDRIVER, TOOL_WIRECUTTER)
- reqs = list(/obj/item/clothing/glasses/sunglasses/reagent = 1)
- category = CAT_CLOTHING
-
-/datum/crafting_recipe/medhudglasses // The prescription HUD glasses. This long to have them... #Lianvee
- name = "MedicalHUD Prescription Glasses"
- 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_CLOTHING
-
-/datum/crafting_recipe/medhudglassesremoval
- name = "MedicalHUD Prescription Glasses Disassembly"
- result = /obj/item/clothing/glasses/regular
- time = 20
- tools = list(TOOL_SCREWDRIVER, TOOL_WIRECUTTER)
- reqs = list(/obj/item/clothing/glasses/hud/health/prescription = 1)
- category = CAT_CLOTHING
-
-/datum/crafting_recipe/sechudglasses
- name = "SecurityHUD Prescription Glasses"
- 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_CLOTHING
-
-/datum/crafting_recipe/sechudglassesremoval
- name = "SecurityHUD Prescription Glasses Disassembly"
- result = /obj/item/clothing/glasses/regular
- time = 20
- tools = list(TOOL_SCREWDRIVER, TOOL_WIRECUTTER)
- reqs = list(/obj/item/clothing/glasses/hud/security/prescription = 1)
- category = CAT_CLOTHING
-
-/datum/crafting_recipe/mesonglasses
- name = "Meson Prescription Glasses"
- 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_CLOTHING
-
-/datum/crafting_recipe/mesonglassesremoval
- name = "Meson Prescription Glasses Disassembly"
- result = /obj/item/clothing/glasses/regular
- time = 20
- tools = list(TOOL_SCREWDRIVER, TOOL_WIRECUTTER)
- reqs = list(/obj/item/clothing/glasses/meson/prescription = 1)
- category = CAT_CLOTHING
-
-/datum/crafting_recipe/scienceglasses
- name = "Science Prescription Glasses"
- 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_CLOTHING
-
-/datum/crafting_recipe/scienceglassesremoval
- name = "Science Prescription Glasses Disassembly"
- result = /obj/item/clothing/glasses/regular
- time = 20
- tools = list(TOOL_SCREWDRIVER, TOOL_WIRECUTTER)
- reqs = list(/obj/item/clothing/glasses/science/prescription = 1)
- category = CAT_CLOTHING
-
-// Misc.
-/datum/crafting_recipe/ghostsheet
- name = "Ghost Sheet"
- result = /obj/item/clothing/suit/ghost_sheet
- time = 5
- tools = list(TOOL_WIRECUTTER)
- reqs = list(/obj/item/bedsheet = 1)
- category = CAT_CLOTHING
-
-/datum/crafting_recipe/cowboyboots
- name = "Cowboy Boots"
- result = /obj/item/clothing/shoes/cowboy
- reqs = list(/obj/item/stack/sheet/leather = 2)
- time = 45
- category = CAT_CLOTHING
diff --git a/code/datums/components/edible.dm b/code/datums/components/edible.dm
index 3a047d08286..cf0199d05e1 100644
--- a/code/datums/components/edible.dm
+++ b/code/datums/components/edible.dm
@@ -115,7 +115,7 @@ Behavior that's still missing from this component that original food items had t
. = COMPONENT_ITEM_NO_ATTACK //Point of no return I suppose
if(eater == feeder)//If you're eating it yourself.
- if(!do_mob(feeder, eater, eat_time)) //Gotta pass the minimal eat time
+ if(!do_after(feeder, eat_time, eater)) //Gotta pass the minimal eat time
return
var/eatverb = pick(eatverbs)
if(junkiness && eater.satiety < -150 && eater.nutrition > NUTRITION_LEVEL_STARVING + 50 && !HAS_TRAIT(eater, TRAIT_VORACIOUS))
@@ -143,7 +143,7 @@ Behavior that's still missing from this component that original food items had t
eater.visible_message("[feeder] cannot force any more of [parent] down [eater]'s throat!", \
"[feeder] cannot force any more of [parent] down your throat!")
return
- if(!do_mob(feeder, eater)) //Wait 3 seconds before you can feed
+ if(!do_after(feeder, target = eater)) //Wait 3 seconds before you can feed
return
log_combat(feeder, eater, "fed", owner.reagents.log_list())
diff --git a/code/datums/components/fantasy/suffixes.dm b/code/datums/components/fantasy/suffixes.dm
index ec1ee58735f..8cabee42d21 100644
--- a/code/datums/components/fantasy/suffixes.dm
+++ b/code/datums/components/fantasy/suffixes.dm
@@ -131,11 +131,7 @@
/obj/projectile/bullet/honker = 15,
/obj/projectile/temp = 15,
/obj/projectile/ion = 15,
- /obj/projectile/magic/door = 15,
- /obj/projectile/magic/locker = 15,
- /obj/projectile/magic/fetch = 15,
/obj/projectile/beam/emitter = 15,
- /obj/projectile/magic/flying = 15,
/obj/projectile/energy/net = 15,
/obj/projectile/bullet/incendiary/c9mm = 15,
/obj/projectile/temp/hot = 15,
diff --git a/code/datums/components/forensics.dm b/code/datums/components/forensics.dm
index 3c006073304..6f2a34e50ea 100644
--- a/code/datums/components/forensics.dm
+++ b/code/datums/components/forensics.dm
@@ -192,4 +192,4 @@
return
if(isitem(parent))
var/obj/item/I = parent
- I.AddElement(/datum/element/decal/blood, initial(I.icon) || I.icon, initial(I.icon_state) || I.icon_state, _color = get_blood_dna_color(blood_DNA))
+ I.AddElement(/datum/element/decal/blood, I.icon, I.icon_state, _color = get_blood_dna_color(blood_DNA))
diff --git a/code/datums/components/fullauto.dm b/code/datums/components/fullauto.dm
index 177093a49fe..f3050c7ab76 100644
--- a/code/datums/components/fullauto.dm
+++ b/code/datums/components/fullauto.dm
@@ -8,7 +8,7 @@
var/turf/target_loc //For dealing with locking on targets due to BYOND engine limitations (the mouse input only happening when mouse moves).
var/autofire_stat = AUTOFIRE_STAT_IDLE
var/mouse_parameters
- var/autofire_shot_delay = 0.3 SECONDS //Time between individual shots.
+ var/autofire_shot_delay = 0.1 SECONDS //Time between individual shots.
var/mouse_status = AUTOFIRE_MOUSEUP //This seems hacky but there can be two MouseDown() without a MouseUp() in between if the user holds click and uses alt+tab, printscreen or similar.
var/enabled = TRUE
@@ -22,6 +22,7 @@
RegisterSignal(parent, COMSIG_ITEM_EQUIPPED, PROC_REF(wake_up))
RegisterSignal(parent, COMSIG_GUN_DISABLE_AUTOFIRE, PROC_REF(disable_autofire))
RegisterSignal(parent, COMSIG_GUN_ENABLE_AUTOFIRE, PROC_REF(enable_autofire))
+ RegisterSignal(parent, COMSIG_GUN_SET_AUTOFIRE_SPEED, PROC_REF(set_autofire_speed))
if(_autofire_shot_delay)
autofire_shot_delay = _autofire_shot_delay
if(autofire_stat == AUTOFIRE_STAT_IDLE && ismob(gun.loc))
@@ -161,7 +162,7 @@
if(isgun(parent))
var/obj/item/gun/shoota = parent
- if(!shoota.on_autofire_start(shooter)) //This is needed because the minigun has a do_after before firing and signals are async.
+ if(!shoota.on_autofire_start(shooter=shooter)) //This is needed because the minigun has a do_after before firing and signals are async.
stop_autofiring()
return
if(autofire_stat != AUTOFIRE_STAT_FIRING)
@@ -242,12 +243,12 @@
// Gun procs.
-/obj/item/gun/proc/on_autofire_start(mob/living/shooter)
- if(semicd || shooter.stat || !can_trigger_gun(shooter))
- return FALSE
- if(!can_shoot())
- shoot_with_empty_chamber(shooter)
+/obj/item/gun/proc/on_autofire_start(datum/source, atom/target, mob/living/shooter, params)
+ if(current_cooldown || shooter.stat)
return FALSE
+ if(!can_shoot()) //we call pre_fire so bolts/slides work correctly
+ INVOKE_ASYNC(src, PROC_REF(do_autofire_shot), source, target, shooter, params)
+ return NONE
if(weapon_weight == WEAPON_HEAVY && (!wielded))
to_chat(shooter, "You need a more secure grip to fire [src]!")
return FALSE
@@ -262,32 +263,29 @@
/obj/item/gun/proc/do_autofire(datum/source, atom/target, mob/living/shooter, params)
SIGNAL_HANDLER
- if(semicd || shooter.incapacitated())
+ if(current_cooldown || shooter.incapacitated())
return NONE
if(weapon_weight == WEAPON_HEAVY && (!wielded))
to_chat(shooter, "You need a more secure grip to fire [src]!")
return NONE
- if(!can_shoot())
- shoot_with_empty_chamber(shooter)
+ if(!can_shoot()) //we stop if we cant shoot but also calling pre_fire so the bolt works correctly if it's a weird open bolt weapon.
+ INVOKE_ASYNC(src, PROC_REF(do_autofire_shot), source, target, shooter, params)
return NONE
INVOKE_ASYNC(src, PROC_REF(do_autofire_shot), source, target, shooter, params)
return COMPONENT_AUTOFIRE_SHOT_SUCCESS //All is well, we can continue shooting.
/obj/item/gun/proc/do_autofire_shot(datum/source, atom/target, mob/living/shooter, params)
- var/obj/item/gun/akimbo_gun = shooter.get_inactive_held_item()
- var/bonus_spread = 0
- if(istype(akimbo_gun) && weapon_weight < WEAPON_MEDIUM)
- if(akimbo_gun.weapon_weight < WEAPON_MEDIUM && akimbo_gun.can_trigger_gun(shooter))
- bonus_spread = dual_wield_spread
- addtimer(CALLBACK(akimbo_gun, TYPE_PROC_REF(/obj/item/gun, process_fire), target, shooter, TRUE, params, null, bonus_spread), 1)
- process_fire(target, shooter, TRUE, params, null, bonus_spread)
-
-/datum/component/automatic_fire/proc/disable_autofire()
+ pre_fire(target, shooter, TRUE, params, null) //dual wielding is handled here
+
+/datum/component/automatic_fire/proc/disable_autofire(datum/source)
enabled = FALSE
-/datum/component/automatic_fire/proc/enable_autofire()
+/datum/component/automatic_fire/proc/enable_autofire(datum/source)
enabled = TRUE
+/datum/component/automatic_fire/proc/set_autofire_speed(datum/source, newspeed)
+ autofire_shot_delay = newspeed
+
#undef AUTOFIRE_MOUSEUP
#undef AUTOFIRE_MOUSEDOWN
diff --git a/code/datums/components/gunpoint.dm b/code/datums/components/gunpoint.dm
index 0aa1a5a1e8c..85701e9c762 100644
--- a/code/datums/components/gunpoint.dm
+++ b/code/datums/components/gunpoint.dm
@@ -126,7 +126,7 @@
if(weapon.chambered && weapon.chambered.BB)
weapon.chambered.BB.damage *= damage_mult
- weapon.process_fire(target, shooter)
+ weapon.pre_fire(target, shooter)
qdel(src)
/datum/component/gunpoint/proc/cancel()
diff --git a/code/datums/components/remote_materials.dm b/code/datums/components/remote_materials.dm
index de61c13ae29..2f3aa79749b 100644
--- a/code/datums/components/remote_materials.dm
+++ b/code/datums/components/remote_materials.dm
@@ -52,7 +52,7 @@ handles linking back and forth.
/datum/material/diamond,
/datum/material/plasma,
/datum/material/uranium,
- /datum/material/bananium,
+ /datum/material/hellstone,
/datum/material/titanium,
/datum/material/bluespace,
/datum/material/plastic,
diff --git a/code/datums/components/storage/concrete/_concrete.dm b/code/datums/components/storage/concrete/_concrete.dm
index c0a9bd16220..160b72fa956 100644
--- a/code/datums/components/storage/concrete/_concrete.dm
+++ b/code/datums/components/storage/concrete/_concrete.dm
@@ -57,7 +57,7 @@
_contents_limbo = null
if(_user_limbo)
for(var/i in _user_limbo)
- show_to(i)
+ ui_show(i)
_user_limbo = null
/datum/component/storage/concrete/_insert_physical_item(obj/item/I, override = FALSE)
diff --git a/code/datums/components/storage/concrete/pockets.dm b/code/datums/components/storage/concrete/pockets.dm
index bd0a59f85f4..ce224d44e4e 100644
--- a/code/datums/components/storage/concrete/pockets.dm
+++ b/code/datums/components/storage/concrete/pockets.dm
@@ -83,10 +83,16 @@
/datum/component/storage/concrete/pockets/helmet/Initialize()
. = ..()
set_holdable(list(
- /obj/item/reagent_containers/food/drinks/bottle/vodka,
- /obj/item/reagent_containers/food/drinks/bottle/molotov,
- /obj/item/reagent_containers/food/drinks/drinkingglass,
- /obj/item/ammo_box/magazine/illestren_a850r
+ /obj/item/clothing/glasses/cold,
+ /obj/item/clothing/glasses/heat,
+ /obj/item/clothing/glasses/welding,
+ /obj/item/clothing/glasses/thermal,
+ /obj/item/clothing/glasses/night,
+ /obj/item/clothing/glasses/hud/health/night,
+ /obj/item/clothing/glasses/hud/security/night,
+ /obj/item/clothing/glasses/hud/security/sunglasses/inteq,
+ /obj/item/ammo_casing,
+ /obj/item/ammo_box/magazine/illestren_a850r,
))
/datum/component/storage/concrete/pockets/holster
diff --git a/code/datums/components/storage/concrete/rped.dm b/code/datums/components/storage/concrete/rped.dm
index 455eb985f09..58a520d3a7b 100644
--- a/code/datums/components/storage/concrete/rped.dm
+++ b/code/datums/components/storage/concrete/rped.dm
@@ -6,6 +6,7 @@
max_w_class = WEIGHT_CLASS_NORMAL
max_combined_w_class = 100
max_items = 50
+ storage_flags = STORAGE_FLAGS_LEGACY_DEFAULT
display_numerical_stacking = TRUE
/datum/component/storage/concrete/rped/can_be_inserted(obj/item/I, stop_messages, mob/M)
diff --git a/code/datums/components/storage/concrete/stack.dm b/code/datums/components/storage/concrete/stack.dm
index 319d1d4b3d4..19ea4fa5858 100644
--- a/code/datums/components/storage/concrete/stack.dm
+++ b/code/datums/components/storage/concrete/stack.dm
@@ -1,6 +1,7 @@
//Stack-only storage.
/datum/component/storage/concrete/stack
display_numerical_stacking = TRUE
+ storage_flags = STORAGE_FLAGS_LEGACY_DEFAULT
var/max_combined_stack_amount = 300
max_w_class = WEIGHT_CLASS_NORMAL
max_combined_w_class = WEIGHT_CLASS_NORMAL * 14
diff --git a/code/datums/components/storage/storage.dm b/code/datums/components/storage/storage.dm
index bb79bbd282f..5724d4327be 100644
--- a/code/datums/components/storage/storage.dm
+++ b/code/datums/components/storage/storage.dm
@@ -26,9 +26,16 @@
var/locked = FALSE //when locked nothing can see inside or use it.
var/locked_flavor = "locked" //prevents tochat messages related to locked from sending
- var/max_w_class = WEIGHT_CLASS_SMALL //max size of objects that will fit.
- var/max_combined_w_class = 14 //max combined sizes of objects that will fit.
- var/max_items = 7 //max number of objects that will fit.
+ /// Storage flags, including what kinds of limiters we use for how many items we can hold
+ var/storage_flags = STORAGE_FLAGS_LEGACY_DEFAULT
+ /// Max w_class we can hold. Applies to [STORAGE_LIMIT_COMBINED_W_CLASS] and [STORAGE_LIMIT_VOLUME]
+ var/max_w_class = WEIGHT_CLASS_SMALL
+ /// Max combined w_class. Applies to [STORAGE_LIMIT_COMBINED_W_CLASS]
+ var/max_combined_w_class = WEIGHT_CLASS_SMALL * 7
+ /// Max items we can hold. Applies to [STORAGE_LIMIT_MAX_ITEMS]
+ var/max_items = 7
+ /// Max volume we can hold. Applies to [STORAGE_LIMIT_VOLUME]. Auto scaled on New() if unset.
+ var/max_volume
var/emp_shielded = FALSE
@@ -44,8 +51,8 @@
var/display_numerical_stacking = FALSE //stack things of the same type and show as a single object with a number.
- var/atom/movable/screen/storage/boxes //storage display object
- var/atom/movable/screen/close/closer //close button object
+ /// Ui objects by person. mob = list(objects)
+ var/list/ui_by_mob = list()
var/allow_big_nesting = FALSE //allow storage objects of the same or greater size.
@@ -58,19 +65,20 @@
var/screen_max_columns = 7 //These two determine maximum screen sizes.
var/screen_max_rows = INFINITY
var/screen_pixel_x = 16 //These two are pixel values for screen loc of boxes and closer
- var/screen_pixel_y = 16
+ var/screen_pixel_y = 25
var/screen_start_x = 4 //These two are where the storage starts being rendered, screen_loc wise.
var/screen_start_y = 2
//End
+ var/limited_random_access = FALSE //Quick if statement in accessible_items to determine if we care at all about what people can access at once.
+ var/limited_random_access_stack_position = 0 //If >0, can only access top items
+ var/limited_random_access_stack_bottom_up = FALSE
+
/datum/component/storage/Initialize(datum/component/storage/concrete/master)
if(!isatom(parent))
return COMPONENT_INCOMPATIBLE
if(master)
change_master(master)
- boxes = new(null, src)
- closer = new(null, src)
- orient2hud()
RegisterSignal(parent, COMSIG_CONTAINS_STORAGE, PROC_REF(on_check))
RegisterSignal(parent, COMSIG_IS_STORAGE_LOCKED, PROC_REF(check_locked))
@@ -113,11 +121,16 @@
/datum/component/storage/Destroy()
close_all()
- QDEL_NULL(boxes)
- QDEL_NULL(closer)
+ wipe_ui_objects()
LAZYCLEARLIST(is_using)
return ..()
+/datum/component/storage/proc/wipe_ui_objects()
+ for(var/i in ui_by_mob)
+ var/list/objects = ui_by_mob[i]
+ QDEL_LIST(objects)
+ ui_by_mob.Cut()
+
/datum/component/storage/PreTransfer()
update_actions()
@@ -171,6 +184,19 @@
var/datum/component/storage/concrete/master = master()
return master? master.real_location() : null
+//What players can access
+//this proc can probably eat a refactor at some point.
+/datum/component/storage/proc/accessible_items(random_access = TRUE)
+ var/list/contents = contents()
+ if(contents)
+ if(limited_random_access && random_access)
+ if(limited_random_access_stack_position && (length(contents) > limited_random_access_stack_position))
+ if(limited_random_access_stack_bottom_up)
+ contents.Cut(1, limited_random_access_stack_position + 1)
+ else
+ contents.Cut(1, length(contents) - limited_random_access_stack_position + 1)
+ return contents
+
/datum/component/storage/proc/canreach_react(datum/source, list/next)
SIGNAL_HANDLER
@@ -189,7 +215,7 @@
var/atom/A = parent
for(var/mob/living/L in can_see_contents())
if(!L.CanReach(A))
- hide_from(L)
+ ui_hide(L)
/datum/component/storage/proc/attack_self(datum/source, mob/M)
SIGNAL_HANDLER
@@ -290,7 +316,7 @@
var/turf/T = get_turf(A)
var/list/things = contents()
var/datum/progressbar/progress = new(M, length(things), T)
- while (do_after(M, 10, TRUE, T, FALSE, CALLBACK(src, PROC_REF(mass_remove_from_storage), T, things, progress)))
+ while (do_after(M, 1 SECONDS, T, NONE, FALSE, CALLBACK(src, PROC_REF(mass_remove_from_storage), T, things, progress)))
stoplag(1)
progress.end_progress()
@@ -315,7 +341,7 @@
if(!_target)
_target = get_turf(parent)
if(usr)
- hide_from(usr)
+ ui_hide(usr)
var/list/contents = contents()
var/atom/real_location = real_location()
for(var/obj/item/I in contents)
@@ -331,109 +357,12 @@
if(locked)
close_all()
-/datum/component/storage/proc/_process_numerical_display()
- . = list()
- var/atom/real_location = real_location()
- for(var/obj/item/I in real_location.contents)
- if(QDELETED(I))
- continue
- if(!.["[I.type]-[I.name]"])
- .["[I.type]-[I.name]"] = new /datum/numbered_display(I, 1)
- else
- var/datum/numbered_display/ND = .["[I.type]-[I.name]"]
- ND.number++
-
-//This proc determines the size of the inventory to be displayed. Please touch it only if you know what you're doing.
-/datum/component/storage/proc/orient2hud()
- var/atom/real_location = real_location()
- var/adjusted_contents = real_location.contents.len
-
- //Numbered contents display
- var/list/datum/numbered_display/numbered_contents
- if(display_numerical_stacking)
- numbered_contents = _process_numerical_display()
- adjusted_contents = numbered_contents.len
-
- var/columns = clamp(max_items, 1, screen_max_columns)
- var/rows = clamp(CEILING(adjusted_contents / columns, 1), 1, screen_max_rows)
- standard_orient_objs(rows, columns, numbered_contents)
-
-//This proc draws out the inventory and places the items on it. It uses the standard position.
-/datum/component/storage/proc/standard_orient_objs(rows, cols, list/obj/item/numerical_display_contents)
- boxes.screen_loc = "[screen_start_x]:[screen_pixel_x],[screen_start_y]:[screen_pixel_y] to [screen_start_x+cols-1]:[screen_pixel_x],[screen_start_y+rows-1]:[screen_pixel_y]"
- var/cx = screen_start_x
- var/cy = screen_start_y
- if(islist(numerical_display_contents))
- for(var/type in numerical_display_contents)
- var/datum/numbered_display/ND = numerical_display_contents[type]
- ND.sample_object.mouse_opacity = MOUSE_OPACITY_OPAQUE
- ND.sample_object.screen_loc = "[cx]:[screen_pixel_x],[cy]:[screen_pixel_y]"
- ND.sample_object.maptext = "[(ND.number > 1)? "[ND.number]" : ""]"
- ND.sample_object.layer = ABOVE_HUD_LAYER
- ND.sample_object.plane = ABOVE_HUD_PLANE
- cx++
- if(cx - screen_start_x >= cols)
- cx = screen_start_x
- cy++
- if(cy - screen_start_y >= rows)
- break
- else
- var/atom/real_location = real_location()
- for(var/obj/O in real_location)
- if(QDELETED(O))
- continue
- O.mouse_opacity = MOUSE_OPACITY_OPAQUE //This is here so storage items that spawn with contents correctly have the "click around item to equip"
- O.screen_loc = "[cx]:[screen_pixel_x],[cy]:[screen_pixel_y]"
- O.maptext = ""
- O.layer = ABOVE_HUD_LAYER
- O.plane = ABOVE_HUD_PLANE
- cx++
- if(cx - screen_start_x >= cols)
- cx = screen_start_x
- cy++
- if(cy - screen_start_y >= rows)
- break
- closer.screen_loc = "[screen_start_x + cols]:[screen_pixel_x],[screen_start_y]:[screen_pixel_y]"
-
-/datum/component/storage/proc/show_to(mob/M)
- if(!M.client)
- return FALSE
- var/atom/real_location = real_location()
- if(M.active_storage != src && (M.stat == CONSCIOUS))
- for(var/obj/item/I in real_location)
- if(I.on_found(M))
- return FALSE
- if(M.active_storage)
- M.active_storage.hide_from(M)
- orient2hud()
- M.client.screen |= boxes
- M.client.screen |= closer
- M.client.screen |= real_location.contents
- M.set_active_storage(src)
- LAZYOR(is_using, M)
- RegisterSignal(M, COMSIG_PARENT_QDELETING, PROC_REF(mob_deleted))
- return TRUE
-
/datum/component/storage/proc/mob_deleted(datum/source)
SIGNAL_HANDLER
- hide_from(source)
-
-/datum/component/storage/proc/hide_from(mob/M)
- if(M.active_storage == src)
- M.set_active_storage(null)
- LAZYREMOVE(is_using, M)
-
- UnregisterSignal(M, COMSIG_PARENT_QDELETING)
- if(!M.client)
- return TRUE
- var/atom/real_location = real_location()
- M.client.screen -= boxes
- M.client.screen -= closer
- M.client.screen -= real_location.contents
- return TRUE
+ ui_hide(source)
/datum/component/storage/proc/close(mob/M)
- hide_from(M)
+ ui_hide(M)
/datum/component/storage/proc/close_all()
SIGNAL_HANDLER
@@ -451,25 +380,6 @@
var/datum/component/storage/concrete/master = master()
master.emp_act(source, severity)
-//This proc draws out the inventory and places the items on it. tx and ty are the upper left tile and mx, my are the bottm right.
-//The numbers are calculated from the bottom-left The bottom-left slot being 1,1.
-/datum/component/storage/proc/orient_objs(tx, ty, mx, my)
- var/atom/real_location = real_location()
- var/cx = tx
- var/cy = ty
- boxes.screen_loc = "[tx]:,[ty] to [mx],[my]"
- for(var/obj/O in real_location)
- if(QDELETED(O))
- continue
- O.screen_loc = "[cx],[cy]"
- O.layer = ABOVE_HUD_LAYER
- O.plane = ABOVE_HUD_PLANE
- cx++
- if(cx > mx)
- cx = tx
- cy--
- closer.screen_loc = "[mx+1],[my]"
-
//Resets something that is being removed from storage.
/datum/component/storage/proc/_removal_reset(atom/movable/thing)
if(!istype(thing))
@@ -480,9 +390,7 @@
return master._removal_reset(thing)
/datum/component/storage/proc/_remove_and_refresh(datum/source, atom/movable/thing)
- SIGNAL_HANDLER
-
- _removal_reset(thing)
+ _removal_reset(thing) // THIS NEEDS TO HAPPEN AFTER SO LAYERING DOESN'T BREAK!
refresh_mob_views()
//Call this proc to handle the removal of an item from the storage item. The item will be moved to the new_location target, if that is null it's being deleted
@@ -499,7 +407,7 @@
var/list/seeing = can_see_contents()
for(var/i in seeing)
- show_to(i)
+ ui_show(i)
return TRUE
/datum/component/storage/proc/can_see_contents()
@@ -618,7 +526,7 @@
if(force || M.CanReach(parent, view_only = TRUE))
if(use_sound && !silent)
playsound(A, use_sound, 50, TRUE, -5)
- show_to(M)
+ ui_show(M)
/datum/component/storage/proc/mousedrop_receive(datum/source, atom/movable/O, mob/M)
SIGNAL_HANDLER
@@ -647,10 +555,6 @@
host.add_fingerprint(M)
to_chat(M, "[host] seems to be [locked_flavor]!")
return FALSE
- if(real_location.contents.len >= max_items)
- if(!stop_messages)
- to_chat(M, "[host] is full, make some space!")
- return FALSE //Storage item is full
if(length(can_hold))
if(!is_type_in_typecache(I, can_hold))
if(!stop_messages)
@@ -660,22 +564,34 @@
if(!stop_messages)
to_chat(M, "[host] cannot hold [I]!")
return FALSE
- if(I.w_class > max_w_class && !is_type_in_typecache(I, exception_hold))
- if(!stop_messages)
- to_chat(M, "[I] is too big for [host]!")
- return FALSE
- var/datum/component/storage/biggerfish = real_location.loc.GetComponent(/datum/component/storage)
- if(biggerfish && biggerfish.max_w_class < max_w_class)//return false if we are inside of another container, and that container has a smaller max_w_class than us (like if we're a bag in a box)
- if(!stop_messages)
- to_chat(M, "[I] can't fit in [host] while [real_location.loc] is in the way!")
- return FALSE
- var/sum_w_class = I.w_class
- for(var/obj/item/_I in real_location)
- sum_w_class += _I.w_class //Adds up the combined w_classes which will be in the storage item if the item is added to it.
- if(sum_w_class > max_combined_w_class)
- if(!stop_messages)
- to_chat(M, "[I] won't fit in [host], make some space!")
- return FALSE
+ // STORAGE LIMITS
+ if(storage_flags & STORAGE_LIMIT_MAX_ITEMS)
+ if(real_location.contents.len >= max_items)
+ if(!stop_messages)
+ to_chat(M, "[host] has too much junk in it, make some space!")
+ return FALSE //Storage item is full
+ if(storage_flags & STORAGE_LIMIT_MAX_W_CLASS)
+ if(I.w_class > max_w_class)
+ if(!stop_messages)
+ to_chat(M, "[I] is much too long for [host]!")
+ return FALSE
+ if(storage_flags & STORAGE_LIMIT_COMBINED_W_CLASS)
+ var/sum_w_class = I.w_class
+ for(var/obj/item/_I in real_location)
+ sum_w_class += _I.w_class //Adds up the combined w_classes which will be in the storage item if the item is added to it.
+ if(sum_w_class > max_combined_w_class)
+ if(!stop_messages)
+ to_chat(M, "[I] won't fit in [host], make some space!")
+ return FALSE
+ if(storage_flags & STORAGE_LIMIT_VOLUME)
+ var/sum_volume = I.get_w_volume()
+ for(var/obj/item/_I in real_location)
+ sum_volume += _I.get_w_volume()
+ if(sum_volume > get_max_volume())
+ if(!stop_messages)
+ to_chat(M, "[I] is too large to fit in [host], make some space!")
+ return FALSE
+ /////////////////
if(isitem(host))
var/obj/item/IP = host
var/datum/component/storage/STR_I = I.GetComponent(/datum/component/storage)
@@ -825,7 +741,7 @@
if(locked)
to_chat(user, "[parent] seems to be [locked_flavor]!")
else
- show_to(user)
+ ui_show(user)
if(use_sound)
playsound(A, use_sound, 50, TRUE, -5)
@@ -851,7 +767,7 @@
/datum/component/storage/proc/signal_hide_attempt(datum/source, mob/target)
SIGNAL_HANDLER
- return hide_from(target)
+ return ui_hide(target)
/datum/component/storage/proc/on_alt_click(datum/source, mob/user)
SIGNAL_HANDLER
@@ -896,3 +812,7 @@
to_chat(user, "[parent] now picks up all items in a tile at once.")
if(COLLECT_ONE)
to_chat(user, "[parent] now picks up one item at a time.")
+
+//Gets our max volume
+/datum/component/storage/proc/get_max_volume()
+ return max_volume || AUTO_SCALE_STORAGE_VOLUME(max_w_class, max_combined_w_class)
diff --git a/code/datums/diseases/advance/symptoms/flesh_eating.dm b/code/datums/diseases/advance/symptoms/flesh_eating.dm
index f6cd5698d73..5f18f6c78a9 100644
--- a/code/datums/diseases/advance/symptoms/flesh_eating.dm
+++ b/code/datums/diseases/advance/symptoms/flesh_eating.dm
@@ -63,7 +63,7 @@ Bonus
if(bleed)
if(ishuman(M))
var/mob/living/carbon/human/H = M
- H.bleed_rate += 5 * power
+ H.cause_bleeding(5 * power)
return 1
/*
diff --git a/code/datums/diseases/advance/symptoms/necropolis.dm b/code/datums/diseases/advance/symptoms/necropolis.dm
deleted file mode 100644
index 9626b944124..00000000000
--- a/code/datums/diseases/advance/symptoms/necropolis.dm
+++ /dev/null
@@ -1,113 +0,0 @@
-/datum/symptom/necroseed
- name = "Necropolis Seed"
- desc = "An infantile form of the root of Lavaland's tendrils. Forms a symbiotic bond with the host, making them stronger and hardier, at the cost of speed. Should the disease be cured, the host will be severely weakened."
- stealth = 0
- resistance = 3
- stage_speed = -10
- transmittable = -3
- level = 9
- base_message_chance = 3
- severity = 0
- symptom_delay_min = 1
- symptom_delay_max = 1
- var/color = "#302f20"
- var/tendrils = FALSE
- var/chest = FALSE
- var/fireproof = FALSE
- threshold_descs = list(
- "Resistance 15" = "The area near the host roils with paralyzing tendrils.",
- "Resistance 20" = "Host becomes immune to heat, ash, and lava. Removes movespeed debuff. Hail to the necropolis!",
- )
- var/list/cached_tentacle_turfs
- var/turf/last_location
- var/tentacle_recheck_cooldown = 100
-
-/datum/symptom/necroseed/Start(datum/disease/advance/A)
- . = ..()
- if(!.)
- return
- if(A.totalResistance() >= 15)
- tendrils = TRUE
- if(A.totalResistance() >= 20)
- fireproof = TRUE
-
-/datum/symptom/necroseed/Activate(datum/disease/advance/A)
- . = ..()
- if(!.)
- return
- var/mob/living/carbon/M = A.affected_mob
- switch(A.stage)
- if(1, 2)
- if(tendrils)
- tendril(A)
- if(prob(base_message_chance))
- to_chat(M, "Your skin feels scaly.")
- if(3, 4)
- if(tendrils)
- tendril(A)
- if(prob(base_message_chance))
- to_chat(M, "[pick("Your skin is hard.", "You feel stronger.", "You feel powerful.", "You feel your muscles growing stiff.", "You feel warm.")]")
- if(5)
- if(tendrils)
- tendril(A)
- M.dna.species.punchdamagelow = 15
- M.dna.species.punchdamagehigh = 20
- M.dna.species.punchstunthreshold = 18
- M.dna.species.brutemod = 0.6
- M.dna.species.burnmod = 0.6
- M.dna.species.heatmod = 0.6
- M.add_atom_colour(color, FIXED_COLOUR_PRIORITY)
- M.add_movespeed_modifier(/datum/movespeed_modifier/necropolis, update=TRUE)
- ADD_TRAIT(M, TRAIT_PIERCEIMMUNE, DISEASE_TRAIT)
- if(fireproof)
- to_chat(M, "[pick("You taste primordial ash.", "The necropolis whispers sweet nothings to you.", "You feel like a god.")]")
- ADD_TRAIT(M, TRAIT_RESISTHEAT, DISEASE_TRAIT)
- ADD_TRAIT(M, TRAIT_RESISTHIGHPRESSURE, DISEASE_TRAIT)
- M.weather_immunities |= "ash"
- M.weather_immunities |= "lava"
- M.remove_movespeed_modifier(/datum/movespeed_modifier/necropolis)
- else
- if(prob(base_message_chance))
- to_chat(M, "[pick("Your skin has become a hardened carapace.", "Your strength is superhuman.", "You feel invincible.")]")
- if(tendrils)
- tendril(A)
- return
-
-/datum/symptom/necroseed/proc/tendril(datum/disease/advance/A)
- . = A.affected_mob
- var/mob/living/loc = A.affected_mob.loc
- if(isturf(loc))
- if(!LAZYLEN(cached_tentacle_turfs) || loc != last_location || tentacle_recheck_cooldown <= world.time)
- LAZYCLEARLIST(cached_tentacle_turfs)
- last_location = loc
- tentacle_recheck_cooldown = world.time + initial(tentacle_recheck_cooldown)
- for(var/turf/open/T in orange(4, loc))
- LAZYADD(cached_tentacle_turfs, T)
- for(var/t in cached_tentacle_turfs)
- if(isopenturf(t))
- if(prob(10))
- new /obj/effect/temp_visual/goliath_tentacle(t, .)
- else
- cached_tentacle_turfs -= t
-
-/datum/symptom/necroseed/End(datum/disease/advance/A)
- . = ..()
- if(!.)
- return
- var/mob/living/carbon/M = A.affected_mob
- to_chat(M, "You feel weakened as the necropolis' blessing leaves your body.")
- M.remove_movespeed_modifier(/datum/movespeed_modifier/necropolis)
- M.dna.species.punchdamagelow = initial(M.dna.species.punchdamagelow)
- M.dna.species.punchdamagehigh = initial(M.dna.species.punchdamagehigh)
- M.dna.species.punchstunthreshold = initial(M.dna.species.punchstunthreshold)
- M.remove_atom_colour(color, FIXED_COLOUR_PRIORITY)
- M.dna.species.brutemod /= 0.6
- M.dna.species.burnmod /= 0.6
- M.dna.species.heatmod /= 0.6
- REMOVE_TRAIT(M, TRAIT_PIERCEIMMUNE, DISEASE_TRAIT)
- if(fireproof)
- REMOVE_TRAIT(M, TRAIT_RESISTHIGHPRESSURE, DISEASE_TRAIT)
- REMOVE_TRAIT(M, TRAIT_RESISTHEAT, DISEASE_TRAIT)
- M.weather_immunities -= "ash"
- M.weather_immunities -= "lava"
-
diff --git a/code/datums/dna.dm b/code/datums/dna.dm
index dde90dd5dbe..abd20fd2921 100644
--- a/code/datums/dna.dm
+++ b/code/datums/dna.dm
@@ -659,8 +659,6 @@
O.Remove(src)
visible_message("[src] vomits up their [O.name]!", "You vomit up your [O.name]") //no "vomit up your the heart"
O.forceMove(drop_location())
- if(prob(20))
- O.animate_atom_living()
if(9 to 10)
ForceContractDisease(new/datum/disease/gastrolosis())
to_chat(src, "Oh, I actually feel quite alright!")
diff --git a/code/datums/elements/decals/blood.dm b/code/datums/elements/decals/blood.dm
index 85f75bef241..0a3ca8ce59a 100644
--- a/code/datums/elements/decals/blood.dm
+++ b/code/datums/elements/decals/blood.dm
@@ -6,9 +6,11 @@
. = ..()
RegisterSignal(target, COMSIG_ATOM_GET_EXAMINE_NAME, PROC_REF(get_examine_name), TRUE)
+ RegisterSignal(target, list(COMSIG_ITEM_EQUIPPED, COMSIG_ITEM_DROPPED), PROC_REF(redraw), TRUE)
/datum/element/decal/blood/Detach(atom/source, force)
UnregisterSignal(source, COMSIG_ATOM_GET_EXAMINE_NAME)
+ UnregisterSignal(source, list(COMSIG_ITEM_EQUIPPED, COMSIG_ITEM_DROPPED))
return ..()
/datum/element/decal/blood/generate_appearance(_icon, _icon_state, _dir, _layer, _color, _alpha, source)
@@ -30,3 +32,11 @@
override[EXAMINE_POSITION_ARTICLE] = A.gender == PLURAL? "some" : "a"
override[EXAMINE_POSITION_BEFORE] = " blood-stained "
return COMPONENT_EXNAME_CHANGED
+
+///this is probably quite bad, let me know if you have a better solution for this -S
+/datum/element/decal/blood/proc/redraw(datum/source, mob/user)
+ SIGNAL_HANDLER
+
+ var/atom/bloodsource = source
+ Detach(source)
+ bloodsource.AddElement(/datum/element/decal/blood, bloodsource.icon, bloodsource.icon_state, _color = get_blood_dna_color(bloodsource.return_blood_DNA()))
diff --git a/code/datums/ert.dm b/code/datums/ert.dm
index ff11057704c..0c5227e4107 100644
--- a/code/datums/ert.dm
+++ b/code/datums/ert.dm
@@ -257,10 +257,16 @@
/datum/ert/frontier/assault
leader_role = /datum/antagonist/ert/frontier/leader
- roles = list(/datum/antagonist/ert/frontier, /datum/antagonist/ert/frontier/medic, /datum/antagonist/ert/frontier/engineer)
+ roles = list(/datum/antagonist/ert/frontier/better, /datum/antagonist/ert/frontier/medic, /datum/antagonist/ert/frontier/engineer)
rename_team = "Assault Frontiersmen Team"
polldesc = "a well armed squad of pirates"
+/datum/ert/frontier/unarmed //use for finer control of pirate's armaments
+ leader_role = /datum/antagonist/ert/frontier/leader/unnarmed
+ roles = list(/datum/antagonist/ert/frontier/unnarmed)
+ rename_team = "Unnarmed Frontiersmen Team"
+ polldesc = "a custom squad of pirates"
+
/datum/ert/independent
teamsize = 3
opendoors = FALSE
diff --git a/code/datums/mapgen/planetary/AsteroidGenerator.dm b/code/datums/mapgen/planetary/AsteroidGenerator.dm
index c2f7a534009..737194b5ee2 100644
--- a/code/datums/mapgen/planetary/AsteroidGenerator.dm
+++ b/code/datums/mapgen/planetary/AsteroidGenerator.dm
@@ -114,7 +114,10 @@
/obj/structure/geyser/random = 1,
/obj/structure/spawner/mining/goliath = 1,
/obj/structure/spawner/mining = 1,
- /obj/structure/spawner/mining/hivelord = 1
+ /obj/structure/spawner/mining/hivelord = 1,
+ /obj/structure/vein/asteroid = 5,
+ /obj/structure/vein/classtwo/asteroid = 10,
+ /obj/structure/vein/classthree/asteroid = 5
)
mob_spawn_list = list(
@@ -157,8 +160,11 @@
)
feature_spawn_list = list(
- /obj/structure/geyser/random = 1,
- /obj/structure/spawner/mining/carp = 1
+ /obj/structure/geyser/random = 5,
+ /obj/structure/spawner/mining/carp = 5,
+ /obj/structure/vein/asteroid = 10,
+ /obj/structure/vein/classtwo/asteroid = 15,
+ /obj/structure/vein/classthree/asteroid = 12
)
mob_spawn_list = list(
diff --git a/code/datums/mapgen/planetary/SandGenerator.dm b/code/datums/mapgen/planetary/SandGenerator.dm
index 442daa0c770..91fad1430a4 100644
--- a/code/datums/mapgen/planetary/SandGenerator.dm
+++ b/code/datums/mapgen/planetary/SandGenerator.dm
@@ -103,7 +103,7 @@
/mob/living/simple_animal/hostile/asteroid/goliath/beast/random = 50,
/mob/living/simple_animal/hostile/asteroid/basilisk/whitesands = 40,
/mob/living/simple_animal/hostile/asteroid/hivelord/legion/random = 30,
- /mob/living/simple_animal/hostile/asteroid/whitesands/survivor/random = 25,
+ /mob/living/simple_animal/hostile/human/hermit/survivor/random = 25,
)
/datum/biome/sand/wasteland
@@ -135,7 +135,7 @@
)
mob_spawn_chance = 1
mob_spawn_list = list(
- /mob/living/simple_animal/hostile/asteroid/whitesands/survivor/random = 1,
+ /mob/living/simple_animal/hostile/human/hermit/survivor/random = 1,
)
/datum/biome/sand/grass/dead
@@ -169,7 +169,7 @@
/mob/living/simple_animal/hostile/asteroid/goliath/beast/random = 40,
/mob/living/simple_animal/hostile/asteroid/basilisk/whitesands = 30,
/mob/living/simple_animal/hostile/asteroid/hivelord/legion/random = 20,
- /mob/living/simple_animal/hostile/asteroid/whitesands/survivor/random = 40,
+ /mob/living/simple_animal/hostile/human/hermit/survivor/random = 40,
)
/datum/biome/sand/acid //plains
diff --git a/code/datums/materials/basemats.dm b/code/datums/materials/basemats.dm
index 98db1541c95..ed8dd509ec3 100644
--- a/code/datums/materials/basemats.dm
+++ b/code/datums/materials/basemats.dm
@@ -127,30 +127,6 @@ Unless you know what you're doing, only use the first three numbers. They're in
ore_type = /obj/item/stack/ore/bluespace_crystal
value_per_unit = 0.15
-///Honks and slips
-/datum/material/bananium
- name = "bananium"
- id = "bananium"
- desc = "Material with hilarious properties"
- color = "#ffff00" //obnoxiously bright yellow
- categories = list(MAT_CATEGORY_ORE = TRUE, MAT_CATEGORY_RIGID = TRUE, MAT_CATEGORY_BASE_RECIPES = TRUE)
- sheet_type = /obj/item/stack/sheet/mineral/bananium
- ore_type = /obj/item/stack/ore/bananium
- value_per_unit = 0.5
- beauty_modifier = 0.5
- armor_modifiers = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 100, "bio" = 0, "rad" = 0, "fire" = 10, "acid" = 0) //Clowns cant be blown away.
-
-/datum/material/bananium/on_applied(atom/source, amount, material_flags)
- . = ..()
- source.LoadComponent(/datum/component/squeak, list('sound/items/bikehorn.ogg'=1), 50, falloff_exponent = 20)
- source.AddComponent(/datum/component/slippery, min(amount / 10, 80))
-
-
-/datum/material/bananium/on_removed(atom/source, amount, material_flags)
- . = ..()
- qdel(source.GetComponent(/datum/component/slippery))
- qdel(source.GetComponent(/datum/component/squeak))
-
///Mediocre force increase
/datum/material/titanium
@@ -166,18 +142,6 @@ Unless you know what you're doing, only use the first three numbers. They're in
beauty_modifier = 0.05
armor_modifiers = list("melee" = 1.35, "bullet" = 1.3, "laser" = 1.3, "energy" = 1.25, "bomb" = 1.25, "bio" = 1, "rad" = 1, "fire" = 0.7, "acid" = 1)
-/datum/material/runite
- name = "runite"
- id = "runite"
- desc = "Runite"
- color = "#3F9995"
- strength_modifier = 1.3
- categories = list(MAT_CATEGORY_RIGID = TRUE, MAT_CATEGORY_BASE_RECIPES = TRUE)
- sheet_type = /obj/item/stack/sheet/mineral/runite
- value_per_unit = 0.3
- beauty_modifier = 0.5
- armor_modifiers = list("melee" = 1.35, "bullet" = 2, "laser" = 0.5, "energy" = 1.25, "bomb" = 1.25, "bio" = 1, "rad" = 1, "fire" = 1.4, "acid" = 1) //rune is weak against magic lasers but strong against bullets. This is the combat triangle.
-
///Force decrease
/datum/material/plastic
name = "plastic"
@@ -224,42 +188,20 @@ Unless you know what you're doing, only use the first three numbers. They're in
var/obj/wooden = source
wooden.resistance_flags &= ~FLAMMABLE
-///Stronk force increase
-/datum/material/adamantine
- name = "adamantine"
- id = "adamantine"
- desc = "A powerful material made out of magic, I mean science!"
- color = "#6d7e8e"
+//Remember when the theme used to be "Eerie" before 1.3? Good times.
+/datum/material/hellstone
+ name = "hellstone"
+ id = "hellstone"
+ desc = "A colloquialism given to millenia-old slag, heat-treated through the eons in deep magma."
+ color = "#ffaf5e"
strength_modifier = 1.5
categories = list(MAT_CATEGORY_RIGID = TRUE, MAT_CATEGORY_BASE_RECIPES = TRUE)
- sheet_type = /obj/item/stack/sheet/mineral/adamantine
+ sheet_type = /obj/item/stack/sheet/mineral/hidden/hellstone
+ ore_type = /obj/item/stack/ore/hellstone
value_per_unit = 0.25
beauty_modifier = 0.4
armor_modifiers = list("melee" = 1.5, "bullet" = 1.5, "laser" = 1.3, "energy" = 1.3, "bomb" = 1, "bio" = 1, "rad" = 1, "fire" = 2.5, "acid" = 1)
-///RPG Magic.
-/datum/material/mythril
- name = "mythril"
- id = "mythril"
- desc = "How this even exists is byond me"
- color = "#f2d5d7"
- categories = list(MAT_CATEGORY_RIGID = TRUE, MAT_CATEGORY_BASE_RECIPES = TRUE)
- sheet_type = /obj/item/stack/sheet/mineral/mythril
- value_per_unit = 0.75
- strength_modifier = 1.2
- armor_modifiers = list("melee" = 1.5, "bullet" = 1.5, "laser" = 1.5, "energy" = 1.5, "bomb" = 1.5, "bio" = 1.5, "rad" = 1.5, "fire" = 1.5, "acid" = 1.5)
- beauty_modifier = 0.5
-
-/datum/material/mythril/on_applied_obj(atom/source, amount, material_flags)
- . = ..()
- if(istype(source, /obj/item))
- source.AddComponent(/datum/component/fantasy)
-
-/datum/material/mythril/on_removed_obj(atom/source, material_flags)
- . = ..()
- if(istype(source, /obj/item))
- qdel(source.GetComponent(/datum/component/fantasy))
-
//formed when freon react with o2, emits a lot of plasma when heated
/datum/material/hot_ice
name = "hot ice"
@@ -323,18 +265,6 @@ Unless you know what you're doing, only use the first three numbers. They're in
turf_sound_override = FOOTSTEP_SAND
texture_layer_icon_state = "sand"
-/datum/material/runedmetal
- name = "runed metal"
- id = "runed metal"
- desc = "Mir'ntrath barhah Nar'sie."
- color = "#3C3434"
- categories = list(MAT_CATEGORY_RIGID = TRUE)
- sheet_type = /obj/item/stack/sheet/runed_metal
- value_per_unit = 0.75
- armor_modifiers = list("melee" = 1.2, "bullet" = 1.2, "laser" = 1, "energy" = 1, "bomb" = 1.2, "bio" = 1.2, "rad" = 1.5, "fire" = 1.5, "acid" = 1.5)
- beauty_modifier = -0.15
- texture_layer_icon_state = "runed"
-
/datum/material/bronze
name = "bronze"
id = "bronze"
diff --git a/code/datums/mind.dm b/code/datums/mind.dm
index 36ec4a1b5ae..96ca4b12d8b 100644
--- a/code/datums/mind.dm
+++ b/code/datums/mind.dm
@@ -55,7 +55,6 @@
var/damnation_type = 0
var/datum/mind/soulOwner //who owns the soul. Under normal circumstances, this will point to src
var/hasSoul = TRUE // If false, renders the character unable to sell their soul.
- var/holy_role = NONE //is this person a chaplain or admin role allowed to use bibles, Any rank besides 'NONE' allows for this.
var/mob/living/enslaved_to //If this mind's master is another mob
var/datum/language_holder/language_holder
diff --git a/code/datums/mood_events/drug_events.dm b/code/datums/mood_events/drug_events.dm
index 6af401e8b00..028973c5c83 100644
--- a/code/datums/mood_events/drug_events.dm
+++ b/code/datums/mood_events/drug_events.dm
@@ -4,12 +4,12 @@
/datum/mood_event/smoked
description = "I have had a smoke recently.\n"
- mood_change = 2
+ mood_change = 1
timeout = 6 MINUTES
/datum/mood_event/wrong_brand
- description = "I hate that brand of cigarettes.\n"
- mood_change = -2
+ description = "That brand of cigarette just doesn't hit right.\n"
+ mood_change = -1
timeout = 6 MINUTES
/datum/mood_event/overdose
diff --git a/code/datums/mood_events/generic_negative_events.dm b/code/datums/mood_events/generic_negative_events.dm
index 84fca0443ca..f5e51d1d59f 100644
--- a/code/datums/mood_events/generic_negative_events.dm
+++ b/code/datums/mood_events/generic_negative_events.dm
@@ -292,3 +292,13 @@
description = "I was forced to eat cement...\n"
mood_change = -6
timeout = 4 MINUTES
+
+/datum/mood_event/joywire_emp
+ description = span_boldwarning("IT'S GONE!! IT'S GONE!!\n")
+ mood_change = -30
+ timeout = 5 MINUTES
+
+/datum/mood_event/mindscrew
+ description = span_boldwarning("It isn't ending... it isn't ending, come on...\n")
+ mood_change = -18
+ timeout = 3 MINUTES
diff --git a/code/datums/mood_events/generic_positive_events.dm b/code/datums/mood_events/generic_positive_events.dm
index dbaac99c429..f9e339c3c08 100644
--- a/code/datums/mood_events/generic_positive_events.dm
+++ b/code/datums/mood_events/generic_positive_events.dm
@@ -105,14 +105,6 @@
description = "My family heirloom is safe with me.\n"
mood_change = 1
-/datum/mood_event/fan_clown_pin
- description = "I love showing off my clown pin!\n"
- mood_change = 1
-
-/datum/mood_event/fan_mime_pin
- description = "I love showing off my mime pin!\n"
- mood_change = 1
-
/datum/mood_event/rilena_fan
description = "I love my RILENA merch!\n"
mood_change = 1
@@ -239,3 +231,13 @@
description = "Fishing is relaxing"
mood_change = 5
timeout = 3 MINUTES
+
+/datum/mood_event/joywire
+ description = span_boldnicegreen("I feel so joyous! Oh, so joyous!\n")
+ mood_change = 8
+ timeout = 10 SECONDS
+
+/datum/mood_event/root
+ description = span_nicegreen("I rooted recently, it feels good to charge naturally.\n")
+ mood_change = 5
+ timeout = 5 MINUTES
diff --git a/code/datums/mutations/actions.dm b/code/datums/mutations/actions.dm
index f2ffe7c25fd..53080247b82 100644
--- a/code/datums/mutations/actions.dm
+++ b/code/datums/mutations/actions.dm
@@ -88,67 +88,6 @@
if(direction_text)
to_chat(user,"You consider [tracking_target]'s scent. The trail leads [direction_text].")
-/datum/mutation/human/firebreath
- name = "Fire Breath"
- desc = "An ancient mutation that gives lizards breath of fire."
- quality = POSITIVE
- difficulty = 12
- locked = TRUE
- text_gain_indication = "Your throat is burning!"
- text_lose_indication = "Your throat is cooling down."
- power = /obj/effect/proc_holder/spell/aimed/firebreath
- instability = 30
- energy_coeff = 1
- power_coeff = 1
-
-/datum/mutation/human/firebreath/modify()
- if(power)
- var/obj/effect/proc_holder/spell/aimed/firebreath/S = power
- S.strength = GET_MUTATION_POWER(src)
-
-/obj/effect/proc_holder/spell/aimed/firebreath
- name = "Fire Breath"
- desc = "You can breathe fire at a target."
- school = "evocation"
- charge_max = 600
- clothes_req = FALSE
- range = 20
- projectile_type = /obj/projectile/magic/aoe/fireball/firebreath
- base_icon_state = "fireball"
- action_icon_state = "fireball0"
- sound = 'sound/magic/demon_dies.ogg' //horrifying lizard noises
- active_msg = "You built up heat in your mouth."
- deactive_msg = "You swallow the flame."
- var/strength = 1
-
-/obj/effect/proc_holder/spell/aimed/firebreath/before_cast(list/targets)
- . = ..()
- if(iscarbon(usr))
- var/mob/living/carbon/C = usr
- if(C.is_mouth_covered())
- C.adjust_fire_stacks(2)
- C.IgniteMob()
- to_chat(C,"Something in front of your mouth caught fire!")
- return FALSE
-
-/obj/effect/proc_holder/spell/aimed/firebreath/ready_projectile(obj/projectile/P, atom/target, mob/user, iteration)
- if(!istype(P, /obj/projectile/magic/aoe/fireball))
- return
- var/obj/projectile/magic/aoe/fireball/F = P
- switch(strength)
- if(1 to 3)
- F.exp_light = strength-1
- if(4 to INFINITY)
- F.exp_heavy = strength-3
- F.exp_fire += strength
-
-/obj/projectile/magic/aoe/fireball/firebreath
- name = "fire breath"
- exp_heavy = 0
- exp_light = 0
- exp_flash = 0
- exp_fire= 4
-
/datum/mutation/human/void
name = "Void Magnet"
desc = "A rare genome that attracts odd forces not usually observed."
diff --git a/code/datums/numbered_display.dm b/code/datums/numbered_display.dm
index 9aa880aa75d..b714be23fbb 100644
--- a/code/datums/numbered_display.dm
+++ b/code/datums/numbered_display.dm
@@ -3,8 +3,8 @@
var/obj/item/sample_object
var/number
-/datum/numbered_display/New(obj/item/sample, _number = 1)
+/datum/numbered_display/New(obj/item/sample, _number = 1, datum/component/storage/parent)
if(!istype(sample))
qdel(src)
- sample_object = sample
+ sample_object = new /atom/movable/screen/storage/item_holder(null, parent, sample)
number = _number
diff --git a/code/datums/outfit.dm b/code/datums/outfit.dm
index 964c269b5f4..34771af91ed 100644
--- a/code/datums/outfit.dm
+++ b/code/datums/outfit.dm
@@ -104,6 +104,9 @@
/// Set to FALSE if your outfit requires runtime parameters
var/can_be_admin_equipped = TRUE
+ // Used to determine if it should be ignored in unit tests due to being to dynamic to always spawn backpack contents right
+ var/random = FALSE
+
/**
* extra types for chameleon outfit changes, mostly guns
*
diff --git a/code/datums/ruins/beachplanet.dm b/code/datums/ruins/beachplanet.dm
index dae334aefae..b258ef45f0e 100644
--- a/code/datums/ruins/beachplanet.dm
+++ b/code/datums/ruins/beachplanet.dm
@@ -2,8 +2,6 @@
/datum/map_template/ruin/beachplanet
prefix = "_maps/RandomRuins/BeachRuins/"
- allow_duplicates = FALSE
- cost = 5
ruin_type = RUINTYPE_BEACH
/datum/map_template/ruin/beachplanet/fishinghut
@@ -18,12 +16,6 @@
description = "As you draw near the ancient wall, a sense of foreboding overcomes you. You aren't sure why, but you feel this dusty structure may contain great dangers."
suffix = "beach_ancient_ruin.dmm"
-/datum/map_template/ruin/beachplanet/colony
- name = "Abandoned Beachside Colony"
- id = "beach_colony"
- description = "A abandoned colony. It seems that this colony was abandoned, for a reason or another"
- suffix = "beach_colony.dmm"
-
/datum/map_template/ruin/beachplanet/town
name = "Beachside Town"
id = "beach_town"
@@ -36,18 +28,6 @@
description = "A small pirate outpost formed from the remains of a wrecked shuttle."
suffix = "beach_pirate_crash.dmm"
-/datum/map_template/ruin/beachplanet/fallenstar
- name = "Crashed Starwalker"
- id = "crashed_star"
- description = "A Crashed Starwalker Class Pirate Ship. It's Crew is Long-Dead."
- suffix = "beach_crashed_starwalker.dmm"
-
-/datum/map_template/ruin/beachplanet/knight
- name = "Knight's Rest"
- id = "knights_rest"
- description = "An small castle holding the grave of a renowned warrior"
- suffix = "beach_knights_rest.dmm"
-
/datum/map_template/ruin/beachplanet/treasurecove
name = "Treasure Cove"
id = "beach_treasure_cove"
diff --git a/code/datums/ruins/icemoon.dm b/code/datums/ruins/icemoon.dm
index a447a5b6f46..60304e86f6f 100644
--- a/code/datums/ruins/icemoon.dm
+++ b/code/datums/ruins/icemoon.dm
@@ -2,57 +2,20 @@
/datum/map_template/ruin/icemoon
prefix = "_maps/RandomRuins/IceRuins/"
- allow_duplicates = FALSE
- cost = 5
ruin_type = RUINTYPE_ICE
-// above ground only
-
-/datum/map_template/ruin/icemoon/engioutpost
- name = "Engineer Outpost"
- id = "engioutpost"
- description = "Blown up by an unfortunate accident."
- suffix = "icemoon_surface_engioutpost.dmm"
-
-
-/datum/map_template/ruin/icemoon/hydroponicslab //Shiptest edit
+/datum/map_template/ruin/icemoon/hydroponicslab
name = "Hydroponics Lab"
id = "hydroponicslab"
description = "An abandoned hydroponics research facility containing hostile plant fauna."
suffix = "icemoon_hydroponics_lab.dmm"
-// above and below ground together
-
-
-// below ground only
-
-/datum/map_template/ruin/icemoon
- name = "underground ruin"
-
/datum/map_template/ruin/icemoon/abandonedvillage
name = "Abandoned Village"
id = "abandonedvillage"
description = "Who knows what lies within?"
suffix = "icemoon_underground_abandoned_village.dmm"
-/datum/map_template/ruin/icemoon/corpreject
- name = "NT Security Solutions Site Gamma"
- id = "corpreject"
- description = "Nanotrasen Corporate Security Solutions vault site Gamma."
- suffix = "icemoon_surface_corporate_rejects.dmm"
-
-/datum/map_template/ruin/icemoon/syndicate_outpost
- name = "Abandoned Syndicate Outpost"
- id = "syndicate-outpost-icemoon"
- description = "A outpost that used to be a staging area for nuclear operatives. The Syndicate have moved to another location, but this still remains."
- suffix = "icemoon_underground_abandoned_newcops.dmm"
-
-/datum/map_template/ruin/icemoon/drakelair
- name = "Dragon's Lair"
- id = "drake-lair"
- description = "\"First the creature's Flame breathed from beneath the stone, Hot battle-fumes, and the earth rumbled.\""
- suffix = "icemoon_underground_drakelair.dmm"
-
/datum/map_template/ruin/icemoon/brazillian_lab
name = "Barricaded Compound"
id = "brazillian-lab"
diff --git a/code/datums/ruins/jungle.dm b/code/datums/ruins/jungle.dm
index 5642e7aadac..f1e2e16bfec 100644
--- a/code/datums/ruins/jungle.dm
+++ b/code/datums/ruins/jungle.dm
@@ -4,92 +4,12 @@
prefix = "_maps/RandomRuins/JungleRuins/"
ruin_type = RUINTYPE_JUNGLE
-/datum/map_template/ruin/jungle/jungle_botany_ruin
- id = "jungle_botany-ruin"
- suffix = "jungle_botany.dmm"
- name = "Ruined Botany Research Facility"
- description = "A research facility of great botany discoveries. Long since abandoned, willingly or not..."
-
-/datum/map_template/ruin/jungle/ai_ikea
- name = "Space Ikea AI Shipment"
- id = "ikea-ai"
- description = "A Space Ikea Brand AI Core and Necessities Crate, it seems to have missed its intended target."
- suffix = "jungle_surface_ikea_ai.dmm"
-
-/datum/map_template/ruin/jungle/coffinpirate
- name = "Coffin-Shaped Pirate Hut"
- id = "coffinpirate"
- description = "An odd coffin shaped pirate hut that the inhabitant of died in."
- suffix = "jungle_surface_coffinpirate.dmm"
-
-//far more tasteful than its predecessor...
-/datum/map_template/ruin/jungle/lessonintrickery
- name = "Bombmaker's Cabin"
- id = "bombmakers-cabin"
- description = "Playing with bombs again, are we?"
- suffix = "jungle_surface_bombmakers_cabin.dmm"
-
-/datum/map_template/ruin/jungle/weedshack
- name = "Stoner's Cabin"
- id = "weed-shack"
- description = "The Industrial Revolution and its consequences have been a disaster for the human race."
- suffix = "jungle_surface_weed_shack.dmm"
-
-//vae's jungle ruins from bungalowstation
-/datum/map_template/ruin/jungle/pizzawave
- name = "Jungle Pizzawave"
- id = "pizzawave"
- description = "Get some pizza my dude."
- suffix = "jungle_pizzawave.dmm"
-
-/datum/map_template/ruin/jungle/nest
- name = "Jungle Xenonest"
- id = "xenonestjungle"
- description = "A Xeno nest crammed into the Jungle."
- suffix = "jungle_nest.dmm"
-
-/datum/map_template/ruin/jungle/seedling
- name = "Seedling ruin"
- id = "seedling"
- description = "A rare seedling plant."
- suffix = "jungle_seedling.dmm"
-
-/datum/map_template/ruin/jungle/hangar
- name = "Abandoned Hangar"
- id = "hangar"
- description = "An abandoned hangar containing exosuits."
- suffix = "jungle_hangar.dmm"
-
-/datum/map_template/ruin/jungle/pirate
- name = "Jungle Pirates"
- id = "piratejungle"
- description = "A group of pirates on a small ship in the jungle."
- suffix = "jungle_pirate.dmm"
-
/datum/map_template/ruin/jungle/syndicate
name = "Jungle Syndicate Bunker"
id = "syndicatebunkerjungle"
description = "A small bunker owned by the Syndicate."
suffix = "jungle_syndicate.dmm"
-/datum/map_template/ruin/jungle/village
- name = "Monkey Village"
- id = "monkeyvillage"
- description = "A small village of monkeys."
- suffix = "jungle_village.dmm"
-
-/datum/map_template/ruin/jungle/roommates
- name = "Roommates"
- id = "roommates"
- description = "A shack once inhabited by a clown and a mime... and they were roommates."
- suffix = "jungle_surface_roommates.dmm"
-
-/datum/map_template/ruin/jungle/ninjashrine
- name = "Ninja Shrine"
- id = "ninjashrine"
- description = "A ninja shrine."
- suffix = "jungle_surface_ninjashrine.dmm"
-
/datum/map_template/ruin/jungle/interceptor
name = "Old Crashed Interceptor"
id = "crashedcondor"
diff --git a/code/datums/ruins/lavaland.dm b/code/datums/ruins/lavaland.dm
index d5cd93f05e6..816ffd685c1 100644
--- a/code/datums/ruins/lavaland.dm
+++ b/code/datums/ruins/lavaland.dm
@@ -4,75 +4,13 @@
prefix = "_maps/RandomRuins/LavaRuins/"
ruin_type = RUINTYPE_LAVA
-/datum/map_template/ruin/lavaland/biodome
- cost = 5
- allow_duplicates = FALSE
-
/datum/map_template/ruin/lavaland/biodome/winter
- name = "Biodome Winter"
+ name = "Solarian Winter Biodome"
id = "biodome-winter"
- description = "For those getaways where you want to get back to nature, but you don't want to leave the fortified military compound where you spend your days. \
- Includes a unique(*) laser pistol display case, and the recently introduced I.C.E(tm)."
+ description = "A Solarian frontier research facility created by the Pionierskompanien \
+ This one seems to simulate the wintery climate of the northern provinces, including a sauna!"
suffix = "lavaland_surface_biodome_winter.dmm"
-/datum/map_template/ruin/lavaland/sin
- cost = 10
- allow_duplicates = FALSE
-
-/datum/map_template/ruin/lavaland/sin/sloth
- name = "Ruin of Sloth"
- id = "sloth"
- description = "..."
- suffix = "lavaland_surface_sloth.dmm"
- // Generates nothing but atmos runtimes and salt
- cost = 0
-
-/datum/map_template/ruin/lavaland/hierophant
- name = "Hierophant's Arena"
- id = "hierophant"
- description = "A strange, square chunk of metal of massive size. Inside awaits only death and many, many squares."
- suffix = "lavaland_surface_hierophant.dmm"
- allow_duplicates = FALSE
-
-/datum/map_template/ruin/lavaland/xeno_nest
- name = "Xenomorph Nest"
- id = "xeno-nest"
- description = "These xenomorphs got bored of horrifically slaughtering people on space stations, and have settled down on a nice lava-filled hellscape to focus on what's really important in life. \
- Quality memes."
- suffix = "lavaland_surface_xeno_nest.dmm"
- cost = 20
-
-/datum/map_template/ruin/lavaland/survivalcapsule
- name = "Survival Capsule Ruins"
- id = "survivalcapsule"
- description = "What was once sanctuary to the common miner, is now their tomb."
- suffix = "lavaland_surface_survivalpod.dmm"
- cost = 5
-
-/datum/map_template/ruin/lavaland/pizza
- name = "Ruined Pizza Party"
- id = "pizza"
- description = "Little Timmy's birthday pizza bash took a turn for the worse when a bluespace anomaly passed by."
- suffix = "lavaland_surface_pizzaparty.dmm"
- allow_duplicates = FALSE
- cost = 5
-
-/datum/map_template/ruin/lavaland/hermit
- name = "Makeshift Shelter"
- id = "hermitcave"
- description = "A place of shelter for a lone hermit, scraping by to live another day."
- suffix = "lavaland_surface_hermit.dmm"
- allow_duplicates = FALSE
- cost = 10
-
-/datum/map_template/ruin/lavaland/miningripley
- name = "Ripley"
- id = "ripley"
- description = "A heavily-damaged mining ripley, property of a very unfortunate miner. You might have to do a bit of work to fix this thing up."
- suffix = "lavaland_surface_random_ripley.dmm"
- allow_duplicates = FALSE
- cost = 5
-
/datum/map_template/ruin/lavaland/elephant_graveyard
name = "Elephant Graveyard"
id = "Graveyard"
@@ -81,47 +19,26 @@
allow_duplicates = FALSE
cost = 10
-/datum/map_template/ruin/lavaland/comm_outpost
- name = "Syndicate Comm Outpost"
- id = "commoutpost"
- description = "A forgotten outpost home to only a tragic tale."
- suffix = "lavaland_surface_comm_outpost.dmm"
- allow_duplicates = FALSE
- cost = 5
-
-/datum/map_template/ruin/lavaland/dwarffortress
- name = "Legion infested Dwarf Fortress"
- id = "dwarffortress"
- description = "A forgotten fortress home to only a tragic tale and infested corpses."
- suffix = "lavaland_surface_dwarffortress.dmm"
- allow_duplicates = FALSE
-
-/datum/map_template/ruin/lavaland/ashwalker_shrine
- name = "Ashwalker shrine"
- id = "ashwalker_shrine"
- description = "A destroyed ashwalker village. What even happened here?"
- suffix = "lavaland_surface_ashwalker_shrine.dmm"
-
-/datum/map_template/ruin/lavaland/spookycrash
- name = "Spooky Crash"
- id = "spooky_crash"
- description = "A spooky looking crash."
- suffix = "lavaland_surface_SPOOKYCRASH.dmm"
-
-/datum/map_template/ruin/lavaland/crashedpinnance
- name = "Crashed Research Pinnance"
- id = "crashed_pinnance"
- description = "A crashed shuttlecraft, looks like the pilot didn't make it."
- suffix = "lavaland_surface_crashed_pinnance.dmm"
-
-/datum/map_template/ruin/lavaland/codelab
- name = "Nanotrasen Genetic Research Facility"
- id = "codelab"
- description = "A Nanotrasen genetic research facility, abandoned and ripe for looting. Whats that goo over there?"
- suffix = "lavaland_surface_codelab.dmm"
+/datum/map_template/ruin/lavaland/buried_shrine
+ name = "Buried Shrine"
+ id = "buried_shrine"
+ description = "An ancient temple belonging to some long-gone inhabitants, wrecked and buried by the volcanic activity of it's home planet."
+ suffix = "lavaland_surface_buried_shrine.dmm"
/datum/map_template/ruin/lavaland/lava_canyon
name = "Lava Canyon"
id = "lava_canyon"
description = "Tectonic activity has gouged a large fissure into the surface of the planet here. Tucked in the crevasse, the remains of an ashwalker village lay in ashes."
suffix = "lavaland_surface_lava_canyon.dmm"
+
+/datum/map_template/ruin/lavaland/wrecked_factory
+ name = "Wrecked Factory"
+ id = "wreck_factory"
+ description = "A Nanotrasen processing facility, assaulted by a pirate raid that has killed most of the staff. The offices however, remain unbreached for now."
+ suffix = "lavaland_surface_wrecked_factory.dmm"
+
+/datum/map_template/ruin/lavaland/fallenstar
+ name = "Crashed Starwalker"
+ id = "crashed_star"
+ description = "A crashed pirate ship. It would seem that it's crew died a while ago."
+ suffix = "lavaland_crashed_starwalker.dmm"
diff --git a/code/datums/ruins/rockplanet.dm b/code/datums/ruins/rockplanet.dm
index 0d47dd51d7d..f576f1a9346 100644
--- a/code/datums/ruins/rockplanet.dm
+++ b/code/datums/ruins/rockplanet.dm
@@ -2,64 +2,8 @@
/datum/map_template/ruin/rockplanet
prefix = "_maps/RandomRuins/RockRuins/"
- allow_duplicates = FALSE
- cost = 5
- ruin_type = RUINTYPE_ROCK
-
-/datum/map_template/ruin/rockplanet/heirophant
- name = "Ancient Heirophant"
- id = "rockheiro"
- description = "something dangerous"
- suffix = "rockplanet_heirophant.dmm"
-
-/* TODO: GREEBLE
-/datum/map_template/ruin/rockplanet/dangerpod
- name = "Dangerous pod"
- id = "dangerpod"
- description = "A pod holding a dangerous threat."
- suffix = "wasteplanet_dangerpod.dmm"
-*/
-
-/* //TODO: MAKE THIS A MINOR RUIN
-/datum/map_template/ruin/rockplanet/pioneer
- name = "Krusty Krab Pizza"
- id = "pioneer"
- description = "The pioneers used to ride these babies for miles!"
- suffix = "rockplanet_pioneer.dmm"
-*/
-
-/*greeble
-/datum/map_template/ruin/rockplanet/house
- name = "baracaded house"
- id = "house"
- description = "Some sort of house, baracaded in. It must be baracaded for a reason.."
- suffix = "rockplanet_house.dmm"
-*/
-
-/datum/map_template/ruin/rockplanet/mining_expedition
- name = "Mining Expedition"
- id = "expedition"
- description = "A mining operation gone wrong."
- suffix = "rockplanet_miningexpedition.dmm"
-
-/datum/map_template/ruin/rockplanet/boxsci
- name = "Abandoned science wing"
- id = "abandonedscience"
- description = "A chunk of a station that broke off.."
- suffix = "rockplanet_boxsci.dmm"
-
-/datum/map_template/ruin/rockplanet/crash_cult
- name = "Crashed Exploration Clipper"
- description = "A crashed exploration vessel. Hivebots are taking this ship apart for scrap."
- id = "crash_cult"
- suffix = "rockplanet_crash.dmm"
-
-/datum/map_template/ruin/rockplanet/saloon
- name = "Abandoned saloon"
- description = "For whatever reason, someone decided to make a colony with a indie style."
- id = "rockplanet_saloon"
- suffix = "rockplanet_saloon.dmm"
+ ruin_type = RUINTYPE_ROCK
/datum/map_template/ruin/rockplanet/harmfactory
name = "Harm Factory"
@@ -73,8 +17,15 @@
id = "rockplanet_budgetcuts"
suffix = "rockplanet_budgetcuts.dmm"
+/datum/map_template/ruin/rockplanet/shippingdock
+ name = "Abandoned Shipping Dock"
+ description = "An abandoned shipping dock used by small cargo freighters and smugglers alike. Some malicious group seems to have trapped the place to eliminate scavengers."
+ id = "rockplanet_shippingdock"
+ suffix = "rockplanet_shippingdock.dmm"
+
/datum/map_template/ruin/rockplanet/nomadcrash
name = "Nomad Crash"
description = "A Crashed Arrow & Axe Interceptor. A long forgotten Crew. They tried their best to survive..."
id = "rockplanet_nomadcrash"
suffix = "rockplanet_nomadcrash.dmm"
+
diff --git a/code/datums/ruins/space.dm b/code/datums/ruins/space.dm
index 7872ba58a3a..1aedb0b9be8 100644
--- a/code/datums/ruins/space.dm
+++ b/code/datums/ruins/space.dm
@@ -12,12 +12,6 @@
name = "Corporate Mining Module"
description = "An old and rusty mining facility, with big ore potential."
-/datum/map_template/ruin/space/excavator_DK
- id = "Excavator-DK"
- suffix = "excavator_DK.dmm"
- name = "Excavator DK Class"
- description = "A heavily damaged DK class excavator"
-
/datum/map_template/ruin/space/bigderelict1
id = "bigderelict1"
suffix = "bigderelict1.dmm"
@@ -31,65 +25,6 @@
name = "DK Excavator 453"
description = "Formerly a thriving planetary mining outpost, now a bit of an exploded mess. One has to wonder how it got here"
-/* shiptest: Replaced with dark_glade ruin
-/datum/map_template/ruin/space/way_home
- id = "way-home"
- suffix = "way_home.dmm"
- name = "Salvation"
- description = "In the darkest times, we will find our way home."
-*/
-
-/datum/map_template/ruin/space/djstation
- id = "djstation"
- suffix = "djstation.dmm"
- name = "DJ Station"
- description = "Until very recently this pirate radio station was used to harangue local space stations over a variety of perceived \"ethics violations\". \
- It seems like someone finally got sick of it, but the equipment still works."
-
-/datum/map_template/ruin/space/crashedship
- id = "crashedship"
- suffix = "crashedship.dmm"
- name = "Crashed Ship"
- description = "Among civilian vessels the most common cause of tragedy is lack of food. \
- This ship was outfitted with a multitude of food-generating features, then summarily ran into an asteroid shortly after takeoff."
-
-/datum/map_template/ruin/space/vaporwave
- id = "vaporwave"
- suffix = "vaporwave.dmm"
- name = "Aesthetic Outpost"
- description = "Pause and remember-- You are unique.You are special. Every mistake, trial, and hardship has helped to sculpt your real beauty. \
- Stop hating yourself and start appreciating and loving yourself!"
-
-/datum/map_template/ruin/space/hellfactory
- id = "hellfactory"
- suffix = "hellfactory.dmm"
- name = "Heck Brewery"
- description = "An abandoned warehouse and brewing facility, which has been recently rediscovered. Reports claim that the security system entered an ultra-hard lockdown, but these reports are inconclusive."
-
-/datum/map_template/ruin/space/cryocontainment
- id = "cryocontainment"
- suffix = "cryocontainment.dmm"
- name = "Cryogenic Containment Facility"
- description = "Some old facility where they stored something in a cryotube to experiement on, obviously it got out and now the only thing it contains is Space Carps."
-
-/datum/map_template/ruin/space/dangerous_research
- id = "dangerous_research"
- suffix = "dangerous_research.dmm"
- name = "Occult Research Station"
- description = "This station was deemed unsuitable for continued experiments, and quickly abandoned."
-
-/datum/map_template/ruin/space/macspace
- id = "fast_food"
- suffix = "Fast_Food.dmm"
- name = "Mac Space Restaurant"
- description = "A fast food reataurant in space."
-
-/datum/map_template/ruin/space/scav_mining
- id = "mining_asteroid"
- suffix = "scav_mining.dmm"
- name = "Mining asteroid"
- description = "An abandoned mining operation on an asteroid that now has new ocupants that is not happy to se you"
-
/datum/map_template/ruin/space/power_puzzle
id = "power_puzzle"
suffix = "power_puzzle.dmm"
@@ -97,42 +32,12 @@
description = "an abandoned secure storage location. there is no power left in the batteries and the former ocupants locked it pretty tight before leaving.\
You will have to power areas to raise the bolts on the doors. look out for secrets."
-/datum/map_template/ruin/space/transport18
- id = "transport18"
- suffix = "transport18.dmm"
- name = "Booze Cruise"
- description = "A freighter, damaged beyond repair and surrounded by a cloud of aluminium and... beer foam?"
-
-/datum/map_template/ruin/space/fueldepot
- id = "fueldepot"
- suffix = "fueldepot.dmm"
- name = "Fuel Depot"
- description = "An orbital refueling station with the remains of a ship lodged among the debris."
-
-/datum/map_template/ruin/space/ntfacility
- id = "ntfacility"
- suffix = "ntfacility.dmm"
- name = "Abandoned Facility"
- description = "A NT research station. Something has gone horribly wrong here."
-
/datum/map_template/ruin/space/astraeus
id = "astraeus"
suffix = "astraeus.dmm"
name = "Astraeus Ruin"
description = "This vessel served a lengthy period in the Nanotrasen fleet, before an accident in the munitions bay caused to to be destroyed while in active combat."
-/datum/map_template/ruin/space/glade
- id = "dark_glade"
- suffix = "dark_glade.dmm"
- name = "Dark Glade"
- description = "It's always dark in the ancient glade."
-
-/datum/map_template/ruin/space/syndicircle
- id = "provinggrounds"
- suffix = "provinggrounds.dmm"
- name = "Syndicate Battle Sphere"
- description = "The Syndicate Battle Sphere, complete with guns!"
-
/datum/map_template/ruin/space/singularitylab
id = "singularitylab"
suffix = "singularity_lab.dmm"
diff --git a/code/datums/ruins/wasteplanet.dm b/code/datums/ruins/wasteplanet.dm
index 80bf701526b..8083567a7c6 100644
--- a/code/datums/ruins/wasteplanet.dm
+++ b/code/datums/ruins/wasteplanet.dm
@@ -2,66 +2,26 @@
/datum/map_template/ruin/wasteplanet
prefix = "_maps/RandomRuins/WasteRuins/"
- allow_duplicates = FALSE
- cost = 5
ruin_type = RUINTYPE_WASTE
-/datum/map_template/ruin/wasteplanet/fortress
- name = "Fortress of Solitide"
- id = "solitude"
- description = "A fortress, although one you are probably more familiar with."
- suffix = "wasteplanet_fortress_of_solitide.dmm"
-
/datum/map_template/ruin/wasteplanet/weaponstest
name = "Weapons testing facility"
id = "guntested"
description = "A abandoned Nanotrasen weapons facility, presumably the place where the X-01 was manufactured."
suffix = "wasteplanet_lab.dmm"
-/datum/map_template/ruin/wasteplanet/oreprocess
- name = "Ore Processing Facility"
- id = "oreprocess"
- description = "A fortress, although one you are probably more familiar with.."
- suffix = "wasteplanet_ore_proccessing_facility.dmm"
-
/datum/map_template/ruin/wasteplanet/pandora
id = "pandora_arena"
suffix = "wasteplanet_pandora.dmm"
name = "Pandora Arena"
description = "Some... thing has settled here."
-/* Greeble
-/datum/map_template/ruin/wasteplanet/pod
- name = "Derelict pod"
- id = "oldpod"
- description = "A large, old pod."
- suffix = "wasteplanet_pod.dmm"
-*/
-
-/datum/map_template/ruin/wasteplanet/crash_kitchen
- name = "Crashed Kitchen"
- description = "A crashed part of some unlucky ship."
- id = "crash_kitchen"
- suffix = "wasteplanet_crash_kitchen.dmm"
-
/datum/map_template/ruin/wasteplanet/radiation
name = "Honorable deeds storage"
id = "wasteplanet_radiation"
description = "A dumping ground for nuclear waste."
suffix = "wasteplanet_unhonorable.dmm"
-/datum/map_template/ruin/wasteplanet/tradepost
- name = "Tradepost"
- id = "oldpod"
- description = "An abandoned tradepost."
- suffix = "wasteplanet_tradepost.dmm"
-
-/datum/map_template/ruin/wasteplanet/tarpit
- name = "Tar pit"
- id = "tarpit"
- description = "A facility once constructed over a asphalt deposit."
- suffix = "wasteplanet_tarpit.dmm"
-
/datum/map_template/ruin/wasteplanet/abandoned_mechbay
name = "Abandoned Mech Bay"
description = "A military base formerly used for staging 4 mechs and crew. God knows what's in it now."
diff --git a/code/datums/ruins/whitesands.dm b/code/datums/ruins/whitesands.dm
index 8e34f7cf379..b3e0cb13adc 100644
--- a/code/datums/ruins/whitesands.dm
+++ b/code/datums/ruins/whitesands.dm
@@ -4,43 +4,12 @@
prefix = "_maps/RandomRuins/SandRuins/"
ruin_type = RUINTYPE_SAND
-/datum/map_template/ruin/whitesands/starfury_crash
- name = "Starfury Crash"
- id = "starfurycrash"
- description = "The remains of an unidentified syndicate battleship has crashed here."
- suffix = "whitesands_surface_starfurycrash.dmm"
- allow_duplicates = FALSE
-
/datum/map_template/ruin/whitesands/medipen_plant
name = "Abandoned Medipen Factory"
id = "medipenplant"
description = "A once prosperous autoinjector manufacturing plant."
suffix = "whitesands_surface_medipen_plant.dmm"
-/datum/map_template/ruin/whitesands/assaultpodcrash
- name = "Crashed Syndicate Assault Drop Pod"
- id = "ws-assaultpodcrash"
- description = "The fauna of desert planets can be deadly even to equipped Syndicate Operatives."
- suffix = "whitesands_surface_assaultpodcrash.dmm"
-
-/datum/map_template/ruin/whitesands/conveniencestore
- name = "Conveniently Abandoned Convenience Store"
- id = "ws-conveniencestore"
- description = "Pretty convenient that they have a convenience store out here, huh?"
- suffix = "whitesands_surface_conveniencestore.dmm"
-
-/datum/map_template/ruin/whitesands/onlyaspoonful
- name = "Abandoned Spoon Factory"
- id = "ws-onlyaspoonful"
- description = "Literally a fucking spoon factory"
- suffix = "whitesands_surface_onlyaspoonful.dmm"
-
-/datum/map_template/ruin/whitesands/chokepoint
- name = "Chokepoint"
- id = "ws-chokepoint"
- description = "Some sort of survivors, brandishing old nanotrasen security gear."
- suffix = "whitesands_surface_chokepoint.dmm"
-
/datum/map_template/ruin/whitesands/pubbyslopcrash
name = "Pubby Slop Crash"
id = "ws-pubbyslopcrash"
@@ -48,19 +17,13 @@
suffix = "whitesands_surface_pubbyslopcrash.dmm"
//////////OUTSIDE SETTLEMENTS/RUINS//////////
-/datum/map_template/ruin/whitesands/survivors/drugstore
- name = "Abandoned Store"
- id = "ws-drugstore"
- description = "A store that once sold a variety of items and equipment."
- suffix = "whitesands_surface_camp_drugstore.dmm"
-
/datum/map_template/ruin/whitesands/survivors/saloon
name = "Hermit Saloon"
id = "ws-saloon"
description = "A western style saloon, most popular spot for the hermits to gather planetside"
suffix = "whitesands_surface_camp_saloon.dmm"
-/datum/map_template/ruin/whitesands/survivors/combination //combined extra large ruin of several other whitesands survivor ruins (excludes the drugstore)
+/datum/map_template/ruin/whitesands/survivors/combination //combined extra large ruin of several other whitesands survivor ruins
name = "Wasteland Survivor Village"
id = "ws-combination"
description = "A small encampment of nomadic survivors of the First Colony, and their descendants. By all accounts, feral and without allegance to anyone but themselves."
diff --git a/code/datums/shuttles.dm b/code/datums/shuttles.dm
index 84e21fd0633..d7b60476d97 100644
--- a/code/datums/shuttles.dm
+++ b/code/datums/shuttles.dm
@@ -21,7 +21,8 @@
var/prefix = "ISV"
/// The full name of the ship's faction.
var/faction_name = "Independent"
- var/unique_ship_access = FALSE
+ /// Whether or not players from other ships can open airlocks.
+ var/unique_ship_access = TRUE
/// Set by config JSON. If true, the template's ships' "default" spawn location (when bought by a player or loaded at roundstart)
/// will be in the middle of space, instead of at an outpost.
var/space_spawn = FALSE
@@ -400,3 +401,8 @@
file_name = "pgf_nail"
name = "Nail-class Boarding Vessel"
prefix = "PGF"
+
+/datum/map_template/shuttle/subshuttles/brawler
+ file_name = "frontiersmen_brawler"
+ name = "Brawler-class Dropship"
+ prefix = "SV"
diff --git a/code/datums/status_effects/debuffs.dm b/code/datums/status_effects/debuffs.dm
index 52087f03174..02b96c1b81d 100644
--- a/code/datums/status_effects/debuffs.dm
+++ b/code/datums/status_effects/debuffs.dm
@@ -334,7 +334,8 @@
/datum/status_effect/neck_slice/tick()
var/mob/living/carbon/human/H = owner
- if(H.stat == DEAD || H.bleed_rate <= 8)
+ var/obj/item/bodypart/throat_in_question = H.get_bodypart(BODY_ZONE_HEAD)
+ if(H.stat == DEAD || throat_in_question?.bleeding <= 8)
H.remove_status_effect(/datum/status_effect/neck_slice)
if(prob(10))
H.emote(pick("gasp", "gag", "choke"))
diff --git a/code/datums/status_effects/gas.dm b/code/datums/status_effects/gas.dm
index 11037374b9b..cc6a91b2f26 100644
--- a/code/datums/status_effects/gas.dm
+++ b/code/datums/status_effects/gas.dm
@@ -38,7 +38,7 @@
/datum/status_effect/freon/proc/do_resist()
to_chat(owner, "You start breaking out of the ice cube...")
- if(do_mob(owner, owner, 40))
+ if(do_after(owner, 40))
if(!QDELETED(src))
to_chat(owner, "You break out of the ice cube!")
owner.remove_status_effect(/datum/status_effect/freon)
diff --git a/code/datums/status_effects/neutral.dm b/code/datums/status_effects/neutral.dm
index 76a33319631..c7765ff772a 100644
--- a/code/datums/status_effects/neutral.dm
+++ b/code/datums/status_effects/neutral.dm
@@ -275,3 +275,29 @@
/atom/movable/screen/alert/status_effect/surrender/Click(location, control, params)
. = ..()
owner.emote("surrender")
+
+/datum/status_effect/rooted
+ id = "rooted"
+ alert_type = /atom/movable/screen/alert/status_effect/rooted
+
+/datum/status_effect/rooted/on_apply()
+ . = ..()
+ ADD_TRAIT(owner,TRAIT_IMMOBILIZED, TRAIT_STATUS_EFFECT(id))
+ ADD_TRAIT(owner,TRAIT_PUSHIMMUNE, TRAIT_STATUS_EFFECT(id))
+ SEND_SIGNAL(owner, COMSIG_ADD_MOOD_EVENT, "root", /datum/mood_event/root)
+
+/datum/status_effect/rooted/on_remove()
+ . = ..()
+ REMOVE_TRAIT(owner,TRAIT_IMMOBILIZED, TRAIT_STATUS_EFFECT(id))
+ REMOVE_TRAIT(owner,TRAIT_PUSHIMMUNE, TRAIT_STATUS_EFFECT(id))
+
+/atom/movable/screen/alert/status_effect/rooted
+ name = "Rooted"
+ desc = "You're currently rooted into the ground and can't move. Click here to start digging yourself out."
+ icon_state = "dig_out"
+
+/atom/movable/screen/alert/status_effect/rooted/Click(location, control, params)
+ . = ..()
+ to_chat(owner, span_notice("You begin digging yourself free."))
+ SEND_SIGNAL(owner,COMSIG_DIGOUT)
+
diff --git a/code/datums/traits/good.dm b/code/datums/traits/good.dm
index 52ee20e23c2..574c35f60be 100644
--- a/code/datums/traits/good.dm
+++ b/code/datums/traits/good.dm
@@ -62,26 +62,6 @@
lose_text = "You feel isolated from others."
medical_record_text = "Patient is highly perceptive of and sensitive to social cues, or may possibly have ESP. Further testing needed."
-/datum/quirk/fan_clown
- name = "Clown Fan"
- desc = "You enjoy clown antics and get a mood boost from wearing your clown pin."
- value = 1
- mob_traits = list(TRAIT_FAN_CLOWN)
- gain_text = "You are a big fan of clowns."
- lose_text = "The clown doesn't seem so great."
- medical_record_text = "Patient reports being a big fan of clowns."
-
-/datum/quirk/fan_clown/on_spawn()
- var/mob/living/carbon/human/H = quirk_holder
- var/obj/item/clothing/accessory/fan_clown_pin/B = new(get_turf(H))
- var/list/slots = list (
- "backpack" = ITEM_SLOT_BACKPACK,
- "hands" = ITEM_SLOT_HANDS,
- )
- H.equip_in_one_of_slots(B, slots , qdel_on_fail = TRUE)
- var/datum/atom_hud/fan = GLOB.huds[DATA_HUD_FAN]
- fan.add_hud_to(H)
-
/datum/quirk/fan_rilena
name = "RILENA Super Fan"
desc = "You are a major fan of the popular webseries RILENA: LMR. You get a mood boost from plushies of your favorite characters, and wearing your Xader pin."
@@ -102,26 +82,6 @@
var/datum/atom_hud/fan = GLOB.huds[DATA_HUD_FAN]
fan.add_hud_to(H)
-/datum/quirk/fan_mime
- name = "Mime Fan"
- desc = "You enjoy mime antics and get a mood boost from wearing your mime pin."
- value = 1
- mob_traits = list(TRAIT_FAN_MIME)
- gain_text = "You are a big fan of the Mime."
- lose_text = "The mime doesn't seem so great."
- medical_record_text = "Patient reports being a big fan of mimes."
-
-/datum/quirk/fan_mime/on_spawn()
- var/mob/living/carbon/human/H = quirk_holder
- var/obj/item/clothing/accessory/fan_mime_pin/B = new(get_turf(H))
- var/list/slots = list (
- "backpack" = ITEM_SLOT_BACKPACK,
- "hands" = ITEM_SLOT_HANDS,
- )
- H.equip_in_one_of_slots(B, slots , qdel_on_fail = TRUE)
- var/datum/atom_hud/fan = GLOB.huds[DATA_HUD_FAN]
- fan.add_hud_to(H)
-
/datum/quirk/freerunning
name = "Freerunning"
desc = "You're great at quick moves! You can climb tables more quickly."
diff --git a/code/datums/traits/negative.dm b/code/datums/traits/negative.dm
index 4b0afce14b4..d1a8fd6acaa 100644
--- a/code/datums/traits/negative.dm
+++ b/code/datums/traits/negative.dm
@@ -430,11 +430,6 @@
/datum/quirk/insanity/proc/madness()
quirk_holder.hallucination += rand(10, 25)
-/datum/quirk/insanity/post_add() //I don't /think/ we'll need this but for newbies who think "roleplay as insane" = "license to kill" it's probably a good thing to have
- if(!quirk_holder.mind || quirk_holder.mind.special_role)
- return
- to_chat(quirk_holder, "Please note that your dissociation syndrome does NOT give you the right to attack people or otherwise cause any interference to \
- the round. You are not an antagonist, and the rules will treat you the same as other crewmembers.")
/datum/quirk/social_anxiety
name = "Social Anxiety"
@@ -589,24 +584,57 @@
reagent_type = /datum/reagent/drug/nicotine
accessory_type = /obj/item/lighter/greyscale
+//I fucking hate prefscode
+
/datum/quirk/junkie/smoker/on_spawn()
- drug_container_type = pick(/obj/item/storage/fancy/cigarettes,
- /obj/item/storage/fancy/cigarettes/cigpack_midori,
- /obj/item/storage/fancy/cigarettes/cigpack_uplift,
- /obj/item/storage/fancy/cigarettes/cigpack_robust,
- /obj/item/storage/fancy/cigarettes/cigpack_robustgold,
- /obj/item/storage/fancy/cigarettes/cigpack_carp)
+ var/mob/living/carbon/human/H = quirk_holder
+ switch (H.client?.prefs.preferred_smoke_brand)
+ if (PREF_CIG_SPACE)
+ drug_container_type = /obj/item/storage/fancy/cigarettes
+ if (PREF_CIG_DROMEDARY)
+ drug_container_type = /obj/item/storage/fancy/cigarettes/dromedaryco
+ if (PREF_CIG_UPLIFT)
+ drug_container_type = /obj/item/storage/fancy/cigarettes/cigpack_uplift
+ if (PREF_CIG_ROBUST)
+ drug_container_type = /obj/item/storage/fancy/cigarettes/cigpack_robust
+ if (PREF_CIG_ROBUSTGOLD)
+ drug_container_type = /obj/item/storage/fancy/cigarettes/cigpack_robustgold
+ if (PREF_CIG_CARP)
+ drug_container_type= /obj/item/storage/fancy/cigarettes/cigpack_carp
+ if (PREF_CIG_MIDORI)
+ drug_container_type = /obj/item/storage/fancy/cigarettes/cigpack_midori
+ if (PREF_CIGAR)
+ drug_container_type = /obj/item/storage/fancy/cigarettes/cigars
+ accessory_type = /obj/item/storage/box/matches
+ if (PREF_CIGAR_SOLAR)
+ drug_container_type = /obj/item/storage/fancy/cigarettes/cigars/havana
+ accessory_type = /obj/item/storage/box/matches
+ if (PREF_CIGAR_COHIBA)
+ drug_container_type = /obj/item/storage/fancy/cigarettes/cigars/cohiba
+ accessory_type = /obj/item/storage/box/matches
+ if (PREF_VAPE)
+ drug_container_type = /obj/item/clothing/mask/vape
+ accessory_type = null
+ if (PREF_PIPE)
+ drug_container_type = /obj/item/clothing/mask/cigarette/pipe
+ accessory_type = /obj/item/storage/box/matches
+ else
+ CRASH("Someone had an improper cigarette pref on loading")
. = ..()
/datum/quirk/junkie/smoker/announce_drugs()
- to_chat(quirk_holder, "There is a [initial(drug_container_type.name)] [where_drug], and a lighter [where_accessory]. Make sure you get your favorite brand when you run out.")
-
+ if(accessory_type == null)
+ to_chat(quirk_holder, "There is a [initial(drug_container_type.name)] [where_drug], Make sure you get a refill soon.")
+ return
+ to_chat(quirk_holder, "There is a [initial(drug_container_type.name)] [where_drug], and a [initial(accessory_type.name)] [where_accessory]. Make sure you get your favorite brand when you run out.")
/datum/quirk/junkie/smoker/on_process()
. = ..()
var/mob/living/carbon/human/H = quirk_holder
var/obj/item/I = H.get_item_by_slot(ITEM_SLOT_MASK)
if (istype(I, /obj/item/clothing/mask/cigarette))
+ if(I == drug_container_type)
+ return
var/obj/item/storage/fancy/cigarettes/C = drug_container_type
if(istype(I, initial(C.spawn_type)))
SEND_SIGNAL(quirk_holder, COMSIG_CLEAR_MOOD_EVENT, "wrong_cigs")
diff --git a/code/game/area/areas/ruins/beachplanet.dm b/code/game/area/areas/ruins/beachplanet.dm
index 919d2602a3d..d33825e0087 100644
--- a/code/game/area/areas/ruins/beachplanet.dm
+++ b/code/game/area/areas/ruins/beachplanet.dm
@@ -1,4 +1,3 @@
-
//tropical ruins here
//Beachside Town
@@ -24,12 +23,6 @@
/area/ruin/beach/oceantown/house
-//Knight's Rest
-
-/area/ruin/beachplanet/knight
- name = "Knight's Rest"
- icon_state = "dkyellow"
-
//Ancient Complex
/area/ruin/beach/complex //seems quite simple to me
@@ -58,12 +51,6 @@
/area/ruin/beach/piratecrash/storage
name = "Scrap Hut"
-//beach_crashed_starwalker
-
-/area/ruin/beach/starwalker
- name = "Crashed Pirate Ship"
- icon_state = "green"
-
//beach_treasure_cove, the beeginning
/area/ruin/beach/treasure_cove
diff --git a/code/game/area/areas/ruins/icemoon.dm b/code/game/area/areas/ruins/icemoon.dm
index d2c8d1ca61f..8e614c8a0e7 100644
--- a/code/game/area/areas/ruins/icemoon.dm
+++ b/code/game/area/areas/ruins/icemoon.dm
@@ -1,21 +1,5 @@
// Icemoon Ruins
-//Buried Library
-
-/area/ruin/unpowered/buried_library
- name = "Buried Library"
- icon_state = "dk_yellow"
-
-//Bathhouse
-
-/area/ruin/powered/bathhouse
- name = "Bath House"
- icon_state = "dk_yellow"
- mood_bonus = 10
- mood_message = "I wish I could stay here forever.\n"
-
-//corporate rejects
-
//Corporate Rejects
/area/ruin/unpowered/corprejectrooms
diff --git a/code/game/area/areas/ruins/jungle.dm b/code/game/area/areas/ruins/jungle.dm
index 09d0e95f2f3..2d2fc76f97b 100644
--- a/code/game/area/areas/ruins/jungle.dm
+++ b/code/game/area/areas/ruins/jungle.dm
@@ -1,10 +1,3 @@
-//Thneed Factory
-
-/area/ruin/jungle/onceler/main
- requires_power = FALSE
- name = "Thneed Factory"
- icon_state = "engine"
-
//Interceptor Crash Site
/area/ruin/jungle/interceptor/crashsite
@@ -89,10 +82,6 @@
name = "cargo dump"
icon_state = "dk_yellow"
-/area/ruin/jungle/roommates/shack
- name = "clown and mime hideout"
- icon_state = "crew_quarters"
-
// Bombed Syndicate Starport
/area/ruin/jungle/starport
name = "Bombed Air Base"
diff --git a/code/game/area/areas/ruins/lavaland.dm b/code/game/area/areas/ruins/lavaland.dm
index 3722fcb0935..f7cbb414bc0 100644
--- a/code/game/area/areas/ruins/lavaland.dm
+++ b/code/game/area/areas/ruins/lavaland.dm
@@ -1,25 +1,25 @@
//Lavaland Ruins
-// Beach
+// Winter Biodome
-/area/ruin/powered/beach
- icon_state = "dk_yellow"
+/area/ruin/unpowered/winter_biodome
+ icon_state = "bluenew"
+ name = "Biodome Main Area"
-// Snow Biodome
+/area/ruin/unpowered/winter_biodome/entrance
+ name = "Biodome Entrance"
-/area/ruin/powered/snow_biodome
- icon_state = "dk_yellow"
+/area/ruin/unpowered/winter_biodome/living_quarters
+ name = "Biodome Living Quarters"
-//Gluttony
+/area/ruin/unpowered/winter_biodome/cabin
+ name = "Biodome Cabin"
-/area/ruin/powered/gluttony
- icon_state = "dk_yellow"
+/area/ruin/unpowered/winter_biodome/engineering
+ name = "Biodome Engineering"
-//Golem Ship
-
-/area/ruin/powered/golem_ship
- name = "Free Golem Ship"
- icon_state = "dk_yellow"
+/area/ruin/unpowered/winter_biodome/sauna
+ name = "Biodome Sauna"
//Hierophant Arena
@@ -38,61 +38,50 @@
name = "Elephant Graveyard"
icon_state = "green"
-//Syndicate Comms Outpost
+//Lava Canyon
-/area/ruin/unpowered/syndicate_outpost
- name = "Syndicate Comm Outpost"
- icon_state = "dk_yellow"
-
-
-//Xeno Nest
-
-/area/ruin/unpowered/xenonest
- name = "The Hive"
- always_unpowered = TRUE
- power_environ = FALSE
- power_equip = FALSE
- power_light = FALSE
- poweralm = FALSE
-
-// Crashed Pinnance
+/area/ruin/unpowered/scorched_hut
+ name = "Scorched Hut"
+ icon_state = "red"
-/area/ruin/unpowered/crashsite
- name = "Crash Site"
- icon_state = "green"
+// Wrecked Factory
-/area/ruin/unpowered/crashsite/pinnance
- name = "Pinnace Wreckage"
- icon_state = "dk_yellow"
- always_unpowered = TRUE
+/area/ruin/lavaland/factory/warehouse
+ name = "Factory Warehouse"
+ icon_state = "cargo_warehouse"
+ requires_power = FALSE
-/area/ruin/unpowered/codelab
- name = "Nanotrasen Genetic Research Facility"
- icon_state = "bluenew"
+/area/ruin/lavaland/factory/foreman_office
+ name = "Foreman's Office"
+ icon_state = "purple"
+ requires_power = FALSE
-/area/ruin/unpowered/codelab/exterior
- name = "Nanotrasen Genetic Research Facility Exterior"
+/area/ruin/lavaland/factory/adminstrative
+ name = "Adminstrative Wing"
+ icon_state = "bridge_hallway"
+ requires_power = FALSE
-/area/ruin/unpowered/codelab/reception
- name = "Nanotrasen Genetic Research Reception"
- icon_state = "green"
+/area/ruin/lavaland/factory/manager_office
+ name ="Manager's Office"
+ icon_state = "bridge"
+ requires_power = FALSE
-/area/ruin/unpowered/codelab/subjectrooms
- name = "Nanotrasen Genetic Research Test Subject Storage"
- icon_state = "Sleep"
+/area/ruin/lavaland/factory/lobby
+ name ="Lobby"
+ icon_state = "hallC"
+ requires_power = FALSE
-/area/ruin/unpowered/codelab/storage
- name = "Nanotrasen Genetic Research Storage"
- icon_state = "cargo_bay"
+/area/ruin/lavaland/factory/dorms
+ name ="Dormitory"
+ icon_state = "crew_quarters"
+ requires_power = FALSE
+//Buried Shrine
-/area/ruin/unpowered/codelab/laboratory
- name = "Nanotrasen Genetic Research Laboratory"
- icon_state = "bridge"
+/area/ruin/unpowered/buried_shrine
+ name = "Buried Shrine"
+ icon_state = "red"
-/area/ruin/unpowered/codelab/maintenance
- name = "Nanotrasen Genetic Research Maintenance"
- icon_state = "dk_yellow"
+//Crashed Starwalker
-/area/ruin/unpowered/scorched_hut
- name = "Scorched Hut"
- icon_state = "red"
+/area/ruin/unpowered/crashed_starwalker
+ name = "Crashed Pirate Ship"
diff --git a/code/game/area/areas/ruins/rockplanet.dm b/code/game/area/areas/ruins/rockplanet.dm
index a8996956619..43516a72376 100644
--- a/code/game/area/areas/ruins/rockplanet.dm
+++ b/code/game/area/areas/ruins/rockplanet.dm
@@ -1,15 +1,31 @@
/**********************Rock Planet Areas**************************/
-
-//syndicate
-/area/ruin/rockplanet/syndicate
- name = "Abandoned Syndicate Mining Facility"
- icon_state = "green"
+/area/ruin/rockplanet
+ icon_state = "red"
//budgetcuts
/area/ruin/rockplanet/nanotrasen
name = "Abandoned Research Facility"
always_unpowered = FALSE
- icon_state = "green"
+
+//shippingdock
+/area/ruin/rockplanet/shippingdockoffice
+ name = "Employee Office"
+ icon_state = "crew_quarters"
+
+/area/ruin/rockplanet/shippingdockcustoms
+ name = "Cargo Checkpoint"
+ icon_state = "security"
+
+/area/ruin/rockplanet/shippingdockwarehouse
+ name = "Warehouse"
+ icon_state = "storage"
+
+/area/ruin/rockplanet/shippingdocksecure
+ name = "Warehouse Secure Storage"
+ icon_state = "armory"
+
+/area/ruin/rockplanet/shippingdock
+ name = "Abandoned Shipping Dock"
//nomad
/area/ruin/rockplanet/nomad
diff --git a/code/game/area/areas/ruins/space.dm b/code/game/area/areas/ruins/space.dm
index e6034e41219..45a9113d86b 100644
--- a/code/game/area/areas/ruins/space.dm
+++ b/code/game/area/areas/ruins/space.dm
@@ -11,29 +11,12 @@
requires_power = FALSE
/////////////
-
-/area/ruin/space/way_home
- name = "\improper Salvation"
- icon_state = "away"
- always_unpowered = FALSE
-
// Onehalf Ruin
/area/ruin/space/has_grav/onehalf
name = "Station Fragment"
icon_state = "away"
-//Dinner For Two
-
-/area/ruin/space/has_grav/powered/dinner_for_two
- name = "Dinner for Two"
-
-//Aesthetic
-
-/area/ruin/space/has_grav/powered/aesthetic
- name = "Aesthetic"
- ambientsounds = list('sound/ambience/ambivapor1.ogg')
-
//Ruin of Derelict Oupost
/area/ruin/space/has_grav/derelictoutpost
@@ -56,222 +39,6 @@
name = "Derelict Outpost Docked Ship"
icon_state = "red"
-//Ruin of Deep Storage
-
-/area/ruin/space/has_grav/deepstorage
- name = "Deep Storage"
- icon_state = "storage"
-
-/area/ruin/space/has_grav/deepstorage/airlock
- name = "Deep Storage Airlock"
- icon_state = "quart"
-
-/area/ruin/space/has_grav/deepstorage/power
- name = "Deep Storage Power and Atmospherics Room"
- icon_state = "engi_storage"
-
-/area/ruin/space/has_grav/deepstorage/hydroponics
- name = "Deep Storage Hydroponics"
- icon_state = "garden"
-
-/area/ruin/space/has_grav/deepstorage/armory
- name = "Deep Storage Secure Storage"
- icon_state = "armory"
-
-/area/ruin/space/has_grav/deepstorage/storage
- name = "Deep Storage Storage"
- icon_state = "storage_wing"
-
-/area/ruin/space/has_grav/deepstorage/dorm
- name = "Deep Storage Dormitory"
- icon_state = "crew_quarters"
-
-/area/ruin/space/has_grav/deepstorage/kitchen
- name = "Deep Storage Kitchen"
- icon_state = "kitchen"
-
-/area/ruin/space/has_grav/deepstorage/crusher
- name = "Deep Storage Recycler"
- icon_state = "storage"
-
-//DERELICT
-
-/area/ruin/space/derelict
- name = "Derelict Station"
- icon_state = "storage"
-
-/area/ruin/space/derelict/hallway/primary
- name = "Derelict Primary Hallway"
- icon_state = "hallP"
-
-/area/ruin/space/derelict/hallway/secondary
- name = "Derelict Secondary Hallway"
- icon_state = "hallS"
-
-/area/ruin/space/derelict/hallway/primary/port
- name = "Derelict Port Hallway"
- icon_state = "hallFP"
-
-/area/ruin/space/derelict/arrival
- name = "Derelict Arrival Centre"
- icon_state = "yellow"
-
-/area/ruin/space/derelict/storage/equipment
- name = "Derelict Equipment Storage"
-
-/area/ruin/space/derelict/bridge
- name = "Derelict Control Room"
- icon_state = "bridge"
-
-/area/ruin/space/derelict/bridge/access
- name = "Derelict Control Room Access"
- icon_state = "auxstorage"
-
-/area/ruin/space/derelict/bridge/ai_upload
- name = "Derelict Computer Core"
- icon_state = "ai"
-
-/area/ruin/space/derelict/solar_control
- name = "Derelict Solar Control"
- icon_state = "engine"
-
-/area/ruin/space/derelict/se_solar
- name = "South East Solars"
- icon_state = "engine"
-
-/area/ruin/space/derelict/medical
- name = "Derelict Medbay"
- icon_state = "medbay"
-
-/area/ruin/space/derelict/medical/chapel
- name = "Derelict Chapel"
- icon_state = "chapel"
-
-/area/solar/derelict_starboard
- name = "Derelict Starboard Solar Array"
- icon_state = "panelsS"
-
-/area/solar/derelict_aft
- name = "Derelict Aft Solar Array"
- icon_state = "yellow"
-
-/area/ruin/space/derelict/singularity_engine
- name = "Derelict Singularity Engine"
- icon_state = "engine"
-
-/area/ruin/space/derelict/gravity_generator
- name = "Derelict Gravity Generator Room"
- icon_state = "red"
-
-/area/ruin/space/derelict/atmospherics
- name = "Derelict Atmospherics"
- icon_state = "red"
-
-//DJSTATION
-
-/area/ruin/space/djstation
- name = "Ruskie DJ Station"
- icon_state = "DJ"
- has_gravity = STANDARD_GRAVITY
-
-/area/ruin/space/djstation/solars
- name = "DJ Station Solars"
- icon_state = "DJ"
- has_gravity = STANDARD_GRAVITY
-
-//OLD AI SAT
-
-/area/tcommsat/oldaisat
- name = "Abandoned Satellite"
- icon_state = "tcomsatcham"
-
-//ABANDONED BOX WHITESHIP
-
-/area/ruin/space/has_grav/whiteship/box
-
- name = "Abandoned Ship"
- icon_state = "red"
-
-
-//SYNDICATE LISTENING POST STATION
-
-/area/ruin/space/has_grav/listeningstation
- name = "Listening Post"
- icon_state = "yellow"
-
-/area/ruin/space/has_grav/powered/ancient_shuttle
- name = "Ancient Shuttle"
- icon_state = "yellow"
-
-//HELL'S FACTORY OPERATING FACILITY
-
-/area/ruin/space/has_grav/hellfactory
- name = "Hell Factory"
- icon_state = "yellow"
-
-/area/ruin/space/has_grav/hellfactoryoffice
- name = "Hell Factory Office"
- icon_state = "red"
- area_flags = VALID_TERRITORY | BLOBS_ALLOWED | NOTELEPORT
-
-//Ruin of Transport 18
-
-/area/ruin/space/has_grav/transport18fore
- name = "Booze Cruise Fore"
- icon_state = "crew_quarters"
-
-/area/ruin/space/has_grav/transport18mid
- name = "Booze Cruise Hold"
- icon_state = "cargo_bay"
-
-/area/ruin/space/transport18aft
- name = "Booze Cruise Aft"
- icon_state = "engine"
-
-//Ruin of the rad ship. It's pretty rad.
-
-/area/ruin/space/has_grav/radship/Cargo1
- name = "Cargo Bay 1"
- icon_state = "cargo_bay"
-
-/area/ruin/space/has_grav/radship/Cargo2
- name = "Cargo Bay 2"
- icon_state = "cargo_bay"
-
-/area/ruin/space/has_grav/radship/Cargo3
- name = "Cargo Bay 3"
- icon_state = "cargo_bay"
-
-/area/ruin/space/has_grav/radship/Cargo4
- name = "Cargo Bay 4"
- icon_state = "cargo_bay"
-
-/area/ruin/space/has_grav/radship/EngineRoom
- name = "Engine Room"
- icon_state = "yellow"
-
-/area/ruin/space/has_grav/radship/Engineering
- name = "Engineering"
- icon_state = "engine"
-
-/area/ruin/space/has_grav/radship/MethLab
- name = "Storage"
- icon_state = "red"
-
-/area/ruin/space/has_grav/radship/CrewQuarters
- name = "Crew Quarters"
- icon_state = "green"
-
-/area/ruin/space/has_grav/radship/Hallway
- name = "Hallway"
- icon_state = "away"
-
-//MACSPACE
-
-/area/ruin/space/has_grav/powered/macspace
- name = "Mac Space Restaurant"
- icon_state = "yellow"
-
//POWER PUZZLE
/area/ruin/space/has_grav/powerpuzzle
@@ -286,20 +53,6 @@
name = "Engineering Wing"
icon_state = "yellow"
-//scav_mining
-
-/area/ruin/space/has_grav/scav_mining/entrance
- name = "Asteroid mine entrance"
- icon_state = "red"
-
-/area/ruin/space/has_grav/scav_mining/core
- name = "Asteroid mine core"
- icon_state = "yellow"
-
-/area/ruin/space/has_grav/scav_mining/dorm
- name = "Asteroid mine dorm"
- icon_state = "blue"
-
//astraeus
/area/ruin/space/has_grav/astraeus/hallway
@@ -326,44 +79,6 @@
name = "Custodial Closet"
icon_state = "green"
-/area/ruin/space/has_grav/glade
- name = "\improper Dark Glade"
- icon_state = "away"
- always_unpowered = FALSE
-
-//Syndie battle sphere
-
-/area/ruin/space/has_grav/syndicircle/halls
- name = "Syndicate Battle Sphere Primary Hallway"
- icon_state = "dk_yellow"
- color = "#a5131388"
-
-/area/ruin/space/has_grav/syndicircle/spacewalk
- name = "Syndicate Battle Sphere Shuttle Launch Site"
- icon_state = "dk_yellow"
- color = "#663cb488"
-
-/area/ruin/space/has_grav/syndicircle/research
- name = "Syndicate Battle Sphere Laboratory"
- icon_state = "dk_yellow"
- color = "#228a2b88"
-
-/area/ruin/space/has_grav/syndicircle/escape
- name = "Syndicate Battle Sphere Escape Shuttle"
- icon_state = "dk_yellow"
- color = "#92bb3388"
-
-/area/ruin/space/has_grav/syndicircle/winter
- name = "Syndicate Battle Sphere Snow Outpost"
- icon_state = "dk_yellow"
- color = "#4341c488"
-
-/area/ruin/space/has_grav/syndicircle/training
- name = "Syndicate Battle Sphere Training Grounds"
- icon_state = "dk_yellow"
- color = "#26773a88"
-
-
//Singularity Lab
/area/ruin/space/has_grav/singularitylab
diff --git a/code/game/area/areas/shuttles.dm b/code/game/area/areas/shuttles.dm
index a9d7220bd3c..6060367ca51 100644
--- a/code/game/area/areas/shuttles.dm
+++ b/code/game/area/areas/shuttles.dm
@@ -189,27 +189,3 @@
/area/shuttle/syndicate_scout
name = "Syndicate Scout"
-
-/area/shuttle/caravan
- requires_power = TRUE
-
-/area/shuttle/caravan/syndicate1
- name = "Syndicate Fighter"
-
-/area/shuttle/caravan/syndicate2
- name = "Syndicate Fighter"
-
-/area/shuttle/caravan/syndicate3
- name = "Syndicate Drop Ship"
-
-/area/shuttle/caravan/pirate
- name = "Pirate Cutter"
-
-/area/shuttle/caravan/freighter1
- name = "Small Freighter"
-
-/area/shuttle/caravan/freighter2
- name = "Tiny Freighter"
-
-/area/shuttle/caravan/freighter3
- name = "Tiny Freighter"
diff --git a/code/game/atoms.dm b/code/game/atoms.dm
index b539e421508..7ffa3255ada 100644
--- a/code/game/atoms.dm
+++ b/code/game/atoms.dm
@@ -84,9 +84,6 @@
var/list/alternate_appearances
- ///Mobs that are currently do_after'ing this atom, to be cleared from on Destroy()
- var/list/targeted_by
-
/// Last appearance of the atom for demo saving purposes
var/image/demo_last_appearance
@@ -310,11 +307,6 @@
LAZYCLEARLIST(overlays)
LAZYCLEARLIST(managed_overlays)
- for(var/i in targeted_by)
- var/mob/M = i
- LAZYREMOVE(M.do_afters, src)
-
- targeted_by = null
QDEL_NULL(light)
if(smoothing_flags & SMOOTH_QUEUED)
@@ -976,15 +968,12 @@
var/list/things = src_object.contents()
var/datum/progressbar/progress = new(user, things.len, src)
var/datum/component/storage/STR = GetComponent(/datum/component/storage)
- while (do_after(user, 10, TRUE, src, FALSE, CALLBACK(STR, TYPE_PROC_REF(/datum/component/storage, handle_mass_item_insertion), things, src_object, user, progress)))
+ while (do_after(user, 1 SECONDS, src, NONE, FALSE, CALLBACK(STR, TYPE_PROC_REF(/datum/component/storage, handle_mass_item_insertion), things, src_object, user, progress)))
stoplag(1)
progress.end_progress()
to_chat(user, "You dump as much of [src_object.parent]'s contents [STR.insert_preposition]to [src] as you can.")
- STR.orient2hud(user)
- src_object.orient2hud(user)
if(user.active_storage) //refresh the HUD to show the transfered contents
- user.active_storage.close(user)
- user.active_storage.show_to(user)
+ user.active_storage.ui_show(user)
return TRUE
///Get the best place to dump the items contained in the source storage item?
diff --git a/code/game/atoms_movable.dm b/code/game/atoms_movable.dm
index 989db20efd1..beb7cef2718 100644
--- a/code/game/atoms_movable.dm
+++ b/code/game/atoms_movable.dm
@@ -624,7 +624,7 @@
SEND_SIGNAL(src, COMSIG_MOVABLE_BUMP, A)
. = ..()
if(!QDELETED(throwing))
- throwing.hit_atom(A)
+ throwing.finalize(hit = TRUE, target = A)
. = TRUE
if(QDELETED(A))
return
@@ -821,7 +821,9 @@
var/impact_signal = SEND_SIGNAL(src, COMSIG_MOVABLE_IMPACT, hit_atom, throwingdatum)
if(impact_signal & COMPONENT_MOVABLE_IMPACT_FLIP_HITPUSH)
hitpush = FALSE // hacky, tie this to something else or a proper workaround later
-
+ if(isturf(loc))
+ var/turf/T = loc
+ T.Entered(src)
if(impact_signal & ~COMPONENT_MOVABLE_IMPACT_NEVERMIND) // in case a signal interceptor broke or deleted the thing before we could process our hit
return hit_atom.hitby(src, throwingdatum=throwingdatum, hitpush=hitpush)
@@ -883,7 +885,7 @@
else
target_zone = thrower.zone_selected
- var/datum/thrownthing/TT = new(src, target, get_turf(target), get_dir(src, target), range, speed, thrower, diagonals_first, force, gentle, callback, target_zone)
+ var/datum/thrownthing/TT = new(src, target, get_dir(src, target), range, speed, thrower, diagonals_first, force, gentle, callback, target_zone)
var/dist_x = abs(target.x - src.x)
var/dist_y = abs(target.y - src.y)
diff --git a/code/game/data_huds.dm b/code/game/data_huds.dm
index 1dee49da7f5..4020895f29b 100644
--- a/code/game/data_huds.dm
+++ b/code/game/data_huds.dm
@@ -216,24 +216,6 @@ Medical HUD! Basic mode needs suit sensors on.
holder.icon_state = "hudhealthy"
-/***********************************************
-FAN HUDs! For identifying other fans on-sight.
-************************************************/
-
-//HOOKS
-
-/mob/living/carbon/human/proc/fan_hud_set_fandom()
- var/image/holder = hud_list[FAN_HUD]
- var/icon/I = icon(icon, icon_state, dir)
- holder.pixel_y = I.Height() - world.icon_size
- holder.icon_state = "hudfan_no"
- var/obj/item/clothing/under/U = get_item_by_slot(ITEM_SLOT_ICLOTHING)
- if(U)
- if(istype(U.attached_accessory, /obj/item/clothing/accessory/fan_mime_pin))
- holder.icon_state = "fan_mime_pin"
- else if(istype(U.attached_accessory, /obj/item/clothing/accessory/fan_clown_pin))
- holder.icon_state = "fan_clown_pin"
-
/***********************************************
Security HUDs! Basic mode shows only the job.
************************************************/
diff --git a/code/game/gamemodes/clown_ops/clown_weapons.dm b/code/game/gamemodes/clown_ops/clown_weapons.dm
index fe95ea3c598..3064a52a48a 100644
--- a/code/game/gamemodes/clown_ops/clown_weapons.dm
+++ b/code/game/gamemodes/clown_ops/clown_weapons.dm
@@ -40,14 +40,14 @@
/obj/item/clothing/shoes/clown_shoes/banana_shoes/combat/Initialize()
. = ..()
var/datum/component/material_container/bananium = GetComponent(/datum/component/material_container)
- bananium.insert_amount_mat(max_recharge, /datum/material/bananium)
+ bananium.insert_amount_mat(max_recharge, /datum/material/hellstone)
START_PROCESSING(SSobj, src)
/obj/item/clothing/shoes/clown_shoes/banana_shoes/combat/process()
var/datum/component/material_container/bananium = GetComponent(/datum/component/material_container)
- var/bananium_amount = bananium.get_material_amount(/datum/material/bananium)
+ var/bananium_amount = bananium.get_material_amount(/datum/material/hellstone)
if(bananium_amount < max_recharge)
- bananium.insert_amount_mat(min(recharge_rate, max_recharge - bananium_amount), /datum/material/bananium)
+ bananium.insert_amount_mat(min(recharge_rate, max_recharge - bananium_amount), /datum/material/hellstone)
/obj/item/clothing/shoes/clown_shoes/banana_shoes/combat/attack_self(mob/user)
ui_action_click(user)
diff --git a/code/game/gamemodes/cult/cult.dm b/code/game/gamemodes/cult/cult.dm
index e6f4f882a40..f7ce7b036eb 100644
--- a/code/game/gamemodes/cult/cult.dm
+++ b/code/game/gamemodes/cult/cult.dm
@@ -16,8 +16,6 @@
if(!istype(M))
return FALSE
if(M.mind)
- if(ishuman(M) && (M.mind.holy_role))
- return FALSE
if(specific_cult && specific_cult.is_sacrifice_target(M.mind))
return FALSE
if(M.mind.enslaved_to && !iscultist(M.mind.enslaved_to))
diff --git a/code/game/gamemodes/objective.dm b/code/game/gamemodes/objective.dm
index 82735ff9d52..65e161f2176 100644
--- a/code/game/gamemodes/objective.dm
+++ b/code/game/gamemodes/objective.dm
@@ -883,31 +883,6 @@ GLOBAL_LIST_EMPTY(possible_items_special)
explanation_text = "Steal at least five guns!"
wanted_items = list(/obj/item/gun)
-/datum/objective/steal_five_of_type/summon_magic
- name = "steal magic"
- explanation_text = "Steal at least five magical artefacts!"
- wanted_items = list()
-
-/datum/objective/steal_five_of_type/summon_magic/New()
- wanted_items = GLOB.summoned_magic_objectives
- ..()
-
-/datum/objective/steal_five_of_type/summon_magic/check_completion()
- var/list/datum/mind/owners = get_owners()
- var/stolen_count = 0
- for(var/datum/mind/M in owners)
- if(!isliving(M.current))
- continue
- var/list/all_items = M.current.GetAllContents() //this should get things in cheesewheels, books, etc.
- for(var/obj/I in all_items) //Check for wanted items
- if(istype(I, /obj/item/book/granter/spell))
- var/obj/item/book/granter/spell/spellbook = I
- if(!spellbook.used || !spellbook.oneuse) //if the book still has powers...
- stolen_count++ //it counts. nice.
- else if(is_type_in_typecache(I, wanted_items))
- stolen_count++
- return stolen_count >= 5
-
//Created by admin tools
/datum/objective/custom
name = "custom"
diff --git a/code/game/machinery/PDApainter.dm b/code/game/machinery/PDApainter.dm
index e9906a6a008..b423b28ce4d 100644
--- a/code/game/machinery/PDApainter.dm
+++ b/code/game/machinery/PDApainter.dm
@@ -5,6 +5,8 @@
icon_state = "pdapainter"
base_icon_state = "pdapainter"
density = TRUE
+ use_power = IDLE_POWER_USE
+ idle_power_usage = IDLE_DRAW_MINIMAL
max_integrity = 200
var/obj/item/pda/storedpda = null
var/list/colorlist = list()
diff --git a/code/game/machinery/Sleeper.dm b/code/game/machinery/Sleeper.dm
index f0a1c403cfa..3d4d05336c3 100644
--- a/code/game/machinery/Sleeper.dm
+++ b/code/game/machinery/Sleeper.dm
@@ -11,6 +11,8 @@
icon_state = "sleeper"
base_icon_state = "sleeper"
density = FALSE
+ use_power = IDLE_POWER_USE
+ idle_power_usage = IDLE_DRAW_LOW
state_open = TRUE
circuit = /obj/item/circuitboard/machine/sleeper
clicksound = 'sound/machines/pda_button1.ogg'
@@ -100,7 +102,7 @@
playsound(src, 'sound/machines/synth_yes.ogg', 50, TRUE, frequency = rand(5120, 8800))
target.apply_status_effect(STATUS_EFFECT_STASIS, STASIS_MACHINE_EFFECT)
target.ExtinguishMob()
- use_power = ACTIVE_POWER_USE
+ set_active_power()
/obj/machinery/sleeper/proc/thaw_them(mob/living/target)
if(IS_IN_STASIS(target))
@@ -109,7 +111,8 @@
/obj/machinery/sleeper/process()
if(!occupant || !isliving(occupant))
- use_power = IDLE_POWER_USE
+ if(use_static_power != IDLE_POWER_USE)
+ set_idle_power()
return
var/mob/living/L_occupant = occupant
if(stasis_running())
diff --git a/code/game/machinery/_machinery.dm b/code/game/machinery/_machinery.dm
index a17b9c705dc..4cddf93b247 100644
--- a/code/game/machinery/_machinery.dm
+++ b/code/game/machinery/_machinery.dm
@@ -21,7 +21,7 @@ Class Variables:
power_channel (num)
What channel to draw from when drawing power for power mode
Possible Values:
- AREA_USAGE_EQUIP:0 -- Equipment Channel
+ AREA_USAGE_EQUIP:1 -- Equipment Channel
AREA_USAGE_LIGHT:2 -- Lighting Channel
AREA_USAGE_ENVIRON:3 -- Environment Channel
@@ -44,7 +44,7 @@ Class Procs:
auto_use_power() 'game/machinery/machine.dm'
This proc determines how power mode power is deducted by the machine.
'auto_use_power()' is called by the 'master_controller' game_controller every
- tick.
+ tick. (not anymore)
Return Value:
return:1 -- if object is powered
@@ -102,6 +102,7 @@ Class Procs:
//0 = dont run the auto
//1 = run auto, use idle
//2 = run auto, use active
+ var/use_static_power = NO_POWER_USE
var/idle_power_usage = 0
var/active_power_usage = 0
var/power_channel = AREA_USAGE_EQUIP
@@ -151,7 +152,11 @@ Class Procs:
if(occupant_typecache)
occupant_typecache = typecacheof(occupant_typecache)
-
+ switch(use_power)
+ if(IDLE_POWER_USE)
+ set_idle_power()
+ if(ACTIVE_POWER_USE)
+ set_active_power()
return INITIALIZE_HINT_LATELOAD
/// Helper proc for telling a machine to start processing with the subsystem type that is located in its `subsystem_type` var.
@@ -168,7 +173,16 @@ Class Procs:
. = ..()
power_change()
become_area_sensitive(ROUNDSTART_TRAIT)
- RegisterSignal(src, COMSIG_ENTER_AREA, PROC_REF(power_change))
+ RegisterSignal(src, COMSIG_ENTER_AREA, PROC_REF(enter_area))
+ RegisterSignal(src, COMSIG_EXIT_AREA, PROC_REF(exit_area))
+
+/obj/machinery/proc/enter_area(datum/source, area/A)
+ SIGNAL_HANDLER
+ power_change(A)
+
+/obj/machinery/proc/exit_area(datum/source, area/A)
+ SIGNAL_HANDLER
+ set_no_power(A)
/obj/machinery/Destroy()
GLOB.machines.Remove(src)
@@ -177,6 +191,7 @@ Class Procs:
lose_area_sensitivity(ROUNDSTART_TRAIT)
QDEL_NULL(circuit)
QDEL_LIST(component_parts)
+ set_no_power()
return ..()
/obj/machinery/proc/locate_machinery()
@@ -273,8 +288,8 @@ Class Procs:
target.forceMove(src)
updateUsrDialog()
update_appearance()
-
-/obj/machinery/proc/auto_use_power()
+/*
+/obj/machinery/proc/auto_use_power() //obsolete, tick controller doesn't call this anymore because machines use addStaticPower now.
if(!powered(power_channel))
return 0
if(use_power == 1)
@@ -282,7 +297,7 @@ Class Procs:
else if(use_power >= 2)
use_power(active_power_usage,power_channel)
return 1
-
+*/
///Called when we want to change the value of the `is_operational` variable. Boolean.
/obj/machinery/proc/set_is_operational(new_value)
@@ -618,6 +633,7 @@ Class Procs:
//called on deconstruction before the final deletion
/obj/machinery/proc/on_deconstruction()
+ set_no_power()
return
/obj/machinery/proc/can_be_overridden()
diff --git a/code/game/machinery/airlock_cycle_control.dm b/code/game/machinery/airlock_cycle_control.dm
index 76094e803cd..7ba391fae78 100644
--- a/code/game/machinery/airlock_cycle_control.dm
+++ b/code/game/machinery/airlock_cycle_control.dm
@@ -67,8 +67,8 @@
icon = 'icons/obj/monitors.dmi'
icon_state = "aac"
use_power = IDLE_POWER_USE
- idle_power_usage = 4
- active_power_usage = 8
+ idle_power_usage = IDLE_DRAW_MINIMAL
+ active_power_usage = ACTIVE_DRAW_MINIMAL
power_channel = AREA_USAGE_ENVIRON
req_access = list(ACCESS_ATMOSPHERICS)
max_integrity = 250
diff --git a/code/game/machinery/announcement_system.dm b/code/game/machinery/announcement_system.dm
index f275d234fca..d4057603957 100644
--- a/code/game/machinery/announcement_system.dm
+++ b/code/game/machinery/announcement_system.dm
@@ -12,8 +12,8 @@ GLOBAL_LIST_EMPTY(announcement_systems)
verb_ask = "queries"
verb_exclaim = "alarms"
- idle_power_usage = 20
- active_power_usage = 50
+ idle_power_usage = IDLE_DRAW_LOW
+ active_power_usage = IDLE_DRAW_LOW
circuit = /obj/item/circuitboard/machine/announcement_system
diff --git a/code/game/machinery/autolathe.dm b/code/game/machinery/autolathe.dm
index d83831f2c63..e63b3f75fb2 100644
--- a/code/game/machinery/autolathe.dm
+++ b/code/game/machinery/autolathe.dm
@@ -9,8 +9,9 @@
icon_state = "autolathe"
density = TRUE
use_power = IDLE_POWER_USE
- idle_power_usage = 10
- active_power_usage = 100
+ idle_power_usage = IDLE_DRAW_LOW
+ active_power_usage = ACTIVE_DRAW_HIGH
+ power_channel = AREA_USAGE_EQUIP
circuit = /obj/item/circuitboard/machine/autolathe
layer = BELOW_OBJ_LAYER
@@ -50,7 +51,7 @@
)
/obj/machinery/autolathe/Initialize()
- AddComponent(/datum/component/material_container,list(/datum/material/iron, /datum/material/glass, /datum/material/plastic, /datum/material/silver, /datum/material/gold, /datum/material/plasma, /datum/material/uranium, /datum/material/titanium), 0, TRUE, null, null, CALLBACK(src, PROC_REF(AfterMaterialInsert)))
+ AddComponent(/datum/component/material_container,list(/datum/material/iron, /datum/material/glass, /datum/material/plastic, /datum/material/silver, /datum/material/gold, /datum/material/plasma, /datum/material/uranium, /datum/material/titanium, /datum/material/hellstone), 0, TRUE, null, null, CALLBACK(src, PROC_REF(AfterMaterialInsert)))
. = ..()
wires = new /datum/wires/autolathe(src)
@@ -223,7 +224,7 @@
for(var/MAT in being_built.materials)
total_amount += being_built.materials[MAT]
- var/power = max(active_power_usage, (total_amount)*multiplier/5) //Change this to use all materials
+ var/power = max(active_power_usage, total_amount) //Change this to use all materials
var/datum/component/material_container/materials = GetComponent(/datum/component/material_container)
@@ -252,6 +253,7 @@
use_power(power)
icon_state = "autolathe_n"
var/time = is_stack ? 32 : (32 * coeff * multiplier) ** 0.8
+ set_active_power()
addtimer(CALLBACK(src, PROC_REF(make_item), power, materials_used, custom_materials, multiplier, coeff, is_stack, usr), time)
. = TRUE
else
@@ -326,12 +328,13 @@
else
flick("autolathe_o", src) //plays metal insertion animation
- use_power(min(1000, amount_inserted / 100))
+ use_power(min(active_power_usage, amount_inserted))
/obj/machinery/autolathe/proc/make_item(power, list/materials_used, list/picked_materials, multiplier, coeff, is_stack, mob/user)
var/datum/component/material_container/materials = GetComponent(/datum/component/material_container)
var/atom/A = drop_location()
use_power(power)
+ set_idle_power()
materials.use_materials(materials_used)
diff --git a/code/game/machinery/bank_machine.dm b/code/game/machinery/bank_machine.dm
index 2e93cd179ed..83f3e366e8a 100644
--- a/code/game/machinery/bank_machine.dm
+++ b/code/game/machinery/bank_machine.dm
@@ -3,7 +3,7 @@
desc = "A machine used to deposit and withdraw funds."
icon_screen = "vault"
icon_keyboard = "security_key"
- idle_power_usage = 100
+ idle_power_usage = IDLE_DRAW_LOW
var/siphoning = FALSE
var/next_warning = 0
diff --git a/code/game/machinery/buttons.dm b/code/game/machinery/buttons.dm
index 1a89a2b011c..f6c004ddca7 100644
--- a/code/game/machinery/buttons.dm
+++ b/code/game/machinery/buttons.dm
@@ -12,7 +12,7 @@
var/initialized_button = 0
armor = list("melee" = 50, "bullet" = 50, "laser" = 50, "energy" = 50, "bomb" = 10, "bio" = 100, "rad" = 100, "fire" = 90, "acid" = 70)
use_power = IDLE_POWER_USE
- idle_power_usage = 2
+ idle_power_usage = IDLE_DRAW_MINIMAL
resistance_flags = LAVA_PROOF | FIRE_PROOF
/obj/machinery/button/indestructible
@@ -68,34 +68,40 @@
default_deconstruction_screwdriver(user, "button-open", "[skin]",W)
update_appearance()
else
- to_chat(user, "Maintenance Access Denied.")
+ to_chat(user, span_alert("Maintenance Access Denied."))
flick("[skin]-denied", src)
return
if(panel_open)
if(!device && istype(W, /obj/item/assembly))
if(!user.transferItemToLoc(W, src))
- to_chat(user, "\The [W] is stuck to you!")
+ to_chat(user, span_warning("\The [W] is stuck to you!"))
return
device = W
- to_chat(user, "You add [W] to the button.")
+ to_chat(user, span_notice("You add [W] to the button."))
if(!board && istype(W, /obj/item/electronics/airlock))
if(!user.transferItemToLoc(W, src))
- to_chat(user, "\The [W] is stuck to you!")
+ to_chat(user, span_warning("\The [W] is stuck to you!"))
return
board = W
if(board.one_access)
req_one_access = board.accesses
else
req_access = board.accesses
- to_chat(user, "You add [W] to the button.")
+ to_chat(user, span_notice("You add [W] to the button."))
+
+ if(device && W.tool_behaviour == TOOL_MULTITOOL)
+ var/obj/item/multitool/multi = W
+ if(istype(device, /obj/item/assembly/control))
+ multi.buffer = device
+ to_chat(user, span_notice("You copy the [device] to your multitool's buffer."))
if(!device && !board && W.tool_behaviour == TOOL_WRENCH)
- to_chat(user, "You start unsecuring the button frame...")
+ to_chat(user, span_notice("You start unsecuring the button frame..."))
W.play_tool_sound(src)
if(W.use_tool(src, user, 40))
- to_chat(user, "You unsecure the button frame.")
+ to_chat(user, span_notice("You unsecure the button frame."))
transfer_fingerprints_to(new /obj/item/wallframe/button(get_turf(src)))
playsound(loc, 'sound/items/deconstruct.ogg', 50, TRUE)
qdel(src)
@@ -153,14 +159,14 @@
req_one_access = list()
board = null
update_appearance()
- to_chat(user, "You remove electronics from the button frame.")
+ to_chat(user, span_notice("You remove electronics from the button frame."))
else
if(skin == "doorctrl")
skin = "launcher"
else
skin = "doorctrl"
- to_chat(user, "You change the button frame's front panel.")
+ to_chat(user, span_notice("You change the button frame's front panel."))
return
if((machine_stat & (NOPOWER|BROKEN)))
@@ -170,7 +176,7 @@
return
if(!allowed(user))
- to_chat(user, "Access Denied.")
+ to_chat(user, span_alert("Access Denied."))
flick("[skin]-denied", src)
return
diff --git a/code/game/machinery/camera/camera.dm b/code/game/machinery/camera/camera.dm
index c1cca432efd..fda41eab778 100644
--- a/code/game/machinery/camera/camera.dm
+++ b/code/game/machinery/camera/camera.dm
@@ -9,8 +9,8 @@
icon_state = "camera" //mapping icon to represent upgrade states. if you want a different base icon, update default_camera_icon as well as this.
light_color = "#CDDDFF"
use_power = ACTIVE_POWER_USE
- idle_power_usage = 5
- active_power_usage = 10
+ idle_power_usage = IDLE_DRAW_MINIMAL
+ active_power_usage = IDLE_DRAW_MINIMAL*2
layer = WALL_OBJ_LAYER
resistance_flags = FIRE_PROOF
damage_deflection = 12
diff --git a/code/game/machinery/camera/presets.dm b/code/game/machinery/camera/presets.dm
index 8f57ad09203..d5f7e618c63 100644
--- a/code/game/machinery/camera/presets.dm
+++ b/code/game/machinery/camera/presets.dm
@@ -56,18 +56,11 @@
/obj/machinery/camera/autoname/LateInitialize()
. = ..()
- number = 1
- var/area/A = get_area(src)
- if(A)
- for(var/obj/machinery/camera/autoname/C in GLOB.machines)
- if(C == src)
- continue
- var/area/CA = get_area(C)
- if(CA.type == A.type)
- if(C.number)
- number = max(number, C.number+1)
- c_tag = "[A.name] #[number]"
-
+ var/static/list/autonames_in_areas = list()
+ var/area/camera_area = get_area(src)
+ number = autonames_in_areas[camera_area] + 1
+ autonames_in_areas[camera_area] = number
+ c_tag = "[format_text(camera_area.name)] #[number]"
// UPGRADE PROCS
diff --git a/code/game/machinery/cell_charger.dm b/code/game/machinery/cell_charger.dm
index e1be8d8e445..85d2d565120 100644
--- a/code/game/machinery/cell_charger.dm
+++ b/code/game/machinery/cell_charger.dm
@@ -4,8 +4,8 @@
icon = 'icons/obj/power.dmi'
icon_state = "ccharger"
use_power = IDLE_POWER_USE
- idle_power_usage = 5
- active_power_usage = 60
+ idle_power_usage = IDLE_DRAW_MINIMAL
+ active_power_usage = ACTIVE_DRAW_LOW
power_channel = AREA_USAGE_EQUIP
circuit = /obj/item/circuitboard/machine/cell_charger
pass_flags = PASSTABLE
diff --git a/code/game/machinery/cloning.dm b/code/game/machinery/cloning.dm
index c71e94a0948..ad4cd3834f0 100644
--- a/code/game/machinery/cloning.dm
+++ b/code/game/machinery/cloning.dm
@@ -16,6 +16,8 @@
density = TRUE
icon = 'icons/obj/machines/cloning.dmi'
icon_state = "pod_0"
+ use_power = IDLE_POWER_USE
+ idle_power_usage = IDLE_DRAW_LOW
req_access = list(ACCESS_CLONING) //FOR PREMATURE UNLOCKING.
verb_say = "states"
circuit = /obj/item/circuitboard/machine/clonepod
diff --git a/code/game/machinery/computer/_computer.dm b/code/game/machinery/computer/_computer.dm
index bdbadf79a94..3a36603c507 100644
--- a/code/game/machinery/computer/_computer.dm
+++ b/code/game/machinery/computer/_computer.dm
@@ -4,8 +4,8 @@
icon_state = "computer"
density = TRUE
use_power = IDLE_POWER_USE
- idle_power_usage = 300
- active_power_usage = 300
+ idle_power_usage = IDLE_DRAW_LOW
+ active_power_usage = ACTIVE_DRAW_LOW
max_integrity = 200
integrity_failure = 0.5
armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 40, "acid" = 20)
diff --git a/code/game/machinery/computer/arcade.dm b/code/game/machinery/computer/arcade.dm
index b665a36bcf3..d7f80fc4568 100644
--- a/code/game/machinery/computer/arcade.dm
+++ b/code/game/machinery/computer/arcade.dm
@@ -867,7 +867,7 @@ GLOBAL_LIST_INIT(arcade_prize_pool, list(
say("WEEWOO! WEEWOO! Spaceport security en route!")
playsound(src, 'sound/items/weeoo1.ogg', 100, FALSE)
for(var/i, i<=3, i++)
- var/mob/living/simple_animal/hostile/syndicate/ranged/smg/orion/O = new/mob/living/simple_animal/hostile/syndicate/ranged/smg/orion(get_turf(src))
+ var/mob/living/simple_animal/hostile/human/syndicate/ranged/smg/orion/O = new/mob/living/simple_animal/hostile/human/syndicate/ranged/smg/orion(get_turf(src))
O.target = usr
@@ -1242,7 +1242,7 @@ GLOBAL_LIST_INIT(arcade_prize_pool, list(
newgame()
obj_flags |= EMAGGED
-/mob/living/simple_animal/hostile/syndicate/ranged/smg/orion
+/mob/living/simple_animal/hostile/human/syndicate/ranged/smg/orion
name = "spaceport security"
desc = "Premier corporate security forces for all spaceports found along the Orion Trail."
faction = list("orion")
diff --git a/code/game/machinery/computer/crew.dm b/code/game/machinery/computer/crew.dm
index f875defd604..c1a1171e57c 100644
--- a/code/game/machinery/computer/crew.dm
+++ b/code/game/machinery/computer/crew.dm
@@ -6,8 +6,8 @@
icon_screen = "crew"
icon_keyboard = "med_key"
use_power = IDLE_POWER_USE
- idle_power_usage = 250
- active_power_usage = 500
+ idle_power_usage = IDLE_DRAW_LOW
+ active_power_usage = ACTIVE_DRAW_MEDIUM
circuit = /obj/item/circuitboard/computer/crew
light_color = LIGHT_COLOR_BLUE
diff --git a/code/game/machinery/computer/dna_console.dm b/code/game/machinery/computer/dna_console.dm
index ffeabbdc4e0..815e2496d41 100644
--- a/code/game/machinery/computer/dna_console.dm
+++ b/code/game/machinery/computer/dna_console.dm
@@ -43,8 +43,8 @@
circuit = /obj/item/circuitboard/computer/scan_consolenew
use_power = IDLE_POWER_USE
- idle_power_usage = 10
- active_power_usage = 400
+ idle_power_usage = IDLE_DRAW_LOW
+ active_power_usage = ACTIVE_DRAW_MEDIUM
light_color = LIGHT_COLOR_BLUE
/// Link to the techweb's stored research. Used to retrieve stored mutations
diff --git a/code/game/machinery/dance_machine.dm b/code/game/machinery/dance_machine.dm
index 20c3d66e858..8419ee80ce1 100644
--- a/code/game/machinery/dance_machine.dm
+++ b/code/game/machinery/dance_machine.dm
@@ -5,6 +5,8 @@
icon_state = "jukebox-"
verb_say = "states"
density = TRUE
+ use_power = IDLE_POWER_USE
+ idle_power_usage = IDLE_DRAW_MINIMAL
var/active = FALSE
var/list/rangers = list()
var/stop = 0
diff --git a/code/game/machinery/defibrillator_mount.dm b/code/game/machinery/defibrillator_mount.dm
index f3fa616032d..645e8eee762 100644
--- a/code/game/machinery/defibrillator_mount.dm
+++ b/code/game/machinery/defibrillator_mount.dm
@@ -165,7 +165,7 @@
name = "PENLITE defibrillator mount"
desc = "Holds defibrillators. You can grab the paddles if one is mounted. This PENLITE variant also allows for slow, passive recharging of the defibrillator."
icon_state = "penlite_mount"
- idle_power_usage = 1
+ idle_power_usage = 0
wallframe_type = /obj/item/wallframe/defib_mount/charging
diff --git a/code/game/machinery/dish_drive.dm b/code/game/machinery/dish_drive.dm
index baf3d6ae2cc..740ea5c935f 100644
--- a/code/game/machinery/dish_drive.dm
+++ b/code/game/machinery/dish_drive.dm
@@ -5,8 +5,8 @@
Or you can just drop your plates on the floor, like civilized folk."
icon = 'icons/obj/kitchen.dmi'
icon_state = "synthesizer"
- idle_power_usage = 8 //5 with default parts
- active_power_usage = 13 //10 with default parts
+ idle_power_usage = IDLE_DRAW_MINIMAL //lower
+ active_power_usage = ACTIVE_DRAW_MINIMAL //lower ingame because stockparts
density = FALSE
circuit = /obj/item/circuitboard/machine/dish_drive
pass_flags = PASSTABLE
diff --git a/code/game/machinery/dna_scanner.dm b/code/game/machinery/dna_scanner.dm
index 7f61dde6ef7..a45aaa47443 100644
--- a/code/game/machinery/dna_scanner.dm
+++ b/code/game/machinery/dna_scanner.dm
@@ -6,8 +6,8 @@
base_icon_state = "scanner"
density = TRUE
use_power = IDLE_POWER_USE
- idle_power_usage = 50
- active_power_usage = 300
+ idle_power_usage = IDLE_DRAW_MINIMAL
+ active_power_usage = ACTIVE_DRAW_MEDIUM
occupant_typecache = list(/mob/living, /obj/item/bodypart/head, /obj/item/organ/brain)
circuit = /obj/item/circuitboard/machine/dnascanner
var/locked = FALSE
diff --git a/code/game/machinery/doors/airlock.dm b/code/game/machinery/doors/airlock.dm
index 6bb5a4bab56..121c93a0735 100644
--- a/code/game/machinery/doors/airlock.dm
+++ b/code/game/machinery/doors/airlock.dm
@@ -958,7 +958,7 @@
to_chat(user, "You need at least 2 metal sheets to reinforce [src].")
return
to_chat(user, "You start reinforcing [src].")
- if(do_after(user, 20, TRUE, src))
+ if(do_after(user, 20, src))
if(!panel_open || !S.use(2))
return
user.visible_message("[user] reinforces \the [src] with metal.",
@@ -972,7 +972,7 @@
to_chat(user, "You need at least 2 plasteel sheets to reinforce [src].")
return
to_chat(user, "You start reinforcing [src].")
- if(do_after(user, 20, TRUE, src))
+ if(do_after(user, 20, src))
if(!panel_open || !S.use(2))
return
user.visible_message("[user] reinforces \the [src] with plasteel.",
@@ -1226,7 +1226,7 @@
var/time_to_open = 50
playsound(src, pry_sound, 100, TRUE, mono_adj = TRUE) //is it aliens or just the CE being a dick?
prying_so_hard = TRUE
- if(do_after(user, time_to_open, TRUE, src))
+ if(do_after(user, time_to_open, src))
open(2)
if(density && !open(2))
to_chat(user, "Despite your attempts, [src] refuses to open.")
@@ -1414,7 +1414,7 @@
playsound(src, 'sound/machines/creaking.ogg', 100, TRUE, mono_adj = TRUE)
- if(do_after(user, time_to_open, TRUE, src))
+ if(do_after(user, time_to_open, src))
if(density && !open(2)) //The airlock is still closed, but something prevented it opening. (Another player noticed and bolted/welded the airlock in time!)
to_chat(user, "Despite your efforts, [src] managed to resist your attempts to open it!")
diff --git a/code/game/machinery/doors/airlock_types.dm b/code/game/machinery/doors/airlock_types.dm
index 8e0ed982b50..492ce30f6ac 100644
--- a/code/game/machinery/doors/airlock_types.dm
+++ b/code/game/machinery/doors/airlock_types.dm
@@ -264,17 +264,7 @@
opacity = FALSE
glass = TRUE
-/obj/machinery/door/airlock/bananium
- name = "bananium airlock"
- desc = "Honkhonkhonk"
- icon = 'icons/obj/doors/airlocks/station/bananium.dmi'
- assemblytype = /obj/structure/door_assembly/door_assembly_bananium
- doorOpen = 'sound/items/bikehorn.ogg'
- has_hatch = FALSE
-/obj/machinery/door/airlock/bananium/glass
- opacity = FALSE
- glass = TRUE
/obj/machinery/door/airlock/sandstone
name = "sandstone airlock"
diff --git a/code/game/machinery/doors/poddoor.dm b/code/game/machinery/doors/poddoor.dm
index 4e846c26f14..7e3febcc482 100644
--- a/code/game/machinery/doors/poddoor.dm
+++ b/code/game/machinery/doors/poddoor.dm
@@ -23,26 +23,32 @@
/obj/machinery/door/poddoor/attackby(obj/item/W, mob/user, params)
. = ..()
if((resistance_flags & INDESTRUCTIBLE) && W.tool_behaviour == TOOL_SCREWDRIVER) // This makes it so ERT members cannot cheese by opening their blast doors.
- to_chat(user, "You can't find the panel!")
+ to_chat(user, span_warning("You can't find the panel!"))
return
if(W.tool_behaviour == TOOL_SCREWDRIVER)
if(density)
- to_chat(user, "You need to open [src] to access the maintenance panel!")
+ to_chat(user, span_warning("You need to open [src] to access the maintenance panel"))
return
else if(default_deconstruction_screwdriver(user, icon_state, icon_state, W))
- to_chat(user, "You [panel_open ? "open" : "close"] the maintenance hatch of [src].")
+ to_chat(user, span_notice("You [panel_open ? "open" : "close"] the maintenance hatch of [src]."))
return TRUE
if(panel_open && !density)
if(W.tool_behaviour == TOOL_MULTITOOL)
- var/change_id = input("Set [src]'s ID. It must be a number between 1 and 100.", "ID", id) as num|null
- if(change_id)
- id = clamp(round(change_id, 1), 1, 100)
- to_chat(user, "You change the ID to [id].")
+ var/obj/item/multitool/multi = W
+ if (istype(multi.buffer,/obj/item/assembly/control))
+ var/obj/item/assembly/control/controller = multi.buffer
+ id = controller.id
+ to_chat(user, span_notice("You copy the ID in your multitool's buffer into the [src]."))
+ else
+ var/change_id = input("Set [src]'s ID. It must be a number between 1 and 100.", "ID", id) as num|null
+ if(change_id)
+ id = clamp(round(change_id, 1), 1, 100)
+ to_chat(user, span_notice("You change the ID to [id]."))
if(W.tool_behaviour == TOOL_CROWBAR)
- to_chat(user, "You start to remove the airlock electronics.")
+ to_chat(user, span_notice("You start to remove the airlock electronics."))
if(!(machine_stat & NOPOWER))
do_sparks(5, TRUE, src)
electrocute_mob(user, get_area(src), src, 1, TRUE) //fuck this fella
@@ -52,9 +58,9 @@
/obj/machinery/door/poddoor/examine(mob/user)
. = ..()
- . += "The maintenance panel is [panel_open ? "opened" : "closed"]."
+ . += span_notice("The maintenance panel is [panel_open ? "opened" : "closed"].")
if(panel_open)
- . += "The airlock electronics are exposed and could be pried out."
+ . += span_notice("The airlock electronics are exposed and could be pried out.")
/obj/machinery/door/poddoor/deconstruct(disassembled = TRUE, mob/user)
if(!(flags_1 & NODECONSTRUCT_1))
@@ -142,18 +148,18 @@
/obj/machinery/door/poddoor/attack_alien(mob/living/carbon/alien/humanoid/user)
if(density & !(resistance_flags & INDESTRUCTIBLE))
add_fingerprint(user)
- user.visible_message("[user] begins prying open [src].",\
- "You begin digging your claws into [src] with all your might!",\
- "You hear groaning metal...")
+ user.visible_message(span_warning("[user] begins prying open [src]."),\
+ span_noticealien("You begin digging your claws into [src] with all your might"),\
+ span_warning("You hear groaning metal..."))
playsound(src, 'sound/machines/creaking.ogg', 100, TRUE)
var/time_to_open = 5 SECONDS
if(hasPower())
time_to_open = 15 SECONDS
- if(do_after(user, time_to_open, TRUE, src))
+ if(do_after(user, time_to_open, src))
if(density && !open(TRUE)) //The airlock is still closed, but something prevented it opening. (Another player noticed and bolted/welded the airlock in time!)
- to_chat(user, "Despite your efforts, [src] managed to resist your attempts to open it!")
+ to_chat(user, span_warning("Despite your efforts, [src] managed to resist your attempts to open it!"))
else
return ..()
diff --git a/code/game/machinery/doppler_array.dm b/code/game/machinery/doppler_array.dm
index aa3e4ece65e..25da902ea3f 100644
--- a/code/game/machinery/doppler_array.dm
+++ b/code/game/machinery/doppler_array.dm
@@ -6,6 +6,8 @@
icon = 'icons/obj/machines/research.dmi'
base_icon_state = "tdoppler"
density = TRUE
+ use_power = IDLE_POWER_USE
+ idle_power_usage = IDLE_DRAW_LOW
verb_say = "states coldly"
var/cooldown = 10
var/next_announce = 0
diff --git a/code/game/machinery/droneDispenser.dm b/code/game/machinery/droneDispenser.dm
index dbf055d9807..4603044ab28 100644
--- a/code/game/machinery/droneDispenser.dm
+++ b/code/game/machinery/droneDispenser.dm
@@ -9,6 +9,8 @@
icon = 'icons/obj/machines/droneDispenser.dmi'
icon_state = "on"
density = TRUE
+ use_power = IDLE_POWER_USE
+ idle_power_usage = IDLE_DRAW_LOW
max_integrity = 250
integrity_failure = 0.33
diff --git a/code/game/machinery/embedded_controller/access_controller.dm b/code/game/machinery/embedded_controller/access_controller.dm
index 9d190b2e136..34d4bb320c4 100644
--- a/code/game/machinery/embedded_controller/access_controller.dm
+++ b/code/game/machinery/embedded_controller/access_controller.dm
@@ -7,8 +7,8 @@
/obj/machinery/doorButtons
power_channel = AREA_USAGE_ENVIRON
use_power = IDLE_POWER_USE
- idle_power_usage = 2
- active_power_usage = 4
+ idle_power_usage = IDLE_DRAW_MINIMAL
+ active_power_usage = ACTIVE_DRAW_MINIMAL
resistance_flags = INDESTRUCTIBLE | LAVA_PROOF | FIRE_PROOF | UNACIDABLE | ACID_PROOF
var/idSelf
diff --git a/code/game/machinery/firealarm.dm b/code/game/machinery/firealarm.dm
index faceb46419d..6cbd6eaed27 100644
--- a/code/game/machinery/firealarm.dm
+++ b/code/game/machinery/firealarm.dm
@@ -23,8 +23,8 @@
integrity_failure = 0.4
armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 100, "rad" = 100, "fire" = 90, "acid" = 30)
use_power = IDLE_POWER_USE
- idle_power_usage = 2
- active_power_usage = 6
+ idle_power_usage = IDLE_DRAW_MINIMAL
+ active_power_usage = ACTIVE_DRAW_MINIMAL
power_channel = AREA_USAGE_ENVIRON
resistance_flags = FIRE_PROOF
diff --git a/code/game/machinery/gulag_item_reclaimer.dm b/code/game/machinery/gulag_item_reclaimer.dm
index 8833a20d90c..81c422ea31f 100644
--- a/code/game/machinery/gulag_item_reclaimer.dm
+++ b/code/game/machinery/gulag_item_reclaimer.dm
@@ -6,8 +6,8 @@
req_access = list(ACCESS_SECURITY) //REQACCESS TO ACCESS ALL STORED ITEMS
density = FALSE
use_power = IDLE_POWER_USE
- idle_power_usage = 100
- active_power_usage = 2500
+ idle_power_usage = IDLE_DRAW_LOW
+ active_power_usage = IDLE_DRAW_MEDIUM
var/list/stored_items = list()
var/obj/machinery/gulag_teleporter/linked_teleporter = null
diff --git a/code/game/machinery/gulag_teleporter.dm b/code/game/machinery/gulag_teleporter.dm
index e147e24717c..3632c204f36 100644
--- a/code/game/machinery/gulag_teleporter.dm
+++ b/code/game/machinery/gulag_teleporter.dm
@@ -15,8 +15,8 @@ The console is located at computer/gulag_teleporter.dm
state_open = FALSE
density = TRUE
use_power = IDLE_POWER_USE
- idle_power_usage = 200
- active_power_usage = 5000
+ idle_power_usage = IDLE_DRAW_LOW
+ active_power_usage = ACTIVE_DRAW_EXTREME
circuit = /obj/item/circuitboard/machine/gulag_teleporter
var/locked = FALSE
var/message_cooldown
diff --git a/code/game/machinery/harvester.dm b/code/game/machinery/harvester.dm
index 9cf4470cab5..1b0093458e4 100644
--- a/code/game/machinery/harvester.dm
+++ b/code/game/machinery/harvester.dm
@@ -2,12 +2,14 @@
name = "organ harvester"
desc = "An advanced machine used for harvesting organs and limbs from the deceased."
density = TRUE
+ use_power = IDLE_POWER_USE
+ idle_power_usage = IDLE_DRAW_LOW
icon = 'icons/obj/machines/harvester.dmi'
icon_state = "harvester"
base_icon_state = "harvester"
verb_say = "states"
state_open = FALSE
- idle_power_usage = 50
+ idle_power_usage = IDLE_DRAW_MINIMAL
circuit = /obj/item/circuitboard/machine/harvester
light_color = LIGHT_COLOR_BLUE
var/interval = 20
diff --git a/code/game/machinery/hologram.dm b/code/game/machinery/hologram.dm
index 4a31d650f9a..60ded054842 100644
--- a/code/game/machinery/hologram.dm
+++ b/code/game/machinery/hologram.dm
@@ -36,8 +36,8 @@ Possible to do for anyone motivated enough:
plane = FLOOR_PLANE
req_access = list(ACCESS_KEYCARD_AUTH) //Used to allow for forced connecting to other (not secure) holopads. Anyone can make a call, though.
use_power = IDLE_POWER_USE
- idle_power_usage = 5
- active_power_usage = 100
+ idle_power_usage = IDLE_DRAW_MINIMAL
+ active_power_usage = ACTIVE_DRAW_MEDIUM
max_integrity = 300
armor = list("melee" = 50, "bullet" = 20, "laser" = 20, "energy" = 20, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 50, "acid" = 0)
circuit = /obj/item/circuitboard/machine/holopad
@@ -78,6 +78,8 @@ Possible to do for anyone motivated enough:
var/secure = FALSE
/// If we are currently calling another holopad
var/calling = FALSE
+ /// The last holopad that called this one.
+ var/caller_history
/obj/machinery/holopad/Initialize()
. = ..()
@@ -178,7 +180,9 @@ Possible to do for anyone motivated enough:
/obj/machinery/holopad/examine(mob/user)
. = ..()
if(in_range(user, src) || isobserver(user))
- . += "The status display reads: Current projection range: [holo_range] units."
+ . += span_notice("The status display reads: Current projection range: [holo_range] units.")
+ if(caller_history)
+ . += span_notice("The caller history displays the last recieved call to be from: [caller_history].")
/obj/machinery/holopad/attackby(obj/item/P, mob/user, params)
if(default_deconstruction_screwdriver(user, "holopad_open", "holopad0", P))
@@ -195,11 +199,11 @@ Possible to do for anyone motivated enough:
if(istype(P,/obj/item/disk/holodisk))
if(disk)
- to_chat(user,"There's already a disk inside [src]!")
+ to_chat(user,span_warning("There's already a disk inside [src]!"))
return
if (!user.transferItemToLoc(P,src))
return
- to_chat(user,"You insert [P] into [src].")
+ to_chat(user,span_notice("You insert [P] into [src]."))
disk = P
return
@@ -249,15 +253,15 @@ Possible to do for anyone motivated enough:
if("AIrequest")
if(last_request + 200 < world.time)
last_request = world.time
- to_chat(usr, "You requested an AI's presence.")
+ to_chat(usr, span_info("You requested an AI's presence."))
var/area/area = get_area(src)
for(var/mob/living/silicon/ai/AI in GLOB.silicon_mobs)
if(!AI.client)
continue
- to_chat(AI, "Your presence is requested at \the [area].")
+ to_chat(AI, span_info("Your presence is requested at \the [area]."))
return TRUE
else
- to_chat(usr, "A request for AI presence was already sent recently.")
+ to_chat(usr, span_info("A request for AI presence was already sent recently."))
return
if("holocall")
if(outgoing_call)
@@ -280,7 +284,7 @@ Possible to do for anyone motivated enough:
calling = TRUE
return TRUE
else
- to_chat(usr, "You must stand on the holopad to make a call!")
+ to_chat(usr, span_warning("You must stand on the holopad to make a call!"))
if("connectcall")
var/datum/holocall/call_to_connect = locate(params["holopad"]) in holo_calls
if(!QDELETED(call_to_connect))
@@ -374,6 +378,7 @@ Possible to do for anyone motivated enough:
for(var/I in holo_calls)
var/datum/holocall/HC = I
if(HC.connected_holopad != src)
+ caller_history = get_area_name(HC.calling_holopad)
if(force_answer_call && world.time > (HC.call_start_time + (HOLOPAD_MAX_DIAL_TIME / 2)))
HC.Answer(src)
break
@@ -392,7 +397,7 @@ Possible to do for anyone motivated enough:
if(is_operational && (!AI || AI.eyeobj.loc == loc))//If the projector has power and client eye is on it
if (AI && istype(AI.current, /obj/machinery/holopad))
- to_chat(user, "ERROR: \black Image feed in progress.")
+ to_chat(user, span_danger("ERROR: \black Image feed in progress."))
return
var/obj/effect/overlay/holo_pad_hologram/Hologram = new(loc)//Spawn a blank effect at the location.
@@ -415,11 +420,11 @@ Possible to do for anyone motivated enough:
move_hologram(user, loc)
set_holo(user, Hologram)
- visible_message("A holographic image of [user] flickers to life before your eyes!")
+ visible_message(span_notice("A holographic image of [user] flickers to life before your eyes!"))
return Hologram
else
- to_chat(user, "ERROR: Unable to project hologram.")
+ to_chat(user, span_danger("ERROR:Unable to project hologram."))
/*This is the proc for special two-way communication between AI and holopad/people talking near holopad.
For the other part of the code, check silicon say.dm. Particularly robot talk.*/
@@ -446,8 +451,11 @@ For the other part of the code, check silicon say.dm. Particularly robot talk.*/
/obj/machinery/holopad/proc/SetLightsAndPower()
var/total_users = LAZYLEN(masters) + LAZYLEN(holo_calls)
- use_power = total_users > 0 ? ACTIVE_POWER_USE : IDLE_POWER_USE
- active_power_usage = HOLOPAD_PASSIVE_POWER_USAGE + (HOLOGRAM_POWER_USAGE * total_users)
+ if(total_users > 0)
+ set_active_power()
+ else
+ set_idle_power()
+ active_power_usage = initial(active_power_usage) * total_users
if(total_users || replay_mode)
set_light(2)
else
@@ -580,7 +588,7 @@ For the other part of the code, check silicon say.dm. Particularly robot talk.*/
Hologram.set_anchored(TRUE)//So space wind cannot drag it.
Hologram.name = "[record.caller_name] (Hologram)"//If someone decides to right click.
Hologram.set_light(2) //hologram lighting
- visible_message("A holographic image of [record.caller_name] flickers to life before your eyes!")
+ visible_message(span_notice("A holographic image of [record.caller_name] flickers to life before your eyes!"))
return Hologram
/obj/machinery/holopad/proc/replay_start()
diff --git a/code/game/machinery/hypnochair.dm b/code/game/machinery/hypnochair.dm
index b31dd992537..e14756815bb 100644
--- a/code/game/machinery/hypnochair.dm
+++ b/code/game/machinery/hypnochair.dm
@@ -6,6 +6,8 @@
base_icon_state = "hypnochair"
circuit = /obj/item/circuitboard/machine/hypnochair
density = TRUE
+ use_power = IDLE_POWER_USE
+ idle_power_usage = IDLE_DRAW_LOW
opacity = FALSE
var/mob/living/carbon/victim = null ///Keeps track of the victim to apply effects if it teleports away
diff --git a/code/game/machinery/igniter.dm b/code/game/machinery/igniter.dm
index 8117ad2c251..c82d67a9df6 100644
--- a/code/game/machinery/igniter.dm
+++ b/code/game/machinery/igniter.dm
@@ -6,8 +6,8 @@
base_icon_state = "igniter"
plane = FLOOR_PLANE
use_power = IDLE_POWER_USE
- idle_power_usage = 2
- active_power_usage = 4
+ idle_power_usage = IDLE_DRAW_MINIMAL
+ active_power_usage = ACTIVE_DRAW_LOW
max_integrity = 300
armor = list("melee" = 50, "bullet" = 30, "laser" = 70, "energy" = 50, "bomb" = 20, "bio" = 0, "rad" = 0, "fire" = 100, "acid" = 70)
resistance_flags = FIRE_PROOF
diff --git a/code/game/machinery/launch_pad.dm b/code/game/machinery/launch_pad.dm
index c7752a8cbfa..c3e6bead671 100644
--- a/code/game/machinery/launch_pad.dm
+++ b/code/game/machinery/launch_pad.dm
@@ -3,9 +3,9 @@
desc = "A bluespace pad able to thrust matter through bluespace, teleporting it to or from nearby locations."
icon = 'icons/obj/telescience.dmi'
icon_state = "lpad-idle"
- use_power = TRUE
- idle_power_usage = 200
- active_power_usage = 2500
+ use_power = IDLE_POWER_USE
+ idle_power_usage = IDLE_DRAW_LOW
+ active_power_usage = ACTIVE_DRAW_EXTREME
hud_possible = list(DIAG_LAUNCHPAD_HUD)
circuit = /obj/item/circuitboard/machine/launchpad
var/icon_teleport = "lpad-beam"
@@ -149,7 +149,7 @@
teleporting = FALSE
// use a lot of power
- use_power(1000)
+ use_power(active_power_usage)
var/turf/source = target
var/list/log_msg = list()
diff --git a/code/game/machinery/limbgrower.dm b/code/game/machinery/limbgrower.dm
index 058a1dd56ed..cf1f97f1547 100644
--- a/code/game/machinery/limbgrower.dm
+++ b/code/game/machinery/limbgrower.dm
@@ -7,8 +7,8 @@
icon_state = "limbgrower_idleoff"
density = TRUE
use_power = IDLE_POWER_USE
- idle_power_usage = 10
- active_power_usage = 100
+ idle_power_usage = IDLE_DRAW_MINIMAL
+ active_power_usage = ACTIVE_DRAW_LOW
circuit = /obj/item/circuitboard/machine/limbgrower
/// The category of limbs we're browing in our UI.
diff --git a/code/game/machinery/mass_driver.dm b/code/game/machinery/mass_driver.dm
index 4f91bea3ab7..7316e5b4242 100644
--- a/code/game/machinery/mass_driver.dm
+++ b/code/game/machinery/mass_driver.dm
@@ -4,8 +4,8 @@
icon = 'icons/obj/stationobjs.dmi'
icon_state = "mass_driver"
use_power = IDLE_POWER_USE
- idle_power_usage = 2
- active_power_usage = 50
+ idle_power_usage = IDLE_DRAW_MINIMAL
+ active_power_usage = ACTIVE_DRAW_MEDIUM
var/power = 1
var/code = 1
var/id = 1
diff --git a/code/game/machinery/medical_kiosk.dm b/code/game/machinery/medical_kiosk.dm
index d7be7fea98e..2f60c799ae2 100644
--- a/code/game/machinery/medical_kiosk.dm
+++ b/code/game/machinery/medical_kiosk.dm
@@ -18,6 +18,8 @@
base_icon_state = "kiosk"
layer = ABOVE_MOB_LAYER
density = TRUE
+ use_power = IDLE_POWER_USE
+ idle_power_usage = IDLE_DRAW_LOW
circuit = /obj/item/circuitboard/machine/medical_kiosk
var/obj/item/scanner_wand
/// Emag mode
@@ -170,7 +172,7 @@
sickness_data = "\nName: [D.name].\nType: [D.spread_text].\nStage: [D.stage]/[D.max_stages].\nPossible Cure: [D.cure_text]"
if(altPatient.has_dna()) //Blood levels Information
- if(altPatient.bleed_rate)
+ if(LAZYLEN(altPatient.get_bleeding_parts()))
bleed_status = "Patient is currently bleeding!"
if(blood_percent <= 80)
blood_warning = " Patient has low blood levels. Seek a large meal, or iron supplements."
diff --git a/code/game/machinery/medipen_refiller.dm b/code/game/machinery/medipen_refiller.dm
index e104257b549..ceb0ed389c1 100644
--- a/code/game/machinery/medipen_refiller.dm
+++ b/code/game/machinery/medipen_refiller.dm
@@ -5,7 +5,7 @@
icon_state = "medipen_refiller"
density = TRUE
circuit = /obj/item/circuitboard/machine/medipen_refiller
- idle_power_usage = 100
+ idle_power_usage = IDLE_DRAW_LOW
/// list of medipen subtypes it can refill
var/list/allowed = list(
/obj/item/reagent_containers/hypospray/medipen = /datum/reagent/medicine/epinephrine,
diff --git a/code/game/machinery/porta_turret/portable_turret.dm b/code/game/machinery/porta_turret/portable_turret.dm
index 75498600b00..5891898ef6d 100644
--- a/code/game/machinery/porta_turret/portable_turret.dm
+++ b/code/game/machinery/porta_turret/portable_turret.dm
@@ -33,8 +33,8 @@ DEFINE_BITFIELD(turret_flags, list(
density = TRUE
desc = "A covered turret that shoots at its enemies."
use_power = IDLE_POWER_USE //this turret uses and requires power
- idle_power_usage = 50 //when inactive, this turret takes up constant 50 Equipment power
- active_power_usage = 300 //when active, this turret takes up constant 300 Equipment power
+ idle_power_usage = IDLE_DRAW_MINIMAL //when inactive, this turret takes up constant 50 Equipment power
+ active_power_usage = ACTIVE_DRAW_LOW //when active, this turret takes up constant 300 Equipment power
req_access = list(ACCESS_SECURITY) /// Only people with Security access
power_channel = AREA_USAGE_EQUIP //drains power from the EQUIPMENT channel
max_integrity = 160 //the turret's health
@@ -795,7 +795,7 @@ DEFINE_BITFIELD(turret_flags, list(
max_integrity = 300
always_up = 1
use_power = ACTIVE_POWER_USE
- active_power_usage = 300
+ active_power_usage = ACTIVE_DRAW_MINIMAL
has_cover = 0
scan_range = 9
stun_projectile = /obj/projectile/beam/disabler
diff --git a/code/game/machinery/prisonlabor.dm b/code/game/machinery/prisonlabor.dm
index 6fe329ed4a7..76612018d87 100644
--- a/code/game/machinery/prisonlabor.dm
+++ b/code/game/machinery/prisonlabor.dm
@@ -4,8 +4,8 @@
icon = 'icons/obj/machines/prison.dmi'
icon_state = "offline"
use_power = IDLE_POWER_USE
- idle_power_usage = 2
- active_power_usage = 50
+ idle_power_usage = IDLE_DRAW_MINIMAL
+ active_power_usage = ACTIVE_DRAW_LOW
var/obj/item/stack/license_plates/empty/current_plate
var/pressing = FALSE
diff --git a/code/game/machinery/quantum_pad.dm b/code/game/machinery/quantum_pad.dm
index cc9f8f6d3d5..7d0455ab82f 100644
--- a/code/game/machinery/quantum_pad.dm
+++ b/code/game/machinery/quantum_pad.dm
@@ -4,8 +4,8 @@
icon = 'icons/obj/telescience.dmi'
icon_state = "qpad-idle"
use_power = IDLE_POWER_USE
- idle_power_usage = 200
- active_power_usage = 5000
+ idle_power_usage = IDLE_DRAW_LOW
+ active_power_usage = ACTIVE_DRAW_EXTREME
obj_flags = CAN_BE_HIT | UNIQUE_RENAME
circuit = /obj/item/circuitboard/machine/quantumpad
var/teleport_cooldown = 400 //30 seconds base due to base parts
diff --git a/code/game/machinery/recharger.dm b/code/game/machinery/recharger.dm
index c604b3eeccf..b0e030206a0 100644
--- a/code/game/machinery/recharger.dm
+++ b/code/game/machinery/recharger.dm
@@ -5,8 +5,8 @@
base_icon_state = "recharger"
desc = "A charging dock for energy based weaponry."
use_power = IDLE_POWER_USE
- idle_power_usage = 4
- active_power_usage = 250
+ idle_power_usage = IDLE_DRAW_MINIMAL
+ active_power_usage = ACTIVE_DRAW_LOW
circuit = /obj/item/circuitboard/machine/recharger
pass_flags = PASSTABLE
var/obj/item/charging = null
@@ -21,6 +21,7 @@
/obj/item/ammo_box/magazine/recharge,
/obj/item/modular_computer,
/obj/item/gun/ballistic/automatic/powered,
+ /obj/item/gun/ballistic/automatic/assault/e40,
))
/obj/machinery/recharger/RefreshParts()
@@ -50,11 +51,11 @@
if (new_charging)
START_PROCESSING(SSmachines, src)
finished_recharging = FALSE
- use_power = ACTIVE_POWER_USE
+ set_active_power()
using_power = TRUE
update_appearance()
else
- use_power = IDLE_POWER_USE
+ set_idle_power()
using_power = FALSE
update_appearance()
diff --git a/code/game/machinery/rechargestation.dm b/code/game/machinery/rechargestation.dm
index 14e25329807..cedf6c0a56f 100644
--- a/code/game/machinery/rechargestation.dm
+++ b/code/game/machinery/rechargestation.dm
@@ -5,8 +5,8 @@
icon_state = "borgcharger0"
density = FALSE
use_power = IDLE_POWER_USE
- idle_power_usage = 5
- active_power_usage = 1000
+ idle_power_usage = IDLE_DRAW_MINIMAL
+ active_power_usage = ACTIVE_DRAW_MEDIUM
req_access = list(ACCESS_ROBOTICS)
state_open = TRUE
circuit = /obj/item/circuitboard/machine/cyborgrecharger
@@ -90,12 +90,12 @@
/obj/machinery/recharge_station/open_machine()
. = ..()
- use_power = IDLE_POWER_USE
+ set_idle_power()
/obj/machinery/recharge_station/close_machine()
. = ..()
if(occupant)
- use_power = ACTIVE_POWER_USE //It always tries to charge, even if it can't.
+ set_active_power() //It always tries to charge, even if it can't.
add_fingerprint(occupant)
/obj/machinery/recharge_station/update_icon_state()
diff --git a/code/game/machinery/recycler.dm b/code/game/machinery/recycler.dm
index b548ecf7312..82265e24444 100644
--- a/code/game/machinery/recycler.dm
+++ b/code/game/machinery/recycler.dm
@@ -7,6 +7,8 @@
icon_state = "grinder-o0"
layer = ABOVE_ALL_MOB_LAYER // Overhead
density = TRUE
+ use_power = IDLE_POWER_USE
+ idle_power_usage = IDLE_DRAW_LOW
circuit = /obj/item/circuitboard/machine/recycler
var/safety_mode = FALSE // Temporarily stops machine if it detects a mob
var/icon_name = "grinder-o"
@@ -19,7 +21,7 @@
/obj/machinery/recycler/Initialize()
AddComponent(/datum/component/butchering/recycler, 1, amount_produced,amount_produced/5)
- AddComponent(/datum/component/material_container, list(/datum/material/iron, /datum/material/glass, /datum/material/silver, /datum/material/plasma, /datum/material/gold, /datum/material/diamond, /datum/material/plastic, /datum/material/uranium, /datum/material/bananium, /datum/material/titanium, /datum/material/bluespace), INFINITY, FALSE, null, null, null, TRUE)
+ AddComponent(/datum/component/material_container, list(/datum/material/iron, /datum/material/glass, /datum/material/silver, /datum/material/plasma, /datum/material/gold, /datum/material/diamond, /datum/material/plastic, /datum/material/uranium, /datum/material/hellstone, /datum/material/titanium, /datum/material/bluespace), INFINITY, FALSE, null, null, null, TRUE)
. = ..()
update_appearance()
req_one_access = get_all_accesses() + get_all_centcom_access()
diff --git a/code/game/machinery/roulette_machine.dm b/code/game/machinery/roulette_machine.dm
index c9e1d108c1e..351f1c42ae5 100644
--- a/code/game/machinery/roulette_machine.dm
+++ b/code/game/machinery/roulette_machine.dm
@@ -26,8 +26,8 @@
density = TRUE
use_power = IDLE_POWER_USE
anchored = FALSE
- idle_power_usage = 10
- active_power_usage = 100
+ idle_power_usage = IDLE_DRAW_MINIMAL
+ active_power_usage = ACTIVE_DRAW_MINIMAL
max_integrity = 500
armor = list("melee" = 45, "bullet" = 30, "laser" = 30, "energy" = 30, "bomb" = 10, "bio" = 30, "rad" = 30, "fire" = 30, "acid" = 30)
var/static/list/numbers = list("0" = "green", "1" = "red", "3" = "red", "5" = "red", "7" = "red", "9" = "red", "12" = "red", "14" = "red", "16" = "red",\
diff --git a/code/game/machinery/scan_gate.dm b/code/game/machinery/scan_gate.dm
index 1ffb0320018..cf83233598a 100644
--- a/code/game/machinery/scan_gate.dm
+++ b/code/game/machinery/scan_gate.dm
@@ -27,7 +27,7 @@
icon = 'icons/obj/machines/scangate.dmi'
icon_state = "scangate"
use_power = IDLE_POWER_USE
- idle_power_usage = 50
+ idle_power_usage = IDLE_DRAW_LOW
circuit = /obj/item/circuitboard/machine/scanner_gate
var/scanline_timer
diff --git a/code/game/machinery/sheetifier.dm b/code/game/machinery/sheetifier.dm
index 569bfa4b6f9..ec9f0f5ff5a 100644
--- a/code/game/machinery/sheetifier.dm
+++ b/code/game/machinery/sheetifier.dm
@@ -5,8 +5,8 @@
icon_state = "base_machine"
density = TRUE
use_power = IDLE_POWER_USE
- idle_power_usage = 10
- active_power_usage = 100
+ idle_power_usage = IDLE_DRAW_MINIMAL
+ active_power_usage = ACTIVE_DRAW_LOW
circuit = /obj/item/circuitboard/machine/sheetifier
layer = BELOW_OBJ_LAYER
var/busy_processing = FALSE
diff --git a/code/game/machinery/shieldgen.dm b/code/game/machinery/shieldgen.dm
index bc578a85630..df865aee82e 100644
--- a/code/game/machinery/shieldgen.dm
+++ b/code/game/machinery/shieldgen.dm
@@ -122,25 +122,23 @@
if(.)
return
if(locked && !issilicon(user))
- to_chat(user, "The machine is locked, you are unable to use it!")
+ to_chat(user, span_notice("The machine is locked, you are unable to use it!"))
return
if(panel_open)
- to_chat(user, "The panel must be closed before operating this machine!")
+ to_chat(user, span_warning("The panel must be closed before operating this machine!"))
return
if (active)
- user.visible_message("[user] deactivated \the [src].", \
- "You deactivate \the [src].", \
- "You hear heavy droning fade out.")
+ user.visible_message(span_notice("[user] deactivated \the [src]."), span_notice("You deactivate \the [src]."), span_hear("You hear heavy droning fade out"))
shields_down()
else
if(anchored)
- user.visible_message("[user] activated \the [src].", \
- "You activate \the [src].", \
- "You hear heavy droning.")
+ user.visible_message(span_notice("[user] activated \the [src]."), \
+ span_notice("You activate \the [src]."), \
+ span_hear("You hear heavy droning."))
shields_up()
else
- to_chat(user, "The device must first be secured to the floor!")
+ to_chat(user, span_warning("The device must first be secured to the floor!"))
return
/obj/machinery/shieldgen/attackby(obj/item/W, mob/user, params)
@@ -148,60 +146,60 @@
W.play_tool_sound(src, 100)
panel_open = !panel_open
if(panel_open)
- to_chat(user, "You open the panel and expose the wiring.")
+ to_chat(user, span_notice("You open the panel and expose the wiring."))
else
- to_chat(user, "You close the panel.")
+ to_chat(user, span_notice("You close the panel."))
else if(istype(W, /obj/item/stack/cable_coil) && (machine_stat & BROKEN) && panel_open)
var/obj/item/stack/cable_coil/coil = W
if (coil.get_amount() < 1)
- to_chat(user, "You need one length of cable to repair [src]!")
+ to_chat(user, span_warning("You need one length of cable to repair [src]!"))
return
- to_chat(user, "You begin to replace the wires...")
+ to_chat(user, span_notice("You begin to replace the wires..."))
if(do_after(user, 30, target = src))
if(coil.get_amount() < 1)
return
coil.use(1)
obj_integrity = max_integrity
set_machine_stat(machine_stat & ~BROKEN)
- to_chat(user, "You repair \the [src].")
+ to_chat(user, span_notice("You repair \the [src]."))
update_appearance()
else if(W.tool_behaviour == TOOL_WRENCH)
if(locked)
- to_chat(user, "The bolts are covered! Unlocking this would retract the covers.")
+ to_chat(user, span_warning("The bolts are covered! Unlocking this would retract the covers."))
return
if(!anchored && !isinspace())
W.play_tool_sound(src, 100)
- to_chat(user, "You secure \the [src] to the floor!")
+ to_chat(user, span_notice("You secure \the [src] to the floor!"))
set_anchored(TRUE)
else if(anchored)
W.play_tool_sound(src, 100)
- to_chat(user, "You unsecure \the [src] from the floor!")
+ to_chat(user, span_notice("You unsecure \the [src] from the floor!"))
if(active)
- to_chat(user, "\The [src] shuts off!")
+ to_chat(user, span_notice("\The [src] shuts off!"))
shields_down()
set_anchored(FALSE)
else if(W.GetID())
if(allowed(user) && !(obj_flags & EMAGGED))
locked = !locked
- to_chat(user, "You [locked ? "lock" : "unlock"] the controls.")
+ to_chat(user, span_notice("You [locked ? "lock" : "unlock"] the controls."))
else if(obj_flags & EMAGGED)
- to_chat(user, "Error, access controller damaged!")
+ to_chat(user, span_danger("Error, access controller damaged!"))
else
- to_chat(user, "Access denied.")
+ to_chat(user, span_danger("Access denied."))
else
return ..()
/obj/machinery/shieldgen/emag_act(mob/user)
if(obj_flags & EMAGGED)
- to_chat(user, "The access controller is damaged!")
+ to_chat(user, span_warning("The access controller is damaged!"))
return
obj_flags |= EMAGGED
locked = FALSE
playsound(src, "sparks", 100, TRUE, SHORT_RANGE_SOUND_EXTRARANGE)
- to_chat(user, "You short out the access controller.")
+ to_chat(user, span_warning("You short out the access controller."))
/obj/machinery/shieldgen/update_icon_state()
icon_state = "shield[active ? "on" : "off"][(machine_stat & BROKEN) ? "br" : null]"
@@ -219,8 +217,8 @@
req_access = list(ACCESS_TELEPORTER)
flags_1 = CONDUCT_1
use_power = NO_POWER_USE
- idle_power_usage = 10
- active_power_usage = 50
+ idle_power_usage = IDLE_DRAW_MINIMAL
+ active_power_usage = ACTIVE_DRAW_HIGH
circuit = /obj/item/circuitboard/machine/shieldwallgen
max_integrity = 300
var/active = FALSE
@@ -275,9 +273,7 @@
if(!active_power_usage || surplus() >= active_power_usage)
add_load(active_power_usage)
else
- visible_message("The [src.name] shuts down due to lack of power!", \
- "If this message is ever seen, something is wrong.",
- "You hear heavy droning fade out.")
+ visible_message(span_danger("The [src.name] shuts down due to lack of power!"), "If this message is ever seen, something is wrong.",span_hear("You hear heavy droning fade out."))
active = FALSE
log_game("[src] deactivated due to lack of power at [AREACOORD(src)]")
for(var/direction in GLOB.cardinals)
@@ -348,7 +344,7 @@
/obj/machinery/power/shieldwallgen/can_be_unfasten_wrench(mob/user, silent)
if(active)
if(!silent)
- to_chat(user, "Turn off the shield generator first!")
+ to_chat(user, span_warning("Turn off the shield generator first!"))
return FAILED_UNFASTEN
return ..()
@@ -388,11 +384,11 @@
if(item.GetID())
if(allowed(user) && !(obj_flags & EMAGGED))
locked = !locked
- to_chat(user, "You [src.locked ? "lock" : "unlock"] the controls.")
+ to_chat(user, span_notice("You [src.locked ? "lock" : "unlock"] the controls."))
else if(obj_flags & EMAGGED)
- to_chat(user, "Error, access controller damaged!")
+ to_chat(user, span_danger("Error, access controller damaged!"))
else
- to_chat(user, "Access denied.")
+ to_chat(user, span_danger("Access denied."))
else
add_fingerprint(user)
@@ -406,25 +402,23 @@
shock(user,50)
return
if(!anchored)
- to_chat(user, "\The [src] needs to be firmly secured to the floor first!")
+ to_chat(user, span_warning("\The [src] needs to be firmly secured to the floor first!"))
return
if(locked && !issilicon(user))
- to_chat(user, "The controls are locked!")
+ to_chat(user, span_warning("The controls are locked!"))
return
if(!powernet)
- to_chat(user, "\The [src] needs to be powered by a wire!")
+ to_chat(user, span_warning("\The [src] needs to be powered by a wire!"))
return
if(active)
- user.visible_message("[user] turned \the [src] off.", \
- "You turn off \the [src].", \
- "You hear heavy droning fade out.")
+ user.visible_message(span_notice("[user] turned \the [src] off."), \
+ span_notice("You turn off \the [src]."), \
+ span_hear("You hear heavy droning fade out."))
active = FALSE
log_game("[src] was deactivated by [key_name(user)] at [AREACOORD(src)]")
else
- user.visible_message("[user] turned \the [src] on.", \
- "You turn on \the [src].", \
- "You hear heavy droning.")
+ user.visible_message(span_notice("[user] turned \the [src] on."), span_notice("ou turn on \the [src]."), span_hear("ou hear heavy droning."))
active = ACTIVE_SETUPFIELDS
log_game("[src] was activated by [key_name(user)] at [AREACOORD(src)]")
add_fingerprint(user)
@@ -435,28 +429,28 @@
if(!powernet)
return
if(active)
- visible_message("The [src.name] hums as it powers down.", \
+ visible_message(span_notice("The [src.name] hums as it powers down."), \
"If this message is ever seen, something is wrong.", \
- "You hear heavy droning fade out.")
+ span_notice("You hear heavy droning fade out."))
playsound(src, 'sound/machines/synth_no.ogg', 50, TRUE, frequency = 6120)
active = FALSE
log_game("[src] was deactivated by wire pulse at [AREACOORD(src)]")
else
- visible_message("The [src.name] beeps as it powers up.", \
+ visible_message(span_notice("The [src.name] beeps as it powers up."), \
"If this message is ever seen, something is wrong.", \
- "You hear heavy droning.")
+ span_notice("You hear heavy droning."))
playsound(src, 'sound/machines/synth_yes.ogg', 50, TRUE, frequency = 6120)
active = ACTIVE_SETUPFIELDS
log_game("[src] was activated by wire pulse at [AREACOORD(src)]")
/obj/machinery/power/shieldwallgen/emag_act(mob/user)
if(obj_flags & EMAGGED)
- to_chat(user, "The access controller is damaged!")
+ to_chat(user, span_warning("The access controller is damaged!"))
return
obj_flags |= EMAGGED
locked = FALSE
playsound(src, "sparks", 100, TRUE, SHORT_RANGE_SOUND_EXTRARANGE)
- to_chat(user, "You short out the access controller.")
+ to_chat(user, span_warning("You short out the access controller."))
/obj/machinery/power/shieldwallgen/proc/shock(mob/user, prb)
if(machine_stat & (BROKEN|NOPOWER)) // unpowered, no shock
@@ -511,10 +505,31 @@
/obj/machinery/power/shieldwallgen/atmos/proc/can_be_rotated(mob/user, rotation_type)
if (anchored)
- to_chat(user, "It is fastened to the floor!")
+ to_chat(user, span_warning("It is fastened to the floor!"))
return FALSE
return TRUE
+/obj/machinery/power/shieldwallgen/atmos/attacked_by(obj/item/I, mob/living/user)
+ if(I.tool_behaviour == TOOL_MULTITOOL)
+ var/obj/item/multitool/multi = I
+ if(!panel_open && !locked)
+ if(istype(multi.buffer,/obj/item/assembly/control/shieldwallgen))
+ var/obj/item/assembly/control/shieldwallgen/controller = multi.buffer
+ to_chat(user, span_notice("You copy the ID in your multitool's buffer to the [src]."))
+ id = controller.id
+ return TRUE
+
+ else
+ to_chat(user, span_warning("The controls are locked!"))
+ return
+
+ return ..()
+
+/obj/machinery/power/shieldwallgen/atmos/multitool_act(mob/living/user, obj/item/I)
+ . = ..()
+
+
+
/// Same as in the normal shieldwallgen, but with the shieldwalls replaced with atmos shieldwalls
/obj/machinery/power/shieldwallgen/atmos/setup_field(direction)
if(!direction)
@@ -586,7 +601,7 @@
setDir(get_dir(gen_primary, gen_secondary))
if(hardshield == TRUE)
for(var/mob/living/victim in get_turf(src))
- visible_message("\The [src] is suddenly occupying the same space as \the [victim]!")
+ visible_message(span_danger("\The [src] is suddenly occupying the same space as \the [victim]!"))
victim.gib()
/obj/machinery/shieldwall/Destroy()
diff --git a/code/game/machinery/shuttle/ship_gravity.dm b/code/game/machinery/shuttle/ship_gravity.dm
index bfcf937f341..4f63c60d782 100644
--- a/code/game/machinery/shuttle/ship_gravity.dm
+++ b/code/game/machinery/shuttle/ship_gravity.dm
@@ -9,8 +9,8 @@
icon_state = "shipgrav"
base_icon_state = "shipgrav"
density = TRUE
- idle_power_usage = 10
- active_power_usage = 5000
+ idle_power_usage = IDLE_DRAW_MINIMAL
+ active_power_usage = ACTIVE_DRAW_EXTREME
circuit = /obj/item/circuitboard/machine/ship_gravity
var/charging = FALSE
var/active = FALSE
diff --git a/code/game/machinery/shuttle/shuttle_engine_types.dm b/code/game/machinery/shuttle/shuttle_engine_types.dm
index e5e3d812c09..de9992e106d 100644
--- a/code/game/machinery/shuttle/shuttle_engine_types.dm
+++ b/code/game/machinery/shuttle/shuttle_engine_types.dm
@@ -29,7 +29,7 @@
if(heat_creation)
heat_engine()
var/to_use = fuel_use * (percentage / 100) * deltatime
- return resolved_heater.consume_fuel(to_use, fuel_type) / to_use * thrust //This proc returns how much was actually burned, so let's use that and multiply it by the thrust to get all the thrust we CAN give.
+ return resolved_heater.consume_fuel(to_use, fuel_type) / to_use * percentage / 100 * thrust //This proc returns how much was actually burned, so let's use that and multiply it by the thrust to get all the thrust we CAN give.
/obj/machinery/power/shuttle/engine/fueled/return_fuel()
. = ..()
diff --git a/code/game/machinery/shuttle/shuttle_heater.dm b/code/game/machinery/shuttle/shuttle_heater.dm
index 94735ba4ab2..8578e3fb5a2 100644
--- a/code/game/machinery/shuttle/shuttle_heater.dm
+++ b/code/game/machinery/shuttle/shuttle_heater.dm
@@ -16,7 +16,7 @@
icon_state = "heater_pipe"
var/icon_state_closed = "heater_pipe"
var/icon_state_open = "heater_pipe_open"
- idle_power_usage = 50
+ idle_power_usage = IDLE_DRAW_MINIMAL
circuit = /obj/item/circuitboard/machine/shuttle/heater
density = TRUE
@@ -25,7 +25,7 @@
layer = OBJ_LAYER
showpipe = TRUE
- pipe_flags = PIPING_ONE_PER_TURF | PIPING_DEFAULT_LAYER_ONLY
+ pipe_flags = PIPING_ONE_PER_TURF
var/efficiency_multiplier = 1
var/gas_capacity = 0
@@ -34,6 +34,13 @@
///The internals tank to draw from
var/obj/item/tank/fuel_tank
+/obj/machinery/atmospherics/components/unary/shuttle/heater/on_construction(obj_color, set_layer)
+ var/obj/item/circuitboard/machine/shuttle/heater/board = circuit
+ if(board)
+ piping_layer = board.pipe_layer
+ set_layer = piping_layer
+ ..()
+
/obj/machinery/atmospherics/components/unary/shuttle/heater/New()
. = ..()
SetInitDirections()
diff --git a/code/game/machinery/slotmachine.dm b/code/game/machinery/slotmachine.dm
index 0ae88638d5b..2038612c279 100644
--- a/code/game/machinery/slotmachine.dm
+++ b/code/game/machinery/slotmachine.dm
@@ -22,7 +22,7 @@
base_icon_state = "slots"
density = TRUE
use_power = IDLE_POWER_USE
- idle_power_usage = 50
+ idle_power_usage = IDLE_DRAW_MINIMAL
circuit = /obj/item/circuitboard/computer/slot_machine
light_color = LIGHT_COLOR_BROWN
unique_icon = TRUE
diff --git a/code/game/machinery/stasis.dm b/code/game/machinery/stasis.dm
index 37e079715dc..2582c57da90 100644
--- a/code/game/machinery/stasis.dm
+++ b/code/game/machinery/stasis.dm
@@ -9,8 +9,8 @@
can_buckle = TRUE
buckle_lying = 90
circuit = /obj/item/circuitboard/machine/stasis
- idle_power_usage = 40
- active_power_usage = 340
+ idle_power_usage = IDLE_DRAW_MINIMAL
+ active_power_usage = ACTIVE_DRAW_HIGH
var/stasis_enabled = TRUE
var/last_stasis_sound = FALSE
var/stasis_can_toggle = 0
@@ -112,12 +112,12 @@
playsound(src, 'sound/effects/spray.ogg', 5, TRUE, 2, frequency = freq)
target.apply_status_effect(STATUS_EFFECT_STASIS, STASIS_MACHINE_EFFECT)
target.ExtinguishMob()
- use_power = ACTIVE_POWER_USE
+ set_active_power()
/obj/machinery/stasis/proc/thaw_them(mob/living/target)
target.remove_status_effect(STATUS_EFFECT_STASIS, STASIS_MACHINE_EFFECT)
if(target == occupant)
- use_power = IDLE_POWER_USE
+ set_idle_power()
/obj/machinery/stasis/post_buckle_mob(mob/living/L)
if(!can_be_occupant(L))
diff --git a/code/game/machinery/status_display.dm b/code/game/machinery/status_display.dm
index 1e402ee02e5..9e1b5b28690 100644
--- a/code/game/machinery/status_display.dm
+++ b/code/game/machinery/status_display.dm
@@ -22,7 +22,7 @@
icon_state = "frame"
density = FALSE
use_power = IDLE_POWER_USE
- idle_power_usage = 10
+ idle_power_usage = IDLE_DRAW_MINIMAL
maptext_height = 26
maptext_width = 32
diff --git a/code/game/machinery/suit_storage_unit.dm b/code/game/machinery/suit_storage_unit.dm
index dfa55168935..107c5656c03 100644
--- a/code/game/machinery/suit_storage_unit.dm
+++ b/code/game/machinery/suit_storage_unit.dm
@@ -8,6 +8,8 @@
icon_state = "ssu_classic"
base_icon_state = "ssu_classic"
density = TRUE
+ use_power = IDLE_POWER_USE
+ idle_power_usage = IDLE_DRAW_MINIMAL
max_integrity = 250
circuit = /obj/item/circuitboard/machine/suit_storage_unit
@@ -404,7 +406,7 @@
else
target.visible_message(span_warning("[user] starts shoving [target] into [src]!"), span_userdanger("[user] starts shoving you into [src]!"))
- if(do_mob(user, target, 30))
+ if(do_after(user, 30, target))
if(occupant || helmet || suit || storage)
return
if(target == user)
@@ -429,6 +431,7 @@
uv = TRUE
locked = TRUE
update_appearance()
+ use_power(ACTIVE_DRAW_HIGH)
if(occupant)
if(uv_super)
mob_occupant.adjustFireLoss(rand(20, 36))
@@ -459,6 +462,12 @@
else
visible_message(span_warning("[src]'s door slides open, barraging you with the nauseating smell of charred flesh."))
mob_occupant.radiation = 0
+ if(iscarbon(mob_occupant))
+ var/mob/living/carbon/bacon = mob_occupant
+ for(var/obj/item/bodypart/grilling as anything in bacon.get_bleeding_parts(TRUE))
+ if(!grilling.can_bandage())
+ continue
+ grilling.apply_bandage(0.005, 600, "cauterization")
playsound(src, 'sound/machines/airlocks/standard/close.ogg', 25, TRUE)
var/list/things_to_clear = list() //Done this way since using GetAllContents on the SSU itself would include circuitry and such.
if(suit)
diff --git a/code/game/machinery/telecomms/machines/broadcaster.dm b/code/game/machinery/telecomms/machines/broadcaster.dm
index f9cbc692e05..2a12e6bcf93 100644
--- a/code/game/machinery/telecomms/machines/broadcaster.dm
+++ b/code/game/machinery/telecomms/machines/broadcaster.dm
@@ -14,7 +14,7 @@ GLOBAL_VAR_INIT(message_delay, 0) // To make sure restarting the recentmessages
desc = "A dish-shaped machine used to broadcast processed subspace signals."
density = TRUE
use_power = IDLE_POWER_USE
- idle_power_usage = 25
+ idle_power_usage = IDLE_DRAW_MINIMAL
circuit = /obj/item/circuitboard/machine/telecomms/broadcaster
/obj/machinery/telecomms/broadcaster/receive_information(datum/signal/subspace/signal, obj/machinery/telecomms/machine_from)
diff --git a/code/game/machinery/telecomms/machines/bus.dm b/code/game/machinery/telecomms/machines/bus.dm
index 2496ee41c87..6428456d161 100644
--- a/code/game/machinery/telecomms/machines/bus.dm
+++ b/code/game/machinery/telecomms/machines/bus.dm
@@ -14,7 +14,7 @@
desc = "A mighty piece of hardware used to send massive amounts of data quickly."
density = TRUE
use_power = IDLE_POWER_USE
- idle_power_usage = 50
+ idle_power_usage = IDLE_DRAW_MINIMAL
netspeed = 40
circuit = /obj/item/circuitboard/machine/telecomms/bus
var/change_frequency = 0
diff --git a/code/game/machinery/telecomms/machines/hub.dm b/code/game/machinery/telecomms/machines/hub.dm
index dedf7c7f3a7..a01225b4f4f 100644
--- a/code/game/machinery/telecomms/machines/hub.dm
+++ b/code/game/machinery/telecomms/machines/hub.dm
@@ -14,7 +14,7 @@
desc = "A mighty piece of hardware used to send/receive massive amounts of data."
density = TRUE
use_power = IDLE_POWER_USE
- idle_power_usage = 80
+ idle_power_usage = IDLE_DRAW_MINIMAL
long_range_link = TRUE
netspeed = 40
circuit = /obj/item/circuitboard/machine/telecomms/hub
diff --git a/code/game/machinery/telecomms/machines/message_server.dm b/code/game/machinery/telecomms/machines/message_server.dm
index d11067c290f..d9f927a7c35 100644
--- a/code/game/machinery/telecomms/machines/message_server.dm
+++ b/code/game/machinery/telecomms/machines/message_server.dm
@@ -12,8 +12,8 @@
name = "Blackbox Recorder"
density = TRUE
use_power = IDLE_POWER_USE
- idle_power_usage = 10
- active_power_usage = 100
+ idle_power_usage = IDLE_DRAW_MINIMAL
+ active_power_usage = ACTIVE_DRAW_MINIMAL
armor = list("melee" = 25, "bullet" = 10, "laser" = 10, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 50, "acid" = 70)
var/obj/item/stored
@@ -80,8 +80,8 @@
desc = "A machine that processes and routes PDA and request console messages."
density = TRUE
use_power = IDLE_POWER_USE
- idle_power_usage = 10
- active_power_usage = 100
+ idle_power_usage = IDLE_DRAW_MINIMAL
+ active_power_usage = ACTIVE_DRAW_MINIMAL
circuit = /obj/item/circuitboard/machine/telecomms/message_server
var/list/datum/data_pda_msg/pda_msgs = list()
diff --git a/code/game/machinery/telecomms/machines/processor.dm b/code/game/machinery/telecomms/machines/processor.dm
index 86bc02438d9..6c13ee65d51 100644
--- a/code/game/machinery/telecomms/machines/processor.dm
+++ b/code/game/machinery/telecomms/machines/processor.dm
@@ -12,7 +12,7 @@
desc = "This machine is used to process large quantities of information."
density = TRUE
use_power = IDLE_POWER_USE
- idle_power_usage = 30
+ idle_power_usage = IDLE_DRAW_MINIMAL
circuit = /obj/item/circuitboard/machine/telecomms/processor
var/process_mode = 1 // 1 = Uncompress Signals, 0 = Compress Signals
diff --git a/code/game/machinery/telecomms/machines/receiver.dm b/code/game/machinery/telecomms/machines/receiver.dm
index 79b989648d5..33b0bc7028e 100644
--- a/code/game/machinery/telecomms/machines/receiver.dm
+++ b/code/game/machinery/telecomms/machines/receiver.dm
@@ -12,7 +12,7 @@
desc = "This machine has a dish-like shape and green lights. It is designed to detect and process subspace radio activity."
density = TRUE
use_power = IDLE_POWER_USE
- idle_power_usage = 30
+ idle_power_usage = IDLE_DRAW_MINIMAL
circuit = /obj/item/circuitboard/machine/telecomms/receiver
/obj/machinery/telecomms/receiver/receive_signal(datum/signal/subspace/signal)
diff --git a/code/game/machinery/telecomms/machines/relay.dm b/code/game/machinery/telecomms/machines/relay.dm
index ffaeda72e26..763c42dbbf9 100644
--- a/code/game/machinery/telecomms/machines/relay.dm
+++ b/code/game/machinery/telecomms/machines/relay.dm
@@ -12,7 +12,7 @@
desc = "A mighty piece of hardware used to send massive amounts of data far away."
density = TRUE
use_power = IDLE_POWER_USE
- idle_power_usage = 30
+ idle_power_usage = IDLE_DRAW_MINIMAL
netspeed = 5
long_range_link = 1
circuit = /obj/item/circuitboard/machine/telecomms/relay
diff --git a/code/game/machinery/telecomms/machines/server.dm b/code/game/machinery/telecomms/machines/server.dm
index 664d45b5b1c..5607b6bbec8 100644
--- a/code/game/machinery/telecomms/machines/server.dm
+++ b/code/game/machinery/telecomms/machines/server.dm
@@ -11,7 +11,7 @@
desc = "A machine used to store data and network statistics."
density = TRUE
use_power = IDLE_POWER_USE
- idle_power_usage = 15
+ idle_power_usage = IDLE_DRAW_MINIMAL
circuit = /obj/item/circuitboard/machine/telecomms/server
var/list/log_entries = list()
var/totaltraffic = 0 // gigabytes (if > 1024, divide by 1024 -> terrabytes)
diff --git a/code/game/machinery/teleporter.dm b/code/game/machinery/teleporter.dm
index 6e0551b25d4..1a342f0554c 100644
--- a/code/game/machinery/teleporter.dm
+++ b/code/game/machinery/teleporter.dm
@@ -9,8 +9,8 @@
icon_state = "tele0"
base_icon_state = "tele"
use_power = IDLE_POWER_USE
- idle_power_usage = 10
- active_power_usage = 2000
+ idle_power_usage = IDLE_DRAW_MINIMAL
+ active_power_usage = ACTIVE_DRAW_HIGH
circuit = /obj/item/circuitboard/machine/teleporter_hub
var/accuracy = 0
var/obj/machinery/teleport/station/power_station
@@ -106,8 +106,8 @@
icon_state = "controller"
base_icon_state = "controller"
use_power = IDLE_POWER_USE
- idle_power_usage = 10
- active_power_usage = 2000
+ idle_power_usage = IDLE_DRAW_MINIMAL
+ active_power_usage = ACTIVE_DRAW_HIGH
circuit = /obj/item/circuitboard/machine/teleporter_station
var/engaged = FALSE
var/obj/machinery/computer/teleporter/teleporter_console
diff --git a/code/game/mecha/equipment/mecha_equipment.dm b/code/game/mecha/equipment/mecha_equipment.dm
index 63d308f6955..3882fe8d5a6 100644
--- a/code/game/mecha/equipment/mecha_equipment.dm
+++ b/code/game/mecha/equipment/mecha_equipment.dm
@@ -101,13 +101,13 @@
chassis.use_power(energy_drain)
addtimer(CALLBACK(src, PROC_REF(set_ready_state), 1), equip_cooldown)
-/obj/item/mecha_parts/mecha_equipment/proc/do_after_cooldown(atom/target)
+/obj/item/mecha_parts/mecha_equipment/proc/do_after_cooldown(atom/target, mob/user, interaction_key)
if(!chassis)
return
var/C = chassis.loc
set_ready_state(0)
chassis.use_power(energy_drain)
- . = do_after(chassis.occupant, equip_cooldown, target=target)
+ . = do_after(user, equip_cooldown, target=target, interaction_key = interaction_key)
set_ready_state(1)
if(!chassis || chassis.loc != C || src != chassis.selected || !(get_dir(chassis, target)&chassis.dir))
return 0
diff --git a/code/game/mecha/equipment/tools/medical_tools.dm b/code/game/mecha/equipment/tools/medical_tools.dm
index 6a36a0ee01d..17e3fc0116b 100644
--- a/code/game/mecha/equipment/tools/medical_tools.dm
+++ b/code/game/mecha/equipment/tools/medical_tools.dm
@@ -306,8 +306,8 @@
mechsyringe.forceMove(get_turf(chassis))
reagents.trans_to(mechsyringe, min(mechsyringe.volume, reagents.total_volume), transfered_by = chassis.occupant)
syringes -= mechsyringe
- mechsyringe.icon = 'icons/obj/chemical.dmi'
- mechsyringe.icon_state = "syringeproj"
+ mechsyringe.icon = 'icons/obj/chemical/misc.dmi'
+ mechsyringe.icon_state = "potgreen"
playsound(chassis, 'sound/items/syringeproj.ogg', 50, TRUE)
log_message("Launched [mechsyringe] from [src], targeting [target].", LOG_MECHA)
var/mob/originaloccupant = chassis.occupant
diff --git a/code/game/mecha/mech_fabricator.dm b/code/game/mecha/mech_fabricator.dm
index 6814f0cc2e7..83a2c4861c9 100644
--- a/code/game/mecha/mech_fabricator.dm
+++ b/code/game/mecha/mech_fabricator.dm
@@ -5,8 +5,8 @@
desc = "Nothing is being built."
density = TRUE
use_power = IDLE_POWER_USE
- idle_power_usage = 20
- active_power_usage = 5000
+ idle_power_usage = IDLE_DRAW_MINIMAL
+ active_power_usage = ACTIVE_DRAW_HIGH
req_access = list(ACCESS_ROBOTICS)
circuit = /obj/item/circuitboard/machine/mechfab
var/time_coeff = 1
@@ -196,10 +196,10 @@
rmat.silo_log(src, "built", -1, "[D.name]", res_coef)
add_overlay("fab-active")
- use_power = ACTIVE_POWER_USE
+ set_active_power()
updateUsrDialog()
sleep(get_construction_time_w_coeff(D))
- use_power = IDLE_POWER_USE
+ set_idle_power()
cut_overlay("fab-active")
desc = initial(desc)
diff --git a/code/game/mecha/mecha.dm b/code/game/mecha/mecha.dm
index 03fb57dea26..ba4e2de3331 100644
--- a/code/game/mecha/mecha.dm
+++ b/code/game/mecha/mecha.dm
@@ -159,7 +159,7 @@
return cell
/obj/mecha/Destroy()
- if(occupant)
+ if(occupant && iscarbon(occupant))
occupant.SetSleeping(destruction_sleep_duration)
go_out()
var/mob/living/silicon/ai/AI
@@ -832,7 +832,7 @@
//An actual AI (simple_animal mecha pilot) entering the mech
-/obj/mecha/proc/aimob_enter_mech(mob/living/simple_animal/hostile/syndicate/mecha_pilot/pilot_mob)
+/obj/mecha/proc/aimob_enter_mech(mob/living/simple_animal/hostile/human/syndicate/mecha_pilot/pilot_mob)
if(pilot_mob && pilot_mob.Adjacent(src))
if(occupant)
return
@@ -842,7 +842,7 @@
pilot_mob.forceMove(src)
GrantActions(pilot_mob)//needed for checks, and incase a badmin puts somebody in the mob
-/obj/mecha/proc/aimob_exit_mech(mob/living/simple_animal/hostile/syndicate/mecha_pilot/pilot_mob)
+/obj/mecha/proc/aimob_exit_mech(mob/living/simple_animal/hostile/human/syndicate/mecha_pilot/pilot_mob)
if(occupant == pilot_mob)
occupant = null
if(pilot_mob.mecha == src)
diff --git a/code/game/objects/buckling.dm b/code/game/objects/buckling.dm
index 42c32e04fa9..fbe90058fc3 100644
--- a/code/game/objects/buckling.dm
+++ b/code/game/objects/buckling.dm
@@ -210,7 +210,7 @@
M.visible_message("[user] starts buckling [M] to [src]!",\
"[user] starts buckling you to [src]!",\
"You hear metal clanking.")
- if(!do_after(user, 2 SECONDS, TRUE, M))
+ if(!do_after(user, 2 SECONDS, M))
return FALSE
// Sanity check before we attempt to buckle. Is everything still in a kosher state for buckling after the 3 seconds have elapsed?
diff --git a/code/game/objects/effects/anomalies/anomalies_static.dm b/code/game/objects/effects/anomalies/anomalies_static.dm
index a00babe5844..ab574ee475d 100644
--- a/code/game/objects/effects/anomalies/anomalies_static.dm
+++ b/code/game/objects/effects/anomalies/anomalies_static.dm
@@ -39,19 +39,19 @@
playsound(src, 'sound/effects/walkietalkie.ogg', 75)
if(stored_mob && looking.stat != DEAD && prob(25))
say_fucky_things()
- if (!HAS_TRAIT(looking, TRAIT_MINDSHIELD) && looking.stat != DEAD || !looking.research_scanner && looking.stat != DEAD || !HAS_TRAIT(looking, TRAIT_DEAF))
- looking.adjustOrganLoss(ORGAN_SLOT_BRAIN, 10, 200)
- playsound(src, 'sound/effects/stall.ogg', 50)
- if(looking.getOrganLoss(ORGAN_SLOT_BRAIN) >= 150 && looking.stat != DEAD)
- if(prob(20))
- var/mob/living/carbon/victim = looking
- var/obj/effect/anomaly/tvstatic/planetary/expansion
- expansion = new(get_turf(victim))
- visible_message(span_warning("The static overtakes [victim], taking their place!"))
- victim.death()
- expansion.stored_mob = victim
- victim.forceMove(expansion)
- return
+ if(HAS_TRAIT(looking, TRAIT_MINDSHIELD) || looking.stat == DEAD || looking.research_scanner || HAS_TRAIT(looking, TRAIT_DEAF))
+ continue
+ looking.adjustOrganLoss(ORGAN_SLOT_BRAIN, 10, 200)
+ playsound(src, 'sound/effects/stall.ogg', 50)
+ if(looking.getOrganLoss(ORGAN_SLOT_BRAIN) >= 150 && looking.stat != DEAD)
+ if(prob(20))
+ var/mob/living/carbon/victim = looking
+ var/obj/effect/anomaly/tvstatic/planetary/expansion
+ expansion = new(get_turf(victim))
+ visible_message(span_warning("The static overtakes [victim], [expansion] taking their place!"))
+ victim.death()
+ expansion.stored_mob = victim
+ victim.forceMove(expansion)
/obj/effect/anomaly/tvstatic/Bumped(atom/movable/AM)
diff --git a/code/game/objects/effects/decals/decal.dm b/code/game/objects/effects/decals/decal.dm
index 975f94102ec..2dfea3173fe 100644
--- a/code/game/objects/effects/decals/decal.dm
+++ b/code/game/objects/effects/decals/decal.dm
@@ -39,7 +39,7 @@
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/obj/effect/turf_decal
- icon = 'icons/turf/decals.dmi'
+ icon = 'icons/turf/decals/decals.dmi'
icon_state = "warningfulltile"
plane = FLOOR_PLANE
layer = TURF_DECAL_LAYER
diff --git a/code/game/objects/effects/decals/turfdecal/flooring_decals.dm b/code/game/objects/effects/decals/turfdecal/flooring_decals.dm
index f56bebfc7ba..fc23ed89c27 100644
--- a/code/game/objects/effects/decals/turfdecal/flooring_decals.dm
+++ b/code/game/objects/effects/decals/turfdecal/flooring_decals.dm
@@ -138,6 +138,8 @@ TURF_DECAL_COLOR_HELPER(opaque/grey, COLOR_FLOORTILE_GRAY, 255)
TURF_DECAL_COLOR_HELPER(opaque/lightgrey, "#a8b2b6", 255)
TURF_DECAL_COLOR_HELPER(opaque/bottlegreen, "#57967f", 255)
TURF_DECAL_COLOR_HELPER(opaque/ntblue, "#283674", 255)
+TURF_DECAL_COLOR_HELPER(opaque/nsorange, "#FF6600", 255)
+TURF_DECAL_COLOR_HELPER(opaque/vired, "#d40000", 255)
TURF_DECAL_COLOR_HELPER(opaque/solgovblue, "#2d2a4e", 255)
TURF_DECAL_COLOR_HELPER(opaque/solgovgold, "#eeac2e", 255)
TURF_DECAL_COLOR_HELPER(opaque/syndiered, "#730622", 255)
@@ -163,6 +165,8 @@ TURF_DECAL_COLOR_HELPER(transparent/grey, COLOR_FLOORTILE_GRAY, 140)
TURF_DECAL_COLOR_HELPER(transparent/lightgrey, "#a8b2b6", 140)
TURF_DECAL_COLOR_HELPER(transparent/bottlegreen, "#57967f", 140)
TURF_DECAL_COLOR_HELPER(transparent/ntblue, "#283674", 140)
+TURF_DECAL_COLOR_HELPER(transparent/nsorange, "#FF6600", 140)
+TURF_DECAL_COLOR_HELPER(opaque/vired, "#d40000", 140)
TURF_DECAL_COLOR_HELPER(transparent/solgovblue, "#2d2a4e", 140)
TURF_DECAL_COLOR_HELPER(transparent/solgovgold, "#eeac2e", 140)
TURF_DECAL_COLOR_HELPER(transparent/syndiered, "#730622", 140)
@@ -414,7 +418,6 @@ TURF_DECAL_COLOR_HELPER(transparent/inteqbrown, "#4b2a18", 140)
/obj/effect/turf_decal/plaque
name = "plaque"
icon_state = "plaque"
- icon = 'icons/turf/decals.dmi'
/obj/effect/turf_decal/chapel
name = "chapel"
@@ -797,6 +800,438 @@ TURF_DECAL_COLOR_HELPER(transparent/inteqbrown, "#4b2a18", 140)
/obj/effect/turf_decal/solgov/all/bottom_right
icon_state = "bottom-right-all"
+// suns
+
+/obj/effect/turf_decal/suns
+ icon = 'icons/turf/decals/suns_floor.dmi'
+ icon_state = "suns-columm1-bottom"
+
+/obj/effect/turf_decal/suns/capital_s
+ icon_state = "capital-s"
+
+/obj/effect/turf_decal/suns/capital_u
+ icon_state = "capital-u"
+
+/obj/effect/turf_decal/suns/capital_n
+ icon_state = "capital-n"
+
+/obj/effect/turf_decal/suns/capital_s/fancy
+ icon_state = "capitalfancy-s"
+
+/obj/effect/turf_decal/suns/capital_u/fancy
+ icon_state = "capitalfancy-u"
+
+/obj/effect/turf_decal/suns/capital_n/fancy
+ icon_state = "capitalfancy-n"
+
+/obj/effect/turf_decal/suns/capital_s/marble
+ icon_state = "capitalmarble-s"
+
+/obj/effect/turf_decal/suns/capital_u/marble
+ icon_state = "capitalmarble-u"
+
+/obj/effect/turf_decal/suns/capital_n/marble
+ icon_state = "capitalmarble-n"
+
+// borders
+
+/obj/effect/turf_decal/suns/line
+ icon_state = "suns-border"
+
+/obj/effect/turf_decal/suns/line/corner
+ icon_state = "suns-bordercorner"
+
+/obj/effect/turf_decal/suns/line/end
+ icon_state = "suns-borderend"
+
+/obj/effect/turf_decal/suns/line/fill
+ icon_state = "suns-fill"
+
+/obj/effect/turf_decal/suns/line/fill/corner
+ icon_state = "suns-fillcorner"
+
+/obj/effect/turf_decal/suns/line/fill/end
+ icon_state = "suns-fillend"
+
+/obj/effect/turf_decal/suns/line/fancy
+ icon_state = "sunsfancy-border"
+
+/obj/effect/turf_decal/suns/line/fancy/corner
+ icon_state = "sunsfancy-bordercorner"
+
+/obj/effect/turf_decal/suns/line/fancy/end
+ icon_state = "sunsfancy-borderend"
+
+/obj/effect/turf_decal/suns/line/fancy/fill
+ icon_state = "sunsfancy-fill"
+
+/obj/effect/turf_decal/suns/line/fancy/fill/corner
+ icon_state = "sunsfancy-fillcorner"
+
+/obj/effect/turf_decal/suns/line/fancy/fill/end
+ icon_state = "sunsfancy-fillend"
+
+/obj/effect/turf_decal/suns/line/marble
+ icon_state = "sunsmarble-border"
+
+/obj/effect/turf_decal/suns/line/marble/corner
+ icon_state = "sunsmarble-bordercorner"
+
+/obj/effect/turf_decal/suns/line/marble/end
+ icon_state = "sunsmarble-borderend"
+
+/obj/effect/turf_decal/suns/line/marble/fill
+ icon_state = "sunsmarble-fill"
+
+/obj/effect/turf_decal/suns/line/marble/fill/corner
+ icon_state = "sunsmarble-fillcorner"
+
+/obj/effect/turf_decal/suns/line/marble/fill/end
+ icon_state = "sunsmarble-fillend"
+
+// suns 3x6 decal
+
+/obj/effect/turf_decal/suns/columm1
+ icon_state = "suns-columm1-bottom"
+
+/obj/effect/turf_decal/suns/columm1/middle
+ icon_state = "suns-columm1-middle"
+
+/obj/effect/turf_decal/suns/columm1/top
+ icon_state = "suns-columm1-top"
+
+/obj/effect/turf_decal/suns/columm2
+ icon_state = "suns-columm2-bottom"
+
+/obj/effect/turf_decal/suns/columm2/middle
+ icon_state = "suns-columm2-middle"
+
+/obj/effect/turf_decal/suns/columm2/top
+ icon_state = "suns-columm2-top"
+
+/obj/effect/turf_decal/suns/columm3
+ icon_state = "suns-columm3-bottom"
+
+/obj/effect/turf_decal/suns/columm3/middle
+ icon_state = "suns-columm3-middle"
+
+/obj/effect/turf_decal/suns/columm3/top
+ icon_state = "suns-columm3-top"
+
+/obj/effect/turf_decal/suns/columm4
+ icon_state = "suns-columm4-middle"
+
+/obj/effect/turf_decal/suns/columm4/top
+ icon_state = "suns-columm4-top"
+
+/obj/effect/turf_decal/suns/columm5
+ icon_state = "suns-columm5-middle"
+
+/obj/effect/turf_decal/suns/columm5/top
+ icon_state = "suns-columm5-top"
+
+/obj/effect/turf_decal/suns/columm6
+ icon_state = "suns-columm6-middle"
+
+/obj/effect/turf_decal/suns/columm6/top
+ icon_state = "suns-columm6-top"
+
+/obj/effect/turf_decal/suns/marble/columm1
+ icon_state = "sunsmarble-columm1-bottom"
+
+/obj/effect/turf_decal/suns/marble/columm1/middle
+ icon_state = "sunsmarble-columm1-middle"
+
+/obj/effect/turf_decal/suns/marble/columm1/top
+ icon_state = "sunsmarble-columm1-top"
+
+/obj/effect/turf_decal/suns/marble/columm2
+ icon_state = "sunsmarble-columm2-bottom"
+
+/obj/effect/turf_decal/suns/marble/columm2/middle
+ icon_state = "sunsmarble-columm2-middle"
+
+/obj/effect/turf_decal/suns/marble/columm2/top
+ icon_state = "sunsmarble-columm2-top"
+
+/obj/effect/turf_decal/suns/marble/columm3
+ icon_state = "sunsmarble-columm3-bottom"
+
+/obj/effect/turf_decal/suns/marble/columm3/middle
+ icon_state = "sunsmarble-columm3-middle"
+
+/obj/effect/turf_decal/suns/marble/columm3/top
+ icon_state = "sunsmarble-columm3-top"
+
+/obj/effect/turf_decal/suns/marble/columm4
+ icon_state = "sunsmarble-columm4-middle"
+
+/obj/effect/turf_decal/suns/marble/columm4/top
+ icon_state = "sunsmarble-columm4-top"
+
+/obj/effect/turf_decal/suns/marble/columm5
+ icon_state = "sunsmarble-columm5-middle"
+
+/obj/effect/turf_decal/suns/marble/columm5/top
+ icon_state = "sunsmarble-columm5-top"
+
+/obj/effect/turf_decal/suns/marble/columm6
+ icon_state = "sunsmarble-columm6-middle"
+
+/obj/effect/turf_decal/suns/marble/columm6/top
+ icon_state = "sunsmarble-columm6-top"
+
+/obj/effect/turf_decal/suns/fancy/columm1
+ icon_state = "sunsfancy-columm1-bottom"
+
+/obj/effect/turf_decal/suns/fancy/columm1/middle
+ icon_state = "sunsfancy-columm1-middle"
+
+/obj/effect/turf_decal/suns/fancy/columm1/top
+ icon_state = "sunsfancy-columm1-top"
+
+/obj/effect/turf_decal/suns/fancy/columm2
+ icon_state = "sunsfancy-columm2-bottom"
+
+/obj/effect/turf_decal/suns/fancy/columm2/middle
+ icon_state = "sunsfancy-columm2-middle"
+
+/obj/effect/turf_decal/suns/fancy/columm2/top
+ icon_state = "sunsfancy-columm2-top"
+
+/obj/effect/turf_decal/suns/fancy/columm3
+ icon_state = "sunsfancy-columm3-bottom"
+
+/obj/effect/turf_decal/suns/fancy/columm3/middle
+ icon_state = "sunsfancy-columm3-middle"
+
+/obj/effect/turf_decal/suns/fancy/columm3/top
+ icon_state = "sunsfancy-columm3-top"
+
+/obj/effect/turf_decal/suns/fancy/columm4
+ icon_state = "sunsfancy-columm4-middle"
+
+/obj/effect/turf_decal/suns/fancy/columm4/top
+ icon_state = "sunsfancy-columm4-top"
+
+/obj/effect/turf_decal/suns/fancy/columm5
+ icon_state = "sunsfancy-columm5-middle"
+
+/obj/effect/turf_decal/suns/fancy/columm5/top
+ icon_state = "sunsfancy-columm5-top"
+
+/obj/effect/turf_decal/suns/fancy/columm6
+ icon_state = "sunsfancy-columm6-middle"
+
+/obj/effect/turf_decal/suns/fancy/columm6/top
+ icon_state = "sunsfancy-columm6-top"
+
+
+// suns alt decal
+
+/obj/effect/turf_decal/suns/alt
+ icon_state = "sunsalt-top-left"
+
+/obj/effect/turf_decal/suns/alt/top_left
+ icon_state = "sunsalt-top-left"
+
+/obj/effect/turf_decal/suns/alt/top_center
+ icon_state = "sunsalt-top-center"
+
+/obj/effect/turf_decal/suns/alt/top_right
+ icon_state = "sunsalt-top-right"
+
+/obj/effect/turf_decal/suns/alt/middle_left
+ icon_state = "sunsalt-middle-left"
+
+/obj/effect/turf_decal/suns/alt/middle_center
+ icon_state = "sunsalt-middle-center"
+
+/obj/effect/turf_decal/suns/alt/middle_right
+ icon_state = "sunsalt-middle-right"
+
+/obj/effect/turf_decal/suns/alt/bottom_left
+ icon_state = "sunsalt-bottom-left"
+
+/obj/effect/turf_decal/suns/alt/bottom_center
+ icon_state = "sunsalt-bottom-center"
+
+/obj/effect/turf_decal/suns/alt/bottom_right
+ icon_state = "sunsalt-bottom-right"
+
+/obj/effect/turf_decal/suns/alt/fancy
+ icon_state = "sunsaltfancy-top-left"
+
+/obj/effect/turf_decal/suns/alt/fancy/top_left
+ icon_state = "sunsaltfancy-top-left"
+
+/obj/effect/turf_decal/suns/alt/fancy/top_center
+ icon_state = "sunsaltfancy-top-center"
+
+/obj/effect/turf_decal/suns/alt/fancy/top_right
+ icon_state = "sunsaltfancy-top-right"
+
+/obj/effect/turf_decal/suns/alt/fancy/middle_left
+ icon_state = "sunsaltfancy-middle-left"
+
+/obj/effect/turf_decal/suns/alt/fancy/middle_center
+ icon_state = "sunsaltfancy-middle-center"
+
+/obj/effect/turf_decal/suns/alt/fancy/middle_right
+ icon_state = "sunsaltfancy-middle-right"
+
+/obj/effect/turf_decal/suns/alt/fancy/bottom_left
+ icon_state = "sunsaltfancy-bottom-left"
+
+/obj/effect/turf_decal/suns/alt/fancy/bottom_center
+ icon_state = "sunsaltfancy-bottom-center"
+
+/obj/effect/turf_decal/suns/alt/fancy/bottom_right
+ icon_state = "sunsaltfancy-bottom-right"
+
+/obj/effect/turf_decal/suns/alt/marble
+ icon_state = "sunsaltmarble-top-left"
+
+/obj/effect/turf_decal/suns/alt/marble/top_left
+ icon_state = "sunsaltmarble-top-left"
+
+/obj/effect/turf_decal/suns/alt/marble/top_center
+ icon_state = "sunsaltmarble-top-center"
+
+/obj/effect/turf_decal/suns/alt/marble/top_right
+ icon_state = "sunsaltmarble-top-right"
+
+/obj/effect/turf_decal/suns/alt/marble/middle_left
+ icon_state = "sunsaltmarble-middle-left"
+
+/obj/effect/turf_decal/suns/alt/marble/middle_center
+ icon_state = "sunsaltmarble-middle-center"
+
+/obj/effect/turf_decal/suns/alt/marble/middle_right
+ icon_state = "sunsaltmarble-middle-right"
+
+/obj/effect/turf_decal/suns/alt/marble/bottom_left
+ icon_state = "sunsaltmarble-bottom-left"
+
+/obj/effect/turf_decal/suns/alt/marble/bottom_center
+ icon_state = "sunsaltmarble-bottom-center"
+
+/obj/effect/turf_decal/suns/alt/marble/bottom_right
+ icon_state = "sunsaltmarble-bottom-right"
+
+/obj/effect/turf_decal/suns/alt/transparent
+ icon_state = "sunsalttrans-top-left"
+
+/obj/effect/turf_decal/suns/alt/transparent/top_left
+ icon_state = "sunsalttrans-top-left"
+
+/obj/effect/turf_decal/suns/alt/transparent/top_center
+ icon_state = "sunsalttrans-top-center"
+
+/obj/effect/turf_decal/suns/alt/transparent/top_right
+ icon_state = "sunsalttrans-top-right"
+
+/obj/effect/turf_decal/suns/alt/transparent/middle_left
+ icon_state = "sunsalttrans-middle-left"
+
+/obj/effect/turf_decal/suns/alt/transparent/middle_center
+ icon_state = "sunsalttrans-middle-center"
+
+/obj/effect/turf_decal/suns/alt/transparent/middle_right
+ icon_state = "sunsalttrans-middle-right"
+
+/obj/effect/turf_decal/suns/alt/transparent/bottom_left
+ icon_state = "sunsalttrans-bottom-left"
+
+/obj/effect/turf_decal/suns/alt/transparent/bottom_center
+ icon_state = "sunsalttrans-bottom-center"
+
+/obj/effect/turf_decal/suns/alt/transparent/bottom_right
+ icon_state = "sunsalttrans-bottom-right"
+
+// suns 3x6 decal transparent
+
+/obj/effect/turf_decal/suns/transparent/columm1
+ icon_state = "sunstrans-columm1-bottom"
+
+/obj/effect/turf_decal/suns/transparent/columm1/middle
+ icon_state = "sunstrans-columm1-middle"
+
+/obj/effect/turf_decal/suns/transparent/columm1/top
+ icon_state = "sunstrans-columm1-top"
+
+/obj/effect/turf_decal/suns/transparent/columm2
+ icon_state = "sunstrans-columm2-bottom"
+
+/obj/effect/turf_decal/suns/transparent/columm2/middle
+ icon_state = "sunstrans-columm2-middle"
+
+/obj/effect/turf_decal/suns/transparent/columm2/top
+ icon_state = "sunstrans-columm2-top"
+
+/obj/effect/turf_decal/suns/transparent/columm3
+ icon_state = "sunstrans-columm3-bottom"
+
+/obj/effect/turf_decal/suns/transparent/columm3/middle
+ icon_state = "sunstrans-columm3-middle"
+
+/obj/effect/turf_decal/suns/transparent/columm3/top
+ icon_state = "sunstrans-columm3-top"
+
+/obj/effect/turf_decal/suns/transparent/columm4
+ icon_state = "sunstrans-columm4-middle"
+
+/obj/effect/turf_decal/suns/transparent/columm4/top
+ icon_state = "sunstrans-columm4-top"
+
+/obj/effect/turf_decal/suns/transparent/columm5
+ icon_state = "sunstrans-columm5-middle"
+
+/obj/effect/turf_decal/suns/transparent/columm5/top
+ icon_state = "sunstrans-columm5-top"
+
+/obj/effect/turf_decal/suns/transparent/columm6
+ icon_state = "sunstrans-columm6-middle"
+
+/obj/effect/turf_decal/suns/transparent/columm6/top
+ icon_state = "sunstrans-columm6-top"
+
+// nanotrasen
+
+/obj/effect/turf_decal/nanotrasen //placeholder for sorting these together, add 3x3 NT and Vigilitas logos later
+ icon = 'icons/obj/nanotrasen_floor.dmi'
+ icon_state = "NS-2x2" //also placeholder
+
+/obj/effect/turf_decal/nanotrasen/ns
+ icon_state = "NS-2x2"
+
+/obj/effect/turf_decal/nanotrasen/ns/top_left
+ icon_state = "NS-top-left"
+
+/obj/effect/turf_decal/nanotrasen/ns/top
+ icon_state = "NS-top-center"
+
+/obj/effect/turf_decal/nanotrasen/ns/top_right
+ icon_state = "NS-top-right"
+
+/obj/effect/turf_decal/nanotrasen/ns/center_left
+ icon_state = "NS-center-left"
+
+/obj/effect/turf_decal/nanotrasen/ns/center
+ icon_state = "NS-center"
+
+/obj/effect/turf_decal/nanotrasen/ns/center_right
+ icon_state = "NS-center-right"
+
+/obj/effect/turf_decal/nanotrasen/ns/bottom_left
+ icon_state = "NS-bottom-left"
+
+/obj/effect/turf_decal/nanotrasen/ns/bottom
+ icon_state = "NS-bottom-center"
+
+/obj/effect/turf_decal/nanotrasen/ns/bottom_right
+ icon_state = "NS-bottom-right"
+
/obj/effect/turf_decal/road
name = "road decal"
icon_state = "road"
diff --git a/code/game/objects/effects/decals/turfdecal/markings.dm b/code/game/objects/effects/decals/turfdecal/markings.dm
index e0a0746f5a2..860f8f0bd2b 100644
--- a/code/game/objects/effects/decals/turfdecal/markings.dm
+++ b/code/game/objects/effects/decals/turfdecal/markings.dm
@@ -229,32 +229,28 @@
/obj/effect/turf_decal/syndicateemblem/top/right
icon_state = "s3,3"
+/obj/effect/turf_decal/atmos
+ icon = 'icons/turf/decals/decals.dmi'
+
/obj/effect/turf_decal/atmos/oxygen
- icon = 'icons/turf/decals.dmi'
icon_state = "oxygen"
/obj/effect/turf_decal/atmos/carbon_dioxide
- icon = 'icons/turf/decals.dmi'
icon_state = "carbon_dioxide"
/obj/effect/turf_decal/atmos/nitrogen
- icon = 'icons/turf/decals.dmi'
icon_state = "nitrogen"
/obj/effect/turf_decal/atmos/air
- icon = 'icons/turf/decals.dmi'
icon_state = "air"
/obj/effect/turf_decal/atmos/nitrous_oxide
- icon = 'icons/turf/decals.dmi'
icon_state = "nitrous_oxide"
/obj/effect/turf_decal/atmos/plasma
- icon = 'icons/turf/decals.dmi'
icon_state = "plasma"
/obj/effect/turf_decal/atmos/mix
- icon = 'icons/turf/decals.dmi'
icon_state = "mix"
/**
@@ -339,169 +335,129 @@
// centered number decals
+
/obj/effect/turf_decal/number/one
- icon = 'icons/turf/decals.dmi'
icon_state = "1"
/obj/effect/turf_decal/number/two
- icon = 'icons/turf/decals.dmi'
icon_state = "2"
/obj/effect/turf_decal/number/three
- icon = 'icons/turf/decals.dmi'
icon_state = "3"
/obj/effect/turf_decal/number/four
- icon = 'icons/turf/decals.dmi'
icon_state = "4"
/obj/effect/turf_decal/number/five
- icon = 'icons/turf/decals.dmi'
icon_state = "5"
/obj/effect/turf_decal/number/six
- icon = 'icons/turf/decals.dmi'
icon_state = "6"
/obj/effect/turf_decal/number/seven
- icon = 'icons/turf/decals.dmi'
icon_state = "7"
/obj/effect/turf_decal/number/eight
- icon = 'icons/turf/decals.dmi'
icon_state = "8"
/obj/effect/turf_decal/number/nine
- icon = 'icons/turf/decals.dmi'
icon_state = "9"
/obj/effect/turf_decal/number/zero
- icon = 'icons/turf/decals.dmi'
icon_state = "0"
// right-shifted number decals (1s digit)
/obj/effect/turf_decal/number/right_one
- icon = 'icons/turf/decals.dmi'
icon_state = "-1"
/obj/effect/turf_decal/number/right_two
- icon = 'icons/turf/decals.dmi'
icon_state = "-2"
/obj/effect/turf_decal/number/right_three
- icon = 'icons/turf/decals.dmi'
icon_state = "-3"
/obj/effect/turf_decal/number/right_four
- icon = 'icons/turf/decals.dmi'
icon_state = "-4"
/obj/effect/turf_decal/number/right_five
- icon = 'icons/turf/decals.dmi'
icon_state = "-5"
/obj/effect/turf_decal/number/right_six
- icon = 'icons/turf/decals.dmi'
icon_state = "-6"
/obj/effect/turf_decal/number/right_seven
- icon = 'icons/turf/decals.dmi'
icon_state = "-7"
/obj/effect/turf_decal/number/right_eight
- icon = 'icons/turf/decals.dmi'
icon_state = "-8"
/obj/effect/turf_decal/number/right_nine
- icon = 'icons/turf/decals.dmi'
icon_state = "-9"
/obj/effect/turf_decal/number/right_zero
- icon = 'icons/turf/decals.dmi'
icon_state = "-0"
// left-shifted number decals (10s digit)
/obj/effect/turf_decal/number/left_one
- icon = 'icons/turf/decals.dmi'
icon_state = "1-"
/obj/effect/turf_decal/number/left_two
- icon = 'icons/turf/decals.dmi'
icon_state = "2-"
/obj/effect/turf_decal/number/left_three
- icon = 'icons/turf/decals.dmi'
icon_state = "3-"
/obj/effect/turf_decal/number/left_four
- icon = 'icons/turf/decals.dmi'
icon_state = "4-"
/obj/effect/turf_decal/number/left_five
- icon = 'icons/turf/decals.dmi'
icon_state = "5-"
/obj/effect/turf_decal/number/left_six
- icon = 'icons/turf/decals.dmi'
icon_state = "6-"
/obj/effect/turf_decal/number/left_seven
- icon = 'icons/turf/decals.dmi'
icon_state = "7-"
/obj/effect/turf_decal/number/left_eight
- icon = 'icons/turf/decals.dmi'
icon_state = "8-"
/obj/effect/turf_decal/number/left_nine
- icon = 'icons/turf/decals.dmi'
icon_state = "9-"
/obj/effect/turf_decal/number/left_zero
- icon = 'icons/turf/decals.dmi'
icon_state = "0-"
/obj/effect/turf_decal/dept/hop
- icon = 'icons/turf/decals.dmi'
icon_state = "hop"
/obj/effect/turf_decal/dept/bar
- icon = 'icons/turf/decals.dmi'
icon_state = "bar"
/obj/effect/turf_decal/dept/cargo
- icon = 'icons/turf/decals.dmi'
icon_state = "cargo"
/obj/effect/turf_decal/dept/medical
- icon = 'icons/turf/decals.dmi'
icon_state = "med"
/obj/effect/turf_decal/dept/science
- icon = 'icons/turf/decals.dmi'
icon_state = "sci"
/obj/effect/turf_decal/dept/security
- icon = 'icons/turf/decals.dmi'
icon_state = "sec"
/obj/effect/turf_decal/dept/mining
- icon = 'icons/turf/decals.dmi'
icon_state = "mine"
/obj/effect/turf_decal/zoo
- icon = 'icons/turf/decals.dmi'
icon_state = "zoo"
/obj/effect/turf_decal/no
- icon = 'icons/turf/decals.dmi'
icon_state = "no"
/obj/effect/turf_decal/radiation
- icon = 'icons/turf/decals.dmi'
icon_state = "radiation"
/obj/effect/turf_decal/radiation/white
- icon = 'icons/turf/decals.dmi'
icon_state = "radiation-w"
diff --git a/code/game/objects/effects/decals/turfdecal/weather.dm b/code/game/objects/effects/decals/turfdecal/weather.dm
index 04dcf807314..0c8284b53f8 100644
--- a/code/game/objects/effects/decals/turfdecal/weather.dm
+++ b/code/game/objects/effects/decals/turfdecal/weather.dm
@@ -13,12 +13,10 @@
/obj/effect/turf_decal/weather/dirt
name = "dirt siding"
- icon = 'icons/turf/decals.dmi'
icon_state = "dirt_side"
/obj/effect/turf_decal/weather/dirt/corner
name = "corner"
- icon = 'icons/turf/decals.dmi'
icon_state = "dirt_side_corner"
/obj/effect/turf_decal/weather/sand
@@ -36,30 +34,24 @@
/obj/effect/turf_decal/weather/asteroid
name = "asteroid siding"
- icon = 'icons/turf/decals.dmi'
icon_state = "asteroid_side"
/obj/effect/turf_decal/weather/asteroid/corner
name = "corner"
- icon = 'icons/turf/decals.dmi'
icon_state = "asteroid_side_corner"
/obj/effect/turf_decal/weather/whitesands
name = "salted sand siding"
- icon = 'icons/turf/decals.dmi'
icon_state = "ws_side"
/obj/effect/turf_decal/weather/whitesands/corner
name = "corner"
- icon = 'icons/turf/decals.dmi'
icon_state = "ws_side_corner"
/obj/effect/turf_decal/weather/rock
name = "rock siding"
- icon = 'icons/turf/decals.dmi'
icon_state = "rock_side"
/obj/effect/turf_decal/weather/rock/corner
name = "corner"
- icon = 'icons/turf/decals.dmi'
icon_state = "rock_side_corner"
diff --git a/code/game/objects/effects/spawners/bundle.dm b/code/game/objects/effects/spawners/bundle.dm
index 19e7b1c957f..edab392613f 100644
--- a/code/game/objects/effects/spawners/bundle.dm
+++ b/code/game/objects/effects/spawners/bundle.dm
@@ -141,18 +141,6 @@
/obj/item/clothing/head/wizard/fake,
/obj/item/staff)
-/obj/effect/spawner/bundle/costume/sexyclown
- name = "sexy clown costume spawner"
- items = list(
- /obj/item/clothing/mask/gas/sexyclown,
- /obj/item/clothing/under/rank/civilian/clown/sexy)
-
-/obj/effect/spawner/bundle/costume/sexymime
- name = "sexy mime costume spawner"
- items = list(
- /obj/item/clothing/mask/gas/sexymime,
- /obj/item/clothing/under/rank/civilian/mime/sexy)
-
/obj/effect/spawner/bundle/costume/mafia
name = "black mafia outfit spawner"
items = list(
diff --git a/code/game/objects/items.dm b/code/game/objects/items.dm
index 437aa7625d7..033307e5472 100644
--- a/code/game/objects/items.dm
+++ b/code/game/objects/items.dm
@@ -22,7 +22,14 @@ GLOBAL_VAR_INIT(embedpocalypse, FALSE) // if true, all items will be able to emb
///Icon file for right inhand overlays
var/righthand_file = 'icons/mob/inhands/items_righthand.dmi'
- var/supports_variations = null //This is a bitfield that defines what variations exist for bodyparts like Digi legs.
+ ///This is a bitfield that defines what variations exist for bodyparts like Digi legs.
+ var/supports_variations = null
+
+ ///If set, kepori wearing this use this instead of their clothing file
+ var/kepoi_override_icon
+
+ ///If set, vox wearing this use this instead of their clothing file
+ var/vox_override_icon
/// Needs to follow this syntax: either a list() with the x and y coordinates of the pixel you want to get the colour from, or a hexcolour. Colour one replaces red, two replaces blue, and three replaces green in the icon state.
var/list/greyscale_colors[3]
@@ -69,8 +76,11 @@ GLOBAL_VAR_INIT(embedpocalypse, FALSE) // if true, all items will be able to emb
///Whether or not we use stealthy audio levels for this item's attack sounds
var/stealthy_audio = FALSE
- ///How large is the object, used for stuff like whether it can fit in backpacks or not
+ /// Weight class for how much storage capacity it uses and how big it physically is meaning storages can't hold it if their maximum weight class isn't as high as it.
var/w_class = WEIGHT_CLASS_NORMAL
+ /// Volume override for the item, otherwise automatically calculated from w_class.
+ var/w_volume
+
///This is used to determine on which slots an item can fit.
var/slot_flags = 0
pass_flags = PASSTABLE
@@ -192,6 +202,10 @@ GLOBAL_VAR_INIT(embedpocalypse, FALSE) // if true, all items will be able to emb
var/canMouseDown = FALSE
+ //for setting world icons on the go
+ var/inventory_state
+ var/world_state
+
/obj/item/Initialize()
if(attack_verb)
@@ -381,7 +395,7 @@ GLOBAL_VAR_INIT(embedpocalypse, FALSE) // if true, all items will be able to emb
if(grav > STANDARD_GRAVITY)
var/grav_power = min(3,grav - STANDARD_GRAVITY)
to_chat(user,"You start picking up [src]...")
- if(!do_mob(user,src,30*grav_power))
+ if(!do_after(user, 30*grav_power, src))
return
@@ -508,12 +522,12 @@ GLOBAL_VAR_INIT(embedpocalypse, FALSE) // if true, all items will be able to emb
/obj/item/proc/equipped(mob/user, slot, initial = FALSE)
SHOULD_CALL_PARENT(1)
visual_equipped(user, slot, initial)
- SEND_SIGNAL(src, COMSIG_ITEM_EQUIPPED, user, slot)
for(var/X in actions)
var/datum/action/A = X
if(item_action_slot_check(slot, user)) //some items only give their actions buttons when in a specific slot.
A.Grant(user)
item_flags |= IN_INVENTORY
+ SEND_SIGNAL(src, COMSIG_ITEM_EQUIPPED, user, slot)
if(!initial)
if(equip_sound && (slot_flags & slot))
playsound(src, equip_sound, EQUIP_SOUND_VOLUME, TRUE, ignore_walls = FALSE)
@@ -684,7 +698,7 @@ GLOBAL_VAR_INIT(embedpocalypse, FALSE) // if true, all items will be able to emb
if (callback) //call the original callback
. = callback.Invoke()
item_flags &= ~IN_INVENTORY
- if(!pixel_y && !pixel_x)
+ if(!pixel_y && !pixel_x && !(item_flags & NO_PIXEL_RANDOM_DROP))
pixel_x = rand(-8,8)
pixel_y = rand(-8,8)
@@ -699,6 +713,9 @@ GLOBAL_VAR_INIT(embedpocalypse, FALSE) // if true, all items will be able to emb
/obj/item/proc/get_belt_overlay() //Returns the icon used for overlaying the object on a belt
return mutable_appearance('icons/obj/clothing/belt_overlays.dmi', icon_state)
+/obj/item/proc/get_helmet_overlay() // returns the icon for overlaying on a helmet
+ return mutable_appearance('icons/mob/clothing/helmet_overlays.dmi', icon_state)
+
/obj/item/proc/update_slot_icon()
if(!ismob(loc))
return
@@ -842,6 +859,7 @@ GLOBAL_VAR_INIT(embedpocalypse, FALSE) // if true, all items will be able to emb
/obj/item/MouseEntered(location, control, params)
. = ..()
+ SEND_SIGNAL(src, COMSIG_ITEM_MOUSE_ENTER, location, control, params)
if((item_flags & IN_INVENTORY || item_flags & IN_STORAGE) && usr.client.prefs.enable_tips && !QDELETED(src))
var/timedelay = usr.client.prefs.tip_delay/100
var/user = usr
@@ -856,7 +874,8 @@ GLOBAL_VAR_INIT(embedpocalypse, FALSE) // if true, all items will be able to emb
. = ..()
remove_outline()
-/obj/item/MouseExited()
+/obj/item/MouseExited(location,control,params)
+ SEND_SIGNAL(src, COMSIG_ITEM_MOUSE_EXIT, location, control, params)
deltimer(tip_timer)//delete any in-progress timer if the mouse is moved off the item before it finishes
closeToolTip(usr)
remove_outline()
@@ -907,7 +926,7 @@ GLOBAL_VAR_INIT(embedpocalypse, FALSE) // if true, all items will be able to emb
var/datum/callback/tool_check = CALLBACK(src, PROC_REF(tool_check_callback), user, amount, extra_checks)
if(ismob(target))
- if(!do_mob(user, target, delay, extra_checks=tool_check))
+ if(!do_after(user, delay, target, extra_checks=tool_check))
return
else
@@ -979,6 +998,11 @@ GLOBAL_VAR_INIT(embedpocalypse, FALSE) // if true, all items will be able to emb
dropped(M, FALSE)
return ..()
+/// Get an item's volume that it uses when being stored.
+/obj/item/proc/get_w_volume()
+ // if w_volume is 0 you fucked up.
+ return w_volume || AUTO_SCALE_VOLUME(w_class)
+
/obj/item/proc/embedded(mob/living/carbon/human/embedded_mob)
return
diff --git a/code/game/objects/items/cardboard_cutouts.dm b/code/game/objects/items/cardboard_cutouts.dm
index f44359ca656..31af53aa3fc 100644
--- a/code/game/objects/items/cardboard_cutouts.dm
+++ b/code/game/objects/items/cardboard_cutouts.dm
@@ -104,7 +104,7 @@
var/new_appearance = show_radial_menu(user, src, possible_appearances, custom_check = CALLBACK(src, PROC_REF(check_menu), user, crayon), radius = 36, require_near = TRUE)
if(!new_appearance)
return FALSE
- if(!do_after(user, 10, FALSE, src, TRUE))
+ if(!do_after(user, 10, src, progress = TRUE))
return FALSE
if(!check_menu(user, crayon))
return FALSE
diff --git a/code/game/objects/items/cards_ids.dm b/code/game/objects/items/cards_ids.dm
index 2e93b662799..110121dc08e 100644
--- a/code/game/objects/items/cards_ids.dm
+++ b/code/game/objects/items/cards_ids.dm
@@ -180,7 +180,18 @@
/obj/item/card/id/attack_self(mob/user)
if(Adjacent(user))
- user.visible_message("[user] shows you: [icon2html(src, viewers(user))] \the [initial(name)] [(!registered_name) ? "(" : "([registered_name]"][(!assignment) ? ")" : ", [assignment])"].", "You show \the [initial(name)] [(!registered_name) ? "(" : "([registered_name],"] [(!assignment) ? ")" : "[assignment])"].")
+ var/id_message = "\the [initial(name)] "
+ var/list/id_info = list()
+ if(assignment)
+ id_info += "JOB: [assignment]"
+ if(registered_name)
+ id_info += "NAME: [registered_name]"
+ if(id_info)
+ id_message += id_info.Join(", ")
+ var/self_message = span_notice("You show [id_message]")
+ var/other_message = span_notice("[user] shows you: [icon2html(src, viewers(user))] [id_message]")
+
+ user.visible_message(other_message, self_message)
add_fingerprint(user)
/obj/item/card/id/vv_edit_var(var_name, var_value)
@@ -320,33 +331,42 @@
/obj/item/card/id/examine(mob/user)
. = ..()
- if(registered_account)
- . += "The account linked to the card belongs to '[registered_account.account_holder]' and reports a balance of [registered_account.account_balance] cr."
. += "There's more information below, you can look again to take a closer look..."
/obj/item/card/id/examine_more(mob/user)
var/list/msg = list("You examine [src] closer, and note the following...")
if(registered_name)
- msg += "This access card is assigned to [registered_name]."
+ msg += "NAME:"
+ msg += "[registered_name]"
if(registered_age)
- msg += "The card indicates that the holder is [registered_age] years old. [(registered_age < AGE_MINOR) ? "There's a holographic stripe that reads 'MINOR: DO NOT SERVE ALCOHOL OR TOBACCO' along the bottom of the card." : ""]"
- if(mining_points)
- msg += "There's [mining_points] mining equipment redemption point\s loaded onto this card."
+ msg += "AGE:"
+ msg += "[registered_age] years old [(registered_age < AGE_MINOR) ? "There's a holographic stripe that reads 'MINOR: DO NOT SERVE ALCOHOL OR TOBACCO' along the bottom of the card." : ""]"
if(length(ship_access))
+ msg += "SHIP ACCESS:"
+
+ var/list/ship_factions = list()
+ for(var/datum/overmap/ship/controlled/ship in ship_access)
+ var/faction = ship.get_faction()
+ if(!(faction in ship_factions))
+ ship_factions += faction
+ msg += "[ship_factions.Join(", ")]"
+
var/list/ship_names = list()
for(var/datum/overmap/ship/controlled/ship in ship_access)
ship_names += ship.name
- msg += "The card has access to the following ships: [ship_names.Join(", ")]"
+ msg += "[ship_names.Join(", ")]"
+
if(registered_account)
- msg += "The account linked to the ID belongs to '[registered_account.account_holder]' and reports a balance of [registered_account.account_balance] cr."
- msg += "Alt-Click the ID to pull money from the linked account in the form of holochips."
- msg += "You can insert credits into the linked account by pressing holochips, cash, or coins against the ID."
+ msg += "ACCOUNT:"
+ msg += "LINKED ACCOUNT HOLDER: '[registered_account.account_holder]'"
+ msg += "BALANCE: [registered_account.account_balance] cr."
+ msg += "Alt-click the ID to pull money from the account in the form of holochips."
+ msg += "You can insert credits into the account by pressing holochips, cash, or coins against the ID."
if(registered_account.account_holder == user.real_name)
- msg += "If you lose this ID card, you can reclaim your account by Alt-Clicking a blank ID card while holding it and entering your account ID number."
+ msg += "If you lose this ID card, you can reclaim your account by Alt-click a blank ID card and entering your account ID number."
else
- msg += "There is no registered account linked to this card. Alt-Click to add one."
-
+ msg += "There is no registered account. Alt-click to add one."
return msg
/obj/item/card/id/GetAccess()
@@ -746,13 +766,26 @@ update_label()
name = "bunker access ID"
/obj/item/card/id/solgov
- name = "\improper SolGov ID"
- desc = "A SolGov ID with no proper access to speak of."
+ name = "\improper SolGov keycard"
+ desc = "A SolGov keycard with no proper access to speak of."
assignment = "Officer"
icon_state = "solgov"
uses_overlays = FALSE
/obj/item/card/id/solgov/commander
- name = "\improper SolGov ID"
- desc = "A SolGov ID with no proper access to speak of. This one indicates a Commander."
+ name = "\improper SolGov commander keycard"
+ desc = "A SolGov keycard with no proper access to speak of. This one indicates a Commander."
assignment = "Commander"
+
+/obj/item/card/id/suns
+ name = "\improper SUNS keycard"
+ desc = "A keycard belonging to the Student-Union Association of Naturalistic Sciences."
+ assignment = "Student"
+ icon_state = "suns"
+ uses_overlays = FALSE
+
+/obj/item/card/id/suns/command
+ name = "\improper SUNS command keycard"
+ desc = "A keycard belonging to the Student-Union Association of Naturalistic Sciences. This one has a gold stripe, indicating a command member."
+ assignment = "Academic Staff"
+ icon_state = "sunscommand"
diff --git a/code/game/objects/items/chrono_eraser.dm b/code/game/objects/items/chrono_eraser.dm
index f63a5e9dd45..baa541662e2 100644
--- a/code/game/objects/items/chrono_eraser.dm
+++ b/code/game/objects/items/chrono_eraser.dm
@@ -51,7 +51,7 @@
item_flags = DROPDEL
ammo_type = list(/obj/item/ammo_casing/energy/chrono_beam)
can_charge = FALSE
- fire_delay = 50
+ fire_delay = 5 SECONDS
var/obj/item/chrono_eraser/TED = null
var/obj/structure/chrono_field/field = null
var/turf/startpos = null
diff --git a/code/game/objects/items/circuitboards/machine_circuitboards.dm b/code/game/objects/items/circuitboards/machine_circuitboards.dm
index 6bf6bd7aca0..4fbe06343ae 100644
--- a/code/game/objects/items/circuitboards/machine_circuitboards.dm
+++ b/code/game/objects/items/circuitboards/machine_circuitboards.dm
@@ -201,8 +201,19 @@
name = "Circulator/Heat Exchanger (Machine Board)"
icon_state = "engineering"
build_path = /obj/machinery/atmospherics/components/binary/circulator
+ var/pipe_layer = PIPING_LAYER_DEFAULT
req_components = list()
+/obj/item/circuitboard/machine/circulator/attackby(obj/item/I, mob/user, params)
+ if(I.tool_behaviour == TOOL_MULTITOOL)
+ pipe_layer = (pipe_layer >= PIPING_LAYER_MAX) ? PIPING_LAYER_MIN : (pipe_layer + 1)
+ to_chat(user, "You change the circuitboard to layer [pipe_layer].")
+ return
+
+/obj/item/circuitboard/machine/circulator/examine()
+ . = ..()
+ . += "It is set to layer [pipe_layer]."
+
/obj/item/circuitboard/machine/emitter
name = "Emitter (Machine Board)"
icon_state = "engineering"
@@ -1470,10 +1481,22 @@
/obj/item/circuitboard/machine/shuttle/heater
name = "Fueled Engine Heater (Machine Board)"
+ desc = "You can use mulitool to switch pipe layers"
build_path = /obj/machinery/atmospherics/components/unary/shuttle/heater
+ var/pipe_layer = PIPING_LAYER_DEFAULT
req_components = list(/obj/item/stock_parts/micro_laser = 2,
/obj/item/stock_parts/matter_bin = 1)
+/obj/item/circuitboard/machine/shuttle/heater/attackby(obj/item/I, mob/user, params)
+ if(I.tool_behaviour == TOOL_MULTITOOL)
+ pipe_layer = (pipe_layer >= PIPING_LAYER_MAX) ? PIPING_LAYER_MIN : (pipe_layer + 1)
+ to_chat(user, "You change the circuitboard to layer [pipe_layer].")
+ return
+
+/obj/item/circuitboard/machine/shuttle/heater/examine()
+ . = ..()
+ . += "It is set to layer [pipe_layer]."
+
/obj/item/circuitboard/machine/shuttle/smes
name = "Electric Engine Precharger (Machine Board)"
build_path = /obj/machinery/power/smes/shuttle
@@ -1501,26 +1524,6 @@
/obj/item/stock_parts/manipulator = 2,
)
-/obj/item/circuitboard/machine/coffeemaker
- name = "Modello 3 Coffeemaker"
- build_path = /obj/machinery/coffeemaker
- req_components = list(
- /obj/item/stack/sheet/glass = 1,
- /obj/item/reagent_containers/glass/beaker = 2,
- /obj/item/stock_parts/capacitor = 1,
- /obj/item/stock_parts/micro_laser = 2,
- )
-
-/obj/item/circuitboard/machine/coffeemaker/impressa
- name = "Impressa Coffeemaker"
- build_path = /obj/machinery/coffeemaker/impressa
- req_components = list(
- /obj/item/stack/sheet/glass = 1,
- /obj/item/reagent_containers/glass/beaker = 2,
- /obj/item/stock_parts/capacitor = 1,
- /obj/item/stock_parts/micro_laser = 2,
- )
-
/obj/item/circuitboard/machine/suit_storage_unit
name = "Suit Storage Unit"
icon_state = "engineering"
diff --git a/code/game/objects/items/decal_painter.dm b/code/game/objects/items/decal_painter.dm
index e6043d584a8..7b12190ba58 100644
--- a/code/game/objects/items/decal_painter.dm
+++ b/code/game/objects/items/decal_painter.dm
@@ -201,9 +201,9 @@
to_chat(user, "\The [src] can only be used on flooring.")
return
if(color_disallowed.Find(decal_state))
- F.AddElement(/datum/element/decal, 'icons/turf/decals.dmi', decal_state, decal_dir, FALSE, color, null, null, alpha)
+ F.AddElement(/datum/element/decal, 'icons/turf/decals/decals.dmi', decal_state, decal_dir, FALSE, color, null, null, alpha)
else
- F.AddElement(/datum/element/decal, 'icons/turf/decals.dmi', decal_state, decal_dir, FALSE, decal_color, null, null, alpha)
+ F.AddElement(/datum/element/decal, 'icons/turf/decals/decals.dmi', decal_state, decal_dir, FALSE, decal_color, null, null, alpha)
playsound(src.loc, 'sound/effects/spray2.ogg', 50, TRUE)
/obj/item/decal_painter/attack_self(mob/user)
@@ -215,7 +215,7 @@
/obj/item/decal_painter/interact(mob/user as mob) //TODO: Make TGUI for this because ouch
if(!decal_icon)
- decal_icon = icon('icons/turf/decals.dmi', decal_state, decal_dir)
+ decal_icon = icon('icons/turf/decals/decals.dmi', decal_state, decal_dir)
user << browse_rsc(decal_icon, "floor.png")
var/dat = {"
@@ -288,7 +288,7 @@
decal_color = chosen_colour
- decal_icon = icon('icons/turf/decals.dmi', decal_state, decal_dir)
+ decal_icon = icon('icons/turf/decals/decals.dmi', decal_state, decal_dir)
if(usr)
attack_self(usr)
diff --git a/code/game/objects/items/desk_flags.dm b/code/game/objects/items/desk_flags.dm
index 3e7c299fc3b..c1af9cfe6c3 100644
--- a/code/game/objects/items/desk_flags.dm
+++ b/code/game/objects/items/desk_flags.dm
@@ -1,6 +1,6 @@
/obj/item/desk_flag
name = "blank desk flag"
- desc = "Show your patriotism with WaffleCo. brand desk flags!"
+ desc = "Show your patriotism with desk flags!"
icon = 'icons/obj/deskflags.dmi'
icon_state = "flag"
force = 3
@@ -30,3 +30,8 @@
name = "gezenan desk flag"
desc = "A small banner on a pole depicting the sigil of the Pan-Gezenan Federation."
icon_state = "gezena"
+
+/obj/item/desk_flag/suns
+ name = "SUNS desk flag"
+ desc = "A little desk decoration in the gold and purple color palette of SUNS."
+ icon_state = "suns"
diff --git a/code/game/objects/items/devices/PDA/PDA_types.dm b/code/game/objects/items/devices/PDA/PDA_types.dm
index 37613679e62..c8a918732a9 100644
--- a/code/game/objects/items/devices/PDA/PDA_types.dm
+++ b/code/game/objects/items/devices/PDA/PDA_types.dm
@@ -239,3 +239,8 @@
name = "brig physician PDA"
default_cartridge = /obj/item/cartridge/medical
icon_state = "pda-brig_phys"
+
+/obj/item/pda/suns
+ name = "SUNS PDA"
+ default_cartridge = /obj/item/cartridge/medical
+ icon_state = "pda-suns"
diff --git a/code/game/objects/items/devices/mines.dm b/code/game/objects/items/devices/mines.dm
index 112e26e1303..1772cbf497c 100644
--- a/code/game/objects/items/devices/mines.dm
+++ b/code/game/objects/items/devices/mines.dm
@@ -212,11 +212,8 @@
SIGNAL_HANDLER
if(!can_trigger(arrived))
return
- // Flying = can't step on a mine
- if(arrived.movement_type & FLYING)
- return
- //no cheap disarming
- if(arrived.throwing && isitem(arrived))
+ // All other movment types rn can easily avoid it
+ if(!(arrived.movement_type == GROUND))
return
// Someone already on it
if(foot_on_mine?.resolve())
@@ -257,6 +254,10 @@
clicked = FALSE
. = ..()
+/obj/item/mine/pressure/hitby(atom/movable/AM, skipcatch, hitpush, blocked, datum/thrownthing/throwingdatum)
+ trigger_mine(AM)
+ ..()
+
//handles disarming(and failing to disarm)
/obj/item/mine/pressure/attackby(obj/item/I, mob/user)
if(I.tool_behaviour == TOOL_SCREWDRIVER)
diff --git a/code/game/objects/items/devices/paicard.dm b/code/game/objects/items/devices/paicard.dm
index bf08b704beb..61486cf07bf 100644
--- a/code/game/objects/items/devices/paicard.dm
+++ b/code/game/objects/items/devices/paicard.dm
@@ -85,7 +85,7 @@
pai.master_dna = M.dna.unique_enzymes
to_chat(pai, "You have been bound to a new master.")
pai.laws.set_zeroth_law("Serve your master.")
- pai.emittersemicd = FALSE
+ pai.emittercurrent_cooldown = FALSE
if(href_list["wipe"])
var/confirm = input("Are you CERTAIN you wish to delete the current personality? This action cannot be undone.", "Personality Wipe") in list("Yes", "No")
if(confirm == "Yes")
diff --git a/code/game/objects/items/devices/portable_chem_mixer.dm b/code/game/objects/items/devices/portable_chem_mixer.dm
index fa777fec112..1964e2dbd04 100644
--- a/code/game/objects/items/devices/portable_chem_mixer.dm
+++ b/code/game/objects/items/devices/portable_chem_mixer.dm
@@ -1,7 +1,7 @@
/obj/item/storage/portable_chem_mixer
name = "Portable Chemical Mixer"
desc = "A portable device that dispenses and mixes chemicals. Can be upgraded to hold more beakers by inserting a vortex anomaly core. All necessary reagents need to be supplied with beakers. A label indicates that a screwdriver is required to open it for refills. This device can be worn on a belt. The letters 'S&T' are imprinted on the side."
- icon = 'icons/obj/chemical.dmi'
+ icon = 'icons/obj/chemical/misc.dmi'
icon_state = "portablechemicalmixer_open"
w_class = WEIGHT_CLASS_HUGE
slot_flags = ITEM_SLOT_BELT
diff --git a/code/game/objects/items/devices/powersink.dm b/code/game/objects/items/devices/powersink.dm
index 3a6ba2f7395..5b69cab9cc7 100644
--- a/code/game/objects/items/devices/powersink.dm
+++ b/code/game/objects/items/devices/powersink.dm
@@ -10,6 +10,7 @@
righthand_file = 'icons/mob/inhands/misc/devices_righthand.dmi'
w_class = WEIGHT_CLASS_BULKY
flags_1 = CONDUCT_1
+ item_flags = NO_PIXEL_RANDOM_DROP
throwforce = 5
throw_speed = 1
throw_range = 2
diff --git a/code/game/objects/items/devices/radio/encryptionkey.dm b/code/game/objects/items/devices/radio/encryptionkey.dm
index 73cae6b853b..f8ced22c54b 100644
--- a/code/game/objects/items/devices/radio/encryptionkey.dm
+++ b/code/game/objects/items/devices/radio/encryptionkey.dm
@@ -88,6 +88,11 @@
icon_state = "solgov_cypherkey"
channels = list(RADIO_CHANNEL_SOLGOV = 1)
+// /obj/item/encryptionkey/suns
+// name = "\improper SUNS encryption key"
+// icon_state = "suns_cypherkey"
+// channels = list(RADIO_CHANNEL_SUNS = 1)
+
/obj/item/encryptionkey/wideband
name = "wideband encryption key"
icon = 'icons/obj/radio.dmi'
diff --git a/code/game/objects/items/devices/radio/headset.dm b/code/game/objects/items/devices/radio/headset.dm
index 3afd539d4c9..0f0081c9045 100644
--- a/code/game/objects/items/devices/radio/headset.dm
+++ b/code/game/objects/items/devices/radio/headset.dm
@@ -118,6 +118,26 @@ GLOBAL_LIST_INIT(channel_tokens, list(
name = "team leader headset"
command = TRUE
+/obj/item/radio/headset/syndicate/suns
+ name = "SUNS headset"
+ icon_state = "suns_headset"
+ desc = "A headset worn by staff and students of SUNS, both in the frontier and elsewhere."
+
+/obj/item/radio/headset/syndicate/suns/command
+ name = "SUNS command headset"
+ desc = "A headset worn by staff and students of SUNS, both in the frontier and elsewhere. This one is worn by command staff."
+ command = TRUE
+
+/obj/item/radio/headset/syndicate/alt/suns
+ name = "SUNS bowman headset"
+ icon_state = "suns_headset_alt"
+ desc = "A headset worn by staff and students of SUNS, both in the frontier and elsewhere. Protects ears from distractions during exams."
+
+/obj/item/radio/headset/syndicate/alt/suns/command
+ name = "SUNS bowman command headset"
+ desc = "A headset worn by staff and students of SUNS, both in the frontier and elsewhere. This one is worn by command staff. Protects ears from distractions during exams."
+ command = TRUE
+
//nanotrasen
/obj/item/radio/headset/nanotrasen
name = "nanotrasen radio headset"
diff --git a/code/game/objects/items/devices/scanners.dm b/code/game/objects/items/devices/scanners.dm
index 3f40f82fe0a..cdded7e418e 100644
--- a/code/game/objects/items/devices/scanners.dm
+++ b/code/game/objects/items/devices/scanners.dm
@@ -357,7 +357,7 @@ GENE SCANNER
if(blood_id)
if(ishuman(C))
var/mob/living/carbon/human/H = C
- if(H.bleed_rate)
+ if(LAZYLEN(H.get_bleeding_parts()))
render_list += "Subject is bleeding!\n"
var/blood_percent = round((C.blood_volume / BLOOD_VOLUME_NORMAL)*100)
var/blood_type = C.dna.blood_type.name
diff --git a/code/game/objects/items/dna_injector.dm b/code/game/objects/items/dna_injector.dm
index 34563d5e649..a1153959580 100644
--- a/code/game/objects/items/dna_injector.dm
+++ b/code/game/objects/items/dna_injector.dm
@@ -62,7 +62,7 @@
if(target != user)
target.visible_message("[user] is trying to inject [target] with [src]!", \
"[user] is trying to inject you with [src]!")
- if(!do_mob(user, target) || used)
+ if(!do_after(user, target = target) || used)
return
target.visible_message("[user] injects [target] with the syringe with [src]!", \
"[user] injects you with the syringe with [src]!")
@@ -90,11 +90,6 @@
desc = "This will make you big and strong, but give you a bad skin condition."
add_mutations = list(HULK)
-/obj/item/dnainjector/firebreath
- name = "\improper DNA injector (Fire Breath)"
- desc = "Restores the dragon ancestry."
- add_mutations = list(FIREBREATH)
-
/obj/item/dnainjector/xraymut
name = "\improper DNA injector (X-ray)"
desc = "Finally you can see what the Captain does."
diff --git a/code/game/objects/items/dyekit.dm b/code/game/objects/items/dyekit.dm
index 2cbfbca6332..86c6e90a329 100644
--- a/code/game/objects/items/dyekit.dm
+++ b/code/game/objects/items/dyekit.dm
@@ -38,3 +38,30 @@
return
playsound(src, 'sound/effects/spray.ogg', 5, TRUE, 5)
human_target.update_hair()
+
+/obj/item/colorsalve
+ name = "Elzuose color salve"
+ desc = "A Kalixcian beauty product for Elzuose that comes in the form of a salve packaged with various color additives. Used to temporarily change the pigment color of light emitting cells in the skin, requiring an extensive amount of time to prepare and apply. Wears off after a few hours."
+ icon = 'icons/obj/dyespray.dmi'
+ icon_state = "colorsalve"
+
+/obj/item/colorsalve/attack_self(mob/living/user)
+ if(!iselzuose(user))
+ return
+
+ var/mob/living/carbon/human/H = user
+ var/datum/species/elzuose/species_datum = H.dna.species
+ // select new color
+ var/new_etherealcolor = input(user, "Choose your Elzuose color:", "Character Preference", species_datum.default_color) as color|null
+ if(new_etherealcolor)
+ var/temp_hsv = RGBtoHSV(new_etherealcolor)
+ if(ReadHSV(temp_hsv)[3] >= ReadHSV("#505050")[3]) // elzu colors should be bright ok??
+ if(!do_after(usr, 30 SECONDS, user))
+ return
+ playsound(src, 'sound/effects/ointment.ogg', 5, TRUE, 5)
+ species_datum.default_color = sanitize_hexcolor(new_etherealcolor, 6, TRUE)
+ species_datum.current_color = species_datum.health_adjusted_color(user, species_datum.default_color)
+ species_datum.spec_updatehealth(user)
+ user.visible_message(span_notice("[user] applies the salve, changing [user.p_their()] color to [new_etherealcolor]"))
+ else
+ to_chat(user, span_danger("Invalid color. Your color is not bright enough."))
diff --git a/code/game/objects/items/eightball.dm b/code/game/objects/items/eightball.dm
index 111dd3aa96b..1396521aaf9 100644
--- a/code/game/objects/items/eightball.dm
+++ b/code/game/objects/items/eightball.dm
@@ -59,7 +59,7 @@
shaking = TRUE
start_shaking(user)
- if(do_after(user, shake_time, needhand=TRUE, target=user, progress=TRUE))
+ if(do_after(user, shake_time, target=user))
var/answer = get_answer()
say(answer)
diff --git a/code/game/objects/items/flamethrower.dm b/code/game/objects/items/flamethrower.dm
index 6a1e439422a..813e53111f6 100644
--- a/code/game/objects/items/flamethrower.dm
+++ b/code/game/objects/items/flamethrower.dm
@@ -183,9 +183,9 @@
update_appearance()
#define REQUIRED_POWER_TO_FIRE_FLAMETHROWER 10
-#define FLAMETHROWER_POWER_MULTIPLIER 0.5
-#define FLAMETHROWER_RANGE 4
-#define FLAMETHROWER_RELEASE_AMOUNT 8
+#define FLAMETHROWER_POWER_MULTIPLIER 0.8
+#define FLAMETHROWER_RANGE 5
+#define FLAMETHROWER_RELEASE_AMOUNT 5
/obj/item/flamethrower/proc/flame_turf(target)
if(!beaker)
diff --git a/code/game/objects/items/granters.dm b/code/game/objects/items/granters.dm
index 0681892fd47..f3cdfb06894 100644
--- a/code/game/objects/items/granters.dm
+++ b/code/game/objects/items/granters.dm
@@ -247,19 +247,6 @@
user.Stun(40, ignore_canstun = TRUE)
user.petrify(30)
-/obj/item/book/granter/spell/cards
- spell = /obj/effect/proc_holder/spell/aimed/spell_cards
- spellname = "spellcards"
- icon_state ="bookspellcards"
- desc = "The ultimate card trick, for users ten and up."
- remarks = list("It's all about the razzmataz.", "...I don't think I'll actually be sawing anyone in half", "These are pretty flimsy, most armor would defeat them.", "They do burn damage? Weird.", "Why the dumb stance? It's just a flick of the hand...", "Are these cards? They feel stiffer then pages.", "Best performed using a top hat...")
-
-/obj/item/book/granter/spell/cards/recoil(mob/living/user)
- ..()
- to_chat(user,"The cards are against you!")
- user.Stun(40, ignore_canstun = TRUE)
- user.petrify(30)
-
/obj/item/book/granter/spell/shapechange
spell = /obj/effect/proc_holder/spell/targeted/shapeshift
spellname = "shapechange"
diff --git a/code/game/objects/items/handcuffs.dm b/code/game/objects/items/handcuffs.dm
index 496fc07288e..9fece4feedd 100644
--- a/code/game/objects/items/handcuffs.dm
+++ b/code/game/objects/items/handcuffs.dm
@@ -57,7 +57,8 @@
"[user] is trying to put [src.name] on you!")
playsound(loc, cuffsound, 30, TRUE, -2)
- if(do_mob(user, C, 30) && C.canBeHandcuffed())
+ log_combat(user, C, "attempted to handcuff")
+ if(do_after(user, 3 SECONDS, C) && C.canBeHandcuffed())
if(iscyborg(user))
apply_cuffs(C, user, TRUE)
else
@@ -272,6 +273,11 @@
update_appearance()
playsound(src, 'sound/effects/snap.ogg', 50, TRUE)
+/obj/item/restraints/legcuffs/beartrap/hitby(atom/movable/AM, skipcatch, hitpush, blocked, datum/thrownthing/throwingdatum)
+ if(armed)
+ close_trap()
+ ..()
+
/obj/item/restraints/legcuffs/beartrap/proc/on_entered(datum/source, AM as mob|obj)
SIGNAL_HANDLER
if(armed && isturf(loc))
diff --git a/code/game/objects/items/holy_weapons.dm b/code/game/objects/items/holy_weapons.dm
index 872d81323cf..0affcd107af 100644
--- a/code/game/objects/items/holy_weapons.dm
+++ b/code/game/objects/items/holy_weapons.dm
@@ -1,150 +1,12 @@
// CHAPLAIN CUSTOM ARMORS //
-/obj/item/clothing/head/helmet/chaplain
- name = "crusader helmet"
- desc = "Deus Vult."
- icon_state = "knight_templar"
- item_state = "knight_templar"
- armor = list("melee" = 50, "bullet" = 10, "laser" = 10, "energy" = 10, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 80, "acid" = 80)
- flags_inv = HIDEMASK|HIDEEARS|HIDEEYES|HIDEFACE|HIDEHAIR
- flags_cover = HEADCOVERSEYES | HEADCOVERSMOUTH
- strip_delay = 80
- dog_fashion = null
-
-/obj/item/clothing/suit/armor/riot/chaplain
- name = "crusader armour"
- desc = "God wills it!"
- icon_state = "chaplain_templar"
- item_state = "knight_templar"
- allowed = list(/obj/item/storage/book/bible, /obj/item/nullrod, /obj/item/reagent_containers/food/drinks/bottle/holywater, /obj/item/storage/fancy/candle_box, /obj/item/candle, /obj/item/tank/internals/emergency_oxygen, /obj/item/tank/internals/plasmaman)
- slowdown = 0
- clothing_flags = NONE
-
-/obj/item/choice_beacon/holy
- name = "armaments beacon"
- desc = "Contains a set of armaments for the chaplain."
-
-/obj/item/choice_beacon/holy/canUseBeacon(mob/living/user)
- if(user.mind && user.mind.holy_role)
- return ..()
- else
- playsound(src, 'sound/machines/buzz-sigh.ogg', 40, TRUE)
- return FALSE
-
-/obj/item/choice_beacon/holy/generate_display_names()
- var/static/list/holy_item_list
- if(!holy_item_list)
- holy_item_list = list()
- var/list/templist = typesof(/obj/item/storage/box/holy)
- for(var/V in templist)
- var/atom/A = V
- holy_item_list[initial(A.name)] = A
- return holy_item_list
-
-/obj/item/choice_beacon/holy/spawn_option(obj/choice,mob/living/M)
- if(!GLOB.holy_armor_type)
- ..()
- playsound(src, 'sound/effects/pray_chaplain.ogg', 40, TRUE)
- SSblackbox.record_feedback("tally", "chaplain_armor", 1, "[choice]")
- GLOB.holy_armor_type = choice
- else
- to_chat(M, "A selection has already been made. Self-Destructing...")
- return
-
-
/obj/item/storage/box/holy
- name = "Templar Kit"
-
-/obj/item/storage/box/holy/PopulateContents()
- new /obj/item/clothing/head/helmet/chaplain(src)
- new /obj/item/clothing/suit/armor/riot/chaplain(src)
-
-/obj/item/storage/box/holy/student
- name = "Profane Scholar Kit"
-
-/obj/item/storage/box/holy/student/PopulateContents()
- new /obj/item/clothing/suit/armor/riot/chaplain/studentuni(src)
- new /obj/item/clothing/head/helmet/chaplain/cage(src)
-
-/obj/item/clothing/suit/armor/riot/chaplain/studentuni
- name = "student robe"
- desc = "The uniform of a bygone institute of learning."
- icon_state = "chaplain_studentuni"
- item_state = "studentuni"
- body_parts_covered = ARMS|CHEST
- allowed = list(/obj/item/storage/book/bible, /obj/item/nullrod, /obj/item/reagent_containers/food/drinks/bottle/holywater, /obj/item/storage/fancy/candle_box, /obj/item/candle, /obj/item/tank/internals/emergency_oxygen, /obj/item/tank/internals/plasmaman)
-
-/obj/item/clothing/head/helmet/chaplain/cage
- name = "cage"
- desc = "A cage that restrains the will of the self, allowing one to see the profane world for what it is."
- flags_inv = HIDEHAIR //bald
- mob_overlay_icon = 'icons/mob/large-worn-icons/64x64/head.dmi'
- icon_state = "cage"
- item_state = "cage"
- worn_x_dimension = 64
- worn_y_dimension = 64
-
-/obj/item/storage/box/holy/sentinel
- name = "Stone Sentinel Kit"
-
-/obj/item/storage/box/holy/sentinel/PopulateContents()
- new /obj/item/clothing/suit/armor/riot/chaplain/ancient(src)
- new /obj/item/clothing/head/helmet/chaplain/ancient(src)
-
-/obj/item/clothing/head/helmet/chaplain/ancient
- name = "ancient helmet"
- desc = "None may pass!"
- icon_state = "knight_ancient"
- item_state = "knight_ancient"
-
-/obj/item/clothing/suit/armor/riot/chaplain/ancient
- name = "ancient armour"
- desc = "Defend the treasure..."
- icon_state = "chaplain_ancient"
- item_state = "knight_ancient"
-
-/obj/item/storage/box/holy/witchhunter
name = "Witchhunter Kit"
-/obj/item/storage/box/holy/witchhunter/PopulateContents()
- new /obj/item/clothing/suit/armor/riot/chaplain/witchhunter(src)
- new /obj/item/clothing/head/helmet/chaplain/witchunter_hat(src)
-
-/obj/item/clothing/suit/armor/riot/chaplain/witchhunter
- name = "witchunter garb"
- desc = "This worn outfit saw much use back in the day."
- icon_state = "chaplain_witchhunter"
- item_state = "witchhunter"
- body_parts_covered = CHEST|GROIN|LEGS|ARMS
-
-/obj/item/clothing/head/helmet/chaplain/witchunter_hat
- name = "witchunter hat"
- desc = "This hat saw much use back in the day."
- icon_state = "witchhunterhat"
- item_state = "witchhunterhat"
- flags_cover = HEADCOVERSEYES
- flags_inv = HIDEEYES|HIDEHAIR
-
-/obj/item/storage/box/holy/adept
- name = "Divine Adept Kit"
-
-/obj/item/storage/box/holy/adept/PopulateContents()
- new /obj/item/clothing/suit/armor/riot/chaplain/adept(src)
- new /obj/item/clothing/head/helmet/chaplain/adept(src)
-
-/obj/item/clothing/head/helmet/chaplain/adept
- name = "adept hood"
- desc = "Its only heretical when others do it."
- icon_state = "crusader"
- item_state = "crusader"
- flags_cover = HEADCOVERSEYES
- flags_inv = HIDEHAIR|HIDEFACE|HIDEEARS
+/obj/item/storage/box/holy/PopulateContents()
+ new /obj/item/clothing/head/witchunter(src)
+ new /obj/item/clothing/suit/armor/witchhunter(src)
-/obj/item/clothing/suit/armor/riot/chaplain/adept
- name = "adept robes"
- desc = "The ideal outfit for burning the unfaithful."
- icon_state = "chaplain_crusader"
- item_state = "crusader"
/obj/item/storage/box/holy/follower
name = "Followers of the Chaplain Kit"
@@ -203,62 +65,6 @@
var/reskinned = FALSE
var/chaplain_spawnable = TRUE
-/obj/item/nullrod/Initialize()
- . = ..()
- AddComponent(/datum/component/anti_magic, TRUE, TRUE, FALSE, null, null, FALSE)
-
-/obj/item/nullrod/attack_self(mob/user)
- if(user.mind && (user.mind.holy_role) && !reskinned)
- reskin_holy_weapon(user)
-
-/**
- * reskin_holy_weapon: Shows a user a list of all available nullrod reskins and based on his choice replaces the nullrod with the reskinned version
- *
- * Arguments:
- * * M The mob choosing a nullrod reskin
- */
-/obj/item/nullrod/proc/reskin_holy_weapon(mob/M)
- if(GLOB.holy_weapon_type)
- return
- var/list/display_names = list()
- var/list/nullrod_icons = list()
- for(var/V in typesof(/obj/item/nullrod))
- var/obj/item/nullrod/rodtype = V
- if(initial(rodtype.chaplain_spawnable))
- display_names[initial(rodtype.name)] = rodtype
- nullrod_icons += list(initial(rodtype.name) = image(icon = initial(rodtype.icon), icon_state = initial(rodtype.icon_state)))
-
- nullrod_icons = sortList(nullrod_icons)
- var/choice = show_radial_menu(M, src , nullrod_icons, custom_check = CALLBACK(src, PROC_REF(check_menu), M), radius = 42, require_near = TRUE)
- if(!choice || !check_menu(M))
- return
-
- var/A = display_names[choice] // This needs to be on a separate var as list member access is not allowed for new
- var/obj/item/nullrod/holy_weapon = new A
- GLOB.holy_weapon_type = holy_weapon.type
-
- SSblackbox.record_feedback("tally", "chaplain_weapon", 1, "[choice]")
-
- if(holy_weapon)
- holy_weapon.reskinned = TRUE
- qdel(src)
- M.put_in_active_hand(holy_weapon)
-
-/**
- * check_menu: Checks if we are allowed to interact with a radial menu
- *
- * Arguments:
- * * user The mob interacting with a menu
- */
-/obj/item/nullrod/proc/check_menu(mob/user)
- if(!istype(user))
- return FALSE
- if(QDELETED(src) || reskinned)
- return FALSE
- if(user.incapacitated() || !user.is_holding(src))
- return FALSE
- return TRUE
-
/obj/item/nullrod/godhand
icon_state = "disintegrate"
item_state = "disintegrate"
@@ -648,13 +454,6 @@
hitsound = 'sound/weapons/bite.ogg'
var/used_blessing = FALSE
-/obj/item/nullrod/carp/attack_self(mob/living/user)
- if(used_blessing)
- else if(user.mind && (user.mind.holy_role))
- to_chat(user, "You are blessed by Carp-Sie. Wild space carp will no longer attack you.")
- user.faction |= "carp"
- used_blessing = TRUE
-
/obj/item/nullrod/claymore/bostaff //May as well make it a "claymore" and inherit the blocking
name = "monk's staff"
desc = "A long, tall staff made of polished wood. Traditionally used in ancient old-Earth martial arts, it is now used to harass the clown."
diff --git a/code/game/objects/items/implants/implanter.dm b/code/game/objects/items/implants/implanter.dm
index 5b8db550a87..6de461954cb 100644
--- a/code/game/objects/items/implants/implanter.dm
+++ b/code/game/objects/items/implants/implanter.dm
@@ -27,7 +27,7 @@
M.visible_message("[user] is attempting to implant [M].")
var/turf/T = get_turf(M)
- if(T && (M == user || do_mob(user, M, 50)))
+ if(T && (M == user || do_after(user, 5 SECONDS, M)))
if(src && imp)
if(imp.implant(M, user))
if (M == user)
diff --git a/code/game/objects/items/kitchen.dm b/code/game/objects/items/kitchen.dm
index e386420462d..9e90329404f 100644
--- a/code/game/objects/items/kitchen.dm
+++ b/code/game/objects/items/kitchen.dm
@@ -177,6 +177,42 @@
/obj/item/kitchen/knife/hunting/set_butchering()
AddComponent(/datum/component/butchering, 80 - force, 100, force + 10)
+/obj/item/kitchen/knife/switchblade
+ name = "switchblade"
+ icon_state = "switchblade"
+ lefthand_file = 'icons/mob/inhands/weapons/swords_lefthand.dmi'
+ righthand_file = 'icons/mob/inhands/weapons/swords_righthand.dmi'
+ desc = "A sharp, concealable, spring-loaded knife."
+ flags_1 = CONDUCT_1
+ force = 3
+ w_class = WEIGHT_CLASS_SMALL
+ throwforce = 5
+ custom_materials = list(/datum/material/iron=12000)
+ hitsound = 'sound/weapons/genhit.ogg'
+ attack_verb = list("stubbed", "poked")
+ resistance_flags = FIRE_PROOF
+ var/extended = 0
+
+/obj/item/kitchen/knife/switchblade/attack_self(mob/user)
+ extended = !extended
+ playsound(src.loc, 'sound/weapons/batonextend.ogg', 50, TRUE)
+ if(extended)
+ force = 20
+ w_class = WEIGHT_CLASS_NORMAL
+ throwforce = 23
+ icon_state = "switchblade_ext"
+ attack_verb = list("slashed", "stabbed", "sliced", "torn", "ripped", "diced", "cut")
+ hitsound = 'sound/weapons/bladeslice.ogg'
+ sharpness = IS_SHARP
+ else
+ force = 3
+ w_class = WEIGHT_CLASS_SMALL
+ throwforce = 5
+ icon_state = "switchblade"
+ attack_verb = list("stubbed", "poked")
+ hitsound = 'sound/weapons/genhit.ogg'
+ sharpness = IS_BLUNT
+
/obj/item/kitchen/knife/combat
name = "combat knife"
icon = 'icons/obj/world/melee.dmi'
diff --git a/code/game/objects/items/manuals.dm b/code/game/objects/items/manuals.dm
index 693858bf1b2..05af8fcadba 100644
--- a/code/game/objects/items/manuals.dm
+++ b/code/game/objects/items/manuals.dm
@@ -256,8 +256,8 @@
- Trickwines for idiots
- Okay, so you just joined the SRM and you want to make some brews! I'm tired of explaining all of this so I'm jotting it all down for you clowns.
+ Trickwines for brewers
+ Okay, so you just joined the SRM and you want to make some brews! I'm tired of explaining all of this so I'm jotting it all down for the new hires.
Trickwines almost all share the same effect. When you drink them, they provide a beneficial effect and when you toss them at someone it provides some sort of bad effect.
Breakaway flasks
Honestly, I love these things. I'm not a scientist so I cant exactly explain how it works but somehow when you fuse plasma into glass it makes it ultra sharp and makes it really good for cracking over fauna heads.
@@ -273,22 +273,27 @@
Soon it will drops some apples and you can grind them for the bacteria.
Once you have enough you can fabricate it the same way you would a normal barrel.
+ Ratios
+ A common trend among Trickwines is the ratio of 3:1:1.
+ 3 parts being an ethonal, the other 2 parts are often made from flora or fauna.
+
Ashwine
- It's kind of our trademark, and it's one of the simplest trickwines to make. The Montagnes love using this stuff in ceremonies as well so it should get you some good boy points.
+ It's kind of our trademark, and it's one of the simplest trickwines to make.
+ These are the most common wines used in ceremonies so we often stock ships with the moonflowers needed to make them.
It's made with a ratio of 3:1:1 absinthe, mushroom hallucinogen, and ash respectively.
Mushroom hallucinogens come from mushroom caps and you can ferment absinthe from moonflowers.
Its a mild hallucinogenic but seems to have powerful cleansing effects on the devoted SRM.
It can also really fuck someone up, causing their vision to go shaky and blurry which makes it difficult for them to fight.
Icewine
- This one helps stopping foes in their tracks. It's also got a nice taste.
+ This one helps stopping foes in their tracks. One of my favorite flavor wise.
Its made with 3:1:1 saké, polar bear fur, frost oil(grind chilled peppers).
You can get polar bear fur and frost oil from grinding up polar bear hides and chilled peppers.
It's pretty good at sealing burns and lowering your temperature quickly.
However, it completely encases foes in ice and drops their temperature substantially.
Shockwine
- Easily my favorite, this thing is great at scorching most fauna.
+ Easily my favorite for its splashed effect, this thing is great at scorching most fauna.
Its made with vodka, calcium, and lemon juice.
If you did not know, vodka requires enzymes instead of the normal fermenting process.
It's a nice upper. Great if you're trying to run away.
@@ -301,15 +306,18 @@
Its made out of ground up fireblossems with some nice hard cider and a bit of welding fuel with of course a ratio of 3:1:1.
Forcewine
- I once had a duel with a wizard and and I was able to completly ignore a few of his spells! Its like they just fizzled out when they hit me.
- Would recomend for any esoteric senarios even though I have only been in a few of those.
- You can also use it to entrap Fauna inside of a forcefield like bubble, Gives you time to breath and laugh at them.
- 3:1:1 Tequila, Space Montain Wind, and I know its strange but hollow water, Its that stuff you can extract from geysers
+ Two intresting effects from the consumption of Forcewine.
+ First it seems to give you an "anti magic" effect, I have read about of tales of how it fizzled out some sort of great curse that we could best trace back to a ancient cult.
+ Second is it protects the mind from cohersion and mind control.
+ From my research this seems to act like nanotrasen mindshield implants.
+ Would recomend for any esoteric senarios. We wont see these alot but its always smart to prepare for the worst.
+ You can also use it to entrap Fauna inside of a forcefield like bubble, Gives you time to breath and prepare an attack.
+ 3:1:1. Tequila, Space Montain Wind, and I know its one of the most difficult things to come by but hollow water, Its that stuff you can extract from geysers
Prismwine
Gives you a nice shiny layer of armour, fire seems to have alot harder time sticking to me when i tested it.
Throwing it seeems to do the reverse acting like a magnifying glass to burns and lasers
- Made 3:1:1 with good ol Gin, then add plasma and tinea luxor which is found from mushroom stems
+ 3:1:1. Good ol Gin, then add plasma and tinea luxor which is found from mushroom stems
Some of these can be a bit situatinal but its always nice to have a few in your bag for emergecys.
As a bonus, most of the other factions have no clue how to make these so you can sell them for a fair chunk of cash.
diff --git a/code/game/objects/items/melee/misc.dm b/code/game/objects/items/melee/misc.dm
index f4fbd42be38..9d90a1a4337 100644
--- a/code/game/objects/items/melee/misc.dm
+++ b/code/game/objects/items/melee/misc.dm
@@ -646,31 +646,6 @@
held_sausage.desc = "[held_sausage.desc] It has been cooked to perfection on \a [target]."
update_appearance()
-/obj/item/melee/cleric_mace
- name = "cleric mace"
- desc = "The grandson of the club, yet the grandfather of the baseball bat. Most notably used by holy orders in days past."
- icon = 'icons/obj/items_and_weapons.dmi'
- icon_state = "mace_greyscale"
- item_state = "mace_greyscale"
- lefthand_file = 'icons/mob/inhands/weapons/melee_lefthand.dmi'
- righthand_file = 'icons/mob/inhands/weapons/melee_righthand.dmi'
- material_flags = MATERIAL_ADD_PREFIX | MATERIAL_COLOR | MATERIAL_AFFECT_STATISTICS //Material type changes the prefix as well as the color.
- custom_materials = list(/datum/material/iron = 12000) //Defaults to an Iron Mace.
- slot_flags = ITEM_SLOT_BELT
- force = 14
- w_class = WEIGHT_CLASS_BULKY
- throwforce = 8
- armour_penetration = 50
- attack_verb = list("smacked", "struck", "cracked", "beaten")
- var/overlay_state = "mace_handle"
- var/mutable_appearance/overlay
-
-/obj/item/melee/cleric_mace/Initialize()
- . = ..()
- overlay = mutable_appearance(icon, overlay_state)
- overlay.appearance_flags = RESET_COLOR
- add_overlay(overlay)
-
/obj/item/melee/greykingsword
name = "blade of the grey-king"
desc = "A legendary sword made with 3 replica katanas nailed together and dipped in heavy narcotics."
diff --git a/code/game/objects/items/pet_carrier.dm b/code/game/objects/items/pet_carrier.dm
index d9311f5e2b4..a08b1398aad 100644
--- a/code/game/objects/items/pet_carrier.dm
+++ b/code/game/objects/items/pet_carrier.dm
@@ -165,7 +165,7 @@
user.visible_message("[user] starts loading [target] into [src].", \
"You start loading [target] into [src]...", null, null, target)
to_chat(target, "[user] starts loading you into [user.p_their()] [name]!")
- if(!do_mob(user, target, 30))
+ if(!do_after(user, 3 SECONDS, target))
return
if(target in occupants)
return
diff --git a/code/game/objects/items/puzzle_pieces.dm b/code/game/objects/items/puzzle_pieces.dm
index 5d6b409e8d3..9f937312b56 100644
--- a/code/game/objects/items/puzzle_pieces.dm
+++ b/code/game/objects/items/puzzle_pieces.dm
@@ -1,6 +1,6 @@
//**************
-//*****Keys*******************
-//************** ** **
+//*****Keys*****
+//**************
/obj/item/keycard
name = "security keycard"
desc = "This feels like it belongs to a door."
@@ -21,50 +21,35 @@
color = "#f0da12"
puzzle_id = "cheese"
-/obj/item/keycard/swordfish
- name = "titanic keycard"
- desc = "Smells like it was at the bottom of a harbor."
- color = "#3bbbdb"
- puzzle_id = "swordfish"
+/obj/item/keycard/harmfactory
+ name = "factory keycard"
+ desc = "A keycard opening a door within the world's worst factory"
+ color = "#727a7c"
+ puzzle_id = "factory"
+
+/obj/item/keycard/harmfactory/stockroom
+ name = "stockroom keycard"
+ desc = "A keycard opening a door within the world's worst factory"
+ color = "#cf2323"
+ puzzle_id = "stockroom"
+
+/obj/item/keycard/harmfactory/office
+ name = "office keycard"
+ desc = "A keycard opening a door within the world's worst factory"
+ color = "#1dac22"
+ puzzle_id = "office"
+
+/obj/item/keycard/harmfactory/entry
+ name = "entry keycard"
+ desc = "A keycard opening a door within the world's worst factory"
+ color = "#1a27e7"
+ puzzle_id = "entry"
+
+
/obj/item/keycard/gatedrop
icon_state = "golden_key"
-/obj/item/keycard/gatedrop/drakelair
- name = "Drake's Key"
- desc = "A dull, golden key originally kept by a menacing ash drake."
- puzzle_id = "drakelairkey"
-
-/obj/item/keycard/gatedrop/disciple
- name = "Altar Key"
- desc = "A key held dear by the late Disciple of The Priest. Only by shutting themselves in with their stone idol were they able to spare those they love most from their madness and obsession."
- puzzle_id = "disciplekey"
-
-/obj/item/keycard/gatedrop/guard
- name = "Armory Key"
- desc = "A golden key entrusted to the Captain of the Holy Guard of The Priest. Entrusted by His Holiness to guard the greatest weapon in His arsenal"
- puzzle_id = "guardcap"
-
-/obj/item/keycard/gatedrop/heathen
- name = "Heathen's Key"
- desc = "And thus the Heathen stole away with the key to the forbidden gates. Hiding with his sect of followers until death cometh."
- puzzle_id = "heathen"
-
-/obj/item/keycard/gatedrop/gatekeeper
- name = "GateKeeper's Key"
- desc = "Only by slaying the keeper of the gates may one path through into the depths of The Priest's holiest sanctums."
- puzzle_id = "gatekeeper"
-
-/obj/item/keycard/gatedrop/bishop
- name = "Key of the lost"
- desc = "A key held only by the warring Bishop, forever lost to the Golden City of old."
- puzzle_id = "bishopkey"
-
-/obj/item/keycard/gatedrop/priest
- name = "The Priest's Key"
- desc = "A key belonging to a once peaceful scholar, brought to death and ruin through means of violence by savage outsider."
- puzzle_id = "priestkey"
-
/obj/item/keycard/gatedrop/lavacanyon
name = "Vault Key"
desc = "A dusty key, smudged with dried blood."
@@ -128,6 +113,26 @@
desc = "If nautical nonsense be something you wish."
puzzle_id = "swordfish"
+/obj/machinery/door/keycard/harmfactory
+ name = "keycard locked door"
+ desc = "Seems to have a scanner for the factory keycard"
+ puzzle_id = "factory"
+
+/obj/machinery/door/keycard/harmfactory/stockroom
+ name = "keycard locked door"
+ desc = "Seems to have a scanner for the stockroom keycard"
+ puzzle_id = "stockroom"
+
+/obj/machinery/door/keycard/harmfactory/office
+ name = "keycard locked door"
+ desc = "Seems to have a scanner for the office keycard"
+ puzzle_id = "office"
+
+/obj/machinery/door/keycard/harmfactory/entry
+ name = "keycard locked door"
+ desc = "Seems to have a scanner for the entry keycard"
+ puzzle_id = "entry"
+
/obj/machinery/door/keycard/gates
gender = PLURAL
name = "locked gates"
@@ -155,39 +160,6 @@
. = ..()
icon_state = density ? "closed" : "open"
-/obj/machinery/door/keycard/gates/drakelair
- puzzle_id = "drakelairkey"
-
-/obj/machinery/door/keycard/gates/disciple
- name = "Tithe Gates"
- desc = "Gates protecting the ritual tithe collected by The Priest and his Disciples."
- puzzle_id = "disciplekey"
-
-/obj/machinery/door/keycard/gates/guard
- name = "Armory Gates"
- desc = "Gates protecting the most versatile and dangerous of The Priest's armory."
- puzzle_id = "guardcap"
-
-/obj/machinery/door/keycard/gates/heathen
- name = "Sect Gates"
- desc = "Gates guarding the forbidden treasures stolen away by the Heathen. Bloody in nature, and hidden from sight."
- puzzle_id = "heathen"
-
-/obj/machinery/door/keycard/gates/gatekeeper
- name = "Sanctum Gates"
- desc = "The Gatekeeper holds the key, only through bloodshed can they be opened."
- puzzle_id = "gatekeeper"
-
-/obj/machinery/door/keycard/gates/bishop
- name = "Lost Golden City Gates"
- desc = "He took their lives and locked their culture and heritage behind indestructible gates of virtue. The Bishop spread conversion through death and swallowed the key."
- puzzle_id = "bishopkey"
-
-/obj/machinery/door/keycard/gates/priest
- name = "The Priest's Treasury"
- desc = "Gates holding The Priest's eternal hoarde. Drakeborn, incapable of avoiding the grand desire to collect and learn."
- puzzle_id = "priestkey"
-
/obj/machinery/door/keycard/gates/lavacanyon
puzzle_id = "lavacanyonkey"
diff --git a/code/game/objects/items/religion.dm b/code/game/objects/items/religion.dm
index 5128ff7cb75..e2507dfb911 100644
--- a/code/game/objects/items/religion.dm
+++ b/code/game/objects/items/religion.dm
@@ -87,14 +87,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."
@@ -111,14 +103,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)
H.setOxyLoss(0)
@@ -140,14 +124,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."
@@ -161,14 +137,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."
@@ -185,14 +153,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."
diff --git a/code/game/objects/items/stacks/medical.dm b/code/game/objects/items/stacks/medical.dm
index 32d923eef98..264ab12646e 100644
--- a/code/game/objects/items/stacks/medical.dm
+++ b/code/game/objects/items/stacks/medical.dm
@@ -31,17 +31,17 @@
return
if(target == user)
playsound(src, islist(apply_sounds) ? pick(apply_sounds) : apply_sounds, 25)
- if(!do_mob(user, target, self_delay, extra_checks=CALLBACK(target, TYPE_PROC_REF(/mob/living, can_inject), user, TRUE)))
- return
if(!silent)
user.visible_message("[user] starts to apply \the [src] on [user.p_them()]self...", "You begin applying \the [src] on yourself...")
+ if(!do_after(user, self_delay, target, extra_checks=CALLBACK(target, TYPE_PROC_REF(/mob/living, can_inject), user, TRUE)))
+ return
else if(other_delay)
playsound(src, islist(apply_sounds) ? pick(apply_sounds) : apply_sounds, 25)
- if(!do_mob(user, target, other_delay, extra_checks=CALLBACK(target, TYPE_PROC_REF(/mob/living, can_inject), user, TRUE)))
- return
if(!silent)
user.visible_message("[user] starts to apply \the [src] on [target].", "You begin applying \the [src] on [target]...")
+ if(!do_after(user, other_delay, target, extra_checks=CALLBACK(target, TYPE_PROC_REF(/mob/living, can_inject), user, TRUE)))
+ return
if(heal(target, user))
@@ -137,12 +137,13 @@
/obj/item/stack/medical/gauze
name = "medical gauze"
- desc = "A roll of elastic cloth that is extremely effective at stopping bleeding, but does not heal wounds."
+ desc = "A roll of elastic cloth that is extremely effective at stopping bleeding and slowly heals wounds."
gender = PLURAL
singular_name = "medical gauze"
icon_state = "gauze"
apply_sounds = list('sound/effects/rip1.ogg', 'sound/effects/rip2.ogg')
- var/stop_bleeding = 1800
+ var/bleed_reduction = 0.02
+ var/lifespan = 150
self_delay = 20
max_amount = 12
grind_results = list(/datum/reagent/cellulose = 2)
@@ -152,13 +153,16 @@
amount = 12
/obj/item/stack/medical/gauze/heal(mob/living/target, mob/user)
- if(ishuman(target))
- var/mob/living/carbon/human/H = target
- if(!H.bleedsuppress && H.bleed_rate) //so you can't stack bleed suppression
- H.suppress_bloodloss(stop_bleeding)
- to_chat(user, "You stop the bleeding of [target]!")
+ if(iscarbon(target))
+ var/mob/living/carbon/C = target
+ var/obj/item/bodypart/BP = C.get_bodypart(check_zone(user.zone_selected))
+ if(!BP)
+ to_chat(user, span_warning("[C] doesn't have \a [parse_zone(user.zone_selected)]!"))
+ return
+ if(BP.can_bandage(user))
+ BP.apply_bandage(bleed_reduction, lifespan, name)
+ user.visible_message(span_notice("[user] wraps [C]'s [parse_zone(BP.body_zone)] with [src]."), span_notice("You wrap [C]'s [parse_zone(check_zone(user.zone_selected))] with [src]."), span_hear("You hear ruffling cloth."))
return TRUE
- to_chat(user, "You can not use \the [src] on [target]!")
/obj/item/stack/medical/gauze/attackby(obj/item/I, mob/user, params)
if(I.tool_behaviour == TOOL_WIRECUTTER || I.get_sharpness())
@@ -178,8 +182,8 @@
/obj/item/stack/medical/gauze/improvised
name = "improvised gauze"
singular_name = "improvised gauze"
- desc = "A roll of cloth roughly cut from something that can stop bleeding, but does not heal wounds."
- stop_bleeding = 900
+ desc = "A roll of cloth roughly cut from something that can stop bleeding and slowly heal wounds."
+ bleed_reduction = 0.005
/obj/item/stack/medical/gauze/cyborg
custom_materials = null
diff --git a/code/game/objects/items/stacks/rods.dm b/code/game/objects/items/stacks/rods.dm
index f0be0cdd7e8..b5f78d46e95 100644
--- a/code/game/objects/items/stacks/rods.dm
+++ b/code/game/objects/items/stacks/rods.dm
@@ -9,6 +9,7 @@ GLOBAL_LIST_INIT(rod_recipes, list ( \
new/datum/stack_recipe("modern railing corner", /obj/structure/railing/modern/corner, 1, time = 10, window_checks = TRUE), \
new/datum/stack_recipe("modern railing end", /obj/structure/railing/modern/end, 3, time = 18, window_checks = TRUE), \
new/datum/stack_recipe("ladder", /obj/structure/ladder/crafted, 15, time = 150, one_per_turf = TRUE, on_floor = FALSE), \
+ new/datum/stack_recipe("handrail", /obj/structure/chair/handrail, 4, time = 15, one_per_turf = TRUE), \
))
/obj/item/stack/rods
diff --git a/code/game/objects/items/stacks/sheets/mineral.dm b/code/game/objects/items/stacks/sheets/mineral.dm
index 200fc408768..9fc6fa808a4 100644
--- a/code/game/objects/items/stacks/sheets/mineral.dm
+++ b/code/game/objects/items/stacks/sheets/mineral.dm
@@ -160,6 +160,9 @@ GLOBAL_LIST_INIT(uranium_recipes, list ( \
/obj/item/stack/sheet/mineral/uranium/twenty
amount = 20
+/obj/item/stack/sheet/mineral/uranium/ten
+ amount = 10
+
/obj/item/stack/sheet/mineral/uranium/five
amount = 5
@@ -210,6 +213,9 @@ GLOBAL_LIST_INIT(plasma_recipes, list ( \
/obj/item/stack/sheet/mineral/plasma/twenty
amount = 20
+/obj/item/stack/sheet/mineral/plasma/ten
+ amount = 10
+
/obj/item/stack/sheet/mineral/plasma/five
amount = 5
@@ -326,32 +332,6 @@ GLOBAL_LIST_INIT(silver_recipes, list ( \
/obj/item/stack/sheet/mineral/silver/five
amount = 5
-/*
- * Clown
- */
-/obj/item/stack/sheet/mineral/bananium
- name = "bananium"
- icon_state = "sheet-bananium"
- item_state = "sheet-bananium"
- singular_name = "bananium sheet"
- sheettype = "bananium"
- custom_materials = list(/datum/material/bananium=MINERAL_MATERIAL_AMOUNT)
-
- grind_results = list(/datum/reagent/consumable/banana = 20)
- point_value = 50
- merge_type = /obj/item/stack/sheet/mineral/bananium
- material_type = /datum/material/bananium
- walltype = /turf/closed/wall/mineral/bananium
-
-GLOBAL_LIST_INIT(bananium_recipes, list ( \
- new/datum/stack_recipe("bananium tile", /obj/item/stack/tile/mineral/bananium, 1, 4, 20), \
- new/datum/stack_recipe("Clown Statue", /obj/structure/statue/bananium/clown, 5, one_per_turf = 1, on_floor = 1), \
- ))
-
-/obj/item/stack/sheet/mineral/bananium/get_main_recipes()
- . = ..()
- . += GLOB.bananium_recipes
-
/*
* Titanium
*/
@@ -430,7 +410,6 @@ GLOBAL_LIST_INIT(plastitanium_recipes, list ( \
. = ..()
. += GLOB.plastitanium_recipes
-
/*
* Snow
*/
@@ -459,56 +438,6 @@ GLOBAL_LIST_INIT(snow_recipes, list ( \
. = ..()
. += GLOB.snow_recipes
-/****************************** Others ****************************/
-
-/*
- * Adamantine
-*/
-
-/obj/item/stack/sheet/mineral/adamantine
- name = "adamantine"
- icon_state = "sheet-adamantine"
- item_state = "sheet-adamantine"
- singular_name = "adamantine sheet"
- custom_materials = list(/datum/material/adamantine=MINERAL_MATERIAL_AMOUNT)
- merge_type = /obj/item/stack/sheet/mineral/adamantine
- grind_results = list(/datum/reagent/liquidadamantine = 10)
-
-/obj/item/stack/sheet/mineral/adamantine/ten
- amount = 10
-
-/*
- * Runite
- */
-
-/obj/item/stack/sheet/mineral/runite
- name = "runite"
- desc = "Rare material found in distant lands."
- singular_name = "runite bar"
- icon_state = "sheet-runite"
- item_state = "sheet-runite"
- custom_materials = list(/datum/material/runite=MINERAL_MATERIAL_AMOUNT)
- merge_type = /obj/item/stack/sheet/mineral/runite
- material_type = /datum/material/runite
-
-/obj/item/stack/sheet/mineral/runite/ten
- amount = 10
-
-/*
- * Mythril
- */
-/obj/item/stack/sheet/mineral/mythril
- name = "mythril"
- icon_state = "sheet-mythril"
- item_state = "sheet-mythril"
- singular_name = "mythril sheet"
- novariants = TRUE
- custom_materials = list(/datum/material/mythril=MINERAL_MATERIAL_AMOUNT)
- merge_type = /obj/item/stack/sheet/mineral/mythril
-
-/obj/item/stack/sheet/mineral/mythril/ten
- amount = 10
-
/*
* Alien Alloy
*/
@@ -567,3 +496,35 @@ GLOBAL_LIST_INIT(abductor_recipes, list ( \
/obj/item/stack/sheet/mineral/coal/ten
amount = 10
+
+/*
+ * Hellstone
+ */
+/obj/item/stack/sheet/mineral/hidden
+ name = "????????"
+ singular_name = "????????"
+
+/obj/item/stack/sheet/mineral/hidden/hellstone
+ name = "hellstone"
+ icon_state = "sheet-hellstone"
+ item_state = "sheet-hellstone"
+ singular_name = "hellstone bar"
+ sheettype = "hellstone"
+ resistance_flags = FIRE_PROOF | LAVA_PROOF
+ custom_materials = list(/datum/material/hellstone=MINERAL_MATERIAL_AMOUNT)
+ grind_results = list(/datum/reagent/clf3 = 5)
+ point_value = 20
+ merge_type = /obj/item/stack/sheet/mineral/hidden/hellstone
+ material_type = /datum/material/hellstone
+
+/obj/item/stack/sheet/mineral/hidden/hellstone/fifty
+ amount = 50
+
+/obj/item/stack/sheet/mineral/hidden/hellstone/twenty
+ amount = 20
+
+/obj/item/stack/sheet/mineral/hidden/hellstone/ten
+ amount = 10
+
+/obj/item/stack/sheet/mineral/hidden/hellstone/five
+ amount = 5
diff --git a/code/game/objects/items/stacks/sheets/sheet_types.dm b/code/game/objects/items/stacks/sheets/sheet_types.dm
index a80ca900840..ead6b8aeb8f 100644
--- a/code/game/objects/items/stacks/sheets/sheet_types.dm
+++ b/code/game/objects/items/stacks/sheets/sheet_types.dm
@@ -31,10 +31,6 @@
tableVariant = /obj/structure/table
material_type = /datum/material/iron
-/obj/item/stack/sheet/metal/narsie_act()
- new /obj/item/stack/sheet/runed_metal(loc, amount)
- qdel(src)
-
/obj/item/stack/sheet/metal/fifty
amount = 50
@@ -145,6 +141,7 @@ GLOBAL_LIST_INIT(wood_recipes, list ( \
new/datum/stack_recipe("loom", /obj/structure/loom, 10, time = 15, one_per_turf = TRUE, on_floor = TRUE), \
new/datum/stack_recipe("mortar", /obj/item/reagent_containers/glass/mortar, 3), \
new/datum/stack_recipe("firebrand", /obj/item/match/firebrand, 2, time = 100), \
+ new/datum/stack_recipe("torch", /obj/item/candle/tribal_torch, 4, time = 30), \
null, \
new/datum/stack_recipe_list("pews", list(
new /datum/stack_recipe("pew (middle)", /obj/structure/chair/pew, 3, one_per_turf = TRUE, on_floor = TRUE),
@@ -224,9 +221,9 @@ GLOBAL_LIST_INIT(bamboo_recipes, list ( \
force = 0
throwforce = 0
merge_type = /obj/item/stack/sheet/cotton
- var/pull_effort = 30
- var/loom_result = /obj/item/stack/sheet/cotton/cloth
grind_results = list(/datum/reagent/cellulose = 20)
+ var/pull_effort = 10
+ var/loom_result = /obj/item/stack/sheet/cotton/cloth
GLOBAL_LIST_INIT(cloth_recipes, list ( \
new/datum/stack_recipe("white jumpskirt", /obj/item/clothing/under/color/jumpskirt/white, 3), /*Ladies first*/ \
@@ -248,6 +245,7 @@ GLOBAL_LIST_INIT(cloth_recipes, list ( \
new/datum/stack_recipe("rag", /obj/item/reagent_containers/glass/rag, 1), \
new/datum/stack_recipe("towel", /obj/item/towel, 2), \
new/datum/stack_recipe("bedsheet", /obj/item/bedsheet, 3), \
+ new/datum/stack_recipe("double bedsheet", /obj/item/bedsheet/double, 4), \
new/datum/stack_recipe("empty sandbag", /obj/item/emptysandbag, 4), \
null, \
new/datum/stack_recipe("fingerless gloves", /obj/item/clothing/gloves/fingerless, 1), \
@@ -341,7 +339,6 @@ GLOBAL_LIST_INIT(durathread_recipes, list ( \
singular_name = "raw durathread ball"
icon_state = "sheet-durathreadraw"
merge_type = /obj/item/stack/sheet/cotton/durathread
- pull_effort = 70
loom_result = /obj/item/stack/sheet/durathread
grind_results = list()
@@ -442,52 +439,6 @@ GLOBAL_LIST_INIT(cardboard_recipes, list ( \
else
. = ..()
-
-/*
- * Runed Metal
- */
-
-GLOBAL_LIST_INIT(runed_metal_recipes, list ( \
- new/datum/stack_recipe("runed door", /obj/machinery/door/airlock/cult, 1, time = 50, one_per_turf = TRUE, on_floor = TRUE), \
- new/datum/stack_recipe("runed girder", /obj/structure/girder/cult, 1, time = 50, one_per_turf = TRUE, on_floor = TRUE), \
- new/datum/stack_recipe("pylon", /obj/structure/destructible/cult/pylon, 4, time = 40, one_per_turf = TRUE, on_floor = TRUE), \
- new/datum/stack_recipe("forge", /obj/structure/destructible/cult/forge, 3, time = 40, one_per_turf = TRUE, on_floor = TRUE), \
- new/datum/stack_recipe("archives", /obj/structure/destructible/cult/tome, 3, time = 40, one_per_turf = TRUE, on_floor = TRUE), \
- new/datum/stack_recipe("altar", /obj/structure/destructible/cult/talisman, 3, time = 40, one_per_turf = TRUE, on_floor = TRUE), \
- ))
-
-/obj/item/stack/sheet/runed_metal
- name = "runed metal"
- desc = "Sheets of cold metal with shifting inscriptions writ upon them."
- singular_name = "runed metal sheet"
- icon_state = "sheet-runed"
- item_state = "sheet-runed"
- icon = 'icons/obj/stack_objects.dmi'
- custom_materials = list(/datum/material/runedmetal = MINERAL_MATERIAL_AMOUNT)
- merge_type = /obj/item/stack/sheet/runed_metal
- novariants = TRUE
- grind_results = list(/datum/reagent/iron = 5, /datum/reagent/blood = 15)
- material_type = /datum/material/runedmetal
-
-/obj/item/stack/sheet/runed_metal/attack_self(mob/living/user)
- if(!iscultist(user))
- to_chat(user, "Only one with forbidden knowledge could hope to work this metal...")
- return FALSE
- return ..()
-
-/obj/item/stack/sheet/runed_metal/get_main_recipes()
- . = ..()
- . += GLOB.runed_metal_recipes
-
-/obj/item/stack/sheet/runed_metal/fifty
- amount = 50
-
-/obj/item/stack/sheet/runed_metal/ten
- amount = 10
-
-/obj/item/stack/sheet/runed_metal/five
- amount = 5
-
/*
* Bronze
*/
diff --git a/code/game/objects/items/stacks/tape.dm b/code/game/objects/items/stacks/tape.dm
index d22b1be8534..63fc55116d5 100644
--- a/code/game/objects/items/stacks/tape.dm
+++ b/code/game/objects/items/stacks/tape.dm
@@ -80,7 +80,8 @@
grind_results = list(/datum/reagent/cellulose = 5)
usesound = 'sound/items/tape.ogg'
- var/stop_bleed = 600
+ var/lifespan = 300
+ var/bleed_reduction = 0.002
var/nonorganic_heal = 5
var/self_delay = 30 //! Also used for the tapecuff delay
var/other_delay = 10
@@ -114,7 +115,7 @@
return
if(use(1))
playsound(loc, usesound, 30, TRUE, -2)
- if(do_mob(user, C, other_delay) && (!C.is_mouth_covered() || !C.is_muzzled()))
+ if(do_after(user, other_delay, C) && (!C.is_mouth_covered() || !C.is_muzzled()))
apply_gag(C, user)
C.visible_message("[user] tapes [C]s mouth shut.", \
"[user] taped your mouth shut!")
@@ -134,7 +135,7 @@
"[user] is trying to put [src.name] on you!")
playsound(loc, usesound, 30, TRUE, -2)
- if(do_mob(user, C, self_delay) && (C.canBeHandcuffed()))
+ if(do_after(user, self_delay, C) && (C.canBeHandcuffed()))
apply_tapecuffs(C, user)
C.visible_message("[user] tapecuffs [C].", \
"[user] tapecuffs you.")
@@ -152,11 +153,11 @@
if(C == user)
playsound(loc, usesound, 30, TRUE, -2)
user.visible_message("[user] starts to apply \the [src] on [user.p_them()]self...", "You begin applying \the [src] on yourself...")
- if(!do_mob(user, C, self_delay, extra_checks=CALLBACK(C, TYPE_PROC_REF(/mob/living, can_inject), user, TRUE)))
+ if(!do_after(user, self_delay, C, extra_checks=CALLBACK(C, TYPE_PROC_REF(/mob/living, can_inject), user, TRUE)))
return
else if(other_delay)
user.visible_message("[user] starts to apply \the [src] on [C].", "You begin applying \the [src] on [C]...")
- if(!do_mob(user, C, other_delay, extra_checks=CALLBACK(C, TYPE_PROC_REF(/mob/living, can_inject), user, TRUE)))
+ if(!do_after(user, other_delay, C, extra_checks=CALLBACK(C, TYPE_PROC_REF(/mob/living, can_inject), user, TRUE)))
return
if(heal(C, user))
@@ -173,21 +174,17 @@
if(!affecting) //Missing limb?
to_chat(user, "[C] doesn't have \a [parse_zone(user.zone_selected)]!")
return
- if(!IS_ORGANIC_LIMB(affecting))
- if(ishuman(C))
- var/mob/living/carbon/human/H = C
- if(!H.bleedsuppress && H.bleed_rate)
- H.suppress_bloodloss(stop_bleed)
- to_chat(user, "You tape up the bleeding of [C]!")
- return TRUE
- to_chat(user, "[C] has a problem \the [src] won't fix!")
- else //Robotic patch-up
+ if(IS_ROBOTIC_LIMB(affecting)) //Robotic patch-up
if(affecting.brute_dam)
user.visible_message("[user] applies \the [src] on [C]'s [affecting.name].", "You apply \the [src] on [C]'s [affecting.name].")
if(affecting.heal_damage(nonorganic_heal))
C.update_damage_overlays()
return TRUE
- to_chat(user, "[src] can't patch what [C] has...")
+ if(affecting.can_bandage(user))
+ affecting.apply_bandage(bleed_reduction, lifespan, name)
+ to_chat(user, "You tape up [C]'s [parse_zone(affecting.body_zone)]!")
+ return TRUE
+ to_chat(user, "[src] can't patch what [C] has...")
/obj/item/stack/tape/proc/apply_gag(mob/living/carbon/target, mob/user)
if(target.is_muzzled() || target.is_mouth_covered())
@@ -272,7 +269,7 @@
desc = "This roll of silver sorcery can fix just about anything."
icon_state = "tape_d"
- stop_bleed = 800
+ lifespan = 400
nonorganic_heal = 20
prefix = "super sticky"
conferred_embed = EMBED_HARMLESS_SUPERIOR
@@ -297,7 +294,6 @@
desc = "Specialty insulated strips of adhesive plastic. Made for securing cables."
icon_state = "tape_e"
- stop_bleed = 400
nonorganic_heal = 10
prefix = "insulated sticky"
siemens_coefficient = 0
@@ -321,6 +317,6 @@
desc = "Now THIS is engineering."
icon_state = "tape_y"
- stop_bleed = 1000
+ lifespan = 500
nonorganic_heal = 30
prefix = "industry-standard sticky"
diff --git a/code/game/objects/items/stacks/tiles/tile_mineral.dm b/code/game/objects/items/stacks/tiles/tile_mineral.dm
index c5e05b5212f..ad00f3902c5 100644
--- a/code/game/objects/items/stacks/tiles/tile_mineral.dm
+++ b/code/game/objects/items/stacks/tiles/tile_mineral.dm
@@ -48,16 +48,6 @@
mineralType = "diamond"
custom_materials = list(/datum/material/diamond=500)
-/obj/item/stack/tile/mineral/bananium
- name = "bananium tile"
- singular_name = "bananium floor tile"
- desc = "A tile made out of bananium, HOOOOOOOOONK!"
- icon_state = "tile_bananium"
- item_state = "tile-bananium"
- turf_type = /turf/open/floor/mineral/bananium
- mineralType = "bananium"
- custom_materials = list(/datum/material/bananium=500)
-
/obj/item/stack/tile/mineral/abductor
name = "alien floor tile"
singular_name = "alien floor tile"
diff --git a/code/game/objects/items/stacks/tiles/tiles_suns.dm b/code/game/objects/items/stacks/tiles/tiles_suns.dm
new file mode 100644
index 00000000000..65cc090b152
--- /dev/null
+++ b/code/game/objects/items/stacks/tiles/tiles_suns.dm
@@ -0,0 +1,64 @@
+/obj/item/stack/tile/suns
+ name = "white marble tile"
+ singular_name = "white marble floor tile"
+ icon_state = "tile_suns_light"
+ turf_type = /turf/open/floor/suns
+ tile_reskin_types = list(
+ /obj/item/stack/tile/suns/plain,
+ /obj/item/stack/tile/suns/pattern,
+ /obj/item/stack/tile/suns/hatch,
+ /obj/item/stack/tile/suns/diagonal,
+ /obj/item/stack/tile/suns/grid,
+ /obj/item/stack/tile/suns/dark,
+ /obj/item/stack/tile/suns/dark/plain,
+ /obj/item/stack/tile/suns/dark/pattern)
+
+/obj/item/stack/tile/suns/plain
+ name = "white plain marble tile"
+ singular_name = "white plain marble floor tile"
+ icon_state = "tile_suns_lightplain"
+ turf_type = /turf/open/floor/suns/plain
+
+/obj/item/stack/tile/suns/pattern
+ name = "patterned white marble tile"
+ singular_name = "patterned white marble floor tile"
+ icon_state = "tile_suns_lightpattern"
+ turf_type = /turf/open/floor/suns/pattern
+
+/obj/item/stack/tile/suns/hatch
+ name = "hatched white marble tile"
+ singular_name = "hatched white marble floor tile"
+ icon_state = "tile_suns_lighthatched"
+ turf_type = /turf/open/floor/suns/hatch
+
+/obj/item/stack/tile/suns/diagonal
+ name = "diagonal white marble tile"
+ singular_name = "diagonal white marble floor tile"
+ icon_state = "tile_suns_lightdiag"
+ turf_type = /turf/open/floor/suns/diagonal
+
+/obj/item/stack/tile/suns/grid
+ name = "dark grid tile"
+ singular_name = "dark grid floor floor tile"
+ icon_state = "tile_suns_darkchunky"
+ turf_type = /turf/open/floor/suns/grid
+
+/obj/item/stack/tile/suns/dark
+ name = "black marble tile"
+ singular_name = "black marble floor tile"
+ icon_state = "tile_suns_dark"
+ turf_type = /turf/open/floor/suns/dark
+
+/obj/item/stack/tile/suns/dark/plain
+ name = "black plain marble tile"
+ singular_name = "black plain marble floor tile"
+ icon_state = "tile_suns_darkplain"
+ turf_type = /turf/open/floor/suns/dark/plain
+
+/obj/item/stack/tile/suns/dark/pattern
+ name = "patterned black marble tile"
+ singular_name = "patterned black marble floor tile"
+ icon_state = "tile_suns_darkpattern"
+ turf_type = /turf/open/floor/suns/dark/pattern
+
+
diff --git a/code/game/objects/items/storage/backpack.dm b/code/game/objects/items/storage/backpack.dm
index e1d8aa7a1f1..5d87b42b78e 100644
--- a/code/game/objects/items/storage/backpack.dm
+++ b/code/game/objects/items/storage/backpack.dm
@@ -20,7 +20,7 @@
righthand_file = 'icons/mob/inhands/equipment/backpack_righthand.dmi'
pickup_sound = "rustle"
drop_sound = "rustle"
- w_class = WEIGHT_CLASS_BULKY
+ w_class = WEIGHT_CLASS_HUGE
slot_flags = ITEM_SLOT_BACK //ERROOOOO
resistance_flags = NONE
max_integrity = 300
@@ -31,9 +31,9 @@
/obj/item/storage/backpack/ComponentInitialize()
. = ..()
var/datum/component/storage/STR = GetComponent(/datum/component/storage)
- STR.max_combined_w_class = 21
- STR.max_w_class = WEIGHT_CLASS_NORMAL
- STR.max_items = 21
+ STR.storage_flags = STORAGE_FLAGS_VOLUME_DEFAULT
+ STR.max_volume = STORAGE_VOLUME_BACKPACK
+ STR.max_w_class = MAX_WEIGHT_CLASS_BACKPACK
STR.use_sound = 'sound/items/storage/unzip.ogg'
/*
@@ -58,9 +58,8 @@
/obj/item/storage/backpack/holding/ComponentInitialize()
. = ..()
var/datum/component/storage/STR = GetComponent(/datum/component/storage)
- STR.allow_big_nesting = TRUE
- STR.max_w_class = WEIGHT_CLASS_GIGANTIC
- STR.max_combined_w_class = 35
+ STR.storage_flags = STORAGE_FLAGS_VOLUME_DEFAULT
+ STR.max_volume = STORAGE_VOLUME_BAG_OF_HOLDING
/obj/item/storage/backpack/santabag
name = "Santa's Gift Bag"
@@ -218,10 +217,16 @@
greyscale_colors = list(list(11, 12), list(17, 18), list(10, 11))
supports_variations = VOX_VARIATION
+/obj/item/storage/backpack/satchel/ComponentInitialize()
+ . = ..()
+ var/datum/component/storage/STR = GetComponent(/datum/component/storage)
+ STR.max_volume = STORAGE_VOLUME_BACKPACK
+ STR.max_w_class = MAX_WEIGHT_CLASS_M_CONTAINER
+
/obj/item/storage/backpack/satchel/leather
name = "leather satchel"
desc = "It's a very fancy satchel made with fine leather."
- icon = 'icons/obj/storage.dmi' //WS Edit - Suitcases
+ icon = 'icons/obj/storage.dmi'
icon_state = "satchel"
item_state = "satchel"
@@ -427,11 +432,13 @@
item_state = "duffel"
slowdown = 1
greyscale_colors = list(list(21, 11), list(14, 19), list(15, 16))
+ w_class = WEIGHT_CLASS_HUGE
/obj/item/storage/backpack/duffelbag/ComponentInitialize()
. = ..()
var/datum/component/storage/STR = GetComponent(/datum/component/storage)
- STR.max_combined_w_class = 30
+ STR.max_volume = STORAGE_VOLUME_DUFFLEBAG
+ STR.max_w_class = MAX_WEIGHT_CLASS_DUFFEL
LAZYINITLIST(STR.exception_hold) // This code allows you to fit one mob holder into a duffel bag
STR.exception_hold += typecacheof(/obj/item/clothing/head/mob_holder)
diff --git a/code/game/objects/items/storage/bags.dm b/code/game/objects/items/storage/bags.dm
index dc3d2deff0b..ecee3894ccb 100644
--- a/code/game/objects/items/storage/bags.dm
+++ b/code/game/objects/items/storage/bags.dm
@@ -45,10 +45,12 @@
/obj/item/storage/bag/trash/ComponentInitialize()
. = ..()
var/datum/component/storage/STR = GetComponent(/datum/component/storage)
- STR.max_w_class = WEIGHT_CLASS_SMALL
- STR.max_combined_w_class = 30
- STR.max_items = 30
+ STR.max_w_class = WEIGHT_CLASS_NORMAL
+ STR.max_combined_w_class = 50
+ STR.max_items = 50
STR.set_holdable(null, list(/obj/item/disk/nuclear))
+ STR.limited_random_access = TRUE
+ STR.limited_random_access_stack_position = 3
/obj/item/storage/bag/trash/update_icon_state()
switch(contents.len)
@@ -83,8 +85,9 @@
/obj/item/storage/bag/trash/bluespace/ComponentInitialize()
. = ..()
var/datum/component/storage/STR = GetComponent(/datum/component/storage)
- STR.max_combined_w_class = 60
- STR.max_items = 60
+ STR.max_combined_w_class = 75
+ STR.max_items = 75
+ STR.max_w_class = WEIGHT_CLASS_BULKY
/obj/item/storage/bag/trash/bluespace/cyborg
insertable = FALSE
diff --git a/code/game/objects/items/storage/belt.dm b/code/game/objects/items/storage/belt.dm
index c578c318e73..802eeee2d45 100644
--- a/code/game/objects/items/storage/belt.dm
+++ b/code/game/objects/items/storage/belt.dm
@@ -248,6 +248,16 @@
new /obj/item/hypospray/mkii(src)
update_appearance()
+/obj/item/storage/belt/medical/webbing/surgery/PopulateContents()
+ new /obj/item/scalpel(src)
+ new /obj/item/circular_saw(src)
+ new /obj/item/surgicaldrill(src)
+ new /obj/item/retractor(src)
+ new /obj/item/cautery(src)
+ new /obj/item/hemostat(src)
+ new /obj/item/hypospray/mkii(src)
+ update_appearance()
+
/obj/item/storage/belt/security
name = "security belt"
desc = "Can hold security gear like handcuffs and flashes."
@@ -600,33 +610,6 @@
/obj/item/multitool = 1)
generate_items_inside(items_inside,src)
-
-/obj/item/storage/belt/wands
- name = "wand belt"
- desc = "A belt designed to hold various rods of power. A veritable fanny pack of exotic magic."
- icon_state = "soulstone"
- item_state = "soulstone"
-
-/obj/item/storage/belt/wands/ComponentInitialize()
- . = ..()
- var/datum/component/storage/STR = GetComponent(/datum/component/storage)
- STR.max_items = 6
- STR.set_holdable(list(
- /obj/item/gun/magic/wand
- ))
-
-/obj/item/storage/belt/wands/full/PopulateContents()
- new /obj/item/gun/magic/wand/death(src)
- new /obj/item/gun/magic/wand/resurrection(src)
- new /obj/item/gun/magic/wand/polymorph(src)
- new /obj/item/gun/magic/wand/teleport(src)
- new /obj/item/gun/magic/wand/door(src)
- new /obj/item/gun/magic/wand/fireball(src)
-
- for(var/obj/item/gun/magic/wand/W in contents) //All wands in this pack come in the best possible condition
- W.max_charges = initial(W.max_charges)
- W.charges = W.max_charges
-
/obj/item/storage/belt/janitor
name = "janibelt"
desc = "A belt used to hold most janitorial supplies."
diff --git a/code/game/objects/items/storage/book.dm b/code/game/objects/items/storage/book.dm
index 45fee1d6766..67dba503642 100644
--- a/code/game/objects/items/storage/book.dm
+++ b/code/game/objects/items/storage/book.dm
@@ -1,3 +1,10 @@
+//need to refactor this.
+GLOBAL_LIST_INIT(biblenames, list("Bible", "Quran", "Scrapbook", "Burning Bible", "Clown Bible", "Banana Bible", "Creeper Bible", "White Bible", "Holy Light", "The God Delusion", "Tome", "The King in Yellow", "Ithaqua", "Scientology", "Melted Bible", "Necronomicon", "Insulationism", "Guru Granth Sahib"))
+//If you get these two lists not matching in size, there will be runtimes and I will hurt you in ways you couldn't even begin to imagine
+// if your bible has no custom itemstate, use one of the existing ones
+GLOBAL_LIST_INIT(biblestates, list("bible", "koran", "scrapbook", "burning", "honk1", "honk2", "creeper", "white", "holylight", "atheist", "tome", "kingyellow", "ithaqua", "scientology", "melted", "necronomicon", "insuls", "gurugranthsahib"))
+GLOBAL_LIST_INIT(bibleitemstates, list("bible", "koran", "scrapbook", "burning", "honk1", "honk2", "creeper", "white", "holylight", "atheist", "tome", "kingyellow", "ithaqua", "scientology", "melted", "necronomicon", "kingyellow", "gurugranthsahib"))
+
/obj/item/storage/book
name = "hollowed book"
desc = "I guess someone didn't like it."
@@ -17,18 +24,6 @@
/obj/item/storage/book/attack_self(mob/user)
to_chat(user, "The pages of [title] have been cut out!")
-GLOBAL_LIST_INIT(biblenames, list("Bible", "Quran", "Scrapbook", "Burning Bible", "Clown Bible", "Banana Bible", "Creeper Bible", "White Bible", "Holy Light", "The God Delusion", "Tome", "The King in Yellow", "Ithaqua", "Scientology", "Melted Bible", "Necronomicon", "Insulationism", "Guru Granth Sahib"))
-//If you get these two lists not matching in size, there will be runtimes and I will hurt you in ways you couldn't even begin to imagine
-// if your bible has no custom itemstate, use one of the existing ones
-GLOBAL_LIST_INIT(biblestates, list("bible", "koran", "scrapbook", "burning", "honk1", "honk2", "creeper", "white", "holylight", "atheist", "tome", "kingyellow", "ithaqua", "scientology", "melted", "necronomicon", "insuls", "gurugranthsahib"))
-GLOBAL_LIST_INIT(bibleitemstates, list("bible", "koran", "scrapbook", "burning", "honk1", "honk2", "creeper", "white", "holylight", "atheist", "tome", "kingyellow", "ithaqua", "scientology", "melted", "necronomicon", "kingyellow", "gurugranthsahib"))
-
-/mob/proc/bible_check() //The bible, if held, might protect against certain things
- var/obj/item/storage/book/bible/B = locate() in src
- if(is_holding(B))
- return B
- return 0
-
/obj/item/storage/book/bible
name = "bible"
desc = "Apply to head repeatedly."
@@ -41,205 +36,6 @@ GLOBAL_LIST_INIT(bibleitemstates, list("bible", "koran", "scrapbook", "burning",
var/deity_name = "Christ"
force_string = "holy"
-/obj/item/storage/book/bible/Initialize()
- . = ..()
- AddComponent(/datum/component/anti_magic, FALSE, TRUE)
-
-/obj/item/storage/book/bible/attack_self(mob/living/carbon/human/H)
- if(!istype(H))
- return
- if(!H.can_read(src))
- return FALSE
- // If H is the Chaplain, we can set the icon_state of the bible (but only once!)
- if(!GLOB.bible_icon_state && H.mind.holy_role == HOLY_ROLE_HIGHPRIEST)
- var/dat = "Pick Bible StylePick a bible style
"
- for(var/i in 1 to GLOB.biblestates.len)
- var/icon/bibleicon = icon('icons/obj/storage.dmi', GLOB.biblestates[i])
- var/nicename = GLOB.biblenames[i]
- H << browse_rsc(bibleicon, nicename)
- dat += {" | [nicename] |
"}
- dat += "
"
- H << browse(dat, "window=editicon;can_close=0;can_minimize=0;size=250x650")
-
-/obj/item/storage/book/bible/Topic(href, href_list)
- if(!usr.canUseTopic(src, BE_CLOSE))
- return
- if(href_list["seticon"] && !GLOB.bible_icon_state)
- var/iconi = text2num(href_list["seticon"])
- var/biblename = GLOB.biblenames[iconi]
- icon_state = GLOB.biblestates[iconi]
- item_state = GLOB.bibleitemstates[iconi]
-
- if(icon_state == "honk1" || icon_state == "honk2")
- var/mob/living/carbon/human/H = usr
- H.dna.add_mutation(CLOWNMUT)
- H.equip_to_slot_or_del(new /obj/item/clothing/mask/gas/clown_hat(H), ITEM_SLOT_MASK)
- if(icon_state == "insuls")
- var/mob/living/carbon/human/H =usr
- var/obj/item/clothing/gloves/color/fyellow/insuls = new
- insuls.name = "insuls"
- insuls.desc = "A mere copy of the true insuls."
- insuls.siemens_coefficient = 0.99999
- H.equip_to_slot(insuls, ITEM_SLOT_GLOVES)
- GLOB.bible_icon_state = icon_state
- GLOB.bible_item_state = item_state
-
- SSblackbox.record_feedback("text", "religion_book", 1, "[biblename]")
- usr << browse(null, "window=editicon")
-
-/obj/item/storage/book/bible/proc/bless(mob/living/L, mob/living/user)
- if(GLOB.religious_sect)
- return GLOB.religious_sect.sect_bless(L,user)
- if(!ishuman(L))
- return
- var/mob/living/carbon/human/H = L
- for(var/X in H.bodyparts)
- var/obj/item/bodypart/BP = X
- if(!IS_ORGANIC_LIMB(BP))
- to_chat(user, "[src.deity_name] refuses to heal this metallic taint!")
- return 0
-
- var/heal_amt = 10
- var/list/hurt_limbs = H.get_damaged_bodyparts(1, 1, null, BODYTYPE_ORGANIC)
-
- if(hurt_limbs.len)
- for(var/X in hurt_limbs)
- var/obj/item/bodypart/affecting = X
- if(affecting.heal_damage(heal_amt, heal_amt, null, BODYTYPE_ORGANIC))
- H.update_damage_overlays()
- H.visible_message("[user] heals [H] with the power of [deity_name]!")
- to_chat(H, "May the power of [deity_name] compel you to be healed!")
- playsound(src.loc, "punch", 25, TRUE, -1)
- SEND_SIGNAL(H, COMSIG_ADD_MOOD_EVENT, "blessing", /datum/mood_event/blessing)
- return 1
-
-/obj/item/storage/book/bible/attack(mob/living/M, mob/living/carbon/human/user, heal_mode = TRUE)
-
- if (!user.IsAdvancedToolUser())
- to_chat(user, "You don't have the dexterity to do this!")
- return
-
- if (HAS_TRAIT(user, TRAIT_CLUMSY) && prob(50))
- to_chat(user, "[src] slips out of your hand and hits your head.")
- user.take_bodypart_damage(10)
- user.Unconscious(400)
- return
-
- var/chaplain = 0
- if(user.mind && (user.mind.holy_role))
- chaplain = 1
-
- if(!chaplain)
- to_chat(user, "The book sizzles in your hands.")
- user.take_bodypart_damage(0,10)
- return
-
- if (!heal_mode)
- return ..()
-
- var/smack = 1
-
- if (M.stat != DEAD)
- if(chaplain && user == M)
- to_chat(user, "You can't heal yourself!")
- return
-
- if(prob(60) && bless(M, user))
- smack = 0
- else if(iscarbon(M))
- var/mob/living/carbon/C = M
- if(!istype(C.head, /obj/item/clothing/head/helmet))
- C.adjustOrganLoss(ORGAN_SLOT_BRAIN, 5, 60)
- to_chat(C, "You feel dumber.")
-
- if(smack)
- M.visible_message("[user] beats [M] over the head with [src]!", \
- "[user] beats [M] over the head with [src]!")
- playsound(src.loc, "punch", 25, TRUE, -1)
- log_combat(user, M, "attacked", src)
-
- else
- M.visible_message("[user] smacks [M]'s lifeless corpse with [src].")
- playsound(src.loc, "punch", 25, TRUE, -1)
-
-/obj/item/storage/book/bible/afterattack(atom/A, mob/user, proximity)
- . = ..()
- if(!proximity)
- return
- if(isfloorturf(A))
- to_chat(user, "You hit the floor with the bible.")
- if(user.mind && (user.mind.holy_role))
- for(var/obj/effect/rune/R in orange(2,user))
- R.invisibility = 0
- if(user?.mind?.holy_role)
- if(A.reagents && A.reagents.has_reagent(/datum/reagent/water)) // blesses all the water in the holder
- to_chat(user, "You bless [A].")
- var/water2holy = A.reagents.get_reagent_amount(/datum/reagent/water)
- A.reagents.del_reagent(/datum/reagent/water)
- A.reagents.add_reagent(/datum/reagent/water/holywater,water2holy)
- if(A.reagents && A.reagents.has_reagent(/datum/reagent/fuel/unholywater)) // yeah yeah, copy pasted code - sue me
- to_chat(user, "You purify [A].")
- var/unholy2clean = A.reagents.get_reagent_amount(/datum/reagent/fuel/unholywater)
- A.reagents.del_reagent(/datum/reagent/fuel/unholywater)
- A.reagents.add_reagent(/datum/reagent/water/holywater,unholy2clean)
- if(istype(A, /obj/item/storage/book/bible) && !istype(A, /obj/item/storage/book/bible/syndicate))
- to_chat(user, "You purify [A], conforming it to your belief.")
- var/obj/item/storage/book/bible/B = A
- B.name = name
- B.icon_state = icon_state
- B.item_state = item_state
- if(istype(A, /obj/item/cult_bastard) && !iscultist(user))
- var/obj/item/cult_bastard/sword = A
- to_chat(user, "You begin to exorcise [sword].")
- playsound(src,'sound/hallucinations/veryfar_noise.ogg',40,TRUE)
- if(do_after(user, 40, target = sword))
- playsound(src,'sound/effects/pray_chaplain.ogg',60,TRUE)
- for(var/obj/item/soulstone/SS in sword.contents)
- SS.usability = TRUE
- for(var/mob/living/simple_animal/shade/EX in SS)
- SSticker.mode.remove_cultist(EX.mind, 1, 0)
- EX.icon_state = "ghost1"
- EX.name = "Purified [EX.name]"
- SS.release_shades(user)
- qdel(SS)
- new /obj/item/nullrod/claymore(get_turf(sword))
- user.visible_message("[user] purifies [sword]!")
- qdel(sword)
- else if(istype(A, /obj/item/soulstone) && !iscultist(user))
- var/obj/item/soulstone/SS = A
- if(SS.purified)
- return
- to_chat(user, "You begin to exorcise [SS].")
- playsound(src,'sound/hallucinations/veryfar_noise.ogg',40,TRUE)
- if(do_after(user, 40, target = SS))
- playsound(src,'sound/effects/pray_chaplain.ogg',60,TRUE)
- SS.usability = TRUE
- SS.purified = TRUE
- SS.icon_state = "purified_soulstone"
- for(var/mob/M in SS.contents)
- if(M.mind)
- SS.icon_state = "purified_soulstone2"
- if(iscultist(M))
- SSticker.mode.remove_cultist(M.mind, FALSE, FALSE)
- for(var/mob/living/simple_animal/shade/EX in SS)
- EX.icon_state = "ghost1"
- EX.name = "Purified [initial(EX.name)]"
- user.visible_message("[user] purifies [SS]!")
- else if(istype(A, /obj/item/nullrod/scythe/talking))
- var/obj/item/nullrod/scythe/talking/sword = A
- to_chat(user, "You begin to exorcise [sword]...")
- playsound(src,'sound/hallucinations/veryfar_noise.ogg',40,TRUE)
- if(do_after(user, 40, target = sword))
- playsound(src,'sound/effects/pray_chaplain.ogg',60,TRUE)
- for(var/mob/living/simple_animal/shade/S in sword.contents)
- to_chat(S, "You were destroyed by the exorcism!")
- qdel(S)
- sword.possessed = FALSE //allows the chaplain (or someone else) to reroll a new spirit for their sword
- sword.name = initial(sword.name)
- REMOVE_TRAIT(sword, TRAIT_NODROP, HAND_REPLACEMENT_TRAIT) //in case the "sword" is a possessed dummy
- user.visible_message("[user] exorcises [sword]!", \
- "You successfully exorcise [sword]!")
-
/obj/item/storage/book/bible/koran
name = "Koran"
icon_state = "koran"
@@ -253,34 +49,6 @@ GLOBAL_LIST_INIT(bibleitemstates, list("bible", "koran", "scrapbook", "burning",
new /obj/item/reagent_containers/food/drinks/bottle/whiskey(src)
/obj/item/storage/book/bible/syndicate
+ name = "Syndicate Tome"
icon_state ="ebook"
deity_name = "The Syndicate"
- throw_speed = 2
- throwforce = 18
- throw_range = 7
- force = 18
- hitsound = 'sound/weapons/sear.ogg'
- damtype = BURN
- name = "Syndicate Tome"
- attack_verb = list("attacked", "burned", "blessed", "damned", "scorched")
- var/uses = 1
-
-/obj/item/storage/book/bible/syndicate/attack_self(mob/living/carbon/human/H)
- if (uses)
- H.mind.holy_role = HOLY_ROLE_PRIEST
- uses -= 1
- to_chat(H, "You try to open the book AND IT BITES YOU!")
- playsound(src.loc, 'sound/effects/snap.ogg', 50, TRUE)
- H.apply_damage(5, BRUTE, pick(BODY_ZONE_L_ARM, BODY_ZONE_R_ARM))
- to_chat(H, "Your name appears on the inside cover, in blood.")
- var/ownername = H.real_name
- desc += "The name [ownername] is written in blood inside the cover."
-
-/obj/item/storage/book/bible/syndicate/attack(mob/living/M, mob/living/carbon/human/user, heal_mode = TRUE)
- if (user.a_intent == INTENT_HELP)
- return ..()
- else
- return ..(M,user,heal_mode = FALSE)
-
-/obj/item/storage/book/bible/syndicate/add_blood_DNA(list/blood_dna)
- return FALSE
diff --git a/code/game/objects/items/storage/boxes.dm b/code/game/objects/items/storage/boxes.dm
index fb001b2eb56..8aa7b1d9c47 100644
--- a/code/game/objects/items/storage/boxes.dm
+++ b/code/game/objects/items/storage/boxes.dm
@@ -124,8 +124,12 @@
var/radio_type = /obj/item/radio
/obj/item/storage/box/survival/PopulateContents()
- new mask_type(src)
- new radio_type(src)
+ if(!isnull(mask_type))
+ new mask_type(src)
+
+ if(!isnull(radio_type))
+ new radio_type(src)
+
if(!isnull(medipen_type))
new medipen_type(src)
@@ -165,10 +169,12 @@
/obj/item/storage/box/survival/clip/balaclava
mask_type = /obj/item/clothing/mask/gas/sechailer/balaclava
-
-/obj/item/storage/box/survival/clip/balaclava
internal_type = /obj/item/tank/internals/emergency_oxygen/double
+/obj/item/storage/box/survival/frontier
+ mask_type = null // we spawn in gas masks in frontiersmen bags alongside this, so it isn't nessary
+ internal_type = /obj/item/tank/internals/emergency_oxygen //frontiersmen dont
+
/obj/item/storage/box/gloves
name = "box of latex gloves"
desc = "Contains sterile latex gloves."
@@ -850,6 +856,16 @@
for(var/i in 1 to 7)
new /obj/item/ammo_casing/shotgun/buckshot(src)
+/obj/item/storage/box/techshot
+ name = "box of unloaded shotgun tech shells"
+ desc = "A box full of unloaded tech shells, capable of producing a variety of effects once loaded."
+ icon_state = "techshot_box"
+ illustration = null
+
+/obj/item/storage/box/techshot/PopulateContents()
+ for(var/i in 1 to 7)
+ new /obj/item/ammo_casing/shotgun/techshell(src)
+
/obj/item/storage/box/beanbag
name = "box of beanbags"
desc = "A box full of beanbag shells."
@@ -1370,10 +1386,10 @@
/obj/item/stack/sheet/mineral/uranium=20,\
/obj/item/stack/sheet/mineral/diamond=50,\
/obj/item/stack/sheet/bluespace_crystal=50,\
- /obj/item/stack/sheet/mineral/bananium=50,\
+ /obj/item/stack/sheet/mineral/hidden/hellstone=50,\
/obj/item/stack/sheet/mineral/wood=50,\
/obj/item/stack/sheet/plastic/fifty=1,\
- /obj/item/stack/sheet/runed_metal/fifty=1
+ /obj/item/stack/sheet/mineral/hidden/hellstone/fifty=1
)
generate_items_inside(items_inside,src)
@@ -1520,53 +1536,3 @@
)
generate_items_inside(items_inside,src)
-/obj/item/storage/box/coffeepack
- icon_state = "arabica_beans"
- name = "arabica beans"
- desc = "A bag containing fresh, dry coffee arabica beans. Ethically sourced and packaged by Donk! Co."
- illustration = null
- icon = 'icons/obj/food/containers.dmi'
- var/beantype = /obj/item/reagent_containers/food/snacks/grown/coffee
-
-/obj/item/storage/box/cofeepack/Initialize(mapload)
- . = ..()
- var/datum/component/storage/STR = GetComponent(/datum/component/storage)
- STR.max_items = 5
- STR.set_holdable(list(/obj/item/reagent_containers/food/snacks/grown/coffee))
-
-/obj/item/storage/box/coffeepack/PopulateContents()
- var/static/items_inside = list(
- /obj/item/reagent_containers/food/snacks/grown/coffee = 5,
- /obj/item/reagent_containers/food/snacks/grown/coffee/robusta = 5)
- generate_items_inside(items_inside,src)
-
-/obj/item/storage/box/coffeepack/robusta
- icon_state = "robusta_beans"
- name = "robusta beans"
- desc = "A bag containing fresh, dry coffee robusta beans. Ethically sourced and packaged by Donk! Co."
- beantype = /obj/item/reagent_containers/food/snacks/grown/coffee/robusta
-
-
-/*
- * Coffee condiments display -- someone can make this fancy eventually, i cant fucking figure it out for the life of me -- it exists in TG
- */
-
-/obj/item/storage/box/coffee_condi_display
- name = "coffee condiments display"
- desc = "A neat small box, holding all your favorite coffee condiments."
-
-/obj/item/storage/box/coffee_condi_display/Initialize(mapload)
- . = ..()
- var/datum/component/storage/STR = GetComponent(/datum/component/storage)
- STR.max_items = 14
- STR.set_holdable(list(
- /obj/item/reagent_containers/food/condiment/pack/sugar,
- /obj/item/reagent_containers/food/condiment/pack/creamer,
- /obj/item/reagent_containers/food/condiment/pack/astrotame,
- ))
-
-/obj/item/storage/box/coffee_condi_display/PopulateContents()
- for(var/i in 1 to 4)
- new /obj/item/reagent_containers/food/condiment/pack/sugar(src)
- new /obj/item/reagent_containers/food/condiment/pack/creamer(src)
- new /obj/item/reagent_containers/food/condiment/pack/astrotame(src)
diff --git a/code/game/objects/items/storage/firstaid.dm b/code/game/objects/items/storage/firstaid.dm
index 4505f596907..bac896c0b8d 100644
--- a/code/game/objects/items/storage/firstaid.dm
+++ b/code/game/objects/items/storage/firstaid.dm
@@ -306,7 +306,7 @@
name = "pill bottle"
desc = "It's an airtight container for storing medication."
icon_state = "pill_canister"
- icon = 'icons/obj/chemical.dmi'
+ icon = 'icons/obj/chemical/medicine.dmi'
item_state = "contsolid"
lefthand_file = 'icons/mob/inhands/equipment/medical_lefthand.dmi'
righthand_file = 'icons/mob/inhands/equipment/medical_righthand.dmi'
diff --git a/code/game/objects/items/storage/toolbox.dm b/code/game/objects/items/storage/toolbox.dm
index c703aeb38a0..87497a2a756 100644
--- a/code/game/objects/items/storage/toolbox.dm
+++ b/code/game/objects/items/storage/toolbox.dm
@@ -10,7 +10,7 @@
throwforce = 12
throw_speed = 2
throw_range = 7
- w_class = WEIGHT_CLASS_BULKY
+ w_class = WEIGHT_CLASS_NORMAL
custom_materials = list(/datum/material/iron = 500)
attack_verb = list("robusted")
hitsound = 'sound/weapons/smash.ogg'
diff --git a/code/game/objects/items/storage/uplink_kits.dm b/code/game/objects/items/storage/uplink_kits.dm
index d91fc622cd5..702416e4202 100644
--- a/code/game/objects/items/storage/uplink_kits.dm
+++ b/code/game/objects/items/storage/uplink_kits.dm
@@ -22,7 +22,7 @@
new /obj/item/multitool/ai_detect(src) // 1 tc
new /obj/item/encryptionkey/syndicate(src) // 2 tc
new /obj/item/reagent_containers/syringe/mulligan(src) // 4 tc
- new /obj/item/switchblade(src) //I'll count this as 2 tc
+ new /obj/item/kitchen/knife/switchblade(src) //I'll count this as 2 tc
new /obj/item/storage/fancy/cigarettes/cigpack_syndicate (src) // 2 tc this shit heals
new /obj/item/flashlight/emp(src) // 2 tc
new /obj/item/chameleon(src) // 7 tc
@@ -195,7 +195,7 @@
if("made_man")
new /obj/effect/spawner/lootdrop/mafia_outfit(src) // 0 TC, just an outfit for the new 'don of this family
new /obj/item/gun/ballistic/automatic/smg/firestorm/pan(src) // 20 TC, a gun with 50 .45 bullets on a three round burst is kinda outstanding
- new /obj/item/switchblade(src) // 3 TC? It's nice, but it's really a stealth/oh fuck I'm out of ammo weapon
+ new /obj/item/kitchen/knife/switchblade(src) // 3 TC? It's nice, but it's really a stealth/oh fuck I'm out of ammo weapon
new /obj/item/reagent_containers/food/drinks/bottle/vodka (src) // 5 TC, free molotov assemblies
new /obj/item/reagent_containers/food/drinks/bottle/vodka (src)
new /obj/item/reagent_containers/food/drinks/bottle/vodka (src)
diff --git a/code/game/objects/items/stunbaton.dm b/code/game/objects/items/stunbaton.dm
index e1ad81e2141..3265b36a3b4 100644
--- a/code/game/objects/items/stunbaton.dm
+++ b/code/game/objects/items/stunbaton.dm
@@ -300,8 +300,8 @@
preload_cell_type = /obj/item/stock_parts/cell/high
/obj/item/melee/baton/boomerang
- name = "\improper OZtek Boomerang"
- desc = "A device invented in 2486 for the great Space Emu War by the confederacy of Australicus, these high-tech boomerangs also work exceptionally well at stunning crewmembers. Just be careful to catch it when thrown!"
+ name = "\improper baton boomerang"
+ desc = "Apparently, someone thought that attaching the stunning part of a baton to a boomerang was a good idea. Just be careful to catch it when thrown!"
throw_speed = 1
icon_state = "boomerang"
item_state = "boomerang"
diff --git a/code/game/objects/items/survery_handheld.dm b/code/game/objects/items/survery_handheld.dm
index 79523b57403..547bdc15023 100644
--- a/code/game/objects/items/survery_handheld.dm
+++ b/code/game/objects/items/survery_handheld.dm
@@ -51,7 +51,7 @@
src_turf.visible_message("Warning: unable to locate valuable information in current sector.")
break
- if(!do_after_mob(user, list(src), survey_delay / penalty))
+ if(!do_after(user, list(src), survey_delay / penalty))
flick(icon_state + "-corrupted", src)
playsound(src, 'sound/machines/buzz-sigh.ogg', 20)
src_turf.visible_message("Warning: results corrupted. Please try again.")
diff --git a/code/game/objects/items/toys.dm b/code/game/objects/items/toys.dm
index 36135889252..b1dfb479b66 100644
--- a/code/game/objects/items/toys.dm
+++ b/code/game/objects/items/toys.dm
@@ -562,7 +562,6 @@
var/datum/fakeDevil/devil = new
var/list/messages = list()
messages += "Some fun facts about: [devil.truename]"
- messages += "[GLOB.lawlorify[LORE][devil.bane]]"
messages += "[GLOB.lawlorify[LORE][devil.obligation]]"
messages += "[GLOB.lawlorify[LORE][devil.ban]]"
messages += "[GLOB.lawlorify[LORE][devil.banish]]"
diff --git a/code/game/objects/items/weaponry.dm b/code/game/objects/items/weaponry.dm
index 9e8d1e3c17b..865ca17e7d5 100644
--- a/code/game/objects/items/weaponry.dm
+++ b/code/game/objects/items/weaponry.dm
@@ -350,44 +350,6 @@ for further reading, please see: https://github.com/tgstation/tgstation/pull/301
attack_verb = list("stabbed", "ripped", "gored", "impaled")
embedding = list("pain_mult" = 8, "embed_chance" = 100, "fall_chance" = 0, "impact_pain_mult" = 15) //55 damage+embed on hit
-/obj/item/switchblade
- name = "switchblade"
- icon_state = "switchblade"
- lefthand_file = 'icons/mob/inhands/weapons/swords_lefthand.dmi'
- righthand_file = 'icons/mob/inhands/weapons/swords_righthand.dmi'
- desc = "A sharp, concealable, spring-loaded knife."
- flags_1 = CONDUCT_1
- force = 3
- w_class = WEIGHT_CLASS_SMALL
- throwforce = 5
- throw_speed = 3
- throw_range = 6
- custom_materials = list(/datum/material/iron=12000)
- hitsound = 'sound/weapons/genhit.ogg'
- attack_verb = list("stubbed", "poked")
- resistance_flags = FIRE_PROOF
- var/extended = 0
-
-/obj/item/switchblade/attack_self(mob/user)
- extended = !extended
- playsound(src.loc, 'sound/weapons/batonextend.ogg', 50, TRUE)
- if(extended)
- force = 20
- w_class = WEIGHT_CLASS_NORMAL
- throwforce = 23
- icon_state = "switchblade_ext"
- attack_verb = list("slashed", "stabbed", "sliced", "torn", "ripped", "diced", "cut")
- hitsound = 'sound/weapons/bladeslice.ogg'
- sharpness = IS_SHARP
- else
- force = 3
- w_class = WEIGHT_CLASS_SMALL
- throwforce = 5
- icon_state = "switchblade"
- attack_verb = list("stubbed", "poked")
- hitsound = 'sound/weapons/genhit.ogg'
- sharpness = IS_BLUNT
-
/obj/item/phone
name = "red phone"
desc = "Should anything ever go wrong..."
diff --git a/code/game/objects/structures.dm b/code/game/objects/structures.dm
index 69efcd42af1..971ba3cbedc 100644
--- a/code/game/objects/structures.dm
+++ b/code/game/objects/structures.dm
@@ -93,7 +93,7 @@
if(HAS_TRAIT(user, TRAIT_FREERUNNING)) //do you have any idea how fast I am???
adjusted_climb_time *= 0.8
structureclimber = user
- if(do_mob(user, user, adjusted_climb_time))
+ if(do_after(user, adjusted_climb_time))
if(src.loc) //Checking if structure has been destroyed
if(do_climb(user))
user.visible_message("[user] climbs onto [src].", \
diff --git a/code/game/objects/structures/beds_chairs/chair.dm b/code/game/objects/structures/beds_chairs/chair.dm
index 76b3fb7a598..045bf39ae9b 100644
--- a/code/game/objects/structures/beds_chairs/chair.dm
+++ b/code/game/objects/structures/beds_chairs/chair.dm
@@ -355,3 +355,12 @@
custom_materials = list(/datum/material/plastic = 2000)
break_chance = 25
origin_type = /obj/structure/chair/plastic
+
+/obj/structure/chair/handrail
+ name = "handrail"
+ icon = 'icons/obj/structures/handrail.dmi'
+ icon_state = "handrail"
+ desc = "A safety railing with buckles to secure yourself to when floor isn't stable enough."
+ item_chair = null
+ buildstackamount = 4
+ buildstacktype = /obj/item/stack/rods
diff --git a/code/game/objects/structures/bedsheet_bin.dm b/code/game/objects/structures/bedsheet_bin.dm
index 35b7663ca05..d57e31ce951 100644
--- a/code/game/objects/structures/bedsheet_bin.dm
+++ b/code/game/objects/structures/bedsheet_bin.dm
@@ -235,6 +235,13 @@ LINEN BINS
item_state = "sheetsolgov"
dream_messages = list("bureaucracy", "laws", "papers", "writing")
+/obj/item/bedsheet/suns
+ name = "\improper SUNS bedsheet"
+ desc = "A gold and purple bedsheet with the SUNS icon on it."
+ icon_state = "sheetsuns"
+ item_state = "sheetsuns"
+ dream_messages = list("learning", "science", "geology", "studying a day before an exam")
+
/obj/item/bedsheet/ian
icon_state = "sheetian"
item_state = "sheetian"
@@ -356,6 +363,13 @@ LINEN BINS
dream_messages = list("bureaucracy", "laws", "papers", "writing")
desc = "It has the emblem of the Solar Confederation emblazoned upon it!"
+/obj/item/bedsheet/double/suns
+ name = "double SUNS bedsheet"
+ desc = "A large gold and purple bedsheet with the SUNS icon on it."
+ icon_state = "double_sheetsuns"
+ item_state = "double_sheetsuns"
+ dream_messages = list("learning", "science", "geology", "studying a day before an exam")
+
/obj/item/bedsheet/random/Initialize()
..()
var/type = pick(typesof(/obj/item/bedsheet) - (typesof(/obj/item/bedsheet/double) + /obj/item/bedsheet/random))
diff --git a/code/game/objects/structures/crates_lockers/closets.dm b/code/game/objects/structures/crates_lockers/closets.dm
index 417a1f8d86a..714129498e4 100644
--- a/code/game/objects/structures/crates_lockers/closets.dm
+++ b/code/game/objects/structures/crates_lockers/closets.dm
@@ -343,7 +343,7 @@
"You [actuallyismob ? "try to ":""]stuff [O] into [src].", \
"You hear clanging.")
if(actuallyismob)
- if(do_after_mob(user, targets, 40))
+ if(do_after(user, 40, targets))
user.visible_message(
"[user] stuffs [O] into [src].", \
"You stuff [O] into [src].", \
diff --git a/code/game/objects/structures/crates_lockers/closets/job_closets.dm b/code/game/objects/structures/crates_lockers/closets/job_closets.dm
index 0e65a5aeb76..dac919bb428 100644
--- a/code/game/objects/structures/crates_lockers/closets/job_closets.dm
+++ b/code/game/objects/structures/crates_lockers/closets/job_closets.dm
@@ -98,7 +98,7 @@
icon_door = "black"
/obj/structure/closet/wardrobe/chaplain_black/PopulateContents()
- new /obj/item/choice_beacon/holy(src)
+ new /obj/item/storage/box/holy(src)
new /obj/item/clothing/accessory/pocketprotector/cosmetology(src)
new /obj/item/clothing/under/rank/civilian/chaplain(src)
new /obj/item/clothing/shoes/sneakers/black(src)
diff --git a/code/game/objects/structures/crates_lockers/closets/secure/engineering.dm b/code/game/objects/structures/crates_lockers/closets/secure/engineering.dm
index a11e647a706..f3aca3e96a9 100644
--- a/code/game/objects/structures/crates_lockers/closets/secure/engineering.dm
+++ b/code/game/objects/structures/crates_lockers/closets/secure/engineering.dm
@@ -5,11 +5,9 @@
/obj/structure/closet/secure_closet/engineering_chief/PopulateContents()
..()
- //WS Begin
new /obj/item/clothing/head/beret/ce(src) //Berets
new /obj/item/clothing/under/rank/command(src) //Better command uniforms
new /obj/item/stack/tape/industrial/pro(src) //Better tape
- //WS End
new /obj/item/clothing/neck/cloak/ce(src)
new /obj/item/clothing/under/rank/engineering/chief_engineer(src)
new /obj/item/clothing/under/rank/engineering/chief_engineer/skirt(src)
@@ -40,9 +38,7 @@
/obj/structure/closet/secure_closet/engineering_electrical/PopulateContents()
..()
var/static/items_inside = list(
- //WS Begin
/obj/item/stack/tape/industrial/electrical = 1, // Better tape
- //WS End
/obj/item/clothing/gloves/color/yellow = 2,
/obj/item/storage/toolbox/electrical = 3,
/obj/item/electronics/apc = 3,
diff --git a/code/game/objects/structures/crates_lockers/closets/secure/medical.dm b/code/game/objects/structures/crates_lockers/closets/secure/medical.dm
index cfdcca348b1..6c01be326e7 100644
--- a/code/game/objects/structures/crates_lockers/closets/secure/medical.dm
+++ b/code/game/objects/structures/crates_lockers/closets/secure/medical.dm
@@ -79,13 +79,11 @@
/obj/structure/closet/secure_closet/CMO/PopulateContents()
..()
- //WS Begin
new /obj/item/storage/belt/medical(src) //Gives the CMO a belt
new /obj/item/storage/bag/medical(src) //Medibags
new /obj/item/clothing/head/beret/cmo(src) //Berets
new /obj/item/clothing/under/rank/command(src) //Better command uniforms
new /obj/item/storage/box/hypospray/CMO(src) //Hypo mk. 2s
- //WS End
new /obj/item/clothing/neck/cloak/cmo(src)
new /obj/item/clothing/suit/bio_suit/cmo(src)
new /obj/item/clothing/head/bio_hood/cmo(src)
diff --git a/code/game/objects/structures/crates_lockers/closets/secure/misc.dm b/code/game/objects/structures/crates_lockers/closets/secure/misc.dm
index 165dac720c0..e05bd452423 100644
--- a/code/game/objects/structures/crates_lockers/closets/secure/misc.dm
+++ b/code/game/objects/structures/crates_lockers/closets/secure/misc.dm
@@ -65,3 +65,7 @@
new /obj/item/storage/box/smart_metal_foam(src)
for(var/i in 1 to 3)
new /obj/item/rcd_ammo/large(src)
+
+/obj/structure/closet/secure_closet/suns
+ name = "SUNS locker"
+ icon_state = "suns"
diff --git a/code/game/objects/structures/crates_lockers/closets/syndicate.dm b/code/game/objects/structures/crates_lockers/closets/syndicate.dm
index ee9a29945aa..fc0aae86078 100644
--- a/code/game/objects/structures/crates_lockers/closets/syndicate.dm
+++ b/code/game/objects/structures/crates_lockers/closets/syndicate.dm
@@ -105,7 +105,7 @@
/obj/item/stack/sheet/mineral/plasma,
/obj/item/stack/sheet/mineral/uranium,
/obj/item/stack/sheet/mineral/diamond,
- /obj/item/stack/sheet/mineral/bananium,
+ /obj/item/stack/sheet/mineral/hidden/hellstone,
/obj/item/stack/sheet/plasteel,
/obj/item/stack/sheet/mineral/titanium,
/obj/item/stack/sheet/mineral/plastitanium,
diff --git a/code/game/objects/structures/door_assembly_types.dm b/code/game/objects/structures/door_assembly_types.dm
index 2558993a527..d2bcf77cfda 100644
--- a/code/game/objects/structures/door_assembly_types.dm
+++ b/code/game/objects/structures/door_assembly_types.dm
@@ -214,14 +214,6 @@
mineral = "plasma"
glass_type = /obj/machinery/door/airlock/plasma/glass
-/obj/structure/door_assembly/door_assembly_bananium
- name = "bananium airlock assembly"
- desc = "Honk."
- icon = 'icons/obj/doors/airlocks/station/bananium.dmi'
- base_name = "bananium airlock"
- airlock_type = /obj/machinery/door/airlock/bananium
- mineral = "bananium"
- glass_type = /obj/machinery/door/airlock/bananium/glass
/obj/structure/door_assembly/door_assembly_sandstone
name = "sandstone airlock assembly"
diff --git a/code/game/objects/structures/false_walls.dm b/code/game/objects/structures/false_walls.dm
index a0097504c1d..d5a8c3e496c 100644
--- a/code/game/objects/structures/false_walls.dm
+++ b/code/game/objects/structures/false_walls.dm
@@ -269,19 +269,6 @@
if(exposed_temperature > 300)
burnbabyburn()
-/obj/structure/falsewall/bananium
- name = "bananium wall"
- desc = "A wall with bananium plating. Honk!"
- icon = 'icons/turf/walls/bananium_wall.dmi'
- icon_state = "bananium_wall-0"
- base_icon_state = "bananium_wall"
- mineral = /obj/item/stack/sheet/mineral/bananium
- walltype = /turf/closed/wall/mineral/bananium
- smoothing_flags = SMOOTH_BITMASK
- smoothing_groups = list(SMOOTH_GROUP_WALLS, SMOOTH_GROUP_BANANIUM_WALLS)
- canSmoothWith = list(SMOOTH_GROUP_BANANIUM_WALLS)
-
-
/obj/structure/falsewall/sandstone
name = "sandstone wall"
desc = "A wall with sandstone plating. Rough."
diff --git a/code/game/objects/structures/fugitive_role_spawners.dm b/code/game/objects/structures/fugitive_role_spawners.dm
deleted file mode 100644
index 4f98e919ffc..00000000000
--- a/code/game/objects/structures/fugitive_role_spawners.dm
+++ /dev/null
@@ -1,58 +0,0 @@
-
-
-/obj/effect/mob_spawn/human/fugitive
- assignedrole = "Fugitive Hunter"
- flavour_text = "" //the flavor text will be the backstory argument called on the antagonist's greet, see hunter.dm for details
- roundstart = FALSE
- death = FALSE
- random = TRUE
- show_flavour = FALSE
- density = TRUE
- var/back_story = "error"
-
-/obj/effect/mob_spawn/human/fugitive/Initialize(mapload)
- . = ..()
- notify_ghosts("Hunters are waking up looking for refugees!", source = src, action=NOTIFY_ATTACK, flashwindow = FALSE, ignore_key = POLL_IGNORE_FUGITIVE)
-
-/obj/effect/mob_spawn/human/fugitive/spacepol
- name = "police pod"
- desc = "A small sleeper typically used to put people to sleep for briefing on the mission."
- mob_name = "a spacepol officer"
- flavour_text = "Justice has arrived. I am a member of the Spacepol!"
- back_story = "space cop"
- outfit = /datum/outfit/spacepol
- icon = 'icons/obj/machines/sleeper.dmi'
- icon_state = "sleeper"
-
-/obj/effect/mob_spawn/human/fugitive/russian
- name = "russian pod"
- flavour_text = "Ay blyat. I am a space-russian smuggler! We were mid-flight when our cargo was beamed off our ship!"
- back_story = "russian"
- desc = "A small sleeper typically used to make long distance travel a bit more bearable."
- mob_name = "russian"
- outfit = /datum/outfit/frontier/hunter
- icon = 'icons/obj/machines/sleeper.dmi'
- icon_state = "sleeper"
-
-/obj/effect/mob_spawn/human/fugitive/bounty
- name = "bounty hunter pod"
- flavour_text = "We got a new bounty on some fugitives, dead or alive."
- back_story = "bounty hunters"
- desc = "A small sleeper typically used to make long distance travel a bit more bearable."
- mob_name = "bounty hunter"
- icon = 'icons/obj/machines/sleeper.dmi'
- icon_state = "sleeper"
-
-/obj/effect/mob_spawn/human/fugitive/bounty/Destroy()
- var/obj/structure/fluff/empty_sleeper/S = new(drop_location())
- S.setDir(dir)
- return ..()
-
-/obj/effect/mob_spawn/human/fugitive/bounty/armor
- outfit = /datum/outfit/bountyarmor
-
-/obj/effect/mob_spawn/human/fugitive/bounty/hook
- outfit = /datum/outfit/bountyhook
-
-/obj/effect/mob_spawn/human/fugitive/bounty/synth
- outfit = /datum/outfit/bountysynth
diff --git a/code/game/objects/structures/ghost_role_spawners.dm b/code/game/objects/structures/ghost_role_spawners.dm
index 112218650f8..aed3ae724c5 100644
--- a/code/game/objects/structures/ghost_role_spawners.dm
+++ b/code/game/objects/structures/ghost_role_spawners.dm
@@ -211,37 +211,3 @@
/obj/effect/mob_spawn/human/pirate/gunner
rank = "Gunner"
-
-/datum/outfit/syndicatespace
- name = "Syndicate Spacer"
- uniform = /obj/item/clothing/under/syndicate/combat
- mask = /obj/item/clothing/mask/gas/syndicate
-
-/datum/outfit/syndicatespace/syndicrew
- name = "Syndicate Ship Crew Member"
- glasses = /obj/item/clothing/glasses/night
- ears = /obj/item/radio/headset/syndicate/alt
- shoes = /obj/item/clothing/shoes/combat
- gloves = /obj/item/clothing/gloves/combat
- back = /obj/item/storage/backpack
- l_pocket = /obj/item/gun/ballistic/automatic/pistol
- r_pocket = /obj/item/kitchen/knife/combat/survival
- belt = /obj/item/storage/belt/military/assault
- id = /obj/item/card/id/syndicate_command/crew_id
- implants = list(/obj/item/implant/weapons_auth)
-
-/datum/outfit/syndicatespace/syndicaptain
- name = "Syndicate Ship Captain"
- suit = /obj/item/clothing/suit/armor/vest/capcarapace/syndicate
- glasses = /obj/item/clothing/glasses/night
- head = /obj/item/clothing/head/HoS/beret/syndicate
- ears = /obj/item/radio/headset/syndicate/alt/captain
- shoes = /obj/item/clothing/shoes/combat
- gloves = /obj/item/clothing/gloves/combat
- back = /obj/item/storage/backpack
- l_pocket = /obj/item/gun/ballistic/automatic/pistol/APS
- r_pocket = /obj/item/kitchen/knife/combat/survival
- belt = /obj/item/storage/belt/military/assault
- id = /obj/item/card/id/syndicate_command/captain_id
- backpack_contents = list(/obj/item/documents/syndicate/red, /obj/item/paper/fluff/ruins/forgottenship/password)
- implants = list(/obj/item/implant/weapons_auth)
diff --git a/code/game/objects/structures/girders.dm b/code/game/objects/structures/girders.dm
index 25822d69ff0..6463282eb6d 100644
--- a/code/game/objects/structures/girders.dm
+++ b/code/game/objects/structures/girders.dm
@@ -364,7 +364,7 @@
add_fingerprint(user)
if(istype(W, /obj/item/melee/cultblade/dagger) && iscultist(user)) //Cultists can demolish cult girders instantly with their tomes
user.visible_message("[user] strikes [src] with [W]!", "You demolish [src].")
- new /obj/item/stack/sheet/runed_metal(drop_location(), 1)
+ new /obj/item/stack/sheet/mineral/hidden/hellstone(drop_location(), 1)
qdel(src)
else if(W.tool_behaviour == TOOL_WELDER)
@@ -374,19 +374,19 @@
to_chat(user, "You start slicing apart the girder...")
if(W.use_tool(src, user, 40, volume=50))
to_chat(user, "You slice apart the girder.")
- var/obj/item/stack/sheet/runed_metal/R = new(drop_location(), 1)
+ var/obj/item/stack/sheet/mineral/hidden/hellstone/R = new(drop_location(), 1)
transfer_fingerprints_to(R)
qdel(src)
else if(istype(W, /obj/item/pickaxe/drill/jackhammer))
to_chat(user, "Your jackhammer smashes through the girder!")
- var/obj/item/stack/sheet/runed_metal/R = new(drop_location(), 2)
+ var/obj/item/stack/sheet/mineral/hidden/hellstone/R = new(drop_location(), 2)
transfer_fingerprints_to(R)
W.play_tool_sound(src)
qdel(src)
- else if(istype(W, /obj/item/stack/sheet/runed_metal))
- var/obj/item/stack/sheet/runed_metal/R = W
+ else if(istype(W, /obj/item/stack/sheet/mineral/hidden/hellstone))
+ var/obj/item/stack/sheet/mineral/hidden/hellstone/R = W
if(R.get_amount() < 1)
to_chat(user, "You need at least one sheet of runed metal to construct a runed wall!")
return 0
@@ -408,7 +408,7 @@
/obj/structure/girder/cult/deconstruct(disassembled = TRUE)
if(!(flags_1 & NODECONSTRUCT_1))
- new /obj/item/stack/sheet/runed_metal(drop_location(), 1)
+ new /obj/item/stack/sheet/mineral/hidden/hellstone(drop_location(), 1)
qdel(src)
/obj/structure/girder/rcd_vals(mob/user, obj/item/construction/rcd/the_rcd)
diff --git a/code/game/objects/structures/icemoon/cave_entrance.dm b/code/game/objects/structures/icemoon/cave_entrance.dm
index 07ecef04afa..91085fe9f10 100644
--- a/code/game/objects/structures/icemoon/cave_entrance.dm
+++ b/code/game/objects/structures/icemoon/cave_entrance.dm
@@ -5,7 +5,6 @@ GLOBAL_LIST_INIT(ore_probability, list(
/obj/item/stack/ore/silver = 50,
/obj/item/stack/ore/gold = 50,
/obj/item/stack/ore/diamond = 25,
- /obj/item/stack/ore/bananium = 5,
/obj/item/stack/ore/titanium = 75,
/obj/item/pickaxe/diamond = 15,
/obj/item/borg/upgrade/modkit/cooldown = 5,
@@ -207,7 +206,7 @@ GLOBAL_LIST_INIT(ore_probability, list(
*/
/obj/effect/collapsing_demonic_portal/proc/drop_loot()
visible_message("Something slips out of [src]!")
- var/loot = rand(1, 23)
+ var/loot = rand(1, 21)
switch(loot)
if(1)//Clown hell. God help you if you roll this.
visible_message("You can hear screaming and joyful honking.")//now THIS is what we call a critical failure
@@ -258,8 +257,7 @@ GLOBAL_LIST_INIT(ore_probability, list(
new /mob/living/simple_animal/hostile/clown/fleshclown(loc)
if(prob(25))//you lost
new /obj/item/circlegame(loc)
- new /obj/item/stack/sheet/mineral/bananium(loc)
- new /turf/open/floor/mineral/bananium(loc)
+ new /obj/item/stack/sheet/mineral/hidden/hellstone(loc)
if(2)//basic demonic incursion
visible_message("You glimpse an indescribable abyss in the portal. Horrifying monsters appear in a gout of flame.")
playsound(loc,'sound/hallucinations/wail.ogg', 200, FALSE, 50, TRUE, TRUE)
@@ -312,18 +310,18 @@ GLOBAL_LIST_INIT(ore_probability, list(
playsound(loc,'sound/ambience/ambiholy.ogg', 100, FALSE, 50, TRUE, TRUE)
if(prob(30))
new /obj/item/reagent_containers/glass/bottle/potion/flight(loc)
- new /mob/living/simple_animal/hostile/skeleton/templar(loc)
+ new /mob/living/simple_animal/hostile/human/skeleton/templar(loc)
else
new /obj/item/clothing/neck/memento_mori(loc)
- new /mob/living/simple_animal/hostile/skeleton(loc)
- new /mob/living/simple_animal/hostile/skeleton/templar(loc)
+ new /mob/living/simple_animal/hostile/human/skeleton(loc)
+ new /mob/living/simple_animal/hostile/human/skeleton/templar(loc)
if(prob(35))
new /obj/item/storage/box/holy_grenades(loc)
- new /mob/living/simple_animal/hostile/skeleton/templar(loc)
- new /mob/living/simple_animal/hostile/skeleton/templar(loc)
+ new /mob/living/simple_animal/hostile/human/skeleton/templar(loc)
+ new /mob/living/simple_animal/hostile/human/skeleton/templar(loc)
if(prob(40))
new /obj/item/claymore(loc)
- new /mob/living/simple_animal/hostile/skeleton/templar(loc)
+ new /mob/living/simple_animal/hostile/human/skeleton/templar(loc)
if(prob(45))
new /obj/item/gun/ballistic/bow(loc)
new /obj/item/storage/bag/quiver(loc)
@@ -332,38 +330,30 @@ GLOBAL_LIST_INIT(ore_probability, list(
new /obj/item/ammo_casing/caseless/arrow/bronze(loc)
new /obj/item/ammo_casing/caseless/arrow/bronze(loc)
new /obj/item/ammo_casing/caseless/arrow/bronze(loc)
- new /mob/living/simple_animal/hostile/skeleton/templar(loc)
- new /mob/living/simple_animal/hostile/skeleton(loc)
+ new /mob/living/simple_animal/hostile/human/skeleton/templar(loc)
+ new /mob/living/simple_animal/hostile/human/skeleton(loc)
if(prob(30))
new /obj/item/stack/sheet/mineral/wood/fifty(loc)
- new /mob/living/simple_animal/hostile/skeleton(loc)
- new /mob/living/simple_animal/hostile/skeleton(loc)
+ new /mob/living/simple_animal/hostile/human/skeleton(loc)
+ new /mob/living/simple_animal/hostile/human/skeleton(loc)
if(prob(35))
new /obj/item/staff/bostaff(loc)
- new /mob/living/simple_animal/hostile/skeleton(loc)
- new /mob/living/simple_animal/hostile/skeleton(loc)
- if(prob(45))
- new /obj/item/disk/design_disk/adv/cleric_mace(loc)
- new /mob/living/simple_animal/hostile/skeleton(loc)
- new /mob/living/simple_animal/hostile/skeleton(loc)
+ new /mob/living/simple_animal/hostile/human/skeleton(loc)
+ new /mob/living/simple_animal/hostile/human/skeleton(loc)
if(prob(25))
new /obj/item/shield/riot/roman(loc)
- new /mob/living/simple_animal/hostile/skeleton(loc)
+ new /mob/living/simple_animal/hostile/human/skeleton(loc)
if(prob(55))
new /obj/item/clothing/suit/armor/riot/knight/blue(loc)
new /obj/item/clothing/head/helmet/knight/blue(loc)
- new /mob/living/simple_animal/hostile/skeleton(loc)
- new /mob/living/simple_animal/hostile/skeleton(loc)
- if(prob(35))
- new /obj/item/disk/design_disk/adv/knight_gear(loc)
- new /mob/living/simple_animal/hostile/skeleton(loc)
- new /mob/living/simple_animal/hostile/skeleton(loc)
+ new /mob/living/simple_animal/hostile/human/skeleton(loc)
+ new /mob/living/simple_animal/hostile/human/skeleton(loc)
new /obj/item/instrument/trombone(loc)
new /obj/item/stack/sheet/bone(loc)
new /obj/item/stack/sheet/bone(loc)
new /obj/item/stack/sheet/bone(loc)
new /obj/item/stack/sheet/bone(loc)
- new /mob/living/simple_animal/hostile/skeleton/templar(loc)
+ new /mob/living/simple_animal/hostile/human/skeleton/templar(loc)
new /turf/open/floor/mineral/silver(loc)
if(4)//syndicate incursion. Again, high-quality loot at low chances, this time with excessive levels of danger
visible_message("Radio chatter echoes out from the portal. Red-garbed figures step through, weapons raised.")
@@ -372,74 +362,74 @@ GLOBAL_LIST_INIT(ore_probability, list(
if(prob(35))
if(prob(15))
new /obj/item/clothing/suit/space/hardsuit/syndi/elite(loc)
- new /mob/living/simple_animal/hostile/syndicate/ranged/smg/space(loc)
+ new /mob/living/simple_animal/hostile/human/syndicate/ranged/smg/space(loc)
else
if(prob(50))
new /obj/item/clothing/suit/space/hardsuit/syndi(loc)
- new /mob/living/simple_animal/hostile/syndicate/ranged/smg/space(loc)
+ new /mob/living/simple_animal/hostile/human/syndicate/ranged/smg/space(loc)
else
new /obj/item/clothing/suit/space/hardsuit/syndi(loc)
- new /mob/living/simple_animal/hostile/syndicate/ranged/smg/space(loc)
- new /mob/living/simple_animal/hostile/syndicate/ranged/smg/space(loc)
+ new /mob/living/simple_animal/hostile/human/syndicate/ranged/smg/space(loc)
+ new /mob/living/simple_animal/hostile/human/syndicate/ranged/smg/space(loc)
if(prob(25))//the real prize
new /obj/effect/spawner/lootdrop/donkpockets(loc)
new /obj/effect/spawner/lootdrop/donkpockets(loc)
new /obj/effect/spawner/lootdrop/donkpockets(loc)
if(prob(35))
new /obj/item/clothing/shoes/magboots/syndie(loc)
- new /mob/living/simple_animal/hostile/syndicate/ranged/smg/space(loc)
+ new /mob/living/simple_animal/hostile/human/syndicate/ranged/smg/space(loc)
if(prob(25))
new /obj/item/gun/ballistic/automatic/pistol/suppressed(loc)
new /obj/item/ammo_box/magazine/
- new /mob/living/simple_animal/hostile/syndicate/melee/sword(loc)
+ new /mob/living/simple_animal/hostile/human/syndicate/melee/sword(loc)
if(prob(25))
new /obj/item/gun/ballistic/automatic/pistol/tec9(loc)
new /obj/item/ammo_box/magazine/tec9(loc)
new /obj/item/ammo_box/magazine/tec9(loc)
- new /mob/living/simple_animal/hostile/syndicate/melee/sword(loc)
+ new /mob/living/simple_animal/hostile/human/syndicate/melee/sword(loc)
if(prob(35))
new /obj/item/clothing/gloves/rapid(loc)
- new /mob/living/simple_animal/hostile/syndicate/melee/sword/space(loc)
- new /mob/living/simple_animal/hostile/syndicate/ranged/smg/space(loc)
+ new /mob/living/simple_animal/hostile/human/syndicate/melee/sword/space(loc)
+ new /mob/living/simple_animal/hostile/human/syndicate/ranged/smg/space(loc)
if(prob(35))
new /obj/item/wrench/combat(loc)
new /obj/item/storage/toolbox/syndicate(loc)
- new /mob/living/simple_animal/hostile/syndicate/melee/sword/space(loc)
+ new /mob/living/simple_animal/hostile/human/syndicate/melee/sword/space(loc)
if(prob(35))
new /obj/item/storage/fancy/cigarettes/cigpack_syndicate(loc)
if(prob(35))
new /obj/item/borg/upgrade/transform/assault(loc)
- new /mob/living/simple_animal/hostile/syndicate/ranged/smg(loc)
+ new /mob/living/simple_animal/hostile/human/syndicate/ranged/smg(loc)
if(prob(25))
- new /mob/living/simple_animal/hostile/syndicate/ranged/smg(loc)
- new /mob/living/simple_animal/hostile/syndicate/ranged/smg/space(loc)
+ new /mob/living/simple_animal/hostile/human/syndicate/ranged/smg(loc)
+ new /mob/living/simple_animal/hostile/human/syndicate/ranged/smg/space(loc)
if(prob(25))
- new /mob/living/simple_animal/hostile/syndicate/melee/sword/space(loc)
- new /mob/living/simple_animal/hostile/syndicate/ranged/smg/space(loc)
+ new /mob/living/simple_animal/hostile/human/syndicate/melee/sword/space(loc)
+ new /mob/living/simple_animal/hostile/human/syndicate/ranged/smg/space(loc)
if(prob(25))
- new /mob/living/simple_animal/hostile/syndicate/melee/sword(loc)
+ new /mob/living/simple_animal/hostile/human/syndicate/melee/sword(loc)
new /obj/item/storage/backpack/duffelbag/syndie/c4(loc)
if(prob(35))
new /obj/item/storage/belt/military(loc)
- new /mob/living/simple_animal/hostile/syndicate/ranged/smg(loc)
+ new /mob/living/simple_animal/hostile/human/syndicate/ranged/smg(loc)
if(prob(35))
new /obj/item/kinetic_crusher/syndie_crusher(loc)
- new /mob/living/simple_animal/hostile/syndicate/ranged/smg(loc)
- new /mob/living/simple_animal/hostile/syndicate/ranged/smg/space(loc)
+ new /mob/living/simple_animal/hostile/human/syndicate/ranged/smg(loc)
+ new /mob/living/simple_animal/hostile/human/syndicate/ranged/smg/space(loc)
if(prob(25))
new /obj/item/card/id/syndicate/anyone(loc)
if(prob(35))
new /obj/item/clothing/glasses/thermal/syndi(loc)
- new /mob/living/simple_animal/hostile/syndicate/melee/sword(loc)
+ new /mob/living/simple_animal/hostile/human/syndicate/melee/sword(loc)
if(prob(35))
new /obj/item/reagent_containers/hypospray(loc)
- new /mob/living/simple_animal/hostile/syndicate/ranged/shotgun(loc)
- new /mob/living/simple_animal/hostile/syndicate/melee/sword(loc)
+ new /mob/living/simple_animal/hostile/human/syndicate/ranged/shotgun(loc)
+ new /mob/living/simple_animal/hostile/human/syndicate/melee/sword(loc)
if(prob(25))
new /obj/item/card/emag(loc)
- new /mob/living/simple_animal/hostile/syndicate/melee/sword(loc)
- new /mob/living/simple_animal/hostile/syndicate/ranged/smg/space(loc)
- new /mob/living/simple_animal/hostile/syndicate/melee/sword/space(loc)
+ new /mob/living/simple_animal/hostile/human/syndicate/melee/sword(loc)
+ new /mob/living/simple_animal/hostile/human/syndicate/ranged/smg/space(loc)
+ new /mob/living/simple_animal/hostile/human/syndicate/melee/sword/space(loc)
new /turf/open/floor/mineral/plastitanium/red(loc)
if(5)//;HELP BLOB IN MEDICAL
visible_message("You hear a robotic voice saying something about a \"Delta-level biohazard\".")
@@ -618,19 +608,19 @@ GLOBAL_LIST_INIT(ore_probability, list(
visible_message("You catch a brief glimpse of a vast production complex. One of the assembly lines outputs through the portal!")
playsound(loc,'sound/ambience/antag/clockcultalr.ogg', 100, FALSE, 50, TRUE, TRUE)
if(prob(45))
- new /obj/item/stack/sheet/mineral/adamantine/ten(loc)
- new /obj/item/stack/sheet/mineral/runite/ten(loc)
- new /obj/item/stack/sheet/mineral/mythril/ten(loc)
+ new /obj/item/stack/sheet/mineral/hidden/hellstone/ten(loc)
+ new /obj/item/stack/sheet/mineral/hidden/hellstone/ten(loc)
+ new /obj/item/stack/sheet/mineral/hidden/hellstone/ten(loc)
new /mob/living/simple_animal/hostile/hivebot(loc)
if(prob(35))
- new /obj/item/stack/sheet/mineral/adamantine/ten(loc)
- new /obj/item/stack/sheet/mineral/runite/ten(loc)
- new /obj/item/stack/sheet/mineral/mythril/ten(loc)
+ new /obj/item/stack/sheet/mineral/hidden/hellstone/ten(loc)
+ new /obj/item/stack/sheet/mineral/hidden/hellstone/ten(loc)
+ new /obj/item/stack/sheet/mineral/hidden/hellstone/ten(loc)
new /mob/living/simple_animal/hostile/hivebot(loc)
if(prob(25))
- new /obj/item/stack/sheet/mineral/adamantine/ten(loc)
- new /obj/item/stack/sheet/mineral/runite/ten(loc)
- new /obj/item/stack/sheet/mineral/mythril/ten(loc)
+ new /obj/item/stack/sheet/mineral/hidden/hellstone/ten(loc)
+ new /obj/item/stack/sheet/mineral/hidden/hellstone/ten(loc)
+ new /obj/item/stack/sheet/mineral/hidden/hellstone/ten(loc)
new /mob/living/simple_animal/hostile/hivebot/strong(loc)
if(prob(35))
new /obj/item/stack/sheet/mineral/silver/twenty(loc)
@@ -665,9 +655,9 @@ GLOBAL_LIST_INIT(ore_probability, list(
new /obj/item/circuitboard/machine/ore_silo(loc)
new /mob/living/simple_animal/hostile/hivebot/mechanic(loc)
if(prob(35))
- new /obj/item/stack/sheet/mineral/adamantine/ten(loc)
- new /obj/item/stack/sheet/mineral/runite/ten(loc)
- new /obj/item/stack/sheet/mineral/mythril/ten(loc)
+ new /obj/item/stack/sheet/mineral/hidden/hellstone/ten(loc)
+ new /obj/item/stack/sheet/mineral/hidden/hellstone/ten(loc)
+ new /obj/item/stack/sheet/mineral/hidden/hellstone/ten(loc)
new /mob/living/simple_animal/hostile/hivebot/strong(loc)
if(prob(35))
new /obj/item/circuitboard/machine/medipen_refiller(loc)
@@ -745,7 +735,6 @@ GLOBAL_LIST_INIT(ore_probability, list(
new /obj/item/clothing/suit/space/hardsuit/carp(loc)
new /mob/living/simple_animal/hostile/carp(loc)
if(prob(45))
- new /obj/item/gun/magic/hook(loc)
new /mob/living/simple_animal/hostile/carp(loc)
if(prob(45))
new /obj/item/reagent_containers/food/snacks/fishmeat/carp(loc)
@@ -827,41 +816,7 @@ GLOBAL_LIST_INIT(ore_probability, list(
new /obj/item/geiger_counter(loc)
new /mob/living/simple_animal/hostile/cockroach/glockroach(loc)
new /turf/open/floor/plating/dirt(loc)
-
- if(15)//the cultists amoung us
- visible_message("Chanting and a hateful red glow spill through the portal.")
- playsound(loc,'sound/spookoween/ghost_whisper.ogg', 100, FALSE, 50, TRUE, TRUE)
- if(prob(50))
- new /mob/living/simple_animal/hostile/construct/proteon/hostile(loc)
- if(prob(45))
- new /obj/item/borg/upgrade/modkit/lifesteal(loc)
- new /obj/item/bedsheet/cult(loc)
- new /mob/living/simple_animal/hostile/construct/wraith/hostile(loc)
- if(prob(50))
- new /obj/item/stack/sheet/runed_metal/ten(loc)
- if(prob(35))
- new /obj/item/sharpener/cult(loc)
- new /mob/living/simple_animal/hostile/construct/artificer/hostile(loc)
- if(prob(15))
- new /obj/item/cult_bastard(loc)
- new /mob/living/simple_animal/hostile/construct/juggernaut/hostile(loc)
- if(prob(35))
- new /obj/item/cult_shift(loc)
- new /mob/living/simple_animal/hostile/construct/proteon/hostile(loc)
- if(prob(45))
- new /obj/item/gem/bloodstone(loc)
- new /mob/living/simple_animal/hostile/construct/proteon/hostile(loc)
- if(prob(35))
- new /obj/item/nullrod/scythe/talking/necro(loc)
- new /mob/living/simple_animal/hostile/construct/proteon/hostile(loc)
- if(prob(35))
- new /obj/item/clothing/suit/space/hardsuit/cult/(loc)
- new /mob/living/simple_animal/hostile/construct/artificer/hostile(loc)
- new /mob/living/simple_animal/hostile/construct/juggernaut/hostile(loc)
- new /mob/living/simple_animal/hostile/construct/wraith/hostile(loc)
- new /obj/structure/destructible/cult/pylon(loc)
- new /turf/open/floor/plasteel/cult(loc)
- if(16)//the backroom freezer
+ if(15)//the backroom freezer
visible_message("The faint hallogen glow of a faraway kitchen greets you.")
if(prob(45))
new /obj/item/kitchen/knife/bloodletter(loc)
@@ -905,14 +860,14 @@ GLOBAL_LIST_INIT(ore_probability, list(
new /mob/living/simple_animal/hostile/killertomato(loc)
new /mob/living/simple_animal/hostile/alien/maid(loc)
new /turf/open/floor/plasteel/kitchen_coldroom/freezerfloor(loc)
- if(17)//legion miniboss
+ if(16)//legion miniboss
visible_message("The ground quakes. An immense figure reaches through the portal, crouching to squeeze through.")
playsound(loc,'sound/magic/knock.ogg', 100, FALSE, 50, TRUE, TRUE)
new /mob/living/simple_animal/hostile/big_legion(loc)
if(prob(75))
new /obj/structure/closet/crate/necropolis/tendril/greater(loc)
new /turf/open/indestructible/necropolis(loc)
- if(18)//xenobiologist's hubris
+ if(17)//xenobiologist's hubris
visible_message("You catch a glimpse of a wobbling sea of slimy friends. An abused-looking keeper slips through the portal.")
playsound(loc,'sound/effects/footstep/slime1.ogg', 100, FALSE, 50, TRUE, TRUE)
if(prob(25))
@@ -962,64 +917,64 @@ GLOBAL_LIST_INIT(ore_probability, list(
new /obj/effect/mob_spawn/human/scientist(loc)
new /turf/open/floor/mineral/titanium/purple(loc)
new /mob/living/simple_animal/slime/random(loc)
- if(19)//hey, free elite tumor!
+ if(18)//hey, free elite tumor!
visible_message("A large, pulsating structure falls through the portal and crashes to the floor.")
playsound(loc,'sound/effects/break_stone.ogg', 100, FALSE, 50, TRUE, TRUE)
new /obj/structure/elite_tumor(loc)
new /turf/open/floor/plating/asteroid/basalt(loc)
- if(20)//*you flush the toilet.*
+ if(19)//*you flush the toilet.*
visible_message("You hear the faint noise of a long flush.")
new /obj/structure/toilet(loc)
new /obj/effect/decal/remains(loc)
new /obj/item/newspaper(loc)
new /turf/open/floor/plastic(loc)
new /obj/item/clothing/head/papersack/smiley(loc) //welcome to the bathroom
- if(21)//Research & Zombies
+ if(20)//Research & Zombies
visible_message("Flashing lights and quarantine alarms echo through the portal. You smell rotting flesh and plasma.")
playsound(loc,'sound/misc/bloblarm.ogg', 120, FALSE, 50, TRUE, TRUE)
if(prob(35))
new /obj/item/storage/box/rndboards(loc)
- new /mob/living/simple_animal/hostile/zombie(loc)
+ new /mob/living/simple_animal/hostile/human/zombie(loc)
if(prob(35))
new /obj/item/storage/box/stockparts/deluxe(loc)
- new /mob/living/simple_animal/hostile/zombie(loc)
- new /mob/living/simple_animal/hostile/zombie(loc)
+ new /mob/living/simple_animal/hostile/human/zombie(loc)
+ new /mob/living/simple_animal/hostile/human/zombie(loc)
if(prob(15))
new /obj/effect/spawner/lootdrop/stockparts(loc)
- new /mob/living/simple_animal/hostile/zombie(loc)
+ new /mob/living/simple_animal/hostile/human/zombie(loc)
if(prob(15))
new /obj/effect/spawner/lootdrop/stockparts(loc)
- new /mob/living/simple_animal/hostile/zombie(loc)
+ new /mob/living/simple_animal/hostile/human/zombie(loc)
if(prob(15))
new /obj/effect/spawner/lootdrop/stockparts(loc)
- new /mob/living/simple_animal/hostile/zombie(loc)
+ new /mob/living/simple_animal/hostile/human/zombie(loc)
if(prob(15))
new /obj/effect/spawner/lootdrop/stockparts(loc)
- new /mob/living/simple_animal/hostile/zombie(loc)
+ new /mob/living/simple_animal/hostile/human/zombie(loc)
if(prob(30))
new /obj/item/circuitboard/machine/rdserver(loc)
- new /mob/living/simple_animal/hostile/zombie(loc)
+ new /mob/living/simple_animal/hostile/human/zombie(loc)
if(prob(35))
new /obj/item/research_notes/loot/big(loc)
- new /mob/living/simple_animal/hostile/zombie(loc)
+ new /mob/living/simple_animal/hostile/human/zombie(loc)
else
new /obj/item/research_notes/loot/medium(loc)
if(prob(35))
new /obj/item/research_notes/loot/medium(loc)
- new /mob/living/simple_animal/hostile/zombie(loc)
+ new /mob/living/simple_animal/hostile/human/zombie(loc)
else
new /obj/item/research_notes/loot/small(loc)
if(prob(35))
new /obj/item/pneumatic_cannon(loc)
- new /mob/living/simple_animal/hostile/zombie(loc)
+ new /mob/living/simple_animal/hostile/human/zombie(loc)
if(prob(45))
new /obj/item/research_notes/loot/medium(loc)
- new /mob/living/simple_animal/hostile/zombie(loc)
+ new /mob/living/simple_animal/hostile/human/zombie(loc)
else
new /obj/item/research_notes/loot/small(loc)
new/turf/open/floor/mineral/titanium/purple(loc)
- new /mob/living/simple_animal/hostile/zombie(loc)
- if(22)//Silverback's locker room
+ new /mob/living/simple_animal/hostile/human/zombie(loc)
+ if(21)//Silverback's locker room
visible_message("You catch a glimpse of verdant green. Smells like a locker room.")
playsound(loc,'sound/creatures/gorilla.ogg', 75, FALSE, 50, TRUE, TRUE)
new /mob/living/simple_animal/hostile/gorilla(loc)
@@ -1047,7 +1002,6 @@ GLOBAL_LIST_INIT(ore_probability, list(
if(prob(45))
new /obj/item/dnainjector/dwarf(loc)
if(prob(35))
- new /obj/item/dnainjector/firebreath(loc)
new /mob/living/simple_animal/hostile/gorilla(loc)
if(prob(35))
new /mob/living/simple_animal/hostile/gorilla(loc)
diff --git a/code/game/objects/structures/kitchen_spike.dm b/code/game/objects/structures/kitchen_spike.dm
index d863b693604..6512a068394 100644
--- a/code/game/objects/structures/kitchen_spike.dm
+++ b/code/game/objects/structures/kitchen_spike.dm
@@ -64,7 +64,7 @@
/obj/structure/kitchenspike/attack_hand(mob/user)
if(VIABLE_MOB_CHECK(user.pulling) && user.a_intent == INTENT_GRAB && !has_buckled_mobs())
var/mob/living/L = user.pulling
- if(do_mob(user, src, 120))
+ if(do_after(user, 12 SECONDS, src))
if(has_buckled_mobs()) //to prevent spam/queing up attacks
return
if(L.buckled)
diff --git a/code/game/objects/structures/lavaland/geyser.dm b/code/game/objects/structures/lavaland/geyser.dm
index ed177c72d34..af536d2e8c1 100644
--- a/code/game/objects/structures/lavaland/geyser.dm
+++ b/code/game/objects/structures/lavaland/geyser.dm
@@ -35,7 +35,7 @@
to_chat(user, "The [name] is already active!")
return
- to_chat(user, "You start vigorously plunging [src]!")
+ to_chat(user, span_notice("You start vigorously plunging [src]!"))
if(do_after(user, 50 * P.plunge_mod, target = src) && !activated)
start_chemming()
@@ -51,6 +51,8 @@
name = "plunger"
desc = "It's a plunger for plunging."
icon = 'icons/obj/watercloset.dmi'
+ righthand_file = 'icons/mob/inhands/equipment/tools_righthand.dmi'
+ lefthand_file = 'icons/mob/inhands/equipment/tools_lefthand.dmi'
icon_state = "plunger"
slot_flags = ITEM_SLOT_MASK
@@ -59,6 +61,15 @@
var/plunge_mod = 1 //time*plunge_mod = total time we take to plunge an object
+
+/obj/item/plunger/afterattack(atom/target, mob/user, proximity_flag, click_parameters)
+ . = ..()
+ if(!. && user.zone_selected == BODY_ZONE_HEAD && iscarbon(target))
+ var/mob/living/carbon/H = target
+ if(!H.wear_mask)
+ H.equip_to_slot_if_possible(src, ITEM_SLOT_MASK)
+ H.visible_message(span_warning("[user] slaps [src] onto [H]'s face!"), span_warning("[user] slaps [src] onto your face!"), span_hear("You hear violent plumbing."))
+
/obj/item/plunger/attack_obj(obj/O, mob/living/user)
if(!O.plunger_act(src, user))
return ..()
@@ -71,5 +82,5 @@
var/mob/living/carbon/H = hit_atom
if(!H.wear_mask)
H.equip_to_slot_if_possible(src, ITEM_SLOT_MASK)
- H.visible_message("The plunger slams into [H]'s face!", "The plunger suctions to your face!")
+ H.visible_message(span_warning("[src] slams into [H]'s face!"), span_warning("[src] suctions to your face!"), span_hear("You hear violent plumbing."))
diff --git a/code/game/objects/structures/loom.dm b/code/game/objects/structures/loom.dm
index 28ff5a8de73..e2c3b890991 100644
--- a/code/game/objects/structures/loom.dm
+++ b/code/game/objects/structures/loom.dm
@@ -31,11 +31,9 @@
user.show_message("You need at least [FABRIC_PER_SHEET] units of fabric before using this.", MSG_VISUAL)
return FALSE
user.show_message("You start weaving \the [W.name] through the loom..", MSG_VISUAL)
- if(W.use_tool(src, user, W.pull_effort))
- if(W.amount >= FABRIC_PER_SHEET)
- new W.loom_result(drop_location())
- W.use(FABRIC_PER_SHEET)
- user.show_message("You weave \the [W.name] into a workable fabric.", MSG_VISUAL)
+ while(W.use_tool(src, user, W.pull_effort) && W.use(FABRIC_PER_SHEET))
+ new W.loom_result(drop_location())
+ user.show_message("You weave \the [W.name] into a workable fabric.", MSG_VISUAL)
return TRUE
#undef FABRIC_PER_SHEET
diff --git a/code/game/objects/structures/mineral_doors.dm b/code/game/objects/structures/mineral_doors.dm
index fa964a55619..ffd4e021086 100644
--- a/code/game/objects/structures/mineral_doors.dm
+++ b/code/game/objects/structures/mineral_doors.dm
@@ -336,7 +336,7 @@
if((user.a_intent != INTENT_HARM) && istype(I, /obj/item/paper) && (obj_integrity < max_integrity))
user.visible_message("[user] starts to patch the holes in [src].", "You start patching some of the holes in [src]!")
- if(do_after(user, 20, TRUE, src))
+ if(do_after(user, 20, src))
obj_integrity = min(obj_integrity+4,max_integrity)
qdel(I)
user.visible_message("[user] patches some of the holes in [src].", "You patch some of the holes in [src]!")
diff --git a/code/game/objects/structures/petrified_statue.dm b/code/game/objects/structures/petrified_statue.dm
index c8b80446925..1be0a2517bd 100644
--- a/code/game/objects/structures/petrified_statue.dm
+++ b/code/game/objects/structures/petrified_statue.dm
@@ -58,6 +58,9 @@
if(petrified_mob)
petrified_mob.status_flags &= ~GODMODE
+ if(ishuman(petrified_mob))
+ var/mob/living/carbon/human/H = petrified_mob
+ H.bleedsuppress = FALSE
petrified_mob.forceMove(loc)
REMOVE_TRAIT(petrified_mob, TRAIT_MUTE, STATUE_MUTE)
petrified_mob.take_overall_damage((petrified_mob.health - obj_integrity + 100)) //any new damage the statue incurred is transfered to the mob
@@ -80,7 +83,7 @@
return 0
var/obj/structure/statue/petrified/S = new(loc, src, statue_timer)
S.name = "statue of [name]"
- bleedsuppress = 1
+ bleedsuppress = TRUE
S.copy_overlays(src)
var/newcolor = list(rgb(77,77,77), rgb(150,150,150), rgb(28,28,28), rgb(0,0,0))
S.add_atom_colour(newcolor, FIXED_COLOUR_PRIORITY)
diff --git a/code/game/objects/structures/plasticflaps.dm b/code/game/objects/structures/plasticflaps.dm
index 89ec5a38432..4efc9f895ab 100644
--- a/code/game/objects/structures/plasticflaps.dm
+++ b/code/game/objects/structures/plasticflaps.dm
@@ -1,13 +1,12 @@
/obj/structure/plasticflaps
- name = "airtight plastic flaps"
- desc = "Heavy duty, airtight, plastic flaps. Definitely can't get past those. No way."
+ name = "plastic flaps"
+ desc = "Heavy duty plastic flaps. Definitely can't get past those. No way."
gender = PLURAL
icon = 'icons/obj/stationobjs.dmi'
icon_state = "plasticflaps"
armor = list("melee" = 100, "bullet" = 80, "laser" = 80, "energy" = 100, "bomb" = 50, "bio" = 100, "rad" = 100, "fire" = 50, "acid" = 50)
density = FALSE
anchored = TRUE
- CanAtmosPass = ATMOS_PASS_NO
/obj/structure/plasticflaps/opaque
opacity = TRUE
diff --git a/code/game/objects/structures/signs/_signs.dm b/code/game/objects/structures/signs/_signs.dm
index 48a26493ae2..f96d1170394 100644
--- a/code/game/objects/structures/signs/_signs.dm
+++ b/code/game/objects/structures/signs/_signs.dm
@@ -212,9 +212,24 @@
name = "\improper Nanotrasen logo sign"
sign_change_name = "Corporate Logo - Nanotrasen"
desc = "A sign with the Nanotrasen logo on it. Glory to Nanotrasen!"
+ icon = 'icons/obj/nanotrasen_logos.dmi'
icon_state = "nanotrasen"
is_editable = TRUE
+/obj/structure/sign/nanotrasen/ns
+ name = "\improper N+S Logistics logo sign"
+ sign_change_name = "Corporate Logo - N+S Logistics"
+ desc = "A sign with the N+S Logistics compass rose on it."
+ icon_state = "ns"
+ is_editable = TRUE
+
+/obj/structure/sign/nanotrasen/vigilitas
+ name = "\improper Vigilitas Interstellar logo sign"
+ sign_change_name = "Corporate Logo - Vigilitas Interstellar"
+ desc = "A sign with Vigilitas Interstellar's VI logo on it."
+ icon_state = "vigilitas"
+ is_editable = TRUE
+
/obj/structure/sign/logo
name = "\improper Nanotrasen logo sign"
desc = "The Nanotrasen corporate logo."
@@ -237,18 +252,24 @@
// some solgov stuff
/obj/structure/sign/solgov_seal
- name = "Seal of the solarian government"
- desc = "A seal emblazened with a gold trim depicting the star, sol."
+ name = "seal of the solarian government"
+ desc = "A seal emblazened with a gold trim depicting Sol."
icon = 'icons/obj/solgov_logos.dmi'
icon_state = "solgovseal"
pixel_y = 27
/obj/structure/sign/solgov_flag
name = "solgov banner"
- desc = "A large flag displaying the logo of solgov, the local government of the sol system."
+ desc = "A large flag displaying the logo of solgov, the government of the Sol system."
icon = 'icons/obj/solgov_logos.dmi'
icon_state = "solgovflag-left"
+// suns seal
+/obj/structure/sign/suns
+ name = "emblem of the Student-Union Association of Naturalistic Sciences"
+ desc = "A large emblem showcasing the icon of SUNS."
+ icon_state = "suns"
+
// clip seal
/obj/structure/sign/clip
name = "Banner of the Confederated League of Independent Planets"
@@ -260,7 +281,7 @@
/obj/structure/sign/number
name = "zero"
desc = "A numeral sign."
- icon = 'icons/turf/decals.dmi'
+ icon = 'icons/turf/decals/decals.dmi'
icon_state = "0"
/obj/structure/sign/number/one
diff --git a/code/game/objects/structures/signs/signs_flags.dm b/code/game/objects/structures/signs/signs_flags.dm
index a8652f13080..415bce3bf6f 100644
--- a/code/game/objects/structures/signs/signs_flags.dm
+++ b/code/game/objects/structures/signs/signs_flags.dm
@@ -37,6 +37,12 @@
icon_state = "flag_gezena"
item_flag = /obj/item/sign/flag/gezena
+/obj/structure/sign/flag/suns
+ name = "\improper SUNS flag"
+ desc = "A flag featuring the iconography of the Student-Union Association of Naturalistic Sciences. Something about the flag reminds you of books."
+ icon_state = "flag_suns"
+ item_flag = /obj/item/sign/flag/suns
+
// ITEM FLAGS - THE THINGS YOU HOLD AND PLACE
/obj/item/sign/flag
@@ -51,3 +57,9 @@
desc = "A folded up Gezenan Flag. Something about this flag makes you think of plants."
icon_state = "folded_gezena"
sign_path = /obj/structure/sign/flag/gezena
+
+/obj/item/sign/flag/suns
+ name = "folded SUNS flag"
+ desc = "A folded up purple Flag. Something about this flag makes you think of chemistry."
+ icon_state = "folded_suns"
+ sign_path = /obj/structure/sign/flag/suns
diff --git a/code/game/objects/structures/spawner.dm b/code/game/objects/structures/spawner.dm
index 9773221f0c2..d44606a1a57 100644
--- a/code/game/objects/structures/spawner.dm
+++ b/code/game/objects/structures/spawner.dm
@@ -5,7 +5,7 @@ GLOBAL_LIST_INIT(astroloot, list(
/obj/item/stack/ore/silver = 50,
/obj/item/stack/ore/gold = 50,
/obj/item/stack/ore/diamond = 25,
- /obj/item/stack/ore/bananium = 5,
+ /obj/item/stack/ore/hellstone = 5,
/obj/item/stack/ore/titanium = 75,
/obj/item/pickaxe/diamond = 15,
/obj/item/borg/upgrade/modkit/cooldown = 5,
@@ -59,7 +59,7 @@ GLOBAL_LIST_INIT(astroloot, list(
icon = 'icons/obj/device.dmi'
icon_state = "syndbeacon"
spawn_text = "warps in from"
- mob_types = list(/mob/living/simple_animal/hostile/syndicate/ranged)
+ mob_types = list(/mob/living/simple_animal/hostile/human/syndicate/ranged)
faction = list(ROLE_SYNDICATE)
/obj/structure/spawner/skeleton
@@ -68,7 +68,7 @@ GLOBAL_LIST_INIT(astroloot, list(
max_integrity = 150
max_mobs = 15
spawn_time = 150
- mob_types = list(/mob/living/simple_animal/hostile/skeleton)
+ mob_types = list(/mob/living/simple_animal/hostile/human/skeleton)
spawn_text = "climbs out of"
faction = list("skeleton")
diff --git a/code/game/objects/structures/statues.dm b/code/game/objects/structures/statues.dm
index 642c2c2efdd..9f51ba34476 100644
--- a/code/game/objects/structures/statues.dm
+++ b/code/game/objects/structures/statues.dm
@@ -224,7 +224,7 @@
/obj/structure/statue/bananium
max_integrity = 300
- material_drop_type = /obj/item/stack/sheet/mineral/bananium
+ material_drop_type = /obj/item/stack/sheet/mineral/hidden/hellstone
impressiveness = 50
desc = "A bananium statue with a small engraving:'HOOOOOOONK'."
var/spam_flag = 0
diff --git a/code/game/objects/structures/tables_racks.dm b/code/game/objects/structures/tables_racks.dm
index 2257a3c10c3..27c10f244c3 100644
--- a/code/game/objects/structures/tables_racks.dm
+++ b/code/game/objects/structures/tables_racks.dm
@@ -746,7 +746,7 @@
return
building = TRUE
to_chat(user, "You start assembling [src]...")
- if(do_after(user, 50, target = user, progress=TRUE))
+ if(do_after(user, 50, target = user))
if(!user.temporarilyRemoveItemFromInventory(src))
return
var/obj/structure/R = new construction_type(user.loc)
diff --git a/code/game/objects/structures/traps.dm b/code/game/objects/structures/traps.dm
index f56cfae9a5b..4c6c3173cde 100644
--- a/code/game/objects/structures/traps.dm
+++ b/code/game/objects/structures/traps.dm
@@ -144,16 +144,3 @@
/obj/structure/trap/ward/Initialize()
. = ..()
QDEL_IN(src, time_between_triggers)
-
-/obj/structure/trap/cult
- name = "unholy trap"
- desc = "A trap that rings with unholy energy. You think you hear... chittering?"
- icon_state = "trap-cult"
-
-/obj/structure/trap/cult/trap_effect(mob/living/L)
- to_chat(L, "With a crack, the hostile constructs come out of hiding, stunning you!")
- L.electrocute_act(10, src, flags = SHOCK_NOGLOVES) // electrocute act does a message.
- L.Paralyze(20)
- new /mob/living/simple_animal/hostile/construct/proteon/hostile(loc)
- new /mob/living/simple_animal/hostile/construct/proteon/hostile(loc)
- QDEL_IN(src, 30)
diff --git a/code/game/objects/structures/watercloset.dm b/code/game/objects/structures/watercloset.dm
index 377c40d4e7c..c22858ea591 100644
--- a/code/game/objects/structures/watercloset.dm
+++ b/code/game/objects/structures/watercloset.dm
@@ -40,7 +40,7 @@
GM.visible_message("[user] starts to give [GM] a swirlie!", "[user] starts to give you a swirlie...")
swirlie = GM
var/was_alive = (swirlie.stat != DEAD)
- if(do_after(user, 30, 0, target = src))
+ if(do_after(user, 30, target = src, timed_action_flags = IGNORE_HELD_ITEM))
GM.visible_message("[user] gives [GM] a swirlie!", "[user] gives you a swirlie!", "You hear a toilet flushing.")
if(iscarbon(GM))
var/mob/living/carbon/C = GM
diff --git a/code/game/turfs/closed/_closed.dm b/code/game/turfs/closed/_closed.dm
index cfede10541d..2b7d93ae259 100644
--- a/code/game/turfs/closed/_closed.dm
+++ b/code/game/turfs/closed/_closed.dm
@@ -77,6 +77,16 @@
smoothing_groups = list(SMOOTH_GROUP_CLOSED_TURFS, SMOOTH_GROUP_WALLS, SMOOTH_GROUP_AIRLOCK)
canSmoothWith = list(SMOOTH_GROUP_WALLS, SMOOTH_GROUP_WINDOW_FULLTILE, SMOOTH_GROUP_AIRLOCK)
+/turf/closed/indestructible/titanium
+ name = "wall"
+ desc = "A light-weight titanium wall used in shuttles. Effectively impervious to conventional methods of destruction."
+ icon = 'icons/turf/walls/shuttle_wall.dmi'
+ icon_state = "shuttle_wall-0"
+ base_icon_state = "shuttle_wall"
+ flags_ricochet = RICOCHET_SHINY | RICOCHET_HARD
+ smoothing_flags = SMOOTH_BITMASK | SMOOTH_DIAGONAL_CORNERS
+ smoothing_groups = list(SMOOTH_GROUP_CLOSED_TURFS, SMOOTH_GROUP_WALLS, SMOOTH_GROUP_TITANIUM_WALLS)
+ canSmoothWith = list(SMOOTH_GROUP_TITANIUM_WALLS, SMOOTH_GROUP_AIRLOCK, SMOOTH_GROUP_SHUTTLE_PARTS, SMOOTH_GROUP_WALLS, SMOOTH_GROUP_WINDOW_FULLTILE)
/turf/closed/indestructible/riveted
icon = 'icons/turf/walls/riveted.dmi'
@@ -86,47 +96,6 @@
smoothing_groups = list(SMOOTH_GROUP_CLOSED_TURFS)
canSmoothWith = list(SMOOTH_GROUP_CLOSED_TURFS)
-/turf/closed/indestructible/riveted/supermatter
- name = "wall"
- desc = "A wall made out of a strange metal. The squares on it pulse in a predictable pattern."
- icon = 'icons/turf/walls/bananium_wall.dmi'
- icon_state = "bananium_wall-0"
- base_icon_state = "bananium_wall"
- smoothing_flags = SMOOTH_BITMASK
- smoothing_groups = list(SMOOTH_GROUP_CLOSED_TURFS, SMOOTH_GROUP_WALLS, SMOOTH_GROUP_BANANIUM_WALLS)
- canSmoothWith = list(SMOOTH_GROUP_BANANIUM_WALLS)
-
-/turf/closed/indestructible/riveted/supermatter/Bumped(atom/movable/AM)
- if(isliving(AM))
- AM.visible_message("\The [AM] slams into \the [src] inducing a resonance... [AM.p_their()] body starts to glow and burst into flames before flashing into dust!",\
- "You slam into \the [src] as your ears are filled with unearthly ringing. Your last thought is \"Oh, fuck.\"",\
- "You hear an unearthly noise as a wave of heat washes over you.")
- else if(isobj(AM) && !iseffect(AM))
- AM.visible_message("\The [AM] smacks into \the [src] and rapidly flashes to ash.", null,\
- "You hear a loud crack as you are washed with a wave of heat.")
- else
- return
-
- playsound(get_turf(src), 'sound/effects/supermatter.ogg', 50, TRUE)
- Consume(AM)
-
-/turf/closed/indestructible/riveted/supermatter/proc/Consume(atom/movable/AM)
- if(isliving(AM))
- var/mob/living/user = AM
- if(user.status_flags & GODMODE)
- return
- message_admins("[src] has consumed [key_name_admin(user)] [ADMIN_JMP(src)].")
- investigate_log("has consumed [key_name(user)].", INVESTIGATE_SUPERMATTER)
- user.dust(force = TRUE)
- else if(isobj(AM))
- if(!iseffect(AM))
- var/suspicion = ""
- if(AM.fingerprintslast)
- suspicion = "last touched by [AM.fingerprintslast]"
- message_admins("[src] has consumed [AM], [suspicion] [ADMIN_JMP(src)].")
- investigate_log("has consumed [AM] - [suspicion].", INVESTIGATE_SUPERMATTER)
- qdel(AM)
-
/turf/closed/indestructible/syndicate
icon = 'icons/turf/walls/plastitanium_wall.dmi'
icon_state = "plastitanium_wall-0"
@@ -280,7 +249,7 @@
return TRUE
/turf/closed/indestructible/riveted/boss
- name = "necropolis wall"
+ name = "thick stone wall"
desc = "A thick, seemingly indestructible stone wall."
icon = 'icons/turf/walls/boss_wall.dmi'
icon_state = "boss_wall-0"
diff --git a/code/game/turfs/closed/minerals.dm b/code/game/turfs/closed/minerals.dm
index b5eddacd3e4..a7ebeaf5758 100644
--- a/code/game/turfs/closed/minerals.dm
+++ b/code/game/turfs/closed/minerals.dm
@@ -161,6 +161,10 @@
//Currently, Adamantine won't spawn as it has no uses. -Durandan
var/mineralChance = 5
+/turf/closed/mineral/ship
+ baseturfs = /turf/open/floor/plating/asteroid/ship
+ turf_type = /turf/open/floor/plating/asteroid/ship
+
/turf/closed/mineral/random/Initialize(mapload, inherited_virtual_z)
@@ -204,12 +208,6 @@
/obj/item/stack/ore/uranium = 35, /obj/item/stack/ore/diamond = 30, /obj/item/stack/ore/gold = 45, /obj/item/stack/ore/titanium = 45,
/obj/item/stack/ore/silver = 50, /obj/item/stack/ore/plasma = 50, /obj/item/stack/ore/bluespace_crystal)
-/turf/closed/mineral/random/high_chance/volcanic/icecropolis
- environment_type = "basalt"
- turf_type = /turf/open/indestructible/necropolis/air
- baseturfs = /turf/open/indestructible/necropolis/air
- initial_gas_mix = "o2=22;n2=82;TEMP=293.15"
-
/turf/closed/mineral/random/low_chance
mineralChance = 3
mineralSpawnChanceList = list(
@@ -234,12 +232,6 @@
/obj/item/stack/ore/silver = 12, /obj/item/stack/ore/plasma = 20, /obj/item/stack/ore/iron = 40,
/turf/closed/mineral/gibtonite/volcanic = 4, /obj/item/stack/ore/bluespace_crystal = 1)
-/turf/closed/mineral/random/volcanic/icecropolis
- environment_type = "basalt"
- turf_type = /turf/open/indestructible/necropolis/air
- baseturfs = /turf/open/indestructible/necropolis/air
- initial_gas_mix = "o2=22;n2=82;TEMP=293.15"
-
/turf/closed/mineral/random/snow
name = "schist"
desc = "Say it fives times fast."
@@ -277,14 +269,13 @@
light_range = 2
light_power = 1
-
/turf/closed/mineral/random/snow/underground
baseturfs = /turf/open/floor/plating/asteroid/snow/icemoon
// abundant ore
mineralChance = 10
mineralSpawnChanceList = list(
/obj/item/stack/ore/uranium = 10, /obj/item/stack/ore/diamond = 4, /obj/item/stack/ore/gold = 20, /obj/item/stack/ore/titanium = 22,
- /obj/item/stack/ore/silver = 24, /obj/item/stack/ore/plasma = 20, /obj/item/stack/ore/iron = 20, /obj/item/stack/ore/bananium = 1,
+ /obj/item/stack/ore/silver = 24, /obj/item/stack/ore/plasma = 20, /obj/item/stack/ore/iron = 20,
/turf/closed/mineral/gibtonite/ice/icemoon = 8, /obj/item/stack/ore/bluespace_crystal = 2)
/turf/closed/mineral/random/snow/high_chance
@@ -400,11 +391,6 @@
initial_gas_mix = FROZEN_ATMOS
defer_change = TRUE
-/turf/closed/mineral/bananium
- mineralType = /obj/item/stack/ore/bananium
- mineralAmt = 3
- scan_state = "rock_Bananium"
-
/turf/closed/mineral/bscrystal
mineralType = /obj/item/stack/ore/bluespace_crystal
mineralAmt = 1
@@ -646,10 +632,7 @@
H.mind.adjust_experience(/datum/skill/mining, 100) //yay!
/turf/closed/mineral/strong/proc/drop_ores()
- if(prob(10))
- new /obj/item/stack/sheet/mineral/mythril(src, 5)
- else
- new /obj/item/stack/sheet/mineral/adamantine(src, 5)
+ new /obj/item/stack/sheet/mineral/hidden/hellstone(src, 5)
/turf/closed/mineral/strong/acid_melt()
return
diff --git a/code/game/turfs/closed/wall/mineral_walls.dm b/code/game/turfs/closed/wall/mineral_walls.dm
index 720a95afd0e..53dbb9479f3 100644
--- a/code/game/turfs/closed/wall/mineral_walls.dm
+++ b/code/game/turfs/closed/wall/mineral_walls.dm
@@ -68,24 +68,6 @@
icon_state = "diamond_wall-255"
smoothing_flags = SMOOTH_BITMASK | SMOOTH_DIAGONAL_CORNERS
-/turf/closed/wall/mineral/bananium
- name = "bananium wall"
- desc = "A wall with bananium plating. Honk!"
- icon = 'icons/turf/walls/bananium_wall.dmi'
- icon_state = "bananium_wall-0"
- base_icon_state = "bananium_wall"
- sheet_type = /obj/item/stack/sheet/mineral/bananium
- smoothing_flags = SMOOTH_BITMASK | SMOOTH_CONNECTORS
- smoothing_groups = list(SMOOTH_GROUP_CLOSED_TURFS, SMOOTH_GROUP_WALLS, SMOOTH_GROUP_BANANIUM_WALLS)
- canSmoothWith = list(SMOOTH_GROUP_BANANIUM_WALLS, SMOOTH_GROUP_WALLS,SMOOTH_GROUP_AIRLOCK)
- connector_icon = 'icons/turf/connectors/bananium_wall_connector.dmi'
- connector_icon_state = "bananium_wall_connector"
- no_connector_typecache = list(/turf/closed/wall/mineral/bananium, /obj/structure/falsewall/bananium)
-
-/turf/closed/wall/mineral_bananium/yesdiag
- icon_state = "bananium_wall-255"
- smoothing_flags = SMOOTH_BITMASK | SMOOTH_DIAGONAL_CORNERS
-
/turf/closed/wall/mineral/sandstone
name = "sandstone wall"
desc = "A wall with sandstone plating. Rough."
@@ -244,8 +226,6 @@
icon_state = "wood_wall-255"
smoothing_flags = SMOOTH_BITMASK | SMOOTH_DIAGONAL_CORNERS | SMOOTH_CONNECTORS
-/turf/closed/wall/mineral/wood/nonmetal/icecropolis
- baseturfs = /turf/open/indestructible/necropolis/air
/turf/closed/wall/mineral/wood/attackby(obj/item/W, mob/user)
if(W.get_sharpness() && W.force)
@@ -284,9 +264,6 @@
icon_state = "iron_wall-255"
smoothing_flags = SMOOTH_BITMASK | SMOOTH_DIAGONAL_CORNERS
-/turf/closed/wall/mineral/iron/icecropolis
- baseturfs = /turf/open/indestructible/necropolis/air
-
/turf/closed/wall/mineral/snow
name = "packed snow wall"
desc = "A wall made of densely packed snow blocks."
diff --git a/code/game/turfs/closed/wall/misc_walls.dm b/code/game/turfs/closed/wall/misc_walls.dm
index e6e5c8f0c55..7fbcab55504 100644
--- a/code/game/turfs/closed/wall/misc_walls.dm
+++ b/code/game/turfs/closed/wall/misc_walls.dm
@@ -6,7 +6,7 @@
base_icon_state = "cult_wall"
smoothing_flags = SMOOTH_BITMASK
canSmoothWith = null
- sheet_type = /obj/item/stack/sheet/runed_metal
+ sheet_type = /obj/item/stack/sheet/mineral/hidden/hellstone
sheet_amount = 1
girder_type = /obj/structure/girder/cult
@@ -63,10 +63,6 @@
icon_state = "rusty_wall-255"
smoothing_flags = SMOOTH_BITMASK | SMOOTH_DIAGONAL_CORNERS
-/turf/closed/wall/rust/icecropolis
- baseturfs = /turf/open/indestructible/necropolis/air
- initial_gas_mix = "o2=22;n2=82;TEMP=293.15"
-
/turf/closed/wall/r_wall/rust
name = "rusted reinforced wall"
desc = "A huge chunk of rusted reinforced metal."
diff --git a/code/game/turfs/open/_open.dm b/code/game/turfs/open/_open.dm
index 27a3225dbb0..44acbe06f6b 100644
--- a/code/game/turfs/open/_open.dm
+++ b/code/game/turfs/open/_open.dm
@@ -99,9 +99,6 @@
heavyfootstep = FOOTSTEP_LAVA
tiled_dirt = FALSE
-/turf/open/indestructible/necropolis/icecropolis
- initial_gas_mix = ICEMOON_DEFAULT_ATMOS
-
/turf/open/indestructible/necropolis/Initialize(mapload, inherited_virtual_z)
. = ..()
if(prob(12))
diff --git a/code/game/turfs/open/floor/fancy_floor.dm b/code/game/turfs/open/floor/fancy_floor.dm
index 37c369a3d8c..3a018484945 100644
--- a/code/game/turfs/open/floor/fancy_floor.dm
+++ b/code/game/turfs/open/floor/fancy_floor.dm
@@ -41,9 +41,6 @@
/turf/open/floor/wood/yew
color = WOOD_COLOR_YELLOW
-/turf/open/floor/wood/icecropolis
- baseturfs = /turf/open/indestructible/necropolis/air
-
/turf/open/floor/wood/examine(mob/user)
. = ..()
. += "There's a few screws and a small crack visible."
diff --git a/code/game/turfs/open/floor/mineral_floor.dm b/code/game/turfs/open/floor/mineral_floor.dm
index 476a69fa468..5d53a162b08 100644
--- a/code/game/turfs/open/floor/mineral_floor.dm
+++ b/code/game/turfs/open/floor/mineral_floor.dm
@@ -172,48 +172,6 @@
/turf/open/floor/mineral/plastitanium/red/brig
name = "brig floor"
-//BANANIUM
-
-/turf/open/floor/mineral/bananium
- name = "bananium floor"
- icon_state = "bananium"
- floor_tile = /obj/item/stack/tile/mineral/bananium
- icons = list("bananium","bananium_dam")
- var/spam_flag = 0
-
-/turf/open/floor/mineral/bananium/Entered(atom/movable/AM)
- .=..()
- if(!.)
- if(isliving(AM))
- squeak()
-
-/turf/open/floor/mineral/bananium/attackby(obj/item/W, mob/user, params)
- .=..()
- if(!.)
- honk()
-
-/turf/open/floor/mineral/bananium/attack_hand(mob/user)
- .=..()
- if(!.)
- honk()
-
-/turf/open/floor/mineral/bananium/attack_paw(mob/user)
- .=..()
- if(!.)
- honk()
-
-/turf/open/floor/mineral/bananium/proc/honk()
- if(spam_flag < world.time)
- playsound(src, 'sound/items/bikehorn.ogg', 50, TRUE)
- spam_flag = world.time + 20
-
-/turf/open/floor/mineral/bananium/proc/squeak()
- if(spam_flag < world.time)
- playsound(src, "clownstep", 50, TRUE)
- spam_flag = world.time + 10
-
-/turf/open/floor/mineral/bananium/airless
- initial_gas_mix = AIRLESS_ATMOS
//DIAMOND
diff --git a/code/game/turfs/open/floor/plasteel_floor.dm b/code/game/turfs/open/floor/plasteel_floor.dm
index 7ed16bc5631..61a90ff0da8 100644
--- a/code/game/turfs/open/floor/plasteel_floor.dm
+++ b/code/game/turfs/open/floor/plasteel_floor.dm
@@ -332,6 +332,3 @@
icon_state = "tiled_light"
base_icon_state = "tiled_light"
color = "#938170"
-
-/turf/open/floor/plasteel/icecropolis
- baseturfs = /turf/open/indestructible/necropolis/air
diff --git a/code/game/turfs/open/floor/plating/asteroid.dm b/code/game/turfs/open/floor/plating/asteroid.dm
index ee311f747d8..89f48aee49a 100644
--- a/code/game/turfs/open/floor/plating/asteroid.dm
+++ b/code/game/turfs/open/floor/plating/asteroid.dm
@@ -126,3 +126,5 @@
baseturfs = /turf/open/floor/plating/asteroid/airless
turf_type = /turf/open/floor/plating/asteroid/airless
+/turf/open/floor/plating/asteroid/ship
+ baseturfs = /turf/open/floor/plating
diff --git a/code/game/turfs/open/floor/plating/lavaland.dm b/code/game/turfs/open/floor/plating/lavaland.dm
index 1dd8d49d746..84e0173819b 100644
--- a/code/game/turfs/open/floor/plating/lavaland.dm
+++ b/code/game/turfs/open/floor/plating/lavaland.dm
@@ -37,15 +37,6 @@
planetary_atmos = TRUE
baseturfs = /turf/open/lava/smooth/lava_land_surface
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface/icecropolis
- initial_gas_mix = ICEMOON_DEFAULT_ATMOS
- baseturfs = /turf/open/indestructible/necropolis/icecropolis
-
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface/icecropolis/inside
- initial_gas_mix = "o2=22;n2=82;TEMP=293.15"
- planetary_atmos = FALSE
- baseturfs = /turf/open/indestructible/necropolis/air
-
/turf/open/floor/plating/asteroid/basalt/purple
icon = 'icons/turf/lavaland_purple.dmi'
baseturfs = /turf/open/floor/plating/asteroid/basalt/purple
@@ -102,3 +93,39 @@
light_range = 2
light_power = 0.6
light_color = LIGHT_COLOR_FIRE
+
+/turf/open/floor/concrete/lava
+ initial_gas_mix = LAVALAND_DEFAULT_ATMOS
+ light_range = 2
+ light_power = 0.6
+ light_color = LIGHT_COLOR_FIRE
+
+/turf/open/floor/concrete/slab_1/lava
+ initial_gas_mix = LAVALAND_DEFAULT_ATMOS
+ light_range = 2
+ light_power = 0.6
+ light_color = LIGHT_COLOR_FIRE
+
+/turf/open/floor/plating/lava
+ initial_gas_mix = LAVALAND_DEFAULT_ATMOS
+ light_range = 2
+ light_power = 0.6
+ light_color = LIGHT_COLOR_FIRE
+
+/turf/open/floor/plating/rust/lava
+ initial_gas_mix = LAVALAND_DEFAULT_ATMOS
+ light_range = 2
+ light_power = 0.6
+ light_color = LIGHT_COLOR_FIRE
+
+/turf/open/floor/plasteel/white/lava
+ initial_gas_mix = LAVALAND_DEFAULT_ATMOS
+ light_range = 2
+ light_power = 0.6
+ light_color = LIGHT_COLOR_FIRE
+
+/turf/open/floor/plasteel/dark/lava
+ initial_gas_mix = LAVALAND_DEFAULT_ATMOS
+ light_range = 2
+ light_power = 0.6
+ light_color = LIGHT_COLOR_FIRE
diff --git a/code/game/turfs/open/floor/plating/misc_plating.dm b/code/game/turfs/open/floor/plating/misc_plating.dm
index e9b28fb4a61..84a49d1a003 100644
--- a/code/game/turfs/open/floor/plating/misc_plating.dm
+++ b/code/game/turfs/open/floor/plating/misc_plating.dm
@@ -11,11 +11,6 @@
icon_state = "plating"
initial_gas_mix = ICEMOON_DEFAULT_ATMOS
-/turf/open/floor/plating/icecropolis
- icon_state = "plating"
- baseturfs = /turf/open/indestructible/necropolis/air
- initial_gas_mix = "o2=22;n2=82;TEMP=293.15"
-
/turf/open/floor/plating/abductor
name = "alien floor"
icon_state = "alienpod1"
diff --git a/code/game/turfs/open/floor/suns_floor.dm b/code/game/turfs/open/floor/suns_floor.dm
new file mode 100644
index 00000000000..9505bc5a33a
--- /dev/null
+++ b/code/game/turfs/open/floor/suns_floor.dm
@@ -0,0 +1,45 @@
+/turf/open/floor/suns
+ name = "white marble floor"
+ icon = 'icons/turf/floors/suns.dmi'
+ icon_state = "light"
+ floor_tile = /obj/item/stack/tile/suns
+
+/turf/open/floor/suns/plain
+ name = "white plain marble floor"
+ icon_state = "lightplain"
+ floor_tile = /obj/item/stack/tile/suns/plain
+
+/turf/open/floor/suns/pattern
+ name = "patterned white marble floor"
+ icon_state = "lightpattern"
+ floor_tile = /obj/item/stack/tile/suns/pattern
+
+/turf/open/floor/suns/hatch
+ name = "hatched white marble floor"
+ icon_state = "lighthatched"
+ floor_tile = /obj/item/stack/tile/suns/hatch
+
+/turf/open/floor/suns/diagonal
+ name = "diagonal white marble floor"
+ icon_state = "lightdiag"
+ floor_tile = /obj/item/stack/tile/suns/diagonal
+
+/turf/open/floor/suns/grid
+ name = "dark grid floor"
+ icon_state = "darkchunky"
+ floor_tile = /obj/item/stack/tile/suns/grid
+
+/turf/open/floor/suns/dark
+ name = "black marble floor"
+ icon_state = "dark"
+ floor_tile = /obj/item/stack/tile/suns/dark
+
+/turf/open/floor/suns/dark/plain
+ name = "black plain marble floor"
+ icon_state = "darkplain"
+ floor_tile = /obj/item/stack/tile/suns/dark/plain
+
+/turf/open/floor/suns/dark/pattern
+ name = "patterned black marble floor"
+ icon_state = "darkpattern"
+ floor_tile = /obj/item/stack/tile/suns/dark/pattern
diff --git a/code/game/turfs/open/lava.dm b/code/game/turfs/open/lava.dm
index 99f1d590c05..eb2132940bd 100644
--- a/code/game/turfs/open/lava.dm
+++ b/code/game/turfs/open/lava.dm
@@ -18,6 +18,8 @@
heavyfootstep = FOOTSTEP_LAVA
var/particle_emitter = /obj/effect/particle_emitter/lava
+ /// Whether the lava has been dug with hellstone found successfully
+ var/is_mined = FALSE
/turf/open/lava/Initialize(mapload)
. = ..()
@@ -100,10 +102,10 @@
/turf/open/lava/TakeTemperature(temp)
-/turf/open/lava/attackby(obj/item/C, mob/user, params)
+/turf/open/lava/attackby(obj/item/attacking_item, mob/user, params)
..()
- if(istype(C, /obj/item/stack/rods/lava))
- var/obj/item/stack/rods/lava/R = C
+ if(istype(attacking_item, /obj/item/stack/rods/lava))
+ var/obj/item/stack/rods/lava/R = attacking_item
var/obj/structure/lattice/lava/H = locate(/obj/structure/lattice/lava, src)
if(H)
to_chat(user, "There is already a lattice here!")
@@ -115,6 +117,19 @@
else
to_chat(user, "You need one rod to build a heatproof lattice.")
return
+ if(attacking_item.tool_behaviour == TOOL_MINING && (attacking_item.custom_materials[SSmaterials.GetMaterialRef(/datum/material/diamond)]))
+ if(is_mined)
+ to_chat(user, span_notice("This has already been cleared out of hellstone..."))
+ return FALSE
+ to_chat(user, span_notice("You start parting away [src]..."))
+ if(attacking_item.use_tool(src, user, 175, volume=30))
+ to_chat(user, span_notice("You part away [src]."))
+ playsound(src, 'sound/effects/break_stone.ogg', 30, TRUE)
+ if (prob(10))
+ new /obj/item/stack/ore/hellstone(src)
+ is_mined = TRUE
+ return TRUE
+ return FALSE
/turf/open/lava/proc/is_safe()
//if anything matching this typecache is found in the lava, we don't burn things
diff --git a/code/modules/NTNet/relays.dm b/code/modules/NTNet/relays.dm
index 9a1b01403ed..f161eced806 100644
--- a/code/modules/NTNet/relays.dm
+++ b/code/modules/NTNet/relays.dm
@@ -3,8 +3,8 @@
name = "NTNet Quantum Relay"
desc = "A very complex router and transmitter capable of connecting electronic devices together. Looks fragile."
use_power = ACTIVE_POWER_USE
- active_power_usage = 10000 //10kW, apropriate for machine that keeps massive cross-Zlevel wireless network operational. Used to be 20 but that actually drained the smes one round
- idle_power_usage = 100
+ idle_power_usage = IDLE_DRAW_MINIMAL
+ active_power_usage = ACTIVE_DRAW_EXTREME //Since NTnet is barely used, this has been lowered by half.
icon = 'icons/obj/machines/telecomms.dmi'
icon_state = "bus"
density = TRUE
@@ -64,9 +64,9 @@
/obj/machinery/ntnet_relay/process()
if(is_operational)
- use_power = ACTIVE_POWER_USE
+ set_active_power()
else
- use_power = IDLE_POWER_USE
+ set_idle_power()
update_appearance()
diff --git a/code/modules/admin/admin.dm b/code/modules/admin/admin.dm
index 5bb4b25cc1f..7b147385c55 100644
--- a/code/modules/admin/admin.dm
+++ b/code/modules/admin/admin.dm
@@ -215,7 +215,7 @@
/datum/admins/proc/access_news_network() //MARKER
- set category = "Admin.Events"
+ set category = "Event"
set name = "Access Newscaster Network"
set desc = "Allows you to view, add and edit news feeds."
@@ -700,7 +700,7 @@
////////////////////////////////////////////////////////////////////////////////////////////////ADMIN HELPER PROCS
/datum/admins/proc/spawn_atom(object as text)
- set category = "Debug"
+ set category = "Event.Spawning"
set desc = "(atom path) Spawn an atom"
set name = "Spawn"
@@ -729,9 +729,9 @@
SSblackbox.record_feedback("tally", "admin_verb", 1, "Spawn Atom") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
/datum/admins/proc/podspawn_atom(object as text)
- set category = "Debug"
+ set category = "Event.Spawning"
set desc = "(atom path) Spawn an atom via supply drop"
- set name = "Podspawn"
+ set name = "Supply drop spawn"
if(!check_rights(R_SPAWN))
return
@@ -753,7 +753,7 @@
SSblackbox.record_feedback("tally", "admin_verb", 1, "Podspawn Atom") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
/datum/admins/proc/spawn_cargo(object as text)
- set category = "Debug"
+ set category = "Event.Spawning"
set desc = "(atom path) Spawn a cargo crate"
set name = "Spawn Cargo"
@@ -1018,3 +1018,14 @@
dat += "Disable footsteps: [SSlag_switch.measures[DISABLE_FOOTSTEPS] ? "On" : "Off"] - trait applies to character
"
dat += "