diff --git a/.github/labeler.yml b/.github/labeler.yml
index 55b0ba3015af..5b585de45322 100644
--- a/.github/labeler.yml
+++ b/.github/labeler.yml
@@ -1,49 +1,67 @@
Admin:
- - "code/modules/admin/**"
+ - any-glob-to-any-file:
+ - "code/modules/admin/**"
# Any file within the config subfolder
Config:
- - "config/**"
+- changed-files:
+ - any-glob-to-any-file:
+ - "config/**"
Dependencies:
- - "**/package.json"
- - "**/package-lock.json"
- - "**/yarn.lock"
+- changed-files:
+ - any-glob-to-any-file:
+ - "**/package.json"
+ - "**/package-lock.json"
+ - "**/yarn.lock"
# When the .DME is changed
DME Edit:
- - "./*.dme"
- - "**/*.dme"
+- changed-files:
+ - any-glob-to-any-file:
+ - "./*.dme"
+ - "**/*.dme"
# Any .dmi changes
Sprites:
- - "**/*.dmi"
+- changed-files:
+ - any-glob-to-any-file:
+ - "**/*.dmi"
# Changes to a .dm or anything in the code subfolder
Code Change:
- - "**/*.dm"
- - "code/**"
+- changed-files:
+ - any-glob-to-any-file:
+ - "**/*.dm"
+ - "code/**"
# Changes to a .dmm or anything in the _map subfolder
Map Change:
- - "**/*.dmm"
- - "_maps/**"
+- changed-files:
+ - any-glob-to-any-file:
+ - "**/*.dmm"
+ - "_maps/**"
# Any changes to .ogg files are marked as sound
Sound:
- - "**/*.ogg"
+- changed-files:
+ - any-glob-to-any-file:
+ - "**/*.ogg"
# Changes to the SQL subfolder
SQL:
- - "SQL/**"
+- changed-files:
+ - any-glob-to-any-file:
+ - "SQL/**"
# Changes to the tgui subfolder
tgui:
- - "tgui/**"
+- changed-files:
+ - any-glob-to-any-file:
+ - "tgui/**"
# Changes to the .Github subfolder
Github:
- - ".github/**"
-
-Deprecated Modularization:
- - "whitesands/**"
+- changed-files:
+ - any-glob-to-any-file:
+ - ".github/**"
diff --git a/.github/workflows/autowiki.yml b/.github/workflows/autowiki.yml
index 72c5b8816ce0..b36db1444bbe 100644
--- a/.github/workflows/autowiki.yml
+++ b/.github/workflows/autowiki.yml
@@ -9,7 +9,7 @@ permissions:
jobs:
autowiki:
- runs-on: ubuntu-20.04
+ runs-on: ubuntu-latest
steps:
- name: "Check for AUTOWIKI_USERNAME"
id: secrets_set
diff --git a/.github/workflows/ci_suite.yml b/.github/workflows/ci_suite.yml
index 7a3010a995ce..fc1c42b3ec1a 100644
--- a/.github/workflows/ci_suite.yml
+++ b/.github/workflows/ci_suite.yml
@@ -11,6 +11,7 @@ on:
- master
jobs:
run_linters:
+ if: "!contains(github.event.head_commit.message, '[ci skip]')"
name: Run Linters
runs-on: ubuntu-22.04
steps:
@@ -67,8 +68,9 @@ jobs:
cat check_regex_output.txt
compile_all_maps:
+ if: "!contains(github.event.head_commit.message, '[ci skip]')"
name: Compile Maps
- runs-on: ubuntu-20.04
+ runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Python setup
@@ -91,54 +93,34 @@ jobs:
tools/build/build --ci dm -DCIBUILDING -DCITESTING -DALL_MAPS -DFULL_INIT
run_all_tests:
+ if: "!contains(github.event.head_commit.message, '[ci skip]')"
name: Integration Tests
- runs-on: ubuntu-20.04
strategy:
- fail-fast: false
- services:
- mysql:
- image: mysql:latest
- env:
- MYSQL_ROOT_PASSWORD: root
- ports:
- - 3306
- options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
- steps:
- - uses: actions/checkout@v3
- - name: Setup cache
- id: cache-byond
- uses: actions/cache@v3
- with:
- path: ~/BYOND
- key: ${{ runner.os }}-byond-cache-${{ hashFiles('Dockerfile') }}
- - name: Install BYOND
- if: steps.cache-byond.outputs.cache-hit != 'true'
- run: bash tools/ci/install_byond.sh
- - name: Setup database
- run: |
- sudo systemctl start mysql
- mysql -u root -proot -e 'CREATE DATABASE tg_ci;'
- mysql -u root -proot tg_ci < SQL/tgstation_schema.sql
- mysql -u root -proot -e 'CREATE DATABASE tg_ci_prefixed;'
- mysql -u root -proot tg_ci_prefixed < SQL/tgstation_schema_prefixed.sql
- - name: Install rust-g
- run: |
- sudo dpkg --add-architecture i386
- sudo apt update || true
- sudo apt install -o APT::Immediate-Configure=false libssl1.1:i386
- bash tools/ci/install_rust_g.sh
- - name: Install auxmos
- run: |
- bash tools/ci/install_auxmos.sh
- - name: Compile Tests
- run: |
- bash tools/ci/install_byond.sh
- source $HOME/BYOND/byond/bin/byondsetup
- tools/build/build --ci dm -DCIBUILDING -DANSICOLORS
- - name: Run Tests
- run: |
- source $HOME/BYOND/byond/bin/byondsetup
- bash tools/ci/run_server.sh
+ fail-fast: true
+ matrix:
+ arg: [
+ "BASIC_TESTS",
+ "CREATE_AND_DESTROY_TEST",
+ "PLANET_GEN_TEST",
+ "RUIN_PLACEMENT_TEST",
+ "SHIP_PLACEMENT_TEST"
+ ]
+ uses: ./.github/workflows/run_integration_tests.yml
+ with:
+ arg: ${{ matrix.arg }}
+
+# run_alternate_tests:
+# if: "!contains(github.event.head_commit.message, '[ci skip]')"
+# name: Alternate Tests
+# strategy:
+# fail-fast: false
+# matrix:
+# major: [515]
+# minor: [1614]
+# uses: ./.github/workflows/run_integration_tests.yml
+# with:
+# major: ${{ matrix.major }}
+# minor: ${{ matrix.minor }}
test_windows:
if: "!contains(github.event.head_commit.message, '[ci skip]')"
diff --git a/.github/workflows/compile_changelogs.yml b/.github/workflows/compile_changelogs.yml
index 70b4ac9a9331..48071cb3adde 100644
--- a/.github/workflows/compile_changelogs.yml
+++ b/.github/workflows/compile_changelogs.yml
@@ -8,7 +8,7 @@ on:
jobs:
compile:
name: "Compile changelogs"
- runs-on: ubuntu-20.04
+ runs-on: ubuntu-latest
steps:
- name: "Check for ACTION_ENABLER secret and pass it to output if it exists to be checked by later steps"
id: value_holder
diff --git a/.github/workflows/docker_publish.yml b/.github/workflows/docker_publish.yml
index 6c14be7547b6..1d7c299831a2 100644
--- a/.github/workflows/docker_publish.yml
+++ b/.github/workflows/docker_publish.yml
@@ -9,7 +9,7 @@ on:
jobs:
publish:
if: "!contains(github.event.head_commit.message, '[ci skip]')"
- runs-on: ubuntu-20.04
+ runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
diff --git a/.github/workflows/generate_documentation.yml b/.github/workflows/generate_documentation.yml
index 8011516d27a2..e987d05ad2a9 100644
--- a/.github/workflows/generate_documentation.yml
+++ b/.github/workflows/generate_documentation.yml
@@ -21,7 +21,7 @@ jobs:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
- runs-on: ubuntu-20.04
+ runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Restore SpacemanDMM cache
diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml
index aea88c49e9fa..dc3a206fe385 100644
--- a/.github/workflows/labeler.yml
+++ b/.github/workflows/labeler.yml
@@ -18,7 +18,7 @@ jobs:
commentOnDirty: "This pull request has conflicts, please resolve those before we can evaluate the pull request."
- name: Apply labels based on changed files
if: github.event_name != 'push'
- uses: actions/labeler@main
+ uses: actions/labeler@v5
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
sync-labels: true
diff --git a/.github/workflows/make_changelogs.yml b/.github/workflows/make_changelogs.yml
index aceb4aee3130..1a30c8183e35 100644
--- a/.github/workflows/make_changelogs.yml
+++ b/.github/workflows/make_changelogs.yml
@@ -7,7 +7,7 @@ on:
jobs:
MakeCL:
- runs-on: ubuntu-20.04
+ runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, '[ci skip]')"
steps:
- name: Checkout
diff --git a/.github/workflows/round_id_linker.yml b/.github/workflows/round_id_linker.yml
index bd4d02c17983..3885068be756 100644
--- a/.github/workflows/round_id_linker.yml
+++ b/.github/workflows/round_id_linker.yml
@@ -5,7 +5,7 @@ on:
jobs:
link_rounds:
- runs-on: ubuntu-20.04
+ runs-on: ubuntu-latest
steps:
- uses: shiptest-ss13/round_linker@v2.0.0
with:
diff --git a/.github/workflows/run_integration_tests.yml b/.github/workflows/run_integration_tests.yml
new file mode 100644
index 000000000000..a361ecedc588
--- /dev/null
+++ b/.github/workflows/run_integration_tests.yml
@@ -0,0 +1,65 @@
+# This is a reusable workflow to run integration tests.
+# This is run for every single map in ci_suite.yml. You might want to edit that instead.
+name: Run Integration Tests
+on:
+ workflow_call:
+ inputs:
+ major:
+ required: false
+ type: string
+ minor:
+ required: false
+ type: string
+ arg:
+ required: false
+ default: ALL_TESTS
+ type: string
+jobs:
+ run_integration_tests:
+ runs-on: ubuntu-latest
+ services:
+ mysql:
+ image: mysql:latest
+ env:
+ MYSQL_ROOT_PASSWORD: root
+ ports:
+ - 3306
+ options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
+ steps:
+ - uses: actions/checkout@v3
+ - name: Setup cache
+ id: cache-byond
+ uses: actions/cache@v3
+ with:
+ path: ~/BYOND
+ key: ${{ runner.os }}-byond-cache-${{ hashFiles('Dockerfile') }}
+ - name: Setup database
+ run: |
+ sudo systemctl start mysql
+ mysql -u root -proot -e 'CREATE DATABASE tg_ci;'
+ mysql -u root -proot tg_ci < SQL/tgstation_schema.sql
+ mysql -u root -proot -e 'CREATE DATABASE tg_ci_prefixed;'
+ mysql -u root -proot tg_ci_prefixed < SQL/tgstation_schema_prefixed.sql
+ - name: Install rust-g
+ run: |
+ sudo dpkg --add-architecture i386
+ sudo apt update || true
+ sudo apt install -o APT::Immediate-Configure=false libssl-dev:i386
+ bash tools/ci/install_rust_g.sh
+ - name: Install auxmos
+ run: |
+ bash tools/ci/install_auxmos.sh
+ - name: Configure version
+ if: ${{ inputs.major }}
+ run: |
+ echo "BYOND_MAJOR=${{ inputs.major }}" >> $GITHUB_ENV
+ echo "BYOND_MINOR=${{ inputs.minor }}" >> $GITHUB_ENV
+ - name: Compile Tests
+ run: |
+ bash tools/ci/install_byond.sh
+ source $HOME/BYOND/byond/bin/byondsetup
+ tools/build/build --ci dm -DCIBUILDING -DANSICOLORS -D${{ inputs.arg }}
+ - name: Run Tests
+ run: |
+ source $HOME/BYOND/byond/bin/byondsetup
+ bash tools/ci/run_server.sh
diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml
index 01209a2828e3..a19c1911c18e 100644
--- a/.github/workflows/stale.yml
+++ b/.github/workflows/stale.yml
@@ -10,7 +10,7 @@ permissions:
jobs:
stale:
- runs-on: ubuntu-20.04
+ runs-on: ubuntu-latest
steps:
- uses: actions/stale@v4
diff --git a/.github/workflows/tgs_test.yml b/.github/workflows/tgs_test.yml
index e78cb6e400d8..a92b6cac76a3 100644
--- a/.github/workflows/tgs_test.yml
+++ b/.github/workflows/tgs_test.yml
@@ -35,7 +35,7 @@ env:
PR_NUMBER: ${{ github.event.number }}
jobs:
test_tgs_docker:
- if: "!contains(github.event.head_commit.message, '[ci skip]')"
+ if: ( !contains(github.event.head_commit.message, '[ci skip]') )
name: Test TGS Docker
runs-on: ubuntu-22.04
concurrency:
@@ -47,7 +47,7 @@ jobs:
env:
Database__DatabaseType: Sqlite
Database__ConnectionString: Data Source=TGS_TGTest.sqlite3;Mode=ReadWriteCreate
- General__ConfigVersion: 4.1.0
+ General__ConfigVersion: 5.0.0
General__ApiPort: ${{ env.TGS_API_PORT }}
General__SetupWizardMode: Never
ports:
@@ -56,7 +56,7 @@ jobs:
- name: Setup dotnet
uses: actions/setup-dotnet@v2
with:
- dotnet-version: 7.0.x
+ dotnet-version: 8.0.x
- name: Checkout Repository
uses: actions/checkout@v3
diff --git a/.github/workflows/update_tgs_dmapi.yml b/.github/workflows/update_tgs_dmapi.yml
index 9f863ce8c123..8aa77d0d6310 100644
--- a/.github/workflows/update_tgs_dmapi.yml
+++ b/.github/workflows/update_tgs_dmapi.yml
@@ -7,7 +7,7 @@ on:
jobs:
update-dmapi:
- runs-on: ubuntu-20.04
+ runs-on: ubuntu-latest
name: Update the TGS DMAPI
steps:
- name: Clone
diff --git a/.vscode/settings.json b/.vscode/settings.json
index ee251eb53460..ff1b67e91d23 100644
--- a/.vscode/settings.json
+++ b/.vscode/settings.json
@@ -17,14 +17,14 @@
"**/.pnp.*": true
},
"editor.codeActionsOnSave": {
- "source.fixAll.eslint": true
+ "source.fixAll.eslint": "explicit"
},
"files.insertFinalNewline": true,
"gitlens.advanced.blame.customArguments": ["-w"],
"tgstationTestExplorer.project.resultsType": "json",
"[python]": {
"gitlens.codeLens.symbolScopes": ["!Module"],
- "editor.wordBasedSuggestions": false,
+ "editor.wordBasedSuggestions": "off",
"editor.insertSpaces": true,
"editor.tabSize": 4
},
diff --git a/_maps/RandomRuins/IceRuins/icemoon_crashed_holemaker.dmm b/_maps/RandomRuins/IceRuins/icemoon_crashed_holemaker.dmm
new file mode 100644
index 000000000000..50f7b24ed353
--- /dev/null
+++ b/_maps/RandomRuins/IceRuins/icemoon_crashed_holemaker.dmm
@@ -0,0 +1,4729 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"ac" = (
+/obj/machinery/door/firedoor,
+/obj/structure/table/reinforced,
+/obj/item/folder/blue,
+/obj/structure/windoor_assembly,
+/turf/open/floor/plating,
+/area/ruin/unpowered/crashed_holemaker)
+"aj" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/wallframe/light_fixture/small,
+/obj/effect/decal/cleanable/blood/drip,
+/turf/open/floor/wood{
+ icon_state = "wood-broken4"
+ },
+/area/ruin/unpowered/crashed_holemaker)
+"aq" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/toy/figure/chaplain,
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"at" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/weather/snow,
+/turf/open/floor/plating,
+/area/ruin/unpowered/crashed_holemaker)
+"aA" = (
+/obj/machinery/door/airlock/public/glass{
+ dir = 4;
+ name = "Chapel"
+ },
+/turf/open/floor/wood,
+/area/ruin/unpowered/crashed_holemaker)
+"aC" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/weather/snow{
+ dir = 4
+ },
+/turf/open/floor/plasteel/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"aE" = (
+/obj/structure/table,
+/obj/effect/turf_decal/borderfloorblack,
+/obj/machinery/airalarm/directional/south,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/tech,
+/area/ruin/unpowered/crashed_holemaker)
+"aL" = (
+/obj/effect/turf_decal/ntspaceworks_small/left,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"aP" = (
+/obj/structure/girder,
+/turf/open/floor/plating/asteroid/snow/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"aS" = (
+/obj/effect/turf_decal/snow,
+/turf/open/floor/plating/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"bd" = (
+/turf/closed/wall/mineral/snow,
+/area/ruin/unpowered/crashed_holemaker)
+"bi" = (
+/obj/effect/turf_decal/snow,
+/obj/machinery/firealarm/directional/east,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/weather/snow/surround{
+ dir = 8
+ },
+/turf/open/floor/plating/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"bj" = (
+/obj/machinery/door/airlock/glass_large{
+ name = "Theatre"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/carpet,
+/area/ruin/unpowered/crashed_holemaker)
+"br" = (
+/obj/structure/bookcase/random/fiction,
+/turf/open/floor/plating/asteroid/snow/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"bC" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/snow,
+/obj/effect/turf_decal/weather/snow{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/ruin/unpowered/crashed_holemaker)
+"bU" = (
+/obj/machinery/door/firedoor/closed,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/ruin/unpowered/crashed_holemaker)
+"bZ" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/ruin/unpowered/crashed_holemaker)
+"ca" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/weather/snow/surround{
+ dir = 4
+ },
+/turf/open/floor/wood{
+ icon_state = "wood-broken3"
+ },
+/area/ruin/unpowered/crashed_holemaker)
+"ch" = (
+/obj/item/stack/sheet/mineral/wood,
+/turf/open/floor/plating/asteroid/snow/ice/icemoon,
+/area/overmap_encounter/planetoid/cave/explored)
+"ci" = (
+/obj/effect/turf_decal/corner/opaque/black/diagonal{
+ dir = 4
+ },
+/obj/effect/turf_decal/corner/opaque/red{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/crashed_holemaker)
+"cl" = (
+/obj/effect/turf_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/tech,
+/area/ruin/unpowered/crashed_holemaker)
+"co" = (
+/obj/item/caution,
+/obj/effect/decal/cleanable/blood/drip,
+/turf/open/floor/plasteel/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"cw" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/spider/stickyweb,
+/mob/living/simple_animal/hostile/poison/giant_spider/hunter/ice,
+/turf/open/floor/plasteel/tech,
+/area/ruin/unpowered/crashed_holemaker)
+"cA" = (
+/obj/structure/window/spawner/west,
+/obj/structure/displaycase_chassis,
+/obj/effect/turf_decal/weather/snow{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/ruin/unpowered/crashed_holemaker)
+"cG" = (
+/obj/effect/turf_decal/weather/dirt/corner{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/weather/snow{
+ dir = 8
+ },
+/obj/machinery/power/port_gen/pacman,
+/obj/structure/cable/orange{
+ icon_state = "4-10"
+ },
+/obj/structure/cable/orange{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/ruin/unpowered/crashed_holemaker)
+"cI" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 6
+ },
+/obj/effect/turf_decal/spline/fancy/transparent/ntblue{
+ dir = 6
+ },
+/obj/machinery/firealarm/directional/east,
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"cL" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 8
+ },
+/obj/structure/table/reinforced{
+ color = "#283674"
+ },
+/obj/effect/turf_decal/spline/fancy/transparent/ntblue{
+ dir = 8
+ },
+/obj/structure/sign/poster/retro/nanotrasen_logo_70s{
+ pixel_x = -32
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"cS" = (
+/obj/structure/table/wood,
+/turf/open/floor/wood{
+ icon_state = "wood-broken5"
+ },
+/area/ruin/unpowered/crashed_holemaker)
+"cV" = (
+/obj/machinery/door/airlock/command/glass{
+ dir = 4;
+ name = "Captain's Quarters"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/ruin/unpowered/crashed_holemaker)
+"do" = (
+/obj/effect/turf_decal/corner/opaque/black/diagonal{
+ dir = 4
+ },
+/obj/structure/salvageable/machine,
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/crashed_holemaker)
+"dt" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/structure/table/wood,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/sign/poster/official/work_for_a_future{
+ pixel_x = 32
+ },
+/obj/item/stack/sheet/mineral/wood,
+/turf/open/floor/wood,
+/area/ruin/unpowered/crashed_holemaker)
+"eg" = (
+/obj/effect/turf_decal/corner/opaque/black/diagonal{
+ dir = 4
+ },
+/obj/effect/turf_decal/corner/opaque/red{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/crashed_holemaker)
+"ek" = (
+/obj/structure/window/reinforced/spawner,
+/obj/structure/window/reinforced/spawner/west,
+/obj/effect/decal/cleanable/glass,
+/obj/item/shard,
+/obj/item/paper_bin,
+/turf/open/floor/plating/dirt/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"ey" = (
+/obj/structure/chair/office/dark{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/snow,
+/turf/open/floor/carpet/royalblue,
+/area/ruin/unpowered/crashed_holemaker)
+"eD" = (
+/obj/item/stack/tile/plasteel,
+/turf/open/floor/plating/asteroid/snow/icemoon,
+/area/overmap_encounter/planetoid/cave/explored)
+"eE" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/turf_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"eG" = (
+/obj/item/stack/tile/plasteel,
+/turf/open/floor/plating,
+/area/ruin/unpowered/crashed_holemaker)
+"eJ" = (
+/obj/structure/catwalk/over/plated_catwalk/dark,
+/obj/effect/decal/cleanable/dirt/dust,
+/mob/living/simple_animal/hostile/asteroid/ice_demon,
+/obj/effect/decal/cleanable/blood/footprints{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/ruin/unpowered/crashed_holemaker)
+"eL" = (
+/turf/open/floor/plating/asteroid/snow/ice/icemoon,
+/area/overmap_encounter/planetoid/cave/explored)
+"eP" = (
+/obj/effect/turf_decal/chapel{
+ dir = 1
+ },
+/obj/item/stack/sheet/mineral/wood,
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"eT" = (
+/obj/effect/decal/cleanable/glass,
+/obj/item/shard,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/window/spawner,
+/obj/effect/turf_decal/weather/snow{
+ dir = 8
+ },
+/obj/structure/cable/orange{
+ icon_state = "4-9"
+ },
+/turf/open/floor/plating,
+/area/ruin/unpowered/crashed_holemaker)
+"fn" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/turf_decal/corner/transparent/brown/half{
+ dir = 4
+ },
+/obj/effect/turf_decal/spline/fancy/transparent/neutral,
+/obj/item/flashlight/lantern,
+/turf/open/floor/plastic,
+/area/ruin/unpowered/crashed_holemaker)
+"fr" = (
+/obj/machinery/door/firedoor/border_only/closed{
+ dir = 8
+ },
+/obj/structure/sign/departments/botany{
+ pixel_y = -32
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/ruin/unpowered/crashed_holemaker)
+"fx" = (
+/obj/structure/flora/tree/pine,
+/turf/open/floor/plating/asteroid/snow/ice/icemoon,
+/area/overmap_encounter/planetoid/cave/explored)
+"fD" = (
+/obj/effect/turf_decal/corner/opaque/black{
+ dir = 4
+ },
+/obj/effect/turf_decal/corner/opaque/blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/corner/opaque/red/diagonal,
+/turf/open/floor/plasteel/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"fO" = (
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"fV" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/weather/snow/surround{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/ruin/unpowered/crashed_holemaker)
+"ga" = (
+/obj/item/stack/cable_coil/cut/yellow,
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/overmap_encounter/planetoid/cave/explored)
+"gc" = (
+/obj/item/stack/ore/salvage/scrapmetal,
+/turf/open/floor/plating/asteroid/snow/icemoon,
+/area/overmap_encounter/planetoid/cave/explored)
+"ge" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/structure/musician/piano,
+/obj/machinery/firealarm/directional/west,
+/turf/open/floor/wood,
+/area/ruin/unpowered/crashed_holemaker)
+"gp" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/weather/snow{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/ruin/unpowered/crashed_holemaker)
+"gF" = (
+/obj/effect/turf_decal/siding/wood,
+/obj/machinery/suit_storage_unit/open,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"gG" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/snow,
+/obj/effect/turf_decal/weather/snow{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/ruin/unpowered/crashed_holemaker)
+"gU" = (
+/obj/effect/turf_decal/borderfloorblack,
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"hl" = (
+/obj/structure/chair/office/dark{
+ dir = 4
+ },
+/obj/item/pen,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"ho" = (
+/obj/effect/turf_decal/corner/opaque/black/diagonal{
+ dir = 4
+ },
+/obj/effect/turf_decal/corner/opaque/red{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/bed/double/maint,
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/crashed_holemaker)
+"hs" = (
+/obj/item/stack/sheet/mineral/snow,
+/turf/open/floor/plating/asteroid/snow/ice/icemoon,
+/area/overmap_encounter/planetoid/cave/explored)
+"hO" = (
+/obj/item/stack/ore/salvage/scrapmetal,
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/overmap_encounter/planetoid/cave/explored)
+"hP" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood{
+ icon_state = "wood-broken5"
+ },
+/area/ruin/unpowered/crashed_holemaker)
+"hX" = (
+/obj/effect/turf_decal/corner/opaque/bar,
+/obj/effect/turf_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"ib" = (
+/obj/effect/turf_decal/borderfloorblack/full,
+/obj/machinery/chem_master/condimaster,
+/obj/machinery/airalarm/directional/west,
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"it" = (
+/obj/item/stack/tile/plasteel,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/snow,
+/obj/effect/turf_decal/weather/snow/surround{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/ruin/unpowered/crashed_holemaker)
+"iw" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/turf_decal/corner/transparent/brown/half{
+ dir = 4
+ },
+/turf/open/floor/plastic,
+/area/ruin/unpowered/crashed_holemaker)
+"iM" = (
+/obj/effect/turf_decal/chapel{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/bed/double{
+ dir = 1
+ },
+/obj/item/bedsheet/dorms/double{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"iN" = (
+/obj/effect/turf_decal/siding/wood,
+/obj/effect/turf_decal/weather/dirt{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/ruin/unpowered/crashed_holemaker)
+"iS" = (
+/obj/item/shard,
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/overmap_encounter/planetoid/cave/explored)
+"iX" = (
+/obj/effect/turf_decal/corner/opaque/bar/diagonal,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"iY" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/turf_decal/spline/fancy/transparent/ntblue{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"jj" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/structure/extinguisher_cabinet/directional/south,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/carpet,
+/area/ruin/unpowered/crashed_holemaker)
+"jp" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/sink/puddle,
+/turf/open/floor/plating,
+/area/ruin/unpowered/crashed_holemaker)
+"jr" = (
+/obj/effect/turf_decal/snow,
+/obj/structure/table_frame/wood,
+/obj/item/radio/intercom/directional/north,
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"jz" = (
+/obj/structure/bed,
+/obj/item/bedsheet/captain,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/ruin/unpowered/crashed_holemaker)
+"jJ" = (
+/obj/effect/turf_decal/borderfloorblack{
+ dir = 10
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/mob_spawn/human/corpse/assistant/husked,
+/obj/effect/decal/cleanable/blood/old,
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"jP" = (
+/obj/effect/turf_decal/siding/wood,
+/obj/machinery/shower{
+ dir = 8
+ },
+/obj/structure/window/reinforced/spawner,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/light/bulb/broken,
+/turf/open/floor/plasteel/freezer,
+/area/ruin/unpowered/crashed_holemaker)
+"jT" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/turf_decal/corner/transparent/beige/half{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/chair/stool/bar{
+ dir = 4
+ },
+/turf/open/floor/plastic,
+/area/ruin/unpowered/crashed_holemaker)
+"jU" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/weather/snow{
+ dir = 10
+ },
+/obj/effect/decal/cleanable/blood/footprints,
+/turf/open/floor/plasteel/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"jW" = (
+/obj/structure/bookcase/random/nonfiction,
+/turf/open/floor/wood,
+/area/ruin/unpowered/crashed_holemaker)
+"jY" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/carpet,
+/area/ruin/unpowered/crashed_holemaker)
+"jZ" = (
+/obj/effect/turf_decal/corner/opaque/blue/diagonal{
+ dir = 4
+ },
+/obj/effect/turf_decal/corner/opaque/red/diagonal,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/bed/double/maint{
+ dir = 1
+ },
+/obj/structure/railing/wood{
+ dir = 8
+ },
+/turf/open/floor/plasteel/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"ka" = (
+/obj/effect/turf_decal/corner/opaque/bar,
+/obj/effect/turf_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/turf_decal/snow,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"kp" = (
+/obj/structure/door_assembly/door_assembly_ext{
+ dir = 4
+ },
+/turf/open/floor/plating/asteroid/snow/ice/icemoon,
+/area/overmap_encounter/planetoid/cave/explored)
+"kt" = (
+/obj/effect/turf_decal/snow,
+/obj/effect/turf_decal/weather/snow{
+ dir = 4
+ },
+/obj/item/cane,
+/turf/open/floor/plasteel/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"kz" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/ruin/unpowered/crashed_holemaker)
+"kF" = (
+/obj/effect/turf_decal/siding/wood,
+/obj/effect/turf_decal/weather/dirt/corner{
+ dir = 8
+ },
+/obj/machinery/light/broken/directional/north,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/ruin/unpowered/crashed_holemaker)
+"kH" = (
+/obj/effect/turf_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/structure/spider/stickyweb,
+/turf/open/floor/plasteel/tech,
+/area/ruin/unpowered/crashed_holemaker)
+"kQ" = (
+/obj/structure/closet/firecloset,
+/obj/effect/turf_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/corner/transparent/blue{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/patterned,
+/area/ruin/unpowered/crashed_holemaker)
+"kS" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/wood,
+/area/ruin/unpowered/crashed_holemaker)
+"lm" = (
+/obj/effect/turf_decal/siding/wood,
+/obj/structure/toilet{
+ pixel_y = 10
+ },
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = 12;
+ pixel_y = 6
+ },
+/turf/open/floor/plasteel/freezer,
+/area/ruin/unpowered/crashed_holemaker)
+"lt" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/spawner/lootdrop/crate_spawner,
+/turf/open/floor/plating,
+/area/ruin/unpowered/crashed_holemaker)
+"lu" = (
+/obj/effect/turf_decal/snow,
+/obj/item/stack/tile/plasteel,
+/obj/effect/turf_decal/weather/snow{
+ dir = 6
+ },
+/turf/open/floor/plating/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"lN" = (
+/obj/effect/turf_decal/trimline/transparent/ntblue/arrow_ccw,
+/obj/effect/turf_decal/weather/dirt,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/chair/comfy/brown{
+ dir = 8
+ },
+/turf/open/floor/plasteel/tech/techmaint,
+/area/ruin/unpowered/crashed_holemaker)
+"lO" = (
+/obj/effect/turf_decal/ntspaceworks_small/right,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"lS" = (
+/obj/structure/window/reinforced/spawner/west,
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/overmap_encounter/planetoid/cave/explored)
+"lT" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 8
+ },
+/obj/structure/frame/computer/retro{
+ dir = 4
+ },
+/obj/effect/turf_decal/spline/fancy/transparent/ntblue{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"lU" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/machinery/door/airlock/command/glass{
+ dir = 4;
+ name = "Captain's Quarters"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/ruin/unpowered/crashed_holemaker)
+"mb" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"md" = (
+/obj/structure/window/spawner/west,
+/obj/structure/window/spawner,
+/turf/open/floor/plating/dirt/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"mn" = (
+/obj/effect/turf_decal/borderfloorblack{
+ dir = 9
+ },
+/obj/item/radio/intercom/directional/north,
+/obj/structure/closet/cabinet,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"ms" = (
+/obj/effect/turf_decal/snow,
+/obj/effect/turf_decal/weather/snow{
+ dir = 9
+ },
+/obj/effect/decal/cleanable/blood/drip,
+/turf/open/floor/plating,
+/area/ruin/unpowered/crashed_holemaker)
+"mu" = (
+/obj/effect/turf_decal/snow,
+/obj/effect/turf_decal/weather/snow{
+ dir = 6
+ },
+/turf/open/floor/plating/icemoon,
+/area/overmap_encounter/planetoid/cave/explored)
+"mx" = (
+/obj/effect/turf_decal/trimline/opaque/ntblue/corner,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/salvageable/machine,
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"mz" = (
+/obj/structure/table/wood/fancy,
+/obj/effect/turf_decal/siding/wood,
+/obj/effect/turf_decal/snow,
+/turf/open/floor/wood,
+/area/ruin/unpowered/crashed_holemaker)
+"mA" = (
+/obj/machinery/vending/boozeomat/all_access,
+/turf/open/floor/plating,
+/area/ruin/unpowered/crashed_holemaker)
+"mO" = (
+/obj/effect/decal/cleanable/glass,
+/obj/item/wrench,
+/obj/effect/turf_decal/corner/opaque/green/border,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/weather/snow{
+ dir = 1
+ },
+/turf/open/floor/plasteel/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"mU" = (
+/obj/effect/turf_decal/spline/fancy/transparent/neutral{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"mV" = (
+/obj/structure/salvageable/machine,
+/turf/open/floor/plasteel/tech,
+/area/ruin/unpowered/crashed_holemaker)
+"nb" = (
+/obj/effect/turf_decal/borderfloorblack{
+ dir = 9
+ },
+/obj/effect/turf_decal/corner/opaque/bar,
+/obj/item/chair,
+/obj/machinery/airalarm/directional/north,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"nd" = (
+/obj/item/stack/tile/plasteel,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/ruin/unpowered/crashed_holemaker)
+"ng" = (
+/obj/item/flashlight/flare,
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/overmap_encounter/planetoid/cave/explored)
+"nA" = (
+/turf/closed/wall/mineral/wood/nonmetal,
+/area/ruin/unpowered/crashed_holemaker)
+"nC" = (
+/obj/effect/turf_decal/snow,
+/obj/effect/turf_decal/weather/snow/surround,
+/turf/open/floor/plasteel/icemoon,
+/area/overmap_encounter/planetoid/cave/explored)
+"nL" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/mob_spawn/human/cook/husked,
+/obj/effect/decal/cleanable/blood/old,
+/turf/open/floor/wood,
+/area/ruin/unpowered/crashed_holemaker)
+"nO" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/weather/snow,
+/obj/effect/turf_decal/weather/snow{
+ dir = 1
+ },
+/turf/open/floor/plasteel/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"nW" = (
+/turf/template_noop,
+/area/template_noop)
+"oa" = (
+/obj/effect/turf_decal/borderfloor/full,
+/obj/machinery/door/airlock{
+ name = "Service Hall";
+ dir = 4
+ },
+/obj/effect/turf_decal/snow,
+/obj/effect/mapping_helpers/airlock/locked,
+/turf/open/floor/plasteel/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"oj" = (
+/obj/effect/decal/cleanable/glass,
+/obj/structure/grille/broken,
+/obj/effect/turf_decal/snow,
+/obj/effect/turf_decal/weather/snow{
+ dir = 8
+ },
+/turf/open/floor/plating/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"or" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
+/obj/structure/salvageable/computer,
+/obj/effect/turf_decal/spline/fancy/transparent/ntblue{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"oC" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/kitchen/knife,
+/turf/open/floor/wood{
+ icon_state = "wood-broken7"
+ },
+/area/ruin/unpowered/crashed_holemaker)
+"oD" = (
+/turf/open/floor/wood{
+ icon_state = "wood-broken6"
+ },
+/area/ruin/unpowered/crashed_holemaker)
+"oI" = (
+/obj/item/shovel/spade,
+/turf/open/floor/plating/asteroid/snow/ice/icemoon,
+/area/overmap_encounter/planetoid/cave/explored)
+"oS" = (
+/obj/effect/turf_decal/snow,
+/turf/open/floor/wood,
+/area/ruin/unpowered/crashed_holemaker)
+"pl" = (
+/obj/structure/window/reinforced/spawner/east,
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/plating/dirt/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"pn" = (
+/obj/structure/girder/reinforced,
+/turf/open/floor/plating/asteroid/snow/icemoon,
+/area/overmap_encounter/planetoid/cave/explored)
+"pw" = (
+/obj/structure/bookcase/random/fiction,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood{
+ icon_state = "wood-broken6"
+ },
+/area/ruin/unpowered/crashed_holemaker)
+"px" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/stack/tile/wood,
+/obj/effect/turf_decal/weather/snow/surround{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/ruin/unpowered/crashed_holemaker)
+"pz" = (
+/obj/effect/turf_decal/trimline/transparent/ntblue/arrow_ccw{
+ dir = 10
+ },
+/obj/effect/turf_decal/borderfloor,
+/obj/effect/turf_decal/weather/dirt{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/weather/snow,
+/obj/item/extinguisher/mini/empty,
+/turf/open/floor/plasteel/tech/techmaint,
+/area/ruin/unpowered/crashed_holemaker)
+"pF" = (
+/obj/effect/turf_decal/snow,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/ruin/unpowered/crashed_holemaker)
+"pL" = (
+/obj/effect/turf_decal/snow,
+/obj/item/stack/cable_coil/cut/yellow,
+/obj/effect/turf_decal/weather/snow{
+ dir = 10
+ },
+/turf/open/floor/plating/icemoon,
+/area/overmap_encounter/planetoid/cave/explored)
+"pV" = (
+/obj/machinery/door/airlock/maintenance_hatch,
+/turf/open/floor/plating,
+/area/ruin/unpowered/crashed_holemaker)
+"qa" = (
+/obj/structure/window/reinforced/spawner/east,
+/obj/structure/window/reinforced/spawner,
+/obj/item/shard,
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/plating/dirt/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"qo" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/turf_decal/spline/fancy/transparent/ntblue{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"qq" = (
+/obj/structure/girder/reinforced,
+/turf/open/floor/plating/asteroid/snow/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"qr" = (
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/overmap_encounter/planetoid/cave/explored)
+"qF" = (
+/turf/closed/wall/mineral/titanium/survival,
+/area/overmap_encounter/planetoid/cave/explored)
+"qM" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/blood/splatter,
+/turf/open/floor/plasteel/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"qS" = (
+/obj/machinery/door/firedoor/border_only/closed{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/ruin/unpowered/crashed_holemaker)
+"qY" = (
+/obj/structure/frame/computer{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/ruin/unpowered/crashed_holemaker)
+"rk" = (
+/obj/item/stack/tile/wood,
+/turf/open/floor/plating,
+/area/ruin/unpowered/crashed_holemaker)
+"rl" = (
+/obj/item/kirbyplants/random,
+/obj/effect/turf_decal/spline/fancy/transparent/neutral/corner{
+ dir = 1
+ },
+/obj/item/dualsaber/toy,
+/turf/open/floor/plasteel/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"rm" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/turf_decal/corner/transparent/orange/half{
+ dir = 4
+ },
+/turf/open/floor/plastic,
+/area/ruin/unpowered/crashed_holemaker)
+"ry" = (
+/obj/structure/table/wood/fancy,
+/obj/effect/turf_decal/siding/wood,
+/obj/effect/turf_decal/snow,
+/turf/open/floor/wood{
+ icon_state = "wood-broken3"
+ },
+/area/ruin/unpowered/crashed_holemaker)
+"rz" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/fluff/broken_flooring,
+/turf/open/floor/plating,
+/area/ruin/unpowered/crashed_holemaker)
+"rL" = (
+/obj/effect/turf_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/tech,
+/area/ruin/unpowered/crashed_holemaker)
+"rP" = (
+/obj/effect/turf_decal/box,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/radio/intercom/directional/north,
+/turf/open/floor/plasteel/tech,
+/area/ruin/unpowered/crashed_holemaker)
+"rR" = (
+/obj/effect/turf_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/structure/table/wood,
+/obj/machinery/firealarm/directional/east,
+/obj/machinery/chem_dispenser/drinks/beer{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"rW" = (
+/obj/effect/turf_decal/snow,
+/obj/machinery/light/broken/directional/west,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/weather/snow/surround{
+ dir = 4
+ },
+/turf/open/floor/plasteel/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"sd" = (
+/obj/structure/rack,
+/obj/machinery/light/broken/directional/north,
+/turf/open/floor/plasteel/tech,
+/area/ruin/unpowered/crashed_holemaker)
+"se" = (
+/obj/effect/turf_decal/borderfloor,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/tech,
+/area/ruin/unpowered/crashed_holemaker)
+"sf" = (
+/obj/effect/turf_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/turf_decal/corner/opaque/bar{
+ dir = 1
+ },
+/obj/machinery/light/broken/directional/east,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"sj" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/weather/snow{
+ dir = 8
+ },
+/turf/open/floor/wood{
+ icon_state = "wood-broken5"
+ },
+/area/ruin/unpowered/crashed_holemaker)
+"sy" = (
+/obj/structure/extinguisher_cabinet/directional/west,
+/turf/open/floor/plating/asteroid/snow/icemoon,
+/area/overmap_encounter/planetoid/cave/explored)
+"td" = (
+/obj/structure/table/wood/reinforced,
+/obj/item/flashlight/lamp/green{
+ pixel_y = 15;
+ pixel_x = -7
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/carpet/royalblue,
+/area/ruin/unpowered/crashed_holemaker)
+"tm" = (
+/turf/open/floor/plating/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"tt" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/storage/toolbox/electrical,
+/turf/open/floor/plasteel/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"ty" = (
+/obj/structure/loom,
+/turf/open/floor/plating,
+/area/ruin/unpowered/crashed_holemaker)
+"tH" = (
+/obj/effect/turf_decal/borderfloorblack/full,
+/obj/effect/turf_decal/spline/fancy/transparent/ntblue{
+ dir = 4
+ },
+/obj/machinery/door/airlock/command/glass{
+ dir = 4;
+ name = "Lieutenant's Quarters"
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"tN" = (
+/obj/structure/table/wood/reinforced,
+/obj/machinery/light/built/directional/south,
+/obj/item/light/tube/broken,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/carpet/royalblue,
+/area/ruin/unpowered/crashed_holemaker)
+"tO" = (
+/obj/effect/turf_decal/ntspaceworks_small,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"tW" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood{
+ icon_state = "wood-broken6"
+ },
+/area/ruin/unpowered/crashed_holemaker)
+"uh" = (
+/obj/effect/turf_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/structure/table/wood,
+/obj/machinery/chem_dispenser/drinks{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"um" = (
+/obj/effect/turf_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/corner/transparent/ntblue/border{
+ dir = 6
+ },
+/obj/structure/frame/computer{
+ dir = 1
+ },
+/obj/effect/turf_decal/snow,
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"un" = (
+/obj/effect/turf_decal/snow,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood{
+ icon_state = "wood-broken"
+ },
+/area/ruin/unpowered/crashed_holemaker)
+"uI" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/snow,
+/turf/open/floor/wood{
+ icon_state = "wood-broken5"
+ },
+/area/ruin/unpowered/crashed_holemaker)
+"uK" = (
+/obj/machinery/airalarm/directional/north,
+/obj/effect/turf_decal/weather/dirt/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/transparent/ntblue/corner{
+ dir = 8
+ },
+/turf/open/floor/plasteel/tech/techmaint,
+/area/ruin/unpowered/crashed_holemaker)
+"uL" = (
+/obj/effect/turf_decal/borderfloor/full,
+/obj/effect/turf_decal/spline/fancy/transparent/ntblue{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/snow,
+/turf/open/floor/plasteel/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"uN" = (
+/obj/effect/turf_decal/borderfloorblack{
+ dir = 6
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/coin/antagtoken,
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"uO" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/microwave{
+ pixel_y = 5
+ },
+/obj/structure/table,
+/turf/open/floor/wood{
+ icon_state = "wood-broken6"
+ },
+/area/ruin/unpowered/crashed_holemaker)
+"uR" = (
+/obj/effect/turf_decal/corner/opaque/black/diagonal{
+ dir = 4
+ },
+/obj/structure/table/wood,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/clothing/head/collectable/flatcap{
+ pixel_y = 8;
+ pixel_x = 5
+ },
+/obj/item/stack/ore/salvage/scrapgold/five,
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/crashed_holemaker)
+"uU" = (
+/obj/effect/turf_decal/siding/wood,
+/obj/effect/turf_decal/snow,
+/obj/structure/door_assembly/door_assembly_grunge,
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"vc" = (
+/obj/structure/extinguisher_cabinet/directional/north,
+/turf/open/floor/plating/asteroid/snow/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"vd" = (
+/turf/closed/wall/rust,
+/area/ruin/unpowered/crashed_holemaker)
+"vg" = (
+/turf/open/floor/plating/asteroid/snow/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"vr" = (
+/obj/effect/turf_decal/siding/wood,
+/obj/machinery/airalarm/directional/north,
+/obj/item/stack/ore/salvage/scrapmetal,
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"vK" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
+/obj/structure/frame/computer,
+/obj/effect/turf_decal/spline/fancy/transparent/ntblue{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"vT" = (
+/obj/effect/turf_decal/siding/wood,
+/obj/effect/turf_decal/weather/dirt{
+ dir = 1
+ },
+/turf/open/floor/wood{
+ icon_state = "wood-broken4"
+ },
+/area/ruin/unpowered/crashed_holemaker)
+"vU" = (
+/obj/effect/turf_decal/borderfloorblack{
+ dir = 9
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/spider/stickyweb,
+/turf/open/floor/plasteel/tech,
+/area/ruin/unpowered/crashed_holemaker)
+"wr" = (
+/obj/effect/turf_decal/chapel,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/stack/rods/twentyfive,
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"wx" = (
+/turf/open/floor/plating/asteroid/snow/icemoon,
+/area/overmap_encounter/planetoid/cave/explored)
+"wC" = (
+/obj/machinery/door/firedoor/closed,
+/turf/open/floor/plating/asteroid/snow/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"wH" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/turf_decal/corner/transparent/beige/half{
+ dir = 8
+ },
+/obj/effect/turf_decal/spline/fancy/transparent/neutral,
+/turf/open/floor/plastic,
+/area/ruin/unpowered/crashed_holemaker)
+"xd" = (
+/obj/effect/turf_decal/siding/wood,
+/obj/structure/table_frame/wood,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"xs" = (
+/obj/effect/turf_decal/corner/opaque/black{
+ dir = 4
+ },
+/obj/effect/turf_decal/corner/opaque/blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/corner/opaque/red/diagonal,
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/machinery/door/airlock/glass_large{
+ name = "Theatre"
+ },
+/turf/open/floor/plasteel/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"xA" = (
+/obj/effect/turf_decal/chapel{
+ dir = 4
+ },
+/obj/machinery/airalarm/directional/north,
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"xJ" = (
+/obj/item/stack/cable_coil/cut/orange,
+/turf/open/floor/plating/asteroid/snow/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"xK" = (
+/obj/effect/turf_decal/corner/opaque/bar,
+/obj/effect/turf_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/structure/chair/stool/bar{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"xQ" = (
+/obj/structure/closet,
+/obj/effect/turf_decal/borderfloorwhite/corner,
+/obj/effect/turf_decal/corner/transparent/red{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/patterned,
+/area/ruin/unpowered/crashed_holemaker)
+"ya" = (
+/obj/machinery/airalarm/directional/west,
+/turf/open/floor/plating/asteroid/snow/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"yp" = (
+/obj/machinery/door/firedoor/border_only/closed{
+ dir = 8
+ },
+/obj/item/stack/ore/salvage/scrapsilver,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/ruin/unpowered/crashed_holemaker)
+"yr" = (
+/obj/machinery/airalarm/directional/south,
+/obj/structure/bed,
+/obj/item/bedsheet/head_of_personnel,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood{
+ icon_state = "wood-broken3"
+ },
+/area/ruin/unpowered/crashed_holemaker)
+"yE" = (
+/obj/item/wallframe/airalarm,
+/turf/open/floor/plating/asteroid/snow/ice/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"yG" = (
+/obj/structure/table/wood/fancy,
+/turf/open/floor/carpet,
+/area/ruin/unpowered/crashed_holemaker)
+"yH" = (
+/obj/effect/turf_decal/corner/opaque/blue/diagonal{
+ dir = 4
+ },
+/obj/effect/turf_decal/corner/opaque/red/diagonal,
+/obj/item/stack/sheet/cotton/cloth/five,
+/turf/open/floor/plasteel/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"yN" = (
+/obj/effect/turf_decal/trimline/opaque/ntblue/warning,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/stack/ore/salvage/scrapsilver,
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"yR" = (
+/obj/item/stack/sheet/mineral/snow,
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/overmap_encounter/planetoid/cave/explored)
+"yU" = (
+/obj/structure/girder,
+/obj/effect/turf_decal/snow,
+/turf/open/floor/plating/icemoon,
+/area/overmap_encounter/planetoid/cave/explored)
+"yV" = (
+/obj/structure/rack,
+/obj/item/reagent_containers/food/snacks/sosjerky,
+/turf/open/floor/carpet,
+/area/ruin/unpowered/crashed_holemaker)
+"ze" = (
+/obj/effect/spawner/lootdrop/crate_spawner,
+/turf/open/floor/plating,
+/area/ruin/unpowered/crashed_holemaker)
+"zh" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/glass,
+/obj/machinery/hydroponics/constructable,
+/obj/effect/turf_decal/snow,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/weather/snow{
+ dir = 4
+ },
+/turf/open/floor/plasteel/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"zs" = (
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"zy" = (
+/obj/effect/turf_decal/snow,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/weather/snow{
+ dir = 5
+ },
+/turf/open/floor/plating/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"zE" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/turf_decal/corner/transparent/orange/half{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/table/wood,
+/obj/item/reagent_containers/food/drinks/soda_cans/pwr_game{
+ pixel_y = 12;
+ pixel_x = -7
+ },
+/turf/open/floor/plastic,
+/area/ruin/unpowered/crashed_holemaker)
+"Ab" = (
+/obj/effect/turf_decal/trimline/transparent/ntblue/arrow_ccw,
+/obj/effect/turf_decal/weather/dirt,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/tech/techmaint,
+/area/ruin/unpowered/crashed_holemaker)
+"Af" = (
+/obj/effect/turf_decal/corner/opaque/green/bordercorner,
+/obj/effect/turf_decal/snow,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/item/pen,
+/obj/effect/turf_decal/weather/snow{
+ dir = 4
+ },
+/turf/open/floor/plasteel/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"An" = (
+/obj/effect/turf_decal/borderfloor/full,
+/obj/machinery/door/airlock{
+ name = "Service Hall";
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/locked,
+/turf/open/floor/plasteel/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"Au" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood{
+ icon_state = "wood-broken"
+ },
+/area/ruin/unpowered/crashed_holemaker)
+"AF" = (
+/obj/effect/turf_decal/siding/wood,
+/obj/structure/toilet{
+ pixel_y = 10
+ },
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = -12;
+ pixel_y = 6
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/stack/sheet/plasteel,
+/turf/open/floor/plasteel/freezer,
+/area/ruin/unpowered/crashed_holemaker)
+"AH" = (
+/obj/effect/turf_decal/siding/wood/corner,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/trash/plate,
+/turf/open/floor/wood{
+ icon_state = "wood-broken5"
+ },
+/area/ruin/unpowered/crashed_holemaker)
+"AQ" = (
+/obj/effect/turf_decal/borderfloorblack/full,
+/obj/machinery/door/airlock/public/glass{
+ dir = 4;
+ name = "Bar"
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"Bf" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 10
+ },
+/obj/effect/turf_decal/snow,
+/obj/machinery/newscaster/directional/north,
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"Bj" = (
+/obj/effect/turf_decal/borderfloor/corner,
+/obj/effect/turf_decal/corner/transparent/ntblue/border{
+ dir = 9
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"Bm" = (
+/obj/effect/turf_decal/snow,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"Bt" = (
+/obj/effect/turf_decal/borderfloorblack,
+/obj/effect/turf_decal/corner/opaque/bar{
+ dir = 1
+ },
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"By" = (
+/obj/effect/turf_decal/borderfloorblack{
+ dir = 9
+ },
+/obj/effect/turf_decal/corner/opaque/bar,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/cigbutt/cigarbutt,
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"BT" = (
+/obj/effect/turf_decal/corner/opaque/blue/diagonal{
+ dir = 4
+ },
+/obj/effect/turf_decal/corner/opaque/red/diagonal,
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"BY" = (
+/obj/effect/turf_decal/corner/opaque/bar/diagonal,
+/obj/effect/turf_decal/snow,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/wrapping,
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"BZ" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/blood/footprints{
+ dir = 4
+ },
+/turf/open/floor/plasteel/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"Cb" = (
+/obj/machinery/firealarm/directional/north,
+/obj/item/pet_carrier,
+/turf/open/floor/plating/dirt/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"Ch" = (
+/obj/structure/salvageable/seed,
+/obj/structure/window/reinforced/spawner/west,
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/overmap_encounter/planetoid/cave/explored)
+"Cj" = (
+/obj/structure/frame/machine,
+/turf/open/floor/plating/asteroid/snow/ice/icemoon,
+/area/overmap_encounter/planetoid/cave/explored)
+"Cp" = (
+/obj/effect/turf_decal/borderfloor/full,
+/obj/machinery/door/airlock/command/glass{
+ name = "Bridge"
+ },
+/turf/open/floor/plasteel/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"Cz" = (
+/turf/closed/mineral/random/snow,
+/area/overmap_encounter/planetoid/cave/explored)
+"CH" = (
+/obj/item/storage/toolbox/mechanical,
+/turf/open/floor/wood,
+/area/ruin/unpowered/crashed_holemaker)
+"CQ" = (
+/obj/machinery/door/airlock/maintenance_hatch,
+/obj/effect/turf_decal/weather/snow,
+/turf/open/floor/plating,
+/area/ruin/unpowered/crashed_holemaker)
+"CU" = (
+/obj/effect/turf_decal/corner/opaque/bar,
+/obj/effect/turf_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"CZ" = (
+/obj/effect/turf_decal/trimline/opaque/ntblue/corner{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"Dx" = (
+/obj/effect/turf_decal/borderfloor/full,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/mineral_door/wood,
+/turf/open/floor/plasteel/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"DB" = (
+/obj/structure/table/wood/fancy,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/carpet,
+/area/ruin/unpowered/crashed_holemaker)
+"DG" = (
+/obj/machinery/door/airlock/maintenance_hatch{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/abandoned,
+/turf/open/floor/plating,
+/area/ruin/unpowered/crashed_holemaker)
+"DR" = (
+/obj/effect/turf_decal/borderfloor,
+/obj/effect/turf_decal/spline/fancy/transparent/ntblue,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"Ec" = (
+/obj/effect/turf_decal/borderfloorblack{
+ dir = 9
+ },
+/obj/structure/table_frame/wood,
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"En" = (
+/obj/effect/turf_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/turf_decal/corner/opaque/bar{
+ dir = 1
+ },
+/obj/effect/turf_decal/snow,
+/obj/machinery/firealarm/directional/east,
+/obj/structure/chair/stool/bar,
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"Ep" = (
+/obj/machinery/newscaster/directional/north,
+/obj/structure/bed/dogbed,
+/turf/open/floor/plating/dirt/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"Ey" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/turf_decal/corner/transparent/brown/half{
+ dir = 4
+ },
+/obj/structure/chair/wood{
+ dir = 8
+ },
+/turf/open/floor/plastic,
+/area/ruin/unpowered/crashed_holemaker)
+"EE" = (
+/obj/effect/turf_decal/borderfloorblack,
+/obj/effect/turf_decal/corner/opaque/bar{
+ dir = 1
+ },
+/obj/effect/turf_decal/snow,
+/obj/item/radio/intercom/directional/south,
+/obj/structure/table,
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"ET" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/turf_decal/corner/transparent/brown/half{
+ dir = 4
+ },
+/obj/effect/turf_decal/spline/fancy/transparent/neutral{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/chair/stool{
+ dir = 8
+ },
+/turf/open/floor/plastic,
+/area/ruin/unpowered/crashed_holemaker)
+"EX" = (
+/obj/machinery/light/broken/directional/east,
+/obj/structure/table,
+/obj/item/stack/sheet/mineral/plasma/five,
+/turf/open/floor/plasteel/tech/techmaint,
+/area/ruin/unpowered/crashed_holemaker)
+"Fg" = (
+/turf/closed/mineral/random/snow,
+/area/ruin/unpowered/crashed_holemaker)
+"Fr" = (
+/obj/effect/turf_decal/weather/snow{
+ dir = 1
+ },
+/turf/open/floor/wood{
+ icon_state = "wood-broken5"
+ },
+/area/ruin/unpowered/crashed_holemaker)
+"FA" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/turf_decal/corner/transparent/beige/half{
+ dir = 8
+ },
+/turf/open/floor/plastic,
+/area/ruin/unpowered/crashed_holemaker)
+"FG" = (
+/obj/effect/turf_decal/chapel{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/space_heater,
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"Gp" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/turf_decal/corner/transparent/orange/half{
+ dir = 8
+ },
+/obj/effect/turf_decal/spline/fancy/transparent/neutral,
+/turf/open/floor/plastic,
+/area/ruin/unpowered/crashed_holemaker)
+"Gr" = (
+/obj/effect/turf_decal/snow,
+/obj/effect/turf_decal/weather/snow/surround,
+/turf/open/floor/plating/icemoon,
+/area/overmap_encounter/planetoid/cave/explored)
+"Gx" = (
+/obj/effect/turf_decal/trimline/opaque/ntblue/warning{
+ dir = 1
+ },
+/obj/structure/chair/office/dark,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"GD" = (
+/obj/effect/turf_decal/borderfloorblack{
+ dir = 5
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/table_frame/wood,
+/obj/item/stack/sheet/mineral/wood,
+/obj/effect/decal/cleanable/blood/footprints{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"GG" = (
+/obj/item/electronics/firelock,
+/obj/effect/turf_decal/borderfloor{
+ dir = 5
+ },
+/obj/structure/table_frame,
+/obj/effect/turf_decal/spline/fancy/transparent/ntblue{
+ dir = 5
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"GK" = (
+/obj/structure/closet/emcloset,
+/obj/effect/turf_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/corner/transparent/blue{
+ dir = 8
+ },
+/obj/machinery/light/broken/directional/west,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/patterned,
+/area/ruin/unpowered/crashed_holemaker)
+"GO" = (
+/obj/effect/turf_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/blood/drip,
+/obj/item/circuitboard/machine/reagentgrinder,
+/obj/effect/decal/cleanable/blood/drip,
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"Hr" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 9
+ },
+/obj/structure/table/reinforced{
+ color = "#283674"
+ },
+/obj/item/storage/toolbox/emergency,
+/obj/machinery/airalarm/directional/west,
+/obj/effect/turf_decal/spline/fancy/transparent/ntblue{
+ dir = 9
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"HB" = (
+/obj/effect/turf_decal/corner/opaque/bar/diagonal,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/broken_bottle,
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"HV" = (
+/obj/effect/turf_decal/corner/opaque/black{
+ dir = 4
+ },
+/obj/effect/turf_decal/corner/opaque/blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/corner/opaque/red/diagonal,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/light/broken/directional/south,
+/turf/open/floor/plasteel/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"HY" = (
+/obj/structure/salvageable/computer{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/opaque/ntblue/corner{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"IS" = (
+/obj/effect/turf_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/corner/transparent/ntblue/border{
+ dir = 10
+ },
+/obj/structure/chair/office/dark,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"IZ" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/effect/turf_decal/box,
+/obj/structure/extinguisher_cabinet/directional/north,
+/turf/open/floor/plasteel/tech,
+/area/ruin/unpowered/crashed_holemaker)
+"Ja" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/turf_decal/corner/transparent/orange/half{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plastic,
+/area/ruin/unpowered/crashed_holemaker)
+"Jk" = (
+/obj/effect/turf_decal/weather/snow{
+ dir = 8
+ },
+/turf/open/floor/wood{
+ icon_state = "wood-broken3"
+ },
+/area/ruin/unpowered/crashed_holemaker)
+"Jo" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/structure/rack,
+/obj/item/toy/plush/blahaj,
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"Jp" = (
+/obj/effect/turf_decal/weather/dirt/corner{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/stack/tile/wood,
+/turf/open/floor/plating,
+/area/ruin/unpowered/crashed_holemaker)
+"JK" = (
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/overmap_encounter/planetoid/cave/explored)
+"JL" = (
+/obj/effect/turf_decal/spline/fancy/transparent/neutral/corner{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/power/apc/auto_name/directional/north{
+ start_charge = 0
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plasteel/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"JP" = (
+/obj/structure/frame/computer{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/carpet/royalblue,
+/area/ruin/unpowered/crashed_holemaker)
+"JR" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 8
+ },
+/turf/open/floor/plasteel/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"Kd" = (
+/obj/structure/chair/office/dark{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"Ke" = (
+/turf/closed/wall,
+/area/ruin/unpowered/crashed_holemaker)
+"Kh" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/carpet,
+/area/ruin/unpowered/crashed_holemaker)
+"Ki" = (
+/obj/item/stack/sheet/mineral/wood,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/ruin/unpowered/crashed_holemaker)
+"Ks" = (
+/obj/effect/turf_decal/chapel{
+ dir = 4
+ },
+/obj/structure/bonfire,
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"KF" = (
+/obj/effect/turf_decal/corner/opaque/green/border,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"KV" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/weather/snow{
+ dir = 1
+ },
+/obj/structure/cable/orange{
+ icon_state = "5-8"
+ },
+/turf/open/floor/plating,
+/area/ruin/unpowered/crashed_holemaker)
+"KW" = (
+/obj/effect/mob_spawn/human/bartender/husked,
+/turf/open/floor/plating/asteroid/snow/ice/icemoon,
+/area/overmap_encounter/planetoid/cave/explored)
+"La" = (
+/obj/item/stack/cable_coil/cut/yellow,
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/turf_decal/spline/fancy/transparent/ntblue{
+ dir = 1
+ },
+/obj/effect/turf_decal/snow,
+/obj/item/stack/ore/salvage/scrapmetal,
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"LK" = (
+/obj/structure/grille/broken,
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"LP" = (
+/obj/machinery/door/firedoor/window,
+/obj/effect/turf_decal/snow,
+/turf/open/floor/plating,
+/area/ruin/unpowered/crashed_holemaker)
+"LQ" = (
+/obj/structure/table/glass,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/snow,
+/turf/open/floor/wood,
+/area/ruin/unpowered/crashed_holemaker)
+"Ml" = (
+/obj/effect/turf_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/turf_decal/corner/opaque/bar{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"Mu" = (
+/obj/effect/turf_decal/snow,
+/obj/effect/turf_decal/weather/snow{
+ dir = 8
+ },
+/obj/structure/frame/computer{
+ dir = 4
+ },
+/turf/open/floor/pod,
+/area/overmap_encounter/planetoid/cave/explored)
+"MA" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 4
+ },
+/turf/open/floor/plasteel/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"MH" = (
+/obj/effect/turf_decal/snow,
+/obj/item/stack/tile/plasteel,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/cable/yellow,
+/obj/effect/turf_decal/weather/snow{
+ dir = 6
+ },
+/turf/open/floor/plating/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"MR" = (
+/obj/effect/turf_decal/borderfloor,
+/obj/effect/turf_decal/spline/fancy/transparent/ntblue,
+/obj/effect/turf_decal/snow,
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"MX" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor/closed,
+/turf/open/floor/plating,
+/area/ruin/unpowered/crashed_holemaker)
+"MZ" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/chair/stool/bar{
+ dir = 1
+ },
+/turf/open/floor/wood,
+/area/ruin/unpowered/crashed_holemaker)
+"Ni" = (
+/obj/structure/dresser,
+/turf/open/floor/wood,
+/area/ruin/unpowered/crashed_holemaker)
+"Nn" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/snow,
+/turf/open/floor/wood,
+/area/ruin/unpowered/crashed_holemaker)
+"Nz" = (
+/obj/structure/table,
+/obj/effect/turf_decal/borderfloorblack{
+ dir = 10
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/spider/stickyweb,
+/turf/open/floor/plasteel/tech,
+/area/ruin/unpowered/crashed_holemaker)
+"NA" = (
+/obj/machinery/door/airlock/maintenance_hatch,
+/obj/effect/mapping_helpers/airlock/abandoned,
+/turf/open/floor/plating,
+/area/ruin/unpowered/crashed_holemaker)
+"ND" = (
+/obj/effect/turf_decal/snow,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/effect/turf_decal/weather/snow{
+ dir = 1
+ },
+/turf/open/floor/plasteel/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"NP" = (
+/obj/structure/girder,
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/overmap_encounter/planetoid/cave/explored)
+"NW" = (
+/obj/machinery/door/firedoor/closed,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/weather/snow{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/ruin/unpowered/crashed_holemaker)
+"Oe" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 10
+ },
+/obj/effect/turf_decal/weather/dirt{
+ dir = 1
+ },
+/obj/structure/displaycase_chassis,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/airalarm/directional/east,
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"OA" = (
+/obj/item/stack/tile/plasteel,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/item/crowbar/red,
+/turf/open/floor/plating,
+/area/ruin/unpowered/crashed_holemaker)
+"OC" = (
+/obj/effect/turf_decal/corner/opaque/bar/diagonal,
+/obj/item/stack/sheet/metal,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"OK" = (
+/obj/effect/turf_decal/corner/opaque/black/diagonal{
+ dir = 4
+ },
+/obj/item/cane,
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/crashed_holemaker)
+"OO" = (
+/obj/item/stack/ore/salvage/scrapgold,
+/turf/open/floor/plating/asteroid/snow/ice/icemoon,
+/area/overmap_encounter/planetoid/cave/explored)
+"Pa" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/turf_decal/corner/transparent/orange/half{
+ dir = 8
+ },
+/obj/effect/turf_decal/spline/fancy/transparent/neutral{
+ dir = 1
+ },
+/obj/structure/table/wood,
+/obj/item/trash/tray,
+/obj/item/trash/raisins{
+ pixel_x = 4
+ },
+/turf/open/floor/plastic,
+/area/ruin/unpowered/crashed_holemaker)
+"Pf" = (
+/obj/structure/dresser,
+/turf/open/floor/wood{
+ icon_state = "wood-broken6"
+ },
+/area/ruin/unpowered/crashed_holemaker)
+"Ph" = (
+/turf/closed/wall/r_wall/rust,
+/area/ruin/unpowered/crashed_holemaker)
+"Pl" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 4
+ },
+/obj/structure/table/reinforced{
+ color = "#283674"
+ },
+/obj/effect/turf_decal/spline/fancy/transparent/ntblue{
+ dir = 4
+ },
+/obj/item/folder/blue,
+/obj/machinery/light/broken/directional/east,
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"Pn" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/stack/tile/wood,
+/turf/open/floor/plating,
+/area/ruin/unpowered/crashed_holemaker)
+"Ps" = (
+/obj/item/stack/ore/salvage/scrapmetal,
+/turf/open/floor/plating/asteroid/snow/ice/icemoon,
+/area/overmap_encounter/planetoid/cave/explored)
+"Pw" = (
+/obj/effect/turf_decal/snow,
+/obj/effect/turf_decal/weather/snow{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/ruin/unpowered/crashed_holemaker)
+"PC" = (
+/obj/effect/turf_decal/snow,
+/obj/effect/turf_decal/weather/snow{
+ dir = 5
+ },
+/turf/open/floor/plasteel/icemoon,
+/area/overmap_encounter/planetoid/cave/explored)
+"PH" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood{
+ icon_state = "wood-broken7"
+ },
+/area/ruin/unpowered/crashed_holemaker)
+"PL" = (
+/obj/structure/window/reinforced/spawner/west,
+/obj/structure/window/reinforced/spawner/north,
+/obj/effect/decal/cleanable/glass,
+/obj/item/stack/tile/plasteel,
+/turf/open/floor/plating/dirt/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"PM" = (
+/obj/effect/turf_decal/corner/opaque/black/diagonal{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/white,
+/area/ruin/unpowered/crashed_holemaker)
+"Qc" = (
+/obj/structure/bookcase/random/religion,
+/obj/effect/turf_decal/weather/dirt{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood{
+ icon_state = "wood-broken7"
+ },
+/area/ruin/unpowered/crashed_holemaker)
+"Qd" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 4
+ },
+/obj/structure/frame/computer{
+ dir = 8
+ },
+/obj/effect/turf_decal/spline/fancy/transparent/ntblue{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"Qw" = (
+/obj/effect/turf_decal/snow,
+/obj/machinery/door/firedoor/closed,
+/turf/open/floor/plating/asteroid/snow/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"QC" = (
+/obj/item/tank/internals/emergency_oxygen/double/empty,
+/turf/open/floor/plating/asteroid/snow/ice/icemoon,
+/area/overmap_encounter/planetoid/cave/explored)
+"QE" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/turf_decal/corner/transparent/beige/half{
+ dir = 8
+ },
+/obj/structure/door_assembly/door_assembly_com,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/firealarm/directional/south,
+/turf/open/floor/plastic,
+/area/ruin/unpowered/crashed_holemaker)
+"QS" = (
+/obj/machinery/light/broken/directional/east,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/weather/snow{
+ dir = 10
+ },
+/turf/open/floor/plasteel/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"QX" = (
+/obj/effect/turf_decal/snow,
+/obj/effect/turf_decal/weather/snow{
+ dir = 10
+ },
+/turf/open/floor/plating/icemoon,
+/area/overmap_encounter/planetoid/cave/explored)
+"Rd" = (
+/obj/effect/decal/cleanable/glass,
+/obj/effect/turf_decal/trimline/transparent/ntblue/arrow_ccw,
+/obj/effect/turf_decal/weather/dirt,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/tech/techmaint,
+/area/ruin/unpowered/crashed_holemaker)
+"Rh" = (
+/obj/machinery/door/firedoor/closed,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/ruin/unpowered/crashed_holemaker)
+"Rn" = (
+/obj/structure/extinguisher_cabinet/directional/west,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/ruin/unpowered/crashed_holemaker)
+"Ru" = (
+/obj/effect/turf_decal/corner/opaque/blue/diagonal{
+ dir = 4
+ },
+/obj/effect/turf_decal/corner/opaque/red/diagonal,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/airalarm/directional/north,
+/obj/item/stack/tile/plasteel,
+/turf/open/floor/plasteel/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"Rx" = (
+/obj/item/shard,
+/obj/effect/decal/cleanable/glass,
+/obj/effect/turf_decal/snow,
+/turf/open/floor/wood,
+/area/ruin/unpowered/crashed_holemaker)
+"RA" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/stack/tile/wood,
+/turf/open/floor/plating,
+/area/ruin/unpowered/crashed_holemaker)
+"RB" = (
+/obj/effect/turf_decal/snow,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"RL" = (
+/obj/machinery/vending/snack/random,
+/obj/effect/turf_decal/spline/fancy/transparent/neutral/corner{
+ dir = 4
+ },
+/turf/open/floor/plasteel/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"RT" = (
+/obj/effect/turf_decal/weather/snow{
+ dir = 5
+ },
+/obj/item/wallframe/firealarm,
+/turf/open/floor/wood{
+ icon_state = "wood-broken4"
+ },
+/area/ruin/unpowered/crashed_holemaker)
+"Sd" = (
+/obj/effect/turf_decal/chapel,
+/obj/machinery/light/broken/directional/east,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"Sj" = (
+/obj/effect/turf_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/turf_decal/corner/opaque/bar{
+ dir = 1
+ },
+/obj/effect/turf_decal/snow,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"Sz" = (
+/obj/structure/bookcase/random/nonfiction,
+/turf/open/floor/plating/asteroid/snow/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"SA" = (
+/obj/effect/turf_decal/borderfloorblack{
+ dir = 5
+ },
+/obj/structure/chair/stool/bar{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"SF" = (
+/obj/structure/flora/stump,
+/turf/open/floor/plating/asteroid/snow/ice/icemoon,
+/area/overmap_encounter/planetoid/cave/explored)
+"SM" = (
+/obj/effect/turf_decal/borderfloorblack{
+ dir = 10
+ },
+/obj/machinery/newscaster/directional/south,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"SO" = (
+/obj/effect/turf_decal/siding/wood,
+/obj/structure/window/reinforced/spawner,
+/obj/machinery/shower{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/freezer,
+/area/ruin/unpowered/crashed_holemaker)
+"Td" = (
+/obj/item/stack/tile/plasteel,
+/obj/effect/turf_decal/snow,
+/obj/effect/turf_decal/weather/snow/surround{
+ dir = 8
+ },
+/turf/open/floor/plating/icemoon,
+/area/overmap_encounter/planetoid/cave/explored)
+"Tm" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/turf_decal/corner/transparent/beige/half{
+ dir = 8
+ },
+/obj/effect/turf_decal/spline/fancy/transparent/neutral{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/chair/office{
+ dir = 4
+ },
+/turf/open/floor/plastic,
+/area/ruin/unpowered/crashed_holemaker)
+"Tn" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/blood/splatter,
+/turf/open/floor/plasteel/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"Ts" = (
+/obj/machinery/door/firedoor/border_only/closed{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/stack/ore/salvage/scrapsilver,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/ruin/unpowered/crashed_holemaker)
+"Tt" = (
+/obj/structure/window/reinforced/spawner/north,
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/plating/dirt/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"Tu" = (
+/obj/effect/turf_decal/borderfloor/full,
+/obj/machinery/door/airlock{
+ name = "Service Hall"
+ },
+/obj/effect/mapping_helpers/airlock/locked,
+/turf/open/floor/plasteel/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"Tv" = (
+/obj/effect/turf_decal/corner/opaque/blue/diagonal{
+ dir = 4
+ },
+/obj/effect/turf_decal/corner/opaque/red/diagonal,
+/obj/structure/closet/crate/wooden,
+/obj/item/toy/dummy,
+/obj/effect/decal/cleanable/cobweb,
+/turf/open/floor/plasteel/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"Tz" = (
+/obj/machinery/vending/assist,
+/obj/machinery/airalarm/directional/north,
+/turf/open/floor/plasteel/tech,
+/area/ruin/unpowered/crashed_holemaker)
+"TB" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/obj/item/reagent_containers/food/snacks/meat/slab/corgi,
+/obj/item/reagent_containers/food/snacks/meat/slab/corgi,
+/obj/item/stack/sheet/animalhide/corgi,
+/obj/structure/closet/secure_closet/freezer,
+/turf/open/floor/wood,
+/area/ruin/unpowered/crashed_holemaker)
+"TH" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/structure/chair/comfy/teal{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"TT" = (
+/obj/structure/grille/broken,
+/obj/effect/turf_decal/snow,
+/turf/open/floor/plating,
+/area/ruin/unpowered/crashed_holemaker)
+"TY" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/mob_spawn/human/botanist/husked,
+/obj/effect/decal/cleanable/blood/old,
+/turf/open/floor/plating,
+/area/ruin/unpowered/crashed_holemaker)
+"Uj" = (
+/obj/machinery/firealarm/directional/west,
+/turf/open/floor/plating/asteroid/snow/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"Ur" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/turf_decal/corner/transparent/brown/half{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/clothing/mask/breath,
+/turf/open/floor/plastic,
+/area/ruin/unpowered/crashed_holemaker)
+"Uy" = (
+/obj/effect/turf_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/stack/sheet/mineral/wood,
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"UA" = (
+/obj/effect/turf_decal/snow,
+/obj/effect/turf_decal/weather/snow{
+ dir = 5
+ },
+/obj/structure/chair/comfy/shuttle{
+ dir = 1
+ },
+/turf/open/floor/pod,
+/area/overmap_encounter/planetoid/cave/explored)
+"UC" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"UE" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/weather/snow{
+ dir = 10
+ },
+/turf/open/floor/plasteel/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"UP" = (
+/obj/machinery/rnd/production/protolathe/department/service,
+/obj/effect/turf_decal/borderfloorblack{
+ dir = 6
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/tech,
+/area/ruin/unpowered/crashed_holemaker)
+"UQ" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 10
+ },
+/obj/structure/door_assembly/door_assembly_com{
+ dir = 4
+ },
+/obj/effect/turf_decal/spline/fancy/transparent/ntblue{
+ dir = 10
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"UT" = (
+/mob/living/simple_animal/hostile/asteroid/hivelord/legion/snow,
+/turf/open/floor/plating/asteroid/snow/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"Va" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/machinery/door/airlock/public/glass{
+ dir = 4;
+ name = "Library"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/weather/snow,
+/turf/open/floor/wood,
+/area/ruin/unpowered/crashed_holemaker)
+"Vf" = (
+/obj/effect/turf_decal/weather/dirt/corner,
+/obj/effect/turf_decal/trimline/transparent/ntblue/corner,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/table,
+/obj/item/modular_computer/laptop/preset/civilian,
+/turf/open/floor/plasteel/tech/techmaint,
+/area/ruin/unpowered/crashed_holemaker)
+"Vg" = (
+/turf/open/floor/wood,
+/area/ruin/unpowered/crashed_holemaker)
+"Vo" = (
+/obj/effect/turf_decal/spline/fancy/transparent/neutral{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"Vs" = (
+/turf/open/floor/carpet,
+/area/ruin/unpowered/crashed_holemaker)
+"Vt" = (
+/obj/effect/turf_decal/corner/opaque/blue/diagonal{
+ dir = 4
+ },
+/obj/effect/turf_decal/corner/opaque/red/diagonal,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/extinguisher_cabinet/directional/north,
+/turf/open/floor/plasteel/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"VD" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/ruin/unpowered/crashed_holemaker)
+"VF" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/weather/snow,
+/turf/open/floor/wood,
+/area/ruin/unpowered/crashed_holemaker)
+"VP" = (
+/obj/effect/turf_decal/spline/fancy/transparent/neutral/corner,
+/obj/item/radio/intercom/directional/north,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"VQ" = (
+/obj/effect/turf_decal/corner/opaque/bar/diagonal,
+/obj/effect/turf_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/snow,
+/obj/item/stack/ore/salvage/scrapmetal,
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"VW" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"Wb" = (
+/obj/item/stack/sheet/mineral/wood,
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/overmap_encounter/planetoid/cave/explored)
+"Ws" = (
+/obj/effect/turf_decal/snow,
+/obj/machinery/light/broken/directional/west,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/weather/snow{
+ dir = 5
+ },
+/turf/open/floor/plating/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"WD" = (
+/obj/machinery/light/small/broken/directional/east,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood{
+ icon_state = "wood-broken"
+ },
+/area/ruin/unpowered/crashed_holemaker)
+"WU" = (
+/mob/living/simple_animal/hostile/asteroid/hivelord/legion/snow,
+/turf/open/floor/plating/asteroid/snow/ice/icemoon,
+/area/overmap_encounter/planetoid/cave/explored)
+"WV" = (
+/obj/effect/turf_decal/borderfloorblack{
+ dir = 5
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/spider/stickyweb,
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/turf/open/floor/plasteel/tech,
+/area/ruin/unpowered/crashed_holemaker)
+"Xb" = (
+/obj/item/stack/sheet/metal,
+/turf/open/floor/plating,
+/area/ruin/unpowered/crashed_holemaker)
+"Xp" = (
+/obj/effect/turf_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/corner/transparent/ntblue/border{
+ dir = 5
+ },
+/obj/item/stack/sheet/plasteel,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"Xq" = (
+/obj/effect/turf_decal/chapel{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/chair/stool{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"XC" = (
+/obj/structure/table/glass,
+/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{
+ pixel_y = 5
+ },
+/turf/open/floor/wood,
+/area/ruin/unpowered/crashed_holemaker)
+"XE" = (
+/obj/effect/spawner/structure/window,
+/turf/open/floor/plating,
+/area/ruin/unpowered/crashed_holemaker)
+"XG" = (
+/obj/machinery/door/airlock/command/glass{
+ dir = 4;
+ name = "Lieutenant's Quarters"
+ },
+/turf/open/floor/wood,
+/area/ruin/unpowered/crashed_holemaker)
+"XK" = (
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/plating/asteroid/snow/ice/icemoon,
+/area/overmap_encounter/planetoid/cave/explored)
+"XQ" = (
+/obj/structure/girder,
+/turf/open/floor/plating/asteroid/snow/ice/icemoon,
+/area/overmap_encounter/planetoid/cave/explored)
+"XY" = (
+/obj/effect/turf_decal/trimline/transparent/ntblue/arrow_ccw{
+ dir = 6
+ },
+/obj/effect/turf_decal/borderfloor,
+/obj/effect/turf_decal/weather/dirt{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/railing/wood,
+/obj/structure/table,
+/turf/open/floor/plasteel/tech/techmaint,
+/area/ruin/unpowered/crashed_holemaker)
+"XZ" = (
+/obj/structure/bookcase/random/adult,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/newscaster/directional/west,
+/turf/open/floor/wood,
+/area/ruin/unpowered/crashed_holemaker)
+"Yb" = (
+/obj/structure/bookcase/random/reference,
+/obj/effect/turf_decal/weather/dirt/corner,
+/obj/machinery/light/broken/directional/east,
+/turf/open/floor/wood,
+/area/ruin/unpowered/crashed_holemaker)
+"Yk" = (
+/obj/effect/turf_decal/borderfloor,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/blood/drip,
+/turf/open/floor/plasteel/tech,
+/area/ruin/unpowered/crashed_holemaker)
+"YG" = (
+/obj/structure/firelock_frame/window,
+/obj/effect/turf_decal/snow,
+/obj/structure/barricade/wooden/crude/snow,
+/turf/open/floor/plating,
+/area/ruin/unpowered/crashed_holemaker)
+"YL" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/cell_charger,
+/turf/open/floor/carpet,
+/area/ruin/unpowered/crashed_holemaker)
+"YM" = (
+/obj/effect/turf_decal/borderfloor/full,
+/obj/effect/turf_decal/spline/fancy/transparent/ntblue{
+ dir = 1
+ },
+/obj/machinery/door/airlock/command/glass{
+ name = "Bridge"
+ },
+/turf/open/floor/plasteel/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"YV" = (
+/obj/item/wallframe/airalarm,
+/turf/open/floor/plating/asteroid/snow/icemoon,
+/area/overmap_encounter/planetoid/cave/explored)
+"Zh" = (
+/obj/effect/turf_decal/corner/transparent/ntblue/full,
+/obj/effect/turf_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/structure/tank_dispenser,
+/obj/machinery/light/broken/directional/east,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/icemoon,
+/area/ruin/unpowered/crashed_holemaker)
+"Zj" = (
+/turf/closed/wall/r_wall,
+/area/ruin/unpowered/crashed_holemaker)
+"Zr" = (
+/obj/effect/spawner/structure/window/reinforced/shutters,
+/turf/open/floor/plating,
+/area/ruin/unpowered/crashed_holemaker)
+"Zy" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 1
+ },
+/obj/item/shard,
+/obj/effect/decal/cleanable/glass,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/weather/snow,
+/obj/structure/cable/orange{
+ icon_state = "6-8"
+ },
+/turf/open/floor/plating,
+/area/ruin/unpowered/crashed_holemaker)
+"ZB" = (
+/obj/machinery/light/broken/directional/south,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/weather/snow{
+ dir = 10
+ },
+/turf/open/floor/wood{
+ icon_state = "wood-broken3"
+ },
+/area/ruin/unpowered/crashed_holemaker)
+"ZJ" = (
+/obj/effect/turf_decal/siding/wood,
+/obj/effect/turf_decal/snow,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark,
+/area/ruin/unpowered/crashed_holemaker)
+"ZK" = (
+/obj/machinery/door/airlock/maintenance_hatch{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/ruin/unpowered/crashed_holemaker)
+
+(1,1,1) = {"
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+"}
+(2,1,1) = {"
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+"}
+(3,1,1) = {"
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+"}
+(4,1,1) = {"
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Ph
+Fg
+Zj
+Ph
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+"}
+(5,1,1) = {"
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+Cz
+Cz
+Cz
+Cz
+Cz
+Ph
+Zj
+Zr
+Zj
+nb
+SM
+Ke
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+nW
+nW
+nW
+nW
+nW
+nW
+"}
+(6,1,1) = {"
+nW
+nW
+nW
+nW
+nW
+nW
+Cz
+Cz
+Cz
+Cz
+Ph
+Ph
+Zj
+vd
+By
+CU
+hX
+EE
+vd
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+nW
+nW
+nW
+nW
+nW
+nW
+"}
+(7,1,1) = {"
+nW
+nW
+nW
+nW
+nW
+nW
+Cz
+Cz
+Cz
+Ph
+Zj
+ib
+Ke
+mA
+ka
+BY
+iX
+Bt
+vd
+Ke
+eL
+eL
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+nW
+nW
+nW
+nW
+nW
+"}
+(8,1,1) = {"
+nW
+nW
+nW
+nW
+nW
+Cz
+Cz
+Cz
+Zj
+Zj
+mn
+Uy
+jJ
+MX
+xK
+HB
+OC
+VQ
+sy
+wx
+eL
+eL
+eL
+eL
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+nW
+nW
+nW
+nW
+nW
+"}
+(9,1,1) = {"
+nW
+nW
+nW
+nW
+nW
+Cz
+Cz
+Cz
+Zr
+Ec
+GO
+eJ
+gU
+MX
+SA
+Ml
+Sj
+sf
+En
+OO
+wx
+eL
+eL
+eL
+eL
+eL
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+nW
+nW
+nW
+nW
+"}
+(10,1,1) = {"
+nW
+nW
+nW
+nW
+nW
+Cz
+Cz
+Cz
+Zj
+GD
+rR
+uh
+uN
+Ke
+XE
+AQ
+XE
+vd
+Ke
+eL
+wx
+wx
+Ps
+eL
+eL
+eL
+eL
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+nW
+nW
+nW
+nW
+"}
+(11,1,1) = {"
+nW
+nW
+nW
+nW
+Cz
+Cz
+Cz
+Zj
+Zj
+Xb
+Ph
+Zj
+ZK
+Ke
+kt
+VW
+vg
+Ws
+lu
+wx
+eL
+wx
+qr
+qr
+eL
+eL
+eL
+eL
+Cz
+Cz
+Cz
+Cz
+nW
+nW
+nW
+nW
+nW
+"}
+(12,1,1) = {"
+nW
+nW
+nW
+nW
+Cz
+Cz
+Cz
+Ph
+AF
+aj
+Ni
+Zj
+bZ
+CQ
+vg
+ND
+bi
+vg
+eL
+wx
+eL
+eL
+eL
+eL
+fx
+eL
+eL
+eL
+eL
+Cz
+Cz
+Cz
+nW
+nW
+nW
+nW
+nW
+"}
+(13,1,1) = {"
+nW
+nW
+nW
+nW
+Cz
+Cz
+Cz
+Zr
+jP
+nL
+yr
+Ph
+ze
+vd
+wC
+NW
+Ke
+lS
+Ch
+ga
+iS
+XQ
+eL
+eL
+eL
+eL
+eL
+eL
+eL
+eL
+Cz
+eL
+nW
+nW
+nW
+nW
+nW
+"}
+(14,1,1) = {"
+nW
+nW
+nW
+Cz
+Cz
+Cz
+Ph
+Ph
+Ke
+XG
+Ke
+Zj
+vd
+vd
+vc
+KV
+vd
+Ps
+wx
+JK
+wx
+eL
+eL
+eL
+wx
+wx
+wx
+eL
+eL
+eL
+eL
+eL
+eL
+eL
+nW
+nW
+nW
+"}
+(15,1,1) = {"
+nW
+nW
+nW
+Cz
+Cz
+Cz
+Ph
+gF
+jp
+VD
+uO
+Zj
+Vf
+XY
+cG
+Af
+vd
+Gr
+eL
+Td
+hO
+qr
+WU
+eL
+eL
+eL
+eL
+eL
+eL
+eL
+eL
+eL
+eL
+eL
+eL
+nW
+nW
+"}
+(16,1,1) = {"
+nW
+nW
+nW
+Cz
+Cz
+Cz
+Zj
+vr
+AH
+Pn
+TB
+kz
+lN
+PL
+Zy
+xJ
+Tt
+qr
+eL
+PC
+nC
+qr
+qr
+eL
+ng
+eL
+eL
+wx
+gc
+wx
+wx
+wx
+eL
+eL
+eL
+eL
+nW
+"}
+(17,1,1) = {"
+nW
+nW
+Cz
+Cz
+Cz
+Cz
+Ph
+Ke
+kF
+mx
+nA
+kz
+Ab
+Tt
+tt
+eT
+pl
+QX
+wx
+qr
+wx
+eL
+fx
+eL
+qr
+SF
+eL
+eL
+eL
+eL
+eL
+eL
+eL
+eL
+eL
+nW
+nW
+"}
+(18,1,1) = {"
+nW
+Cz
+Cz
+Cz
+Cz
+Cz
+Zj
+Ep
+iN
+yN
+Gx
+ac
+Rd
+qa
+zh
+KF
+bd
+mu
+Ps
+eL
+eD
+eL
+qr
+KW
+eL
+eL
+eL
+eL
+eL
+eL
+eL
+eL
+eL
+nW
+nW
+nW
+nW
+"}
+(19,1,1) = {"
+nW
+Cz
+Cz
+Cz
+Cz
+Cz
+Ph
+Cb
+vT
+CZ
+HY
+Zj
+uK
+pz
+vg
+mO
+ek
+YV
+qr
+qr
+hs
+eL
+oI
+Ps
+QC
+eL
+eL
+eL
+eL
+wx
+wx
+eL
+eL
+nW
+nW
+nW
+nW
+"}
+(20,1,1) = {"
+nW
+Cz
+Cz
+Cz
+Cz
+Ph
+Ph
+Ke
+Ke
+tH
+Ke
+Ph
+EX
+Ke
+yp
+fr
+Ke
+vd
+vd
+Ke
+vd
+yR
+qr
+eL
+qr
+eL
+eL
+wx
+wx
+eL
+eL
+eL
+eL
+eL
+eL
+nW
+nW
+"}
+(21,1,1) = {"
+Cz
+Cz
+Cz
+Cz
+Cz
+Zr
+Hr
+cL
+lT
+iY
+UQ
+Zj
+vd
+vd
+VP
+Vo
+RL
+XE
+GK
+kQ
+vd
+vd
+oa
+vd
+vd
+eL
+qF
+XK
+eL
+eL
+eL
+eL
+eL
+eL
+eL
+eL
+nW
+"}
+(22,1,1) = {"
+Cz
+Cz
+Cz
+Cz
+Cz
+Zr
+or
+Bj
+zs
+IS
+MR
+YM
+MA
+Dx
+wH
+aL
+Tm
+jT
+FA
+QE
+Ke
+vU
+rL
+Nz
+kz
+eL
+qF
+Mu
+qF
+SF
+eL
+eL
+eL
+eL
+eL
+eL
+nW
+"}
+(23,1,1) = {"
+Cz
+Cz
+Cz
+Cz
+wx
+Zr
+vK
+Kd
+RB
+mb
+DR
+kz
+eE
+kz
+Gp
+tO
+Pa
+zE
+Ja
+rm
+Tu
+kH
+cw
+aE
+vd
+eL
+NP
+UA
+qF
+eL
+eL
+eL
+eL
+eL
+eL
+nW
+nW
+"}
+(24,1,1) = {"
+Cz
+Cz
+Cz
+Cz
+wx
+YG
+La
+Xp
+hl
+um
+DR
+uL
+JR
+Cp
+fn
+lO
+ET
+Ey
+Ur
+iw
+Ke
+WV
+cl
+UP
+kz
+eL
+qF
+kp
+qF
+wx
+eL
+eL
+eL
+eL
+nW
+nW
+nW
+"}
+(25,1,1) = {"
+Cz
+Cz
+Cz
+eL
+wx
+LP
+GG
+Pl
+Qd
+qo
+cI
+Zj
+Zh
+Ke
+JL
+mU
+rl
+XE
+xQ
+xQ
+vd
+Ke
+An
+Ke
+vd
+eL
+eL
+eL
+eL
+eL
+Cj
+eL
+eL
+nW
+nW
+nW
+nW
+"}
+(26,1,1) = {"
+Cz
+Cz
+Cz
+Cz
+wx
+Ph
+Zj
+Ke
+Ke
+lU
+Ke
+Ph
+Ke
+vd
+Ts
+qS
+vd
+Ke
+vd
+Ke
+Ke
+Tv
+yH
+BT
+kz
+eL
+eL
+SF
+eL
+eL
+eL
+eL
+eL
+eL
+nW
+nW
+nW
+"}
+(27,1,1) = {"
+Cz
+Cz
+Cz
+Cz
+WU
+wx
+qq
+vg
+RT
+uI
+XC
+Zj
+mV
+Yk
+VW
+Tn
+vd
+iM
+FG
+ge
+vd
+vd
+Vt
+ty
+kz
+eL
+eL
+eL
+wx
+wx
+eL
+eL
+eL
+nW
+nW
+nW
+nW
+"}
+(28,1,1) = {"
+Cz
+Cz
+Cz
+Cz
+eL
+wx
+vg
+yE
+fO
+Fr
+LQ
+Ph
+IZ
+se
+co
+rz
+Ke
+xA
+wr
+tW
+CH
+vd
+Ru
+jZ
+vd
+eL
+eL
+eL
+eL
+eL
+wx
+wx
+eL
+eL
+eL
+eL
+nW
+"}
+(29,1,1) = {"
+Cz
+Cz
+Cz
+Cz
+Cz
+wx
+Zj
+cA
+Jk
+td
+tN
+Ph
+sd
+se
+TY
+UC
+bj
+Kh
+yV
+kS
+hP
+xs
+fD
+HV
+Ke
+oj
+Ke
+eL
+eL
+Ps
+eL
+eL
+eL
+eL
+eL
+eL
+nW
+"}
+(30,1,1) = {"
+nW
+Cz
+Cz
+Cz
+Cz
+Cz
+Ph
+Bf
+Au
+ey
+JP
+Ph
+rP
+Yk
+eG
+BZ
+Vs
+YL
+Kh
+MZ
+oC
+ci
+eg
+ho
+vd
+aS
+Ke
+eL
+eL
+eL
+eL
+eL
+eL
+eL
+nW
+nW
+nW
+"}
+(31,1,1) = {"
+nW
+Cz
+Cz
+Cz
+Cz
+Cz
+Ph
+gF
+Nn
+oD
+qY
+Ph
+Tz
+se
+qM
+UC
+vd
+eP
+Xq
+tW
+rk
+vd
+OK
+PM
+NA
+tm
+vd
+wx
+wx
+eL
+eL
+eL
+eL
+nW
+nW
+nW
+nW
+"}
+(32,1,1) = {"
+nW
+nW
+Cz
+Cz
+Cz
+Cz
+Zj
+Zj
+Ke
+cV
+Ke
+Zj
+Ke
+vd
+VW
+BZ
+Ke
+Ks
+Sd
+dt
+cS
+vd
+do
+uR
+Ke
+tm
+vd
+wx
+wx
+wx
+eL
+eL
+wx
+wx
+nW
+nW
+nW
+"}
+(33,1,1) = {"
+nW
+nW
+Cz
+Cz
+Cz
+Cz
+Cz
+Zr
+SO
+VD
+Pf
+Ph
+lt
+Ke
+bU
+Rh
+Ke
+vd
+vd
+Ke
+vd
+vd
+Ke
+Ke
+Ke
+ZK
+Ke
+Ke
+vd
+aP
+wx
+eL
+eL
+eL
+eL
+Ps
+nW
+"}
+(34,1,1) = {"
+nW
+nW
+nW
+Cz
+Cz
+Cz
+Cz
+Zj
+lm
+WD
+jz
+Zj
+bZ
+pV
+Pw
+OA
+jU
+ya
+it
+vg
+nO
+vg
+Uj
+rW
+Qw
+vg
+vg
+zy
+MH
+eL
+eL
+eL
+Ps
+eL
+eL
+nW
+nW
+"}
+(35,1,1) = {"
+nW
+nW
+nW
+Cz
+Cz
+Cz
+Cz
+Zj
+Ph
+Ph
+Ph
+Zj
+DG
+Ke
+vg
+bC
+aC
+QS
+UT
+ms
+nd
+gG
+UE
+vg
+wC
+vg
+vg
+vg
+wx
+pL
+eL
+eL
+eL
+eL
+nW
+nW
+nW
+"}
+(36,1,1) = {"
+nW
+nW
+nW
+nW
+Cz
+Cz
+Cz
+Cz
+Ph
+XZ
+pw
+jW
+Vg
+Ke
+XE
+Va
+LK
+Ke
+vd
+Ke
+TT
+kz
+Ke
+kz
+Ke
+aA
+Ke
+aP
+Cz
+Cz
+wx
+wx
+eL
+Cz
+Cz
+nW
+nW
+"}
+(37,1,1) = {"
+nW
+nW
+nW
+nW
+Cz
+Cz
+Cz
+Cz
+Fg
+Rx
+RA
+VD
+bZ
+VF
+vg
+ca
+vg
+px
+br
+Ke
+jr
+xd
+oS
+PH
+Rn
+un
+Ke
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+nW
+"}
+(38,1,1) = {"
+nW
+nW
+nW
+nW
+Cz
+Cz
+Cz
+Cz
+Ph
+Ph
+Yb
+Qc
+Jp
+at
+Sz
+Sz
+fV
+vg
+br
+Ke
+aq
+ZJ
+Ki
+pF
+oS
+Ke
+vd
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+"}
+(39,1,1) = {"
+nW
+nW
+nW
+nW
+Cz
+Cz
+Cz
+Cz
+Cz
+Ph
+Zj
+md
+Oe
+Vg
+sj
+gp
+rk
+ZB
+Ke
+vd
+mb
+uU
+qr
+Wb
+qr
+yU
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+"}
+(40,1,1) = {"
+nW
+nW
+nW
+nW
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Ph
+Ph
+Zj
+Jo
+TH
+Ke
+jY
+jj
+Ke
+mz
+Bm
+Ke
+eL
+Ps
+wx
+wx
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+"}
+(41,1,1) = {"
+nW
+nW
+nW
+nW
+nW
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Zj
+Zr
+Zr
+Ph
+DB
+yG
+Ke
+ry
+wx
+qr
+ch
+qr
+wx
+ch
+wx
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+"}
+(42,1,1) = {"
+nW
+nW
+nW
+nW
+nW
+nW
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Zj
+Zj
+Ph
+Ph
+Zj
+pn
+qr
+wx
+WU
+wx
+wx
+wx
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+nW
+"}
+(43,1,1) = {"
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+wx
+eL
+wx
+wx
+wx
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+nW
+nW
+"}
+(44,1,1) = {"
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+wx
+wx
+wx
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+nW
+nW
+nW
+"}
+(45,1,1) = {"
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+nW
+nW
+nW
+nW
+nW
+"}
+(46,1,1) = {"
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+nW
+nW
+nW
+nW
+nW
+nW
+"}
+(47,1,1) = {"
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+Cz
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+"}
diff --git a/_maps/RandomRuins/IceRuins/icemoon_surface_engioutpost.dmm b/_maps/RandomRuins/IceRuins/icemoon_surface_engioutpost.dmm
index 2dd6c4cbea84..661098d293d2 100644
--- a/_maps/RandomRuins/IceRuins/icemoon_surface_engioutpost.dmm
+++ b/_maps/RandomRuins/IceRuins/icemoon_surface_engioutpost.dmm
@@ -1456,32 +1456,34 @@
/area/ruin)
"dA" = (
/obj/effect/turf_decal/trimline/transparent/neutral/filled/line,
-/obj/effect/turf_decal/weather/snow/corner{
- dir = 10
- },
/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/effect/turf_decal/weather/snow/corner,
/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/effect/turf_decal/weather/snow/corner,
/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"
},
diff --git a/_maps/RandomRuins/IceRuins/icemoon_underground_oldstation.dmm b/_maps/RandomRuins/IceRuins/icemoon_underground_oldstation.dmm
index 1d6aaa0388d5..e9f508fe0126 100644
--- a/_maps/RandomRuins/IceRuins/icemoon_underground_oldstation.dmm
+++ b/_maps/RandomRuins/IceRuins/icemoon_underground_oldstation.dmm
@@ -310,9 +310,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/closed/wall/rust,
/area/ruin/space/has_grav/ancientstation)
-"bd" = (
-/turf/template_noop,
-/area/space)
"be" = (
/obj/structure/window/reinforced/spawner/north,
/obj/structure/window/reinforced/spawner/west,
@@ -2601,26 +2598,6 @@
},
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/kitchen)
-"hX" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/corner/opaque/red,
-/obj/effect/turf_decal/corner/opaque/red{
- dir = 4
- },
-/obj/structure/sign/poster/retro/lasergun{
- pixel_x = 32
- },
-/obj/item/gun/energy/laser/retro/old{
- pixel_x = -2;
- pixel_y = -2
- },
-/obj/item/gun/energy/laser/retro/old{
- pixel_x = 2;
- pixel_y = 2
- },
-/obj/structure/rack,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation/sec)
"hY" = (
/obj/structure/chair,
/obj/effect/decal/cleanable/dirt,
@@ -4087,6 +4064,34 @@
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/rnd)
+"lO" = (
+/obj/structure/table,
+/obj/item/storage/firstaid/ancient,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/defibrillator,
+/obj/item/paper/fluff/ruins/oldstation/protosleep{
+ default_raw_text = "*Prototype Sleeper*
We have deliverted the lastest in medical technology to the medical bay for your use."
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "Beta Station Medbay APC";
+ pixel_y = 23;
+ start_charge = 0
+ },
+/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
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plasteel/airless{
+ initial_gas_mix = "ICEMOON_ATMOS"
+ },
+/area/ruin/space/has_grav/ancientstation/medbay)
"lQ" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/cobweb/cobweb2,
@@ -4236,34 +4241,6 @@
/obj/item/pipe_dispenser,
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/mining)
-"mu" = (
-/obj/structure/table,
-/obj/item/storage/firstaid/ancient,
-/obj/effect/decal/cleanable/dirt,
-/obj/item/defibrillator,
-/obj/item/paper/fluff/ruins/oldstation/protosleep{
- default_raw_text = "*Prototype Sleeper*
We have deliverted the lastest in medical technology to the medical bay for your use."
- },
-/obj/machinery/power/apc{
- dir = 1;
- name = "Beta Station Medbay APC";
- pixel_y = 23;
- start_charge = 0
- },
-/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
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plasteel/airless{
- initial_gas_mix = "ICEMOON_ATMOS"
- },
-/area/ruin/space/has_grav/ancientstation/medbay)
"mv" = (
/obj/effect/spawner/structure/window/hollow/reinforced/end{
dir = 8
@@ -5816,6 +5793,15 @@
initial_gas_mix = "ICEMOON_ATMOS"
},
/area/ruin/space/has_grav/ancientstation/medbay)
+"vr" = (
+/obj/machinery/light/directional/east,
+/obj/structure/table/reinforced,
+/obj/item/paper/fluff/ruins/oldstation/protosing{
+ default_raw_text = "fucking uhhh tesla -I'll finish this later, Professor Fiddler";
+ name = "Tesla Generator"
+ },
+/turf/open/floor/plasteel/white,
+/area/ruin/space/has_grav/ancientstation/proto)
"vs" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
@@ -7738,6 +7724,26 @@
},
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation)
+"Nz" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/corner/opaque/red,
+/obj/effect/turf_decal/corner/opaque/red{
+ dir = 4
+ },
+/obj/structure/sign/poster/retro/lasergun{
+ pixel_x = 32
+ },
+/obj/item/gun/energy/laser/retro{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/obj/item/gun/energy/laser/retro{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/structure/rack,
+/turf/open/floor/plasteel,
+/area/ruin/space/has_grav/ancientstation/sec)
"NC" = (
/obj/machinery/power/smes/engineering{
charge = 0
@@ -8450,15 +8456,6 @@
/obj/effect/spawner/lootdrop/maintenance/seven,
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/hydroponics)
-"UT" = (
-/obj/machinery/light/directional/east,
-/obj/structure/table/reinforced,
-/obj/item/paper/fluff/ruins/oldstation/protosing{
- default_raw_text = "fucking uhhh tesla -I'll finish this later, Professor Fiddler";
- name = "Tesla Generator"
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav/ancientstation/proto)
"UV" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -9033,7 +9030,7 @@ ch
Sd
je
AK
-mu
+lO
dD
kb
eH
@@ -11443,7 +11440,7 @@ fO
fO
MI
wd
-hX
+Nz
im
eJ
lg
@@ -11479,7 +11476,7 @@ xT
aa
aa
aa
-bd
+aa
lg
lH
lg
@@ -11528,7 +11525,7 @@ xT
aa
aa
aa
-bd
+aa
lg
lg
lg
@@ -12530,7 +12527,7 @@ Yr
ca
jA
mm
-UT
+vr
jA
GF
lc
diff --git a/_maps/RandomRuins/JungleRuins/jungle_bombed_starport.dmm b/_maps/RandomRuins/JungleRuins/jungle_bombed_starport.dmm
index c0fc2fcfc956..8758474983c4 100644
--- a/_maps/RandomRuins/JungleRuins/jungle_bombed_starport.dmm
+++ b/_maps/RandomRuins/JungleRuins/jungle_bombed_starport.dmm
@@ -5624,8 +5624,8 @@
/area/overmap_encounter/planetoid/jungle/explored)
"LM" = (
/obj/structure/closet,
-/obj/item/clothing/suit/aclf,
-/obj/item/clothing/under/syndicate/aclf,
+/obj/item/clothing/suit/gorlex,
+/obj/item/clothing/under/syndicate/officer,
/obj/item/gun/ballistic/automatic/pistol,
/obj/item/ammo_box/magazine/m10mm,
/obj/item/ammo_box/magazine/m10mm,
@@ -7308,8 +7308,8 @@
"XC" = (
/obj/effect/decal/remains/human,
/obj/effect/decal/cleanable/vomit/old,
-/obj/item/clothing/under/syndicate/aclf,
-/obj/item/clothing/suit/aclf,
+/obj/item/clothing/under/syndicate/officer,
+/obj/item/clothing/suit/gorlex,
/obj/item/clothing/shoes/combat,
/turf/open/floor/mineral/plastitanium,
/area/ruin/jungle/starport/tower)
diff --git a/_maps/RandomRuins/JungleRuins/jungle_demon.dmm b/_maps/RandomRuins/JungleRuins/jungle_demon.dmm
index 2185de838688..adbb037af38c 100644
--- a/_maps/RandomRuins/JungleRuins/jungle_demon.dmm
+++ b/_maps/RandomRuins/JungleRuins/jungle_demon.dmm
@@ -157,7 +157,7 @@
/area/ruin/powered)
"pm" = (
/obj/structure/table/reinforced,
-/obj/item/upgradescroll,
+/obj/item/paper,
/turf/open/floor/plasteel/dark,
/area/ruin/powered)
"pE" = (
@@ -220,9 +220,27 @@
/turf/open/floor/plasteel/dark,
/area/ruin/powered)
"tR" = (
-/obj/structure/closet/gimmick/tacticool,
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/item/clothing/shoes/jackboots,
+/obj/item/clothing/mask/gas/syndicate,
+/obj/item/clothing/under/syndicate,
+/obj/structure/closet/syndicate{
+ desc = "It's a basic storage unit.";
+ name = "uniform closet"
+ },
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/blood/old,
+/obj/item/clothing/under/syndicate,
+/obj/item/clothing/shoes/jackboots,
+/obj/item/clothing/mask/gas/syndicate,
+/obj/item/clothing/head/helmet/operator,
+/obj/item/clothing/head/helmet/operator,
+/obj/item/clothing/suit/armor/vest/syndie,
+/obj/item/clothing/suit/armor/vest/syndie,
+/obj/item/clothing/gloves/combat,
+/obj/item/clothing/gloves/combat,
/turf/open/floor/plasteel/dark,
/area/ruin/powered)
"uj" = (
@@ -494,8 +512,11 @@
/turf/open/floor/plasteel/dark,
/area/ruin/powered)
"PA" = (
-/obj/machinery/suit_storage_unit/syndicate,
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/suit_storage_unit/inherit,
+/obj/item/tank/internals/oxygen/red,
+/obj/item/clothing/suit/space/hardsuit/syndi,
+/obj/item/clothing/mask/gas/syndicate,
/turf/open/floor/plasteel/dark,
/area/ruin/powered)
"QI" = (
diff --git a/_maps/RandomRuins/JungleRuins/jungle_paradise.dmm b/_maps/RandomRuins/JungleRuins/jungle_paradise.dmm
index 1983657dbc1f..f008f3c68717 100644
--- a/_maps/RandomRuins/JungleRuins/jungle_paradise.dmm
+++ b/_maps/RandomRuins/JungleRuins/jungle_paradise.dmm
@@ -3331,10 +3331,6 @@
pixel_x = 21
},
/obj/structure/flora/grass/jungle/b,
-/obj/structure/flora/grass/jungle/b{
- icon_state = "rock3";
- pixel_y = 9
- },
/turf/open/floor/plating/dirt/jungle,
/area/overmap_encounter/planetoid/cave/explored)
"uk" = (
diff --git a/_maps/RandomRuins/JungleRuins/jungle_spider.dmm b/_maps/RandomRuins/JungleRuins/jungle_spider.dmm
deleted file mode 100644
index 14c11868d3af..000000000000
--- a/_maps/RandomRuins/JungleRuins/jungle_spider.dmm
+++ /dev/null
@@ -1,266 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"a" = (
-/turf/template_noop,
-/area/template_noop)
-"c" = (
-/obj/structure/flora/tree/jungle,
-/turf/open/floor/plating/dirt/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"e" = (
-/obj/structure/spider/stickyweb,
-/obj/item/reagent_containers/food/snacks/spidereggs,
-/turf/open/floor/plating/dirt/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"f" = (
-/obj/structure/spider/stickyweb,
-/turf/open/floor/plating/dirt/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"g" = (
-/obj/structure/spider/stickyweb,
-/obj/machinery/door/airlock/research,
-/turf/open/floor/plating/dirt/jungle/dark/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"i" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/dirt/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"j" = (
-/obj/effect/decal/cleanable/glass,
-/obj/structure/barricade/wooden,
-/obj/structure/grille/broken,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/overmap_encounter/planetoid/jungle/explored)
-"k" = (
-/obj/effect/decal/remains/human,
-/obj/item/clothing/head/helmet/swat/nanotrasen,
-/obj/effect/decal/cleanable/blood,
-/turf/open/floor/plating,
-/area/overmap_encounter/planetoid/jungle/explored)
-"l" = (
-/obj/structure/spider/spiderling,
-/turf/open/floor/plating/dirt/jungle/dark/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"m" = (
-/mob/living/simple_animal/hostile/poison/giant_spider/nurse,
-/turf/open/floor/plating/dirt/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"o" = (
-/obj/structure/spider/stickyweb,
-/turf/open/floor/plating/dirt/jungle/dark/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"q" = (
-/obj/effect/decal/cleanable/glass,
-/obj/structure/barricade/wooden,
-/obj/structure/grille/broken,
-/turf/open/floor/plating/dirt/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"r" = (
-/turf/open/floor/plating/dirt/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"s" = (
-/obj/item/paper/guides/jobs/medical/cloning,
-/turf/open/floor/plating,
-/area/overmap_encounter/planetoid/jungle/explored)
-"t" = (
-/obj/structure/spider/spiderling,
-/turf/open/floor/plating/dirt/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"u" = (
-/obj/structure/spider/stickyweb,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/dirt/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"v" = (
-/obj/structure/spider/spiderling,
-/obj/structure/spider/cocoon,
-/obj/item/pda/geneticist,
-/obj/effect/decal/cleanable/blood,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/circuitboard/machine/dnascanner,
-/obj/item/circuitboard/computer/cloning,
-/turf/open/floor/plating/dirt/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"w" = (
-/obj/machinery/clonepod,
-/turf/open/floor/plating,
-/area/overmap_encounter/planetoid/jungle/explored)
-"x" = (
-/obj/effect/decal/cleanable/insectguts,
-/obj/machinery/door/airlock/research,
-/turf/open/floor/plating,
-/area/overmap_encounter/planetoid/jungle/explored)
-"y" = (
-/turf/open/floor/plating/dirt/jungle/dark/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"A" = (
-/obj/structure/closet/wardrobe/genetics_white,
-/obj/item/storage/firstaid/toxin,
-/turf/open/floor/plating,
-/area/overmap_encounter/planetoid/jungle/explored)
-"C" = (
-/obj/item/storage/belt/security/webbing,
-/turf/open/floor/plating/dirt/jungle/dark/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"D" = (
-/obj/effect/decal/cleanable/ash/large,
-/turf/open/floor/plating,
-/area/overmap_encounter/planetoid/jungle/explored)
-"G" = (
-/obj/structure/spider/spiderling,
-/obj/structure/spider/cocoon,
-/obj/item/research_notes/loot/medium,
-/turf/open/floor/plating,
-/area/overmap_encounter/planetoid/jungle/explored)
-"I" = (
-/obj/structure/spider/stickyweb,
-/obj/item/organ/heart/gland/spiderman,
-/obj/structure/closet/crate/freezer,
-/obj/item/reagent_containers/food/snacks/spiderlollipop,
-/obj/item/reagent_containers/food/snacks/spiderlollipop,
-/obj/item/reagent_containers/food/snacks/spiderlollipop,
-/turf/open/floor/plating,
-/area/overmap_encounter/planetoid/jungle/explored)
-"K" = (
-/turf/closed/wall/rust,
-/area/overmap_encounter/planetoid/jungle/explored)
-"L" = (
-/obj/effect/decal/cleanable/glass,
-/obj/structure/barricade/wooden,
-/obj/structure/grille/broken,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/dirt/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"M" = (
-/obj/structure/spider/spiderling,
-/obj/effect/decal/cleanable/insectguts,
-/turf/open/floor/plating/dirt/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"N" = (
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/mob/living/simple_animal/hostile/poison/giant_spider/nurse,
-/turf/open/floor/plating/dirt/jungle/dark/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"O" = (
-/obj/item/melee/flyswatter,
-/obj/item/reagent_containers/spray/pestspray,
-/turf/open/floor/plating/dirt/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"P" = (
-/obj/effect/decal/cleanable/glass,
-/obj/structure/barricade/wooden,
-/obj/structure/grille/broken,
-/obj/structure/spider/stickyweb,
-/turf/open/floor/plating,
-/area/overmap_encounter/planetoid/jungle/explored)
-"Q" = (
-/obj/effect/decal/cleanable/glass,
-/obj/structure/barricade/wooden,
-/obj/structure/grille/broken,
-/turf/open/floor/plating,
-/area/overmap_encounter/planetoid/jungle/explored)
-"T" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/overmap_encounter/planetoid/jungle/explored)
-"U" = (
-/obj/structure/spider/stickyweb,
-/obj/effect/decal/cleanable/insectguts,
-/turf/open/floor/plating/dirt/jungle/dark/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"V" = (
-/obj/effect/decal/cleanable/insectguts,
-/turf/open/floor/plating/dirt/jungle/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"W" = (
-/obj/item/flamethrower,
-/obj/item/tank/internals/plasma/full,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/dirt/jungle/dark/lit,
-/area/overmap_encounter/planetoid/jungle/explored)
-"X" = (
-/obj/effect/decal/cleanable/cobweb,
-/obj/structure/spider/stickyweb,
-/mob/living/simple_animal/hostile/poison/giant_spider,
-/obj/item/reagent_containers/food/snacks/spidereggs,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating,
-/area/overmap_encounter/planetoid/jungle/explored)
-
-(1,1,1) = {"
-K
-K
-K
-P
-K
-K
-M
-r
-a
-"}
-(2,1,1) = {"
-K
-X
-e
-f
-v
-L
-o
-i
-c
-"}
-(3,1,1) = {"
-K
-I
-u
-m
-A
-K
-f
-o
-f
-"}
-(4,1,1) = {"
-K
-U
-l
-W
-w
-g
-o
-f
-t
-"}
-(5,1,1) = {"
-P
-f
-C
-k
-s
-x
-O
-y
-V
-"}
-(6,1,1) = {"
-q
-N
-T
-D
-G
-j
-i
-r
-a
-"}
-(7,1,1) = {"
-K
-K
-Q
-K
-K
-K
-f
-a
-a
-"}
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_dwarffortress.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_dwarffortress.dmm
index 999dddfea9f3..52a302920d24 100644
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_dwarffortress.dmm
+++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_dwarffortress.dmm
@@ -282,11 +282,6 @@
/area/overmap_encounter/planetoid/cave/explored)
"UM" = (
/obj/structure/table/wood,
-/obj/item/clothing/shoes/cowboy/lizard,
-/obj/item/tailclub{
- pixel_x = 3;
- pixel_y = 9
- },
/turf/open/floor/plating/asteroid/basalt,
/area/overmap_encounter/planetoid/cave/explored)
"Vk" = (
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_golem_ship.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_golem_ship.dmm
deleted file mode 100644
index 3f6744665feb..000000000000
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_golem_ship.dmm
+++ /dev/null
@@ -1,2942 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"aB" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/mineral/titanium/yellow,
-/area/ruin/powered/golem_ship)
-"aK" = (
-/obj/machinery/autolathe,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/corner/transparent/neutral,
-/obj/machinery/light/directional/north,
-/obj/effect/turf_decal/trimline/opaque/white/line{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"aT" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/corner/transparent/neutral,
-/obj/effect/turf_decal/trimline/opaque/purple/line{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"aY" = (
-/obj/structure/table/reinforced,
-/obj/item/paper_bin,
-/obj/effect/turf_decal/trimline/opaque/blue/line,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 4
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/powered/golem_ship)
-"bs" = (
-/obj/machinery/mineral/ore_redemption{
- input_dir = 2;
- output_dir = 1
- },
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/industrial/outline/yellow,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"bv" = (
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/ore_box,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/powered/golem_ship)
-"bx" = (
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/box/corners{
- dir = 1
- },
-/obj/structure/reagent_dispensers/fueltank,
-/obj/effect/turf_decal/industrial/outline/yellow,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"bI" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 4
- },
-/obj/effect/decal/cleanable/blood,
-/turf/open/floor/mineral/titanium/blue,
-/area/ruin/powered/golem_ship)
-"bR" = (
-/obj/structure/rack,
-/obj/item/shovel,
-/obj/item/shovel{
- pixel_x = 5
- },
-/obj/item/shovel{
- pixel_x = 10
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/trimline/opaque/yellow/line,
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 4
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/powered/golem_ship)
-"cp" = (
-/obj/structure/extinguisher_cabinet/directional/north,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"cD" = (
-/obj/structure/fans/tiny,
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/obj/machinery/door/airlock/external,
-/obj/effect/decal/cleanable/blood/tracks,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"dc" = (
-/obj/structure/shuttle/engine/propulsion{
- dir = 8
- },
-/turf/open/floor/plating{
- initial_gas_mix = "LAVALAND_ATMOS"
- },
-/area/ruin/powered/golem_ship)
-"di" = (
-/obj/structure/closet/crate,
-/obj/item/storage/bag/ore,
-/obj/item/flashlight/lantern,
-/obj/item/pickaxe,
-/obj/item/shovel,
-/obj/item/mining_scanner,
-/obj/item/card/id/mining,
-/obj/item/clothing/head/hardhat/mining,
-/obj/effect/turf_decal/trimline/opaque/yellow/line,
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 4
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/powered/golem_ship)
-"dq" = (
-/obj/machinery/shower{
- dir = 8
- },
-/turf/open/floor/plasteel/freezer,
-/area/ruin/powered/golem_ship)
-"dr" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/trimline/opaque/white/line{
- dir = 6
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"dt" = (
-/obj/machinery/light/small/directional/south,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 4
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/ruin/powered/golem_ship)
-"dv" = (
-/obj/item/soap,
-/obj/machinery/shower{
- dir = 8
- },
-/turf/open/floor/plasteel/freezer,
-/area/ruin/powered/golem_ship)
-"dy" = (
-/obj/structure/closet/crate,
-/obj/item/storage/bag/ore,
-/obj/item/flashlight/lantern,
-/obj/item/pickaxe,
-/obj/item/shovel,
-/obj/item/mining_scanner,
-/obj/item/card/id/mining,
-/obj/effect/decal/cleanable/dirt,
-/obj/item/clothing/head/hardhat/mining,
-/obj/machinery/light/small/directional/south,
-/obj/effect/turf_decal/trimline/opaque/yellow/line,
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 4
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/powered/golem_ship)
-"dF" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/spawner/lootdrop/maintenance/three,
-/obj/structure/closet/crate,
-/turf/open/floor/mineral/titanium/yellow,
-/area/ruin/powered/golem_ship)
-"ea" = (
-/obj/machinery/light/small/directional/south,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"ee" = (
-/obj/effect/turf_decal/corner/transparent/neutral,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 8
- },
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 4
- },
-/obj/effect/turf_decal/trimline/opaque/white/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered/golem_ship)
-"ep" = (
-/obj/machinery/light/small/directional/south,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/trimline/opaque/white/line,
-/turf/open/floor/plasteel,
-/area/ruin/powered/golem_ship)
-"eA" = (
-/obj/effect/turf_decal/trimline/opaque/yellow/arrow_cw,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 4
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/powered/golem_ship)
-"eG" = (
-/obj/machinery/light/directional/west,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/trimline/opaque/purple/line{
- dir = 10
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"fi" = (
-/obj/machinery/door/airlock/titanium,
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/obj/effect/turf_decal/industrial/warning,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"fy" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/extinguisher_cabinet/directional/north,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"fK" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/obj/effect/turf_decal/industrial/warning,
-/obj/machinery/door/airlock/mining,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"fL" = (
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/trimline/opaque/white/line,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"fQ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/trimline/opaque/yellow/corner{
- dir = 4
- },
-/obj/effect/turf_decal/trimline/opaque/yellow/corner{
- dir = 1
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/corner/transparent/neutral,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/powered/golem_ship)
-"fS" = (
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/button/door{
- id = "golemloading";
- name = "Cargo Blast Door Control";
- pixel_x = -5;
- pixel_y = -25
- },
-/obj/effect/turf_decal/trimline/opaque/yellow/arrow_cw{
- dir = 4
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/powered/golem_ship)
-"gg" = (
-/obj/machinery/light/small/directional/west,
-/turf/open/floor/mineral/titanium/yellow,
-/area/ruin/powered/golem_ship)
-"gn" = (
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/corner/transparent/neutral,
-/obj/effect/turf_decal/trimline/opaque/purple/line{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"gs" = (
-/obj/effect/spawner/structure/window/shuttle,
-/turf/open/floor/plating,
-/area/ruin/powered/golem_ship)
-"gz" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/item/kirbyplants{
- icon_state = "plant-22"
- },
-/obj/effect/turf_decal/box/corners,
-/obj/effect/turf_decal/trimline/opaque/blue/corner{
- dir = 1
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/corner/transparent/neutral,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/powered/golem_ship)
-"gT" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"hu" = (
-/obj/structure/rack,
-/obj/item/pickaxe{
- pixel_x = -10
- },
-/obj/item/pickaxe{
- pixel_x = -5
- },
-/obj/item/pickaxe,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/trimline/opaque/yellow/line,
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 4
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/powered/golem_ship)
-"hN" = (
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ruin/powered/golem_ship)
-"hS" = (
-/obj/structure/mirror{
- pixel_y = 28
- },
-/obj/structure/sink{
- pixel_y = 22
- },
-/turf/open/floor/plasteel/freezer,
-/area/ruin/powered/golem_ship)
-"ia" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood/innards,
-/obj/effect/decal/cleanable/blood/gibs/limb,
-/turf/open/floor/mineral/titanium/blue,
-/area/ruin/powered/golem_ship)
-"in" = (
-/obj/structure/rack,
-/obj/item/card/id/mining,
-/obj/item/card/id/mining,
-/obj/item/card/id/mining,
-/obj/item/card/id/mining,
-/obj/item/card/id/mining,
-/obj/effect/turf_decal/trimline/opaque/yellow/line{
- dir = 1
- },
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/corner/transparent/neutral,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/powered/golem_ship)
-"iw" = (
-/obj/effect/turf_decal/corner/transparent/neutral,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 8
- },
-/obj/machinery/light/small/directional/north,
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 4
- },
-/obj/effect/turf_decal/trimline/opaque/white/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered/golem_ship)
-"iE" = (
-/turf/open/floor/mineral/titanium/purple,
-/area/ruin/powered/golem_ship)
-"iQ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/mineral/titanium/white,
-/area/ruin/powered/golem_ship)
-"iZ" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/mineral/titanium/blue,
-/area/ruin/powered/golem_ship)
-"jl" = (
-/obj/item/storage/firstaid/fire{
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/item/storage/firstaid/fire,
-/obj/item/storage/firstaid/fire{
- pixel_x = -4;
- pixel_y = -4
- },
-/obj/structure/table,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/corner/transparent/neutral,
-/obj/effect/turf_decal/trimline/opaque/white/line{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"jC" = (
-/obj/structure/window/reinforced{
- dir = 2;
- name = "shrine of the liberator"
- },
-/obj/structure/table/wood,
-/obj/item/book/manual/wiki/research_and_development{
- name = "Sacred Text of the Liberator";
- pixel_x = -4;
- pixel_y = 3
- },
-/obj/effect/turf_decal/trimline/opaque/purple/line{
- dir = 9
- },
-/obj/effect/turf_decal/trimline/opaque/purple/corner,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"jH" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/rack,
-/obj/item/clothing/head/hardhat/mining{
- pixel_x = 6;
- pixel_y = 6
- },
-/obj/item/clothing/head/hardhat/mining{
- pixel_x = 2;
- pixel_y = 2
- },
-/obj/item/clothing/head/hardhat/mining{
- pixel_x = -2;
- pixel_y = -2
- },
-/obj/item/clothing/head/hardhat/mining{
- pixel_x = -6;
- pixel_y = -6
- },
-/obj/effect/turf_decal/trimline/opaque/yellow/line{
- dir = 1
- },
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/corner/transparent/neutral,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/powered/golem_ship)
-"jR" = (
-/obj/structure/window/reinforced{
- dir = 2;
- name = "shrine of the liberator"
- },
-/obj/structure/statue/gold/rd,
-/obj/structure/window/reinforced{
- dir = 4;
- name = "shrine of the liberator"
- },
-/obj/effect/turf_decal/trimline/opaque/purple/line{
- dir = 6
- },
-/obj/effect/turf_decal/trimline/opaque/purple/corner{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"jX" = (
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 8
- },
-/obj/structure/closet/secure_closet/personal,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"kg" = (
-/obj/machinery/light/directional/south,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/trimline/opaque/white/line,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"ki" = (
-/obj/machinery/door/poddoor{
- id = "golemloading"
- },
-/obj/structure/fans/tiny,
-/turf/open/floor/plating,
-/area/ruin/powered/golem_ship)
-"kt" = (
-/obj/effect/turf_decal/corner/transparent/neutral,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/trimline/opaque/white/line{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"kw" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/bedsheetbin,
-/obj/structure/table,
-/obj/effect/turf_decal/industrial/outline/yellow,
-/turf/open/floor/plating,
-/area/ruin/powered/golem_ship)
-"kC" = (
-/obj/effect/turf_decal/corner/transparent/neutral,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 4
- },
-/obj/effect/turf_decal/trimline/opaque/white/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered/golem_ship)
-"kP" = (
-/obj/effect/turf_decal/industrial/warning,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood/tracks,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 4
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/powered/golem_ship)
-"kS" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/mineral/titanium/yellow,
-/area/ruin/powered/golem_ship)
-"kX" = (
-/obj/item/kirbyplants{
- icon_state = "applebush"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/trimline/opaque/blue/line,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 4
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/powered/golem_ship)
-"kY" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small/directional/south,
-/obj/effect/decal/cleanable/blood,
-/turf/open/floor/plating,
-/area/ruin/powered/golem_ship)
-"lt" = (
-/obj/machinery/light/small/directional/north,
-/obj/structure/bed,
-/obj/item/bedsheet/dorms,
-/obj/effect/decal/cleanable/blood,
-/turf/open/floor/wood,
-/area/ruin/powered/golem_ship)
-"lN" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small/directional/east,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"lU" = (
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 4
- },
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 4
- },
-/obj/effect/turf_decal/trimline/opaque/white/line,
-/turf/open/floor/plasteel,
-/area/ruin/powered/golem_ship)
-"mt" = (
-/obj/effect/turf_decal/box/corners{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/trimline/opaque/yellow/corner,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 4
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/powered/golem_ship)
-"mE" = (
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 4
- },
-/turf/open/floor/mineral/titanium/yellow,
-/area/ruin/powered/golem_ship)
-"mL" = (
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small/directional/east,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/powered/golem_ship)
-"mX" = (
-/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
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/trimline/opaque/white/corner,
-/turf/open/floor/plasteel,
-/area/ruin/powered/golem_ship)
-"nc" = (
-/obj/effect/turf_decal/corner/transparent/neutral,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small/directional/east,
-/obj/machinery/suit_storage_unit,
-/obj/effect/turf_decal/box/corners{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"nl" = (
-/turf/open/floor/plasteel/freezer,
-/area/ruin/powered/golem_ship)
-"np" = (
-/obj/structure/fans/tiny,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 4
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/obj/machinery/door/airlock/external{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"nt" = (
-/obj/structure/shuttle/engine/heater{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plating{
- initial_gas_mix = "LAVALAND_ATMOS"
- },
-/area/ruin/powered/golem_ship)
-"ny" = (
-/obj/structure/fans/tiny,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 1
- },
-/obj/effect/turf_decal/industrial/warning,
-/obj/machinery/door/airlock/external,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"nA" = (
-/obj/effect/turf_decal/corner/transparent/neutral,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 6
- },
-/obj/effect/turf_decal/trimline/opaque/white/corner{
- dir = 1
- },
-/obj/effect/turf_decal/trimline/opaque/white/corner{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered/golem_ship)
-"nD" = (
-/turf/open/floor/mineral/titanium/yellow,
-/area/ruin/powered/golem_ship)
-"nE" = (
-/obj/item/clothing/suit/hazardvest{
- desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks.";
- name = "emergency lifejacket"
- },
-/obj/item/clothing/suit/hazardvest{
- desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks.";
- name = "emergency lifejacket"
- },
-/obj/item/tank/internals/emergency_oxygen{
- pixel_x = 3
- },
-/obj/item/tank/internals/emergency_oxygen{
- pixel_x = 3
- },
-/obj/item/clothing/mask/breath{
- pixel_x = -3;
- pixel_y = -3
- },
-/obj/item/clothing/mask/breath{
- pixel_x = -3;
- pixel_y = -3
- },
-/obj/structure/closet/crate/internals,
-/obj/effect/decal/cleanable/dirt,
-/obj/item/clothing/head/hardhat/mining,
-/obj/item/clothing/head/hardhat/mining,
-/obj/effect/turf_decal/trimline/opaque/yellow/line{
- dir = 1
- },
-/obj/effect/turf_decal/corner/transparent/neutral,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 8
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/powered/golem_ship)
-"nH" = (
-/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
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small/directional/east,
-/obj/machinery/suit_storage_unit,
-/obj/effect/turf_decal/box/corners{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"nL" = (
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plasteel,
-/area/ruin/powered/golem_ship)
-"nT" = (
-/obj/effect/turf_decal/industrial/warning,
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/obj/machinery/door/airlock/titanium,
-/obj/effect/decal/cleanable/blood/tracks,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"om" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/trimline/opaque/yellow/corner{
- dir = 1
- },
-/obj/effect/turf_decal/trimline/opaque/yellow/corner{
- dir = 4
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/corner/transparent/neutral,
-/obj/effect/turf_decal/industrial/loading{
- dir = 1
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/powered/golem_ship)
-"oF" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 4
- },
-/turf/open/floor/mineral/titanium/yellow,
-/area/ruin/powered/golem_ship)
-"oO" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small/directional/north,
-/turf/open/floor/mineral/titanium/yellow,
-/area/ruin/powered/golem_ship)
-"pi" = (
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/corner/transparent/neutral,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ruin/powered/golem_ship)
-"pT" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood,
-/turf/open/floor/mineral/titanium/yellow,
-/area/ruin/powered/golem_ship)
-"qt" = (
-/obj/structure/ore_box,
-/obj/effect/turf_decal/trimline/opaque/yellow/line{
- dir = 4
- },
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/powered/golem_ship)
-"rl" = (
-/obj/structure/frame/machine,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"rv" = (
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/trimline/opaque/white/corner,
-/turf/open/floor/plasteel,
-/area/ruin/powered/golem_ship)
-"rH" = (
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 6
- },
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/mineral/titanium/yellow,
-/area/ruin/powered/golem_ship)
-"rR" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 4
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/ruin/powered/golem_ship)
-"se" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/trimline/opaque/yellow/line{
- dir = 1
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/corner/transparent/neutral,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/powered/golem_ship)
-"tw" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/ruin/powered/golem_ship)
-"tI" = (
-/turf/closed/wall/mineral/plastitanium,
-/area/ruin/powered/golem_ship)
-"uk" = (
-/obj/machinery/shower{
- dir = 4
- },
-/obj/machinery/light/small/directional/north,
-/turf/open/floor/plasteel/freezer,
-/area/ruin/powered/golem_ship)
-"uw" = (
-/obj/machinery/light/small/directional/north,
-/obj/machinery/shower{
- dir = 8
- },
-/turf/open/floor/plasteel/freezer,
-/area/ruin/powered/golem_ship)
-"uA" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/trimline/opaque/blue/corner,
-/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/mineral/plastitanium,
-/area/ruin/powered/golem_ship)
-"uL" = (
-/obj/effect/turf_decal/industrial/warning,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/spawner/lootdrop/maintenance/two,
-/obj/structure/closet/crate,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 4
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/powered/golem_ship)
-"uQ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 10
- },
-/turf/open/floor/mineral/titanium/yellow,
-/area/ruin/powered/golem_ship)
-"uZ" = (
-/obj/effect/decal/cleanable/blood/tracks,
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/obj/effect/turf_decal/industrial/warning,
-/obj/machinery/door/airlock/mining,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"vl" = (
-/obj/structure/table/reinforced,
-/obj/machinery/recharger,
-/obj/item/crowbar,
-/obj/item/crowbar{
- pixel_y = 12
- },
-/obj/item/crowbar{
- pixel_y = 6
- },
-/obj/effect/turf_decal/trimline/opaque/blue/line{
- dir = 1
- },
-/obj/effect/turf_decal/corner/transparent/neutral,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 8
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/powered/golem_ship)
-"vn" = (
-/obj/structure/table/reinforced,
-/obj/item/folder/blue,
-/obj/item/pen,
-/obj/effect/turf_decal/trimline/opaque/blue/line{
- dir = 1
- },
-/obj/effect/turf_decal/corner/transparent/neutral,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 8
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/powered/golem_ship)
-"vv" = (
-/obj/machinery/vending/mining_equipment/golem,
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/effect/turf_decal/trimline/opaque/yellow/line,
-/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 = 4
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/powered/golem_ship)
-"vA" = (
-/obj/structure/table/reinforced,
-/obj/machinery/light/small/directional/south,
-/obj/machinery/button/door{
- id = "golemloading";
- name = "Cargo Blast Door Control";
- pixel_x = -5;
- pixel_y = -25
- },
-/obj/item/storage/firstaid/regular,
-/obj/machinery/button/door{
- id = "golemwindows";
- name = "Window Blast Door Control";
- pixel_x = 5;
- pixel_y = -25
- },
-/obj/effect/turf_decal/trimline/opaque/blue/line,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 4
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/powered/golem_ship)
-"vS" = (
-/turf/open/floor/plating,
-/area/ruin/powered/golem_ship)
-"vV" = (
-/obj/machinery/light/small/directional/east,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"wg" = (
-/obj/structure/sign/warning/xeno_mining,
-/turf/closed/wall/mineral/titanium/nodiagonal,
-/area/ruin/powered/golem_ship)
-"wC" = (
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/trimline/opaque/white/line,
-/turf/open/floor/plasteel,
-/area/ruin/powered/golem_ship)
-"wJ" = (
-/obj/machinery/light/small/directional/north,
-/obj/structure/bed,
-/obj/item/bedsheet/dorms,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood,
-/turf/open/floor/wood,
-/area/ruin/powered/golem_ship)
-"wL" = (
-/obj/structure/frame/computer{
- dir = 4
- },
-/obj/effect/turf_decal/trimline/opaque/purple/line{
- dir = 5
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"wR" = (
-/obj/effect/turf_decal/corner/transparent/neutral,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 4
- },
-/obj/structure/table,
-/obj/item/storage/box/lights/mixed{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/storage/box/lights/bulbs,
-/obj/effect/turf_decal/box/corners{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"wW" = (
-/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/effect/turf_decal/industrial/outline/yellow,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/powered/golem_ship)
-"yg" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood,
-/turf/open/floor/plasteel/freezer,
-/area/ruin/powered/golem_ship)
-"yu" = (
-/obj/machinery/light/small/directional/north,
-/obj/structure/extinguisher_cabinet/directional/north,
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"yN" = (
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/corner/transparent/neutral,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/trimline/opaque/purple/line{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"yO" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/obj/machinery/door/airlock/command{
- name = "Bridge";
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"zg" = (
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/obj/machinery/light/small/directional/south,
-/obj/effect/turf_decal/trimline/opaque/white/line{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered/golem_ship)
-"zs" = (
-/obj/machinery/light/directional/south,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plasteel/freezer,
-/area/ruin/powered/golem_ship)
-"zt" = (
-/obj/effect/turf_decal/trimline/opaque/yellow/arrow_cw{
- dir = 4
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/powered/golem_ship)
-"zM" = (
-/obj/effect/turf_decal/industrial/warning,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 4
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/powered/golem_ship)
-"zW" = (
-/obj/machinery/light/directional/west,
-/obj/effect/turf_decal/corner/transparent/neutral,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/trimline/opaque/purple/line{
- dir = 9
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"zX" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper,
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/obj/machinery/door/airlock/external,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"zY" = (
-/obj/machinery/shower{
- dir = 4
- },
-/turf/open/floor/plasteel/freezer,
-/area/ruin/powered/golem_ship)
-"Ad" = (
-/obj/effect/turf_decal/industrial/warning,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 4
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/powered/golem_ship)
-"Ae" = (
-/obj/structure/chair/comfy/shuttle{
- dir = 8
- },
-/obj/effect/mob_spawn/human/golem/adamantine,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/trimline/opaque/blue/line,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 4
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/powered/golem_ship)
-"Af" = (
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 4
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/obj/machinery/door/airlock/command{
- name = "Bridge";
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"Ak" = (
-/obj/machinery/door/airlock/titanium,
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"Ba" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood/tracks,
-/turf/open/floor/mineral/titanium/yellow,
-/area/ruin/powered/golem_ship)
-"Bw" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/trimline/opaque/white/line,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"BD" = (
-/obj/item/kirbyplants{
- icon_state = "plant-21"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/box/corners{
- dir = 4
- },
-/obj/effect/turf_decal/trimline/opaque/blue/corner{
- dir = 8
- },
-/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,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/powered/golem_ship)
-"BE" = (
-/obj/structure/fans/tiny,
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 4
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 4
- },
-/obj/machinery/door/airlock/external{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"Cg" = (
-/obj/effect/spawner/structure/window/shuttle,
-/obj/machinery/door/poddoor{
- id = "golemwindows";
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/powered/golem_ship)
-"CO" = (
-/obj/effect/turf_decal/corner/transparent/neutral,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/trimline/opaque/white/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered/golem_ship)
-"Dp" = (
-/obj/effect/turf_decal/corner/transparent/neutral,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/table,
-/obj/machinery/cell_charger,
-/obj/item/stack/cable_coil/red{
- pixel_x = 2;
- pixel_y = 6
- },
-/obj/item/stock_parts/cell/high/plus,
-/obj/effect/turf_decal/box/corners,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"DM" = (
-/obj/structure/fans/tiny,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 8
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/obj/machinery/door/airlock/external{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"DY" = (
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/corner/transparent/neutral,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood,
-/turf/open/floor/plasteel,
-/area/ruin/powered/golem_ship)
-"Er" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/box/corners{
- dir = 4
- },
-/obj/effect/turf_decal/trimline/opaque/yellow/arrow_cw,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 4
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/powered/golem_ship)
-"EF" = (
-/obj/structure/chair/comfy/shuttle{
- dir = 4
- },
-/obj/effect/mob_spawn/human/golem/adamantine,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/trimline/opaque/blue/line{
- dir = 1
- },
-/obj/effect/turf_decal/corner/transparent/neutral,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 8
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/powered/golem_ship)
-"Fi" = (
-/obj/structure/table/reinforced,
-/obj/item/clipboard,
-/obj/item/pen,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/powered/golem_ship)
-"FE" = (
-/obj/effect/turf_decal/corner/transparent/neutral,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood/tracks,
-/obj/effect/turf_decal/trimline/opaque/white/corner{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered/golem_ship)
-"FP" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/washing_machine,
-/obj/effect/turf_decal/industrial/outline/yellow,
-/turf/open/floor/plating,
-/area/ruin/powered/golem_ship)
-"FS" = (
-/obj/structure/table/reinforced,
-/obj/item/clipboard,
-/obj/item/toy/figure/rd{
- name = "the Liberator action figure";
- toysay = "Yeah, go do whatever."
- },
-/obj/effect/turf_decal/trimline/opaque/blue/line,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 4
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/powered/golem_ship)
-"FT" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ruin/powered/golem_ship)
-"Gg" = (
-/obj/machinery/reagentgrinder,
-/obj/structure/table,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/trimline/opaque/white/line{
- dir = 5
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"Gn" = (
-/obj/structure/window/reinforced{
- dir = 1;
- name = "shrine of the liberator"
- },
-/obj/structure/table/wood,
-/obj/item/circuitboard/aicore,
-/obj/item/toy/figure/rd{
- name = "the Liberator action figure";
- toysay = "Yeah, go do whatever."
- },
-/obj/effect/turf_decal/trimline/opaque/purple/line{
- dir = 10
- },
-/obj/effect/turf_decal/trimline/opaque/purple/corner{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"Gr" = (
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/box/corners{
- dir = 8
- },
-/obj/structure/reagent_dispensers/fueltank,
-/obj/effect/turf_decal/industrial/outline/yellow,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"GB" = (
-/obj/effect/turf_decal/trimline/opaque/yellow/line{
- dir = 1
- },
-/obj/effect/turf_decal/corner/transparent/neutral,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 8
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/powered/golem_ship)
-"GD" = (
-/obj/structure/bed,
-/obj/item/bedsheet/rd/royal_cape,
-/obj/structure/window/reinforced{
- dir = 1;
- name = "shrine of the liberator"
- },
-/obj/structure/window/reinforced{
- dir = 4;
- name = "shrine of the liberator"
- },
-/obj/effect/turf_decal/trimline/opaque/purple/line{
- dir = 5
- },
-/obj/effect/turf_decal/trimline/opaque/purple/corner{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"Hg" = (
-/obj/effect/turf_decal/corner/transparent/neutral,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 8
- },
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 6
- },
-/obj/effect/turf_decal/trimline/opaque/white/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered/golem_ship)
-"Hs" = (
-/turf/open/floor/mineral/titanium/white,
-/area/ruin/powered/golem_ship)
-"HK" = (
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/corner/transparent/neutral,
-/obj/effect/turf_decal/trimline/opaque/white/line{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"HW" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood/tracks,
-/obj/structure/extinguisher_cabinet/directional/west,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"HZ" = (
-/turf/template_noop,
-/area/template_noop)
-"Iv" = (
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/corner/transparent/neutral,
-/obj/effect/turf_decal/trimline/opaque/purple/line{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"IB" = (
-/obj/machinery/light/small/directional/north,
-/obj/effect/decal/cleanable/blood,
-/turf/open/floor/wood,
-/area/ruin/powered/golem_ship)
-"IK" = (
-/obj/structure/sign/departments/science,
-/turf/closed/wall/mineral/titanium/nodiagonal,
-/area/ruin/powered/golem_ship)
-"IW" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/toolbox/mechanical,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/powered/golem_ship)
-"Jk" = (
-/obj/structure/closet/crate/science,
-/obj/item/storage/box/stockparts/basic,
-/obj/item/storage/box/stockparts/basic,
-/obj/effect/turf_decal/industrial/warning,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 4
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/powered/golem_ship)
-"JA" = (
-/obj/effect/turf_decal/industrial/warning,
-/obj/machinery/door/airlock/external,
-/obj/effect/decal/cleanable/blood/tracks,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"JL" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/mineral/titanium/purple,
-/area/ruin/powered/golem_ship)
-"JX" = (
-/turf/open/floor/plasteel,
-/area/ruin/powered/golem_ship)
-"Kb" = (
-/obj/machinery/door/airlock/titanium,
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"Kc" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/trimline/opaque/white/corner,
-/obj/effect/turf_decal/trimline/opaque/white/corner{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"Kg" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/frame/machine,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"KC" = (
-/obj/structure/rack,
-/obj/item/mop,
-/obj/item/reagent_containers/glass/bucket,
-/obj/item/storage/bag/trash{
- pixel_x = 6
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/industrial/outline/yellow,
-/turf/open/floor/plating,
-/area/ruin/powered/golem_ship)
-"KG" = (
-/obj/structure/fans/tiny,
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/obj/machinery/door/airlock/external,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"KH" = (
-/obj/structure/bed,
-/obj/item/bedsheet/dorms,
-/turf/open/floor/wood,
-/area/ruin/powered/golem_ship)
-"KO" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood/gibs/up,
-/turf/open/floor/mineral/titanium/blue,
-/area/ruin/powered/golem_ship)
-"La" = (
-/obj/machinery/door/airlock/titanium,
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"Ld" = (
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/plating,
-/area/ruin/powered/golem_ship)
-"LL" = (
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 4
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/obj/machinery/door/airlock/external{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"Ma" = (
-/obj/effect/spawner/structure/window/shuttle,
-/obj/machinery/door/poddoor{
- id = "golemwindows"
- },
-/turf/open/floor/plating,
-/area/ruin/powered/golem_ship)
-"Ml" = (
-/obj/machinery/door/poddoor{
- id = "golemloading"
- },
-/obj/structure/fans/tiny,
-/obj/effect/decal/cleanable/blood/tracks,
-/turf/open/floor/plating,
-/area/ruin/powered/golem_ship)
-"Mv" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/trimline/opaque/blue/corner{
- dir = 4
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/corner/transparent/neutral,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 8
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/powered/golem_ship)
-"Mw" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 4
- },
-/obj/machinery/light/directional/north,
-/turf/open/floor/mineral/titanium/yellow,
-/area/ruin/powered/golem_ship)
-"Mx" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood,
-/turf/open/floor/plasteel,
-/area/ruin/powered/golem_ship)
-"MN" = (
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 8
- },
-/obj/structure/closet/secure_closet/personal,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"MO" = (
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 5
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/mineral/titanium/purple,
-/area/ruin/powered/golem_ship)
-"MT" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood/old,
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 5
- },
-/obj/effect/spawner/lootdrop/maintenance/two,
-/turf/open/floor/mineral/titanium/yellow,
-/area/ruin/powered/golem_ship)
-"Ng" = (
-/obj/structure/closet/crate,
-/obj/effect/spawner/lootdrop/maintenance/two,
-/turf/open/floor/mineral/titanium/yellow,
-/area/ruin/powered/golem_ship)
-"Nj" = (
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/structure/rack,
-/obj/item/storage/toolbox/emergency{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/item/storage/toolbox/mechanical,
-/obj/item/storage/toolbox/electrical{
- pixel_x = -3;
- pixel_y = 3
- },
-/turf/open/floor/plating,
-/area/ruin/powered/golem_ship)
-"Nu" = (
-/obj/effect/turf_decal/corner/transparent/neutral,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 8
- },
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 10
- },
-/obj/effect/turf_decal/trimline/opaque/white/corner{
- dir = 1
- },
-/obj/effect/turf_decal/trimline/opaque/white/corner{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered/golem_ship)
-"NT" = (
-/obj/item/areaeditor/blueprints{
- desc = "Use to build new structures in the wastes.";
- name = "land claim"
- },
-/obj/item/disk/design_disk/golem_shell,
-/obj/structure/table,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/corner/transparent/neutral,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/trimline/opaque/white/corner{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"NZ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/trimline/opaque/yellow/arrow_cw,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 4
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/powered/golem_ship)
-"Oj" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/mineral/titanium/white,
-/area/ruin/powered/golem_ship)
-"Om" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/ore_box,
-/obj/machinery/light/small/directional/north,
-/obj/effect/turf_decal/trimline/opaque/yellow/line{
- dir = 1
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/corner/transparent/neutral,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/powered/golem_ship)
-"Ox" = (
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/trimline/opaque/purple/line,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"OD" = (
-/obj/structure/frame/machine,
-/obj/effect/turf_decal/trimline/opaque/purple/line{
- dir = 6
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"OF" = (
-/obj/effect/turf_decal/industrial/warning,
-/obj/machinery/door/airlock/external,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"PD" = (
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/reagent_dispensers/watertank,
-/obj/effect/turf_decal/industrial/outline/yellow,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"PE" = (
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/corner/transparent/neutral,
-/obj/structure/closet/secure_closet/personal,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"PV" = (
-/obj/effect/turf_decal/corner/transparent/neutral,
-/obj/effect/decal/cleanable/blood/tracks,
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 9
- },
-/obj/effect/turf_decal/trimline/opaque/white/corner{
- dir = 4
- },
-/obj/effect/turf_decal/trimline/opaque/white/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered/golem_ship)
-"PX" = (
-/obj/structure/sign/departments/cargo,
-/turf/closed/wall/mineral/titanium/nodiagonal,
-/area/ruin/powered/golem_ship)
-"Ql" = (
-/obj/machinery/door/airlock/titanium,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"Qz" = (
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 8
- },
-/obj/structure/reagent_dispensers/watertank,
-/obj/effect/turf_decal/industrial/outline/yellow,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"QD" = (
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 4
- },
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 6
- },
-/obj/effect/turf_decal/trimline/opaque/white/line,
-/turf/open/floor/plasteel,
-/area/ruin/powered/golem_ship)
-"QY" = (
-/obj/item/storage/firstaid/brute{
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/item/storage/firstaid/brute,
-/obj/item/storage/firstaid/brute{
- pixel_x = -4;
- pixel_y = -4
- },
-/obj/structure/table,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/corner/transparent/neutral,
-/obj/effect/turf_decal/trimline/opaque/white/line{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"RB" = (
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/effect/turf_decal/corner/transparent/neutral,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 4
- },
-/obj/structure/rack,
-/obj/item/flashlight/lantern{
- pixel_x = 5
- },
-/obj/item/flashlight/lantern,
-/obj/item/flashlight/lantern{
- pixel_x = -5
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"RK" = (
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/structure/closet/crate,
-/obj/effect/decal/cleanable/dirt,
-/obj/item/kinetic_crusher,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/powered/golem_ship)
-"Sa" = (
-/obj/item/kirbyplants{
- icon_state = "plant-22"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/trimline/opaque/blue/line{
- dir = 1
- },
-/obj/effect/turf_decal/corner/transparent/neutral,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 8
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/powered/golem_ship)
-"Sc" = (
-/obj/machinery/computer/arcade/battle,
-/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{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"Sg" = (
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/item/stack/cable_coil/red{
- pixel_x = 2;
- pixel_y = 6
- },
-/obj/item/stock_parts/cell/high/plus,
-/obj/item/wirecutters,
-/obj/structure/table,
-/turf/open/floor/plating,
-/area/ruin/powered/golem_ship)
-"SG" = (
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/powered/golem_ship)
-"SR" = (
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/trimline/opaque/purple/line,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"Td" = (
-/obj/structure/rack,
-/obj/item/storage/bag/ore,
-/obj/item/mining_scanner,
-/obj/item/storage/bag/ore,
-/obj/item/mining_scanner,
-/obj/item/storage/bag/ore,
-/obj/item/mining_scanner,
-/obj/item/storage/bag/ore,
-/obj/item/mining_scanner,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/trimline/opaque/yellow/line,
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 4
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/powered/golem_ship)
-"Tj" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 9
- },
-/turf/open/floor/mineral/titanium/yellow,
-/area/ruin/powered/golem_ship)
-"TN" = (
-/obj/structure/rack,
-/obj/item/resonator{
- pixel_x = 6;
- pixel_y = 6
- },
-/obj/item/resonator{
- pixel_x = 2;
- pixel_y = 2
- },
-/obj/item/resonator{
- pixel_x = -2;
- pixel_y = -2
- },
-/obj/item/resonator{
- pixel_x = -6;
- pixel_y = -6
- },
-/obj/effect/turf_decal/trimline/opaque/yellow/line{
- dir = 1
- },
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/corner/transparent/neutral,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/powered/golem_ship)
-"TO" = (
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/trimline/opaque/white/corner{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ruin/powered/golem_ship)
-"Ud" = (
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/trimline/opaque/white/line,
-/turf/open/floor/plasteel,
-/area/ruin/powered/golem_ship)
-"Uq" = (
-/obj/effect/decal/cleanable/blood/tracks,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/trimline/opaque/purple/line,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"UD" = (
-/obj/structure/chair/comfy/shuttle{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/trimline/opaque/blue/line{
- dir = 8
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/corner/transparent/neutral,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/powered/golem_ship)
-"UH" = (
-/obj/structure/chair/comfy/shuttle{
- dir = 4
- },
-/obj/effect/mob_spawn/human/golem/adamantine,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/trimline/opaque/blue/line,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 4
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/powered/golem_ship)
-"UW" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/extinguisher_cabinet/directional/west,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"VY" = (
-/obj/structure/table/reinforced,
-/obj/machinery/light/small/directional/north,
-/obj/machinery/recharger,
-/obj/item/resonator/upgraded,
-/obj/effect/turf_decal/trimline/opaque/blue/line{
- dir = 9
- },
-/obj/effect/turf_decal/corner/transparent/neutral,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/powered/golem_ship)
-"Wr" = (
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/mineral/titanium/purple,
-/area/ruin/powered/golem_ship)
-"WO" = (
-/obj/machinery/computer/arcade/orion_trail,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"Xr" = (
-/obj/structure/closet/crate,
-/obj/item/storage/bag/ore,
-/obj/item/flashlight/lantern,
-/obj/item/pickaxe,
-/obj/item/shovel,
-/obj/item/mining_scanner,
-/obj/item/card/id/mining,
-/obj/effect/decal/cleanable/dirt,
-/obj/item/clothing/head/hardhat/mining,
-/obj/effect/turf_decal/trimline/opaque/yellow/line,
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 4
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/powered/golem_ship)
-"Xv" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/trimline/opaque/white/corner,
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"XR" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/closed/wall/mineral/titanium/nodiagonal,
-/area/ruin/powered/golem_ship)
-"XY" = (
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/structure/closet/crate,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/spawner/lootdrop/maintenance/two,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/powered/golem_ship)
-"Ye" = (
-/turf/closed/wall/mineral/titanium/nodiagonal,
-/area/ruin/powered/golem_ship)
-"YN" = (
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 8
- },
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/obj/machinery/door/airlock/external{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"YQ" = (
-/obj/structure/chair/comfy/shuttle{
- dir = 8
- },
-/obj/effect/mob_spawn/human/golem/adamantine,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/trimline/opaque/blue/line{
- dir = 1
- },
-/obj/effect/turf_decal/corner/transparent/neutral,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 8
- },
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/powered/golem_ship)
-"YV" = (
-/obj/machinery/light/small/directional/north,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/mineral/titanium/blue,
-/area/ruin/powered/golem_ship)
-"YZ" = (
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/effect/turf_decal/corner/transparent/neutral,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/rack,
-/obj/item/storage/toolbox/emergency{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/item/storage/toolbox/mechanical,
-/obj/item/storage/toolbox/electrical{
- pixel_x = -3;
- pixel_y = 3
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"Ze" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
- },
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 4
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 8
- },
-/obj/machinery/door/airlock/external{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/powered/golem_ship)
-"ZX" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood/splatter,
-/turf/open/floor/mineral/titanium/blue,
-/area/ruin/powered/golem_ship)
-"ZY" = (
-/obj/machinery/computer/helm{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/industrial/outline/yellow,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/powered/golem_ship)
-
-(1,1,1) = {"
-HZ
-HZ
-HZ
-HZ
-HZ
-HZ
-Ye
-Cg
-Cg
-Cg
-Cg
-Ye
-HZ
-HZ
-HZ
-HZ
-HZ
-HZ
-"}
-(2,1,1) = {"
-HZ
-HZ
-HZ
-HZ
-HZ
-HZ
-Ma
-IW
-wW
-ZY
-Fi
-Ma
-HZ
-HZ
-HZ
-HZ
-HZ
-HZ
-"}
-(3,1,1) = {"
-HZ
-HZ
-HZ
-HZ
-Ye
-BE
-Ye
-VY
-UD
-UD
-vA
-Ye
-np
-np
-Ye
-HZ
-HZ
-HZ
-"}
-(4,1,1) = {"
-HZ
-HZ
-HZ
-HZ
-Ye
-yu
-XR
-gz
-iZ
-iZ
-BD
-Ye
-gT
-cp
-Ye
-HZ
-HZ
-HZ
-"}
-(5,1,1) = {"
-HZ
-HZ
-HZ
-Ye
-Ye
-Ze
-Ye
-KO
-uA
-Mv
-ZX
-Ye
-gT
-ea
-Ye
-HZ
-HZ
-HZ
-"}
-(6,1,1) = {"
-Ye
-Ye
-Ye
-Ye
-CO
-lU
-Ye
-iZ
-UH
-EF
-ia
-Ye
-YN
-YN
-Ye
-Ye
-Ye
-Ye
-"}
-(7,1,1) = {"
-Ye
-IB
-nT
-PV
-FE
-QD
-Ye
-iZ
-FS
-vn
-bI
-Ye
-GB
-nD
-nD
-gg
-zM
-ki
-"}
-(8,1,1) = {"
-Ma
-KH
-Ye
-ee
-mX
-zg
-Ye
-YV
-aY
-vl
-dt
-Ye
-GB
-aB
-Ng
-nD
-Ad
-ki
-"}
-(9,1,1) = {"
-Ye
-jX
-Ye
-iw
-wC
-Sc
-Ye
-iZ
-Ae
-YQ
-rR
-Ye
-GB
-Tj
-uQ
-dF
-uL
-ki
-"}
-(10,1,1) = {"
-Ye
-Ye
-Ye
-kC
-wC
-WO
-Ye
-iZ
-kX
-Sa
-rR
-Ye
-nE
-mE
-MT
-Ba
-kP
-Ml
-"}
-(11,1,1) = {"
-Ye
-PE
-Ye
-kC
-wC
-Ye
-Ye
-yO
-Ye
-Ye
-Af
-Ye
-Ye
-Mw
-aB
-aB
-Jk
-ki
-"}
-(12,1,1) = {"
-Ma
-lt
-nT
-nA
-ep
-Ye
-zW
-aT
-Gn
-jC
-Iv
-eG
-PX
-oF
-mt
-zt
-fS
-Ye
-"}
-(13,1,1) = {"
-Ye
-Ye
-Ye
-CO
-TO
-fi
-yN
-JL
-GD
-jR
-MO
-Uq
-uZ
-rH
-eA
-XY
-bv
-Ma
-"}
-(14,1,1) = {"
-Ma
-wJ
-nT
-Nu
-rv
-fi
-yN
-JL
-wL
-OD
-JL
-Ox
-fK
-nD
-NZ
-SG
-SG
-Ma
-"}
-(15,1,1) = {"
-Ye
-MN
-Ye
-kC
-ep
-IK
-yN
-JL
-JL
-JL
-iE
-SR
-PX
-nD
-Er
-mL
-RK
-Ye
-"}
-(16,1,1) = {"
-Ye
-Ye
-Ye
-ee
-wC
-gs
-gn
-JL
-Kg
-rl
-iE
-Ox
-Ye
-La
-Ye
-Ye
-Ye
-Ye
-"}
-(17,1,1) = {"
-cD
-HW
-JA
-Hg
-Ud
-gs
-yN
-Wr
-JL
-JL
-iE
-SR
-Ye
-se
-aB
-zX
-UW
-ny
-"}
-(18,1,1) = {"
-KG
-vV
-OF
-CO
-Ud
-Ye
-HK
-Oj
-Hs
-Oj
-Hs
-fL
-gs
-se
-aB
-zX
-lN
-ny
-"}
-(19,1,1) = {"
-Ye
-Ye
-Ye
-Ak
-Ye
-Ye
-kt
-Oj
-Hs
-Oj
-Oj
-Kc
-bs
-om
-aB
-wg
-Ye
-Ye
-"}
-(20,1,1) = {"
-Ye
-uk
-zY
-nl
-zY
-Ye
-aK
-Oj
-Hs
-Oj
-Hs
-kg
-Ye
-Om
-aB
-nD
-vv
-Ye
-"}
-(21,1,1) = {"
-Ye
-hS
-yg
-nl
-zs
-Ye
-jl
-Oj
-Oj
-iQ
-Oj
-Kc
-fK
-fQ
-aB
-nD
-di
-Ma
-"}
-(22,1,1) = {"
-Ye
-uw
-dv
-nl
-dq
-Ye
-QY
-Oj
-Oj
-Oj
-Oj
-Bw
-Ye
-in
-aB
-aB
-Xr
-Ma
-"}
-(23,1,1) = {"
-Ye
-Ye
-Ye
-Kb
-Ye
-Ye
-Gg
-NT
-Oj
-Oj
-Xv
-dr
-Ye
-TN
-aB
-kS
-dy
-Ye
-"}
-(24,1,1) = {"
-Ye
-Nj
-tw
-vS
-Sg
-Ye
-Ye
-Ye
-Ql
-Ql
-Ye
-Ye
-Ye
-jH
-aB
-pT
-Td
-Ma
-"}
-(25,1,1) = {"
-Ye
-KC
-tw
-kY
-Ye
-Ye
-YZ
-Dp
-pi
-hN
-wR
-RB
-Ye
-Ye
-oO
-aB
-bR
-Ma
-"}
-(26,1,1) = {"
-Ma
-Ld
-vS
-tw
-fi
-JX
-FT
-FT
-DY
-hN
-FT
-FT
-Mx
-fi
-nD
-nD
-hu
-Ye
-"}
-(27,1,1) = {"
-Ma
-Ma
-FP
-kw
-Ye
-bx
-PD
-nc
-pi
-nL
-nH
-Qz
-Gr
-Ye
-qt
-qt
-Ye
-Ye
-"}
-(28,1,1) = {"
-HZ
-Ye
-Ye
-Ye
-Ye
-Ye
-Ye
-Ye
-LL
-LL
-Ye
-Ye
-Ye
-Ye
-Ye
-Ye
-Ye
-HZ
-"}
-(29,1,1) = {"
-HZ
-tI
-nt
-nt
-tI
-nt
-nt
-Ye
-fy
-ea
-Ye
-nt
-nt
-tI
-nt
-nt
-tI
-HZ
-"}
-(30,1,1) = {"
-HZ
-tI
-dc
-dc
-tI
-dc
-dc
-Ye
-DM
-DM
-Ye
-dc
-dc
-tI
-dc
-dc
-tI
-HZ
-"}
diff --git a/_maps/RandomRuins/RockRuins/rockplanet_clock.dmm b/_maps/RandomRuins/RockRuins/rockplanet_clock.dmm
deleted file mode 100644
index 3a8da9995006..000000000000
--- a/_maps/RandomRuins/RockRuins/rockplanet_clock.dmm
+++ /dev/null
@@ -1,628 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"br" = (
-/obj/structure/table/bronze,
-/obj/item/toy/clockwork_watch,
-/turf/open/floor/bronze,
-/area/ruin/powered)
-"bw" = (
-/obj/structure/girder/bronze,
-/turf/open/floor/bronze,
-/area/ruin/powered)
-"by" = (
-/obj/structure/fluff/clockwork/clockgolem_remains,
-/turf/open/floor/bronze,
-/area/ruin/powered)
-"cn" = (
-/obj/item/clothing/shoes/sandal/magic,
-/obj/structure/table/bronze,
-/turf/open/floor/bronze,
-/area/ruin/powered)
-"ct" = (
-/obj/structure/fluff/clockwork/alloy_shards/medium_gearbit,
-/turf/open/floor/bronze,
-/area/ruin/powered)
-"fy" = (
-/obj/item/golem_shell/servant,
-/turf/open/floor/bronze,
-/area/ruin/powered)
-"fK" = (
-/obj/machinery/computer/monitor{
- dir = 4
- },
-/turf/open/floor/bronze,
-/area/ruin/powered)
-"gA" = (
-/obj/machinery/computer/message_monitor{
- dir = 8
- },
-/turf/open/floor/bronze,
-/area/ruin/powered)
-"hb" = (
-/mob/living/simple_animal/hostile/jungle/mook,
-/turf/open/floor/bronze,
-/area/ruin/powered)
-"hm" = (
-/obj/effect/decal/cleanable/blood/old,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/bronze,
-/area/ruin/powered)
-"hn" = (
-/obj/effect/decal/cleanable/garbage,
-/turf/open/floor/bronze,
-/area/ruin/powered)
-"hU" = (
-/obj/machinery/computer/teleporter,
-/turf/open/floor/bronze,
-/area/ruin/powered)
-"iX" = (
-/obj/structure/girder/bronze,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/bronze,
-/area/ruin/powered)
-"iY" = (
-/obj/machinery/door/airlock/bronze/seethru,
-/obj/structure/trap/chill,
-/turf/open/floor/bronze,
-/area/ruin/powered)
-"jG" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/mob/living/simple_animal/hostile/jungle/mook,
-/turf/open/floor/bronze,
-/area/ruin/powered)
-"jK" = (
-/obj/effect/decal/cleanable/robot_debris/limb,
-/turf/open/floor/bronze,
-/area/ruin/powered)
-"kd" = (
-/obj/structure/fluff/clockwork/alloy_shards/medium_gearbit,
-/obj/structure/chair/comfy/shuttle/bronze{
- dir = 4
- },
-/turf/open/floor/bronze,
-/area/ruin/powered)
-"ks" = (
-/obj/structure/girder/bronze,
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/turf/open/floor/bronze,
-/area/ruin/powered)
-"lm" = (
-/obj/structure/fluff/clockwork/alloy_shards,
-/turf/open/floor/bronze,
-/area/ruin/powered)
-"mG" = (
-/obj/structure/chair/comfy/shuttle/bronze,
-/turf/open/floor/bronze,
-/area/ruin/powered)
-"nM" = (
-/obj/machinery/door/airlock/bronze,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/bronze,
-/area/ruin/powered)
-"oj" = (
-/obj/structure/fluff/clockwork/alloy_shards,
-/turf/open/floor/plating/asteroid/rockplanet/lit,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"oW" = (
-/mob/living/simple_animal/hostile/jungle/mook,
-/turf/open/floor/plating/asteroid/rockplanet/lit,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"pi" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/trap/fire,
-/turf/open/floor/bronze,
-/area/ruin/powered)
-"pt" = (
-/obj/item/gun/magic/wand/nothing,
-/obj/structure/table/bronze,
-/turf/open/floor/bronze,
-/area/ruin/powered)
-"pV" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/bronze,
-/area/ruin/powered)
-"rM" = (
-/obj/structure/table/bronze,
-/obj/item/stack/tile/bronze/thirty,
-/turf/open/floor/bronze,
-/area/ruin/powered)
-"sS" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/trap/stun,
-/turf/open/floor/bronze,
-/area/ruin/powered)
-"tg" = (
-/obj/structure/fluff/clockwork/alloy_shards,
-/obj/machinery/quantumpad,
-/turf/open/floor/bronze,
-/area/ruin/powered)
-"tI" = (
-/obj/effect/decal/cleanable/greenglow,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/bronze,
-/area/ruin/powered)
-"uk" = (
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/bronze,
-/area/ruin/powered)
-"ur" = (
-/obj/machinery/quantumpad,
-/obj/structure/trap/damage,
-/turf/open/floor/bronze,
-/area/ruin/powered)
-"uM" = (
-/obj/item/clothing/under/color/black,
-/obj/structure/table/bronze,
-/turf/open/floor/bronze,
-/area/ruin/powered)
-"uS" = (
-/obj/structure/fluff/clockwork/clockgolem_remains,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/bronze,
-/area/ruin/powered)
-"wq" = (
-/obj/machinery/power/smes,
-/turf/open/floor/bronze,
-/area/ruin/powered)
-"wv" = (
-/obj/effect/decal/cleanable/robot_debris,
-/turf/open/floor/bronze,
-/area/ruin/powered)
-"xb" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/closed/wall/mineral/bronze,
-/area/ruin/powered)
-"xt" = (
-/obj/structure/fluff/clockwork/alloy_shards/medium_gearbit,
-/obj/structure/closet/crate/grave/loot,
-/turf/open/floor/plating/asteroid/rockplanet/lit,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"xV" = (
-/obj/structure/chair/comfy/shuttle/bronze{
- dir = 4
- },
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/bronze,
-/area/ruin/powered)
-"zj" = (
-/obj/effect/decal/cleanable/robot_debris/old,
-/turf/open/floor/bronze,
-/area/ruin/powered)
-"zz" = (
-/obj/structure/chair/comfy/shuttle/bronze,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/bronze,
-/area/ruin/powered)
-"Bh" = (
-/obj/machinery/door/airlock/bronze/seethru,
-/turf/open/floor/bronze,
-/area/ruin/powered)
-"BX" = (
-/obj/structure/lattice,
-/turf/open/floor/plating/asteroid/rockplanet/lit,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"Ci" = (
-/obj/structure/table/bronze,
-/obj/item/clothing/suit/bronze,
-/turf/open/floor/bronze,
-/area/ruin/powered)
-"DL" = (
-/obj/structure/table/bronze,
-/obj/item/stack/sheet/glass/fifty,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/bronze,
-/area/ruin/powered)
-"EB" = (
-/obj/structure/closet/crate/grave/loot,
-/turf/open/floor/plating/asteroid/rockplanet/lit,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"FE" = (
-/obj/structure/table/bronze,
-/turf/open/floor/bronze,
-/area/ruin/powered)
-"Gk" = (
-/obj/structure/fluff/clockwork/alloy_shards/medium_gearbit,
-/turf/open/floor/plating/asteroid/rockplanet/lit,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"GD" = (
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plating/asteroid/rockplanet/lit,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"GT" = (
-/obj/item/toy/plush/plushvar,
-/turf/open/floor/plating/asteroid/rockplanet/lit,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"HK" = (
-/obj/effect/mine/stun,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/bronze,
-/area/ruin/powered)
-"Id" = (
-/obj/effect/decal/cleanable/blood/old,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/remains/human,
-/turf/open/floor/bronze,
-/area/ruin/powered)
-"Iu" = (
-/obj/structure/fluff/clockwork/clockgolem_remains,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/trap/stun,
-/turf/open/floor/bronze,
-/area/ruin/powered)
-"Ji" = (
-/obj/item/flashlight/lantern,
-/turf/open/floor/bronze,
-/area/ruin/powered)
-"Jl" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/remains/human,
-/turf/open/floor/bronze,
-/area/ruin/powered)
-"Ju" = (
-/obj/effect/decal/cleanable/robot_debris/old,
-/mob/living/simple_animal/hostile/jungle/mook,
-/turf/open/floor/bronze,
-/area/ruin/powered)
-"Nr" = (
-/turf/open/floor/plating/asteroid/rockplanet/lit,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"NP" = (
-/turf/open/floor/bronze,
-/area/ruin/powered)
-"Oa" = (
-/obj/structure/fluff/clockwork/alloy_shards/medium_gearbit,
-/obj/effect/mine/stun,
-/turf/open/floor/bronze,
-/area/ruin/powered)
-"Os" = (
-/obj/effect/decal/cleanable/blood/old,
-/obj/structure/trap/chill,
-/turf/open/floor/bronze,
-/area/ruin/powered)
-"OB" = (
-/turf/template_noop,
-/area/template_noop)
-"OC" = (
-/obj/structure/table/bronze,
-/obj/item/clothing/head/bronze,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/bronze,
-/area/ruin/powered)
-"PA" = (
-/obj/structure/fluff/clockwork/blind_eye,
-/obj/structure/table/bronze,
-/turf/open/floor/bronze,
-/area/ruin/powered)
-"Qs" = (
-/turf/closed/wall/mineral/bronze,
-/area/ruin/powered)
-"Rt" = (
-/obj/structure/chair/comfy/shuttle/bronze{
- dir = 4
- },
-/turf/open/floor/bronze,
-/area/ruin/powered)
-"TL" = (
-/obj/structure/statue/bronze/marx,
-/turf/open/floor/plating/asteroid/rockplanet/lit,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"TV" = (
-/obj/item/reagent_containers/food/drinks/trophy/bronze_cup,
-/obj/structure/table/bronze,
-/turf/open/floor/bronze,
-/area/ruin/powered)
-"VV" = (
-/obj/structure/girder/bronze,
-/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/bronze,
-/area/ruin/powered)
-"Wm" = (
-/obj/effect/mine/stun,
-/turf/open/floor/plating/asteroid/rockplanet/lit,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"Wx" = (
-/obj/effect/decal/cleanable/greenglow,
-/obj/effect/decal/cleanable/robot_debris/limb,
-/turf/open/floor/bronze,
-/area/ruin/powered)
-"WK" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/bronze,
-/area/ruin/powered)
-"WT" = (
-/obj/structure/table/bronze,
-/obj/item/clothing/shoes/bronze,
-/turf/open/floor/bronze,
-/area/ruin/powered)
-"Xi" = (
-/obj/structure/table/bronze,
-/obj/item/nullrod/spear,
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/bronze,
-/area/ruin/powered)
-"XY" = (
-/obj/structure/window/bronze/fulltile,
-/obj/structure/grille,
-/turf/open/floor/bronze,
-/area/ruin/powered)
-"Ye" = (
-/obj/structure/fluff/clockwork/alloy_shards,
-/obj/structure/lattice,
-/turf/open/floor/plating/asteroid/rockplanet/lit,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"Ys" = (
-/obj/machinery/door/airlock/bronze,
-/turf/open/floor/bronze,
-/area/ruin/powered)
-"YQ" = (
-/obj/item/book/granter/spell/smoke,
-/obj/structure/table/bronze,
-/turf/open/floor/bronze,
-/area/ruin/powered)
-"Zs" = (
-/obj/structure/lattice,
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plating/asteroid/rockplanet/lit,
-/area/overmap_encounter/planetoid/rockplanet/explored)
-"ZY" = (
-/obj/structure/chair/comfy/shuttle/bronze{
- dir = 8
- },
-/turf/open/floor/bronze,
-/area/ruin/powered)
-
-(1,1,1) = {"
-Qs
-Ys
-Ys
-Qs
-Qs
-Qs
-Qs
-Qs
-Qs
-Qs
-Qs
-Qs
-OB
-OB
-OB
-"}
-(2,1,1) = {"
-Qs
-hm
-NP
-hn
-bw
-Qs
-VV
-pV
-NP
-NP
-cn
-XY
-OB
-OB
-OB
-"}
-(3,1,1) = {"
-Qs
-kd
-Iu
-wv
-NP
-Bh
-HK
-WK
-hm
-NP
-uM
-XY
-xt
-Wm
-OB
-"}
-(4,1,1) = {"
-XY
-gA
-Ji
-lm
-hb
-Bh
-WK
-tI
-lm
-by
-NP
-Qs
-oW
-GD
-OB
-"}
-(5,1,1) = {"
-Qs
-fK
-uk
-NP
-TV
-Qs
-DL
-Jl
-Ji
-sS
-NP
-Ys
-BX
-oj
-OB
-"}
-(6,1,1) = {"
-Qs
-ZY
-NP
-NP
-PA
-Qs
-rM
-NP
-NP
-zj
-NP
-Ys
-BX
-Gk
-Nr
-"}
-(7,1,1) = {"
-Qs
-ks
-WK
-WK
-bw
-Qs
-ks
-br
-Xi
-FE
-bw
-Qs
-EB
-Nr
-Nr
-"}
-(8,1,1) = {"
-Qs
-Qs
-Bh
-iY
-xb
-Qs
-Qs
-xb
-Qs
-Qs
-Qs
-Qs
-Nr
-GT
-TL
-"}
-(9,1,1) = {"
-Qs
-VV
-NP
-NP
-iX
-Qs
-VV
-xV
-Rt
-NP
-bw
-Qs
-Zs
-oW
-Nr
-"}
-(10,1,1) = {"
-Qs
-hU
-NP
-Oa
-wq
-Qs
-mG
-Ci
-WT
-NP
-pi
-nM
-BX
-Nr
-Nr
-"}
-(11,1,1) = {"
-Qs
-tg
-Id
-Ji
-NP
-Qs
-zz
-OC
-fy
-uk
-WK
-nM
-Wm
-Nr
-Nr
-"}
-(12,1,1) = {"
-XY
-ur
-uS
-NP
-NP
-Bh
-WK
-NP
-Wx
-ct
-WK
-xb
-oW
-GD
-OB
-"}
-(13,1,1) = {"
-Qs
-NP
-NP
-jK
-jG
-Bh
-WK
-Os
-NP
-Ju
-YQ
-XY
-EB
-OB
-OB
-"}
-(14,1,1) = {"
-Qs
-NP
-NP
-NP
-bw
-Qs
-ks
-Ji
-by
-by
-pt
-XY
-Ye
-BX
-OB
-"}
-(15,1,1) = {"
-Qs
-Ys
-Ys
-Qs
-Qs
-Qs
-Qs
-Qs
-Qs
-Qs
-Qs
-Qs
-OB
-OB
-OB
-"}
diff --git a/_maps/RandomRuins/RockRuins/rockplanet_harmfactory.dmm b/_maps/RandomRuins/RockRuins/rockplanet_harmfactory.dmm
index 5ba299eb454c..9b5adb277fa8 100644
--- a/_maps/RandomRuins/RockRuins/rockplanet_harmfactory.dmm
+++ b/_maps/RandomRuins/RockRuins/rockplanet_harmfactory.dmm
@@ -61,8 +61,9 @@
"bU" = (
/obj/structure/rack,
/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/stack/sheet/mineral/gold/fifty,
/obj/machinery/light/dim/directional/north,
+/obj/item/spacecash/bundle/c1000,
+/obj/item/spacecash/bundle/loadsamoney,
/turf/open/floor/plasteel/patterned/brushed,
/area/ruin/powered)
"cb" = (
@@ -86,10 +87,6 @@
"cg" = (
/obj/structure/rack,
/obj/item/stack/sheet/mineral/gold/twenty,
-/obj/item/circuitboard/machine/protolathe{
- pixel_x = -7;
- pixel_y = 4
- },
/obj/item/circuitboard/computer/rdconsole,
/turf/open/floor/plasteel/patterned,
/area/ruin/powered)
@@ -141,7 +138,8 @@
/area/ruin/powered)
"dJ" = (
/obj/structure/rack,
-/obj/item/storage/firstaid/tactical,
+/obj/item/circuitboard/machine/techfab/department/cargo,
+/obj/item/stack/sheet/mineral/diamond/five,
/turf/open/floor/plating/rust,
/area/ruin/powered)
"dN" = (
@@ -432,14 +430,18 @@
/turf/open/floor/plating/rust,
/area/ruin/powered)
"kC" = (
-/obj/machinery/door/keycard,
+/obj/machinery/door/keycard{
+ puzzle_id = "factory4"
+ },
/turf/open/floor/plasteel/patterned/brushed,
/area/ruin/powered)
"kI" = (
-/obj/machinery/door/keycard,
/obj/structure/cable{
icon_state = "1-2"
},
+/obj/machinery/door/keycard{
+ puzzle_id = "factory4"
+ },
/turf/open/floor/plating/rust,
/area/ruin/powered)
"kM" = (
@@ -449,11 +451,11 @@
/area/ruin/powered)
"kN" = (
/obj/structure/rack,
-/obj/item/melee/greykingsword,
/obj/machinery/power/apc/auto_name/directional/north,
/obj/structure/cable{
icon_state = "0-8"
},
+/obj/item/gun/energy/plasmacutter/adv,
/turf/open/floor/plating/rust,
/area/ruin/powered)
"kU" = (
@@ -599,10 +601,8 @@
/turf/open/floor/plasteel/patterned,
/area/ruin/powered)
"of" = (
-/obj/machinery/conveyor/auto{
- dir = 8
- },
-/obj/machinery/light/dim/directional/north,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/conveyor/auto,
/turf/open/floor/engine,
/area/ruin/powered)
"oh" = (
@@ -681,8 +681,8 @@
/area/ruin/powered)
"pi" = (
/obj/structure/rack,
-/obj/item/construction/rcd/loaded,
/obj/machinery/light/dim/directional/north,
+/obj/item/stack/sheet/mineral/diamond/five,
/turf/open/floor/plating/rust,
/area/ruin/powered)
"pk" = (
@@ -734,29 +734,29 @@
/turf/open/floor/engine,
/area/ruin/powered)
"pP" = (
-/obj/effect/turf_decal/industrial/warning/dust{
- dir = 1
- },
-/obj/structure/railing/corner,
+/obj/item/toy/plush/moth,
+/obj/structure/table/greyscale,
/turf/open/floor/engine,
/area/ruin/powered)
"pU" = (
/obj/effect/turf_decal/industrial/warning/dust{
dir = 1
},
-/obj/structure/railing,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
/turf/open/floor/engine,
/area/ruin/powered)
"qb" = (
-/obj/structure/railing{
- dir = 10
- },
/obj/structure/table/greyscale,
/obj/item/laser_pointer/blue{
pixel_x = 10;
pixel_y = 9
},
/obj/item/megaphone,
+/obj/structure/railing{
+ dir = 10
+ },
/turf/open/floor/plasteel/patterned/brushed,
/area/ruin/powered)
"qd" = (
@@ -767,19 +767,10 @@
/turf/open/floor/engine,
/area/ruin/powered)
"qm" = (
-/obj/structure/railing,
/obj/structure/chair/plastic,
+/obj/structure/railing,
/turf/open/floor/plasteel/patterned,
/area/ruin/powered)
-"qt" = (
-/obj/effect/turf_decal/industrial/warning/dust{
- dir = 1
- },
-/obj/structure/railing/corner{
- dir = 8
- },
-/turf/open/floor/engine,
-/area/ruin/powered)
"qv" = (
/obj/structure/railing{
dir = 10
@@ -837,6 +828,9 @@
/area/ruin/powered)
"rv" = (
/obj/machinery/recycler/deathtrap,
+/obj/machinery/conveyor/auto{
+ dir = 4
+ },
/turf/open/floor/engine,
/area/ruin/powered)
"rO" = (
@@ -880,11 +874,6 @@
},
/turf/open/floor/engine,
/area/ruin/powered)
-"sH" = (
-/obj/structure/railing/corner,
-/mob/living/simple_animal/hostile/jungle/mook,
-/turf/open/floor/engine,
-/area/ruin/powered)
"sK" = (
/obj/structure/closet/secure/loot,
/obj/machinery/light/dim/directional/east,
@@ -893,25 +882,37 @@
/turf/open/floor/plasteel/patterned,
/area/ruin/powered)
"sN" = (
-/obj/machinery/conveyor/inverted,
-/obj/structure/grille,
/obj/structure/cable,
/obj/machinery/light/dim/directional/north,
-/turf/open/floor/engine,
+/obj/structure/grille,
+/turf/open/floor/plating,
/area/ruin/powered)
"sV" = (
-/obj/structure/disposalpipe/segment{
- dir = 6
+/obj/structure/cable{
+ icon_state = "4-8"
},
-/obj/structure/railing{
- dir = 6
+/obj/machinery/disposal/deliveryChute{
+ dir = 4
},
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/machinery/conveyor/auto,
/turf/open/floor/engine,
/area/ruin/powered)
"td" = (
-/obj/machinery/disposal/deliveryChute{
- dir = 4
+/obj/machinery/power/emitter/welded{
+ active = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/cable,
+/obj/machinery/light/dim/directional/north,
+/obj/structure/disposalpipe/segment{
+ dir = 6
},
+/obj/machinery/conveyor/auto,
/turf/open/floor/engine,
/area/ruin/powered)
"te" = (
@@ -920,29 +921,21 @@
},
/turf/open/floor/engine,
/area/ruin/powered)
-"tu" = (
-/obj/machinery/conveyor/auto{
- dir = 4
- },
-/obj/item/shard,
-/obj/item/shard,
-/obj/item/shard,
-/obj/item/shard,
-/obj/item/shard,
-/turf/open/floor/engine,
-/area/ruin/powered)
"tw" = (
-/obj/machinery/disposal/deliveryChute{
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/conveyor/auto{
dir = 8
},
/turf/open/floor/engine,
/area/ruin/powered)
"tC" = (
-/obj/structure/disposalpipe/segment{
- dir = 10
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/obj/structure/railing{
- dir = 10
+/obj/machinery/conveyor/auto{
+ dir = 8
},
/turf/open/floor/engine,
/area/ruin/powered)
@@ -1018,19 +1011,19 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/engine,
/area/ruin/powered)
-"vz" = (
-/obj/machinery/disposal/deliveryChute,
-/turf/open/floor/engine,
-/area/ruin/powered)
"vJ" = (
-/obj/structure/disposalpipe/segment{
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/railing{
dir = 6
},
-/turf/open/floor/engine,
+/turf/open/floor/plating,
/area/ruin/powered)
"vK" = (
-/obj/structure/disposalpipe/segment{
- dir = 10
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/conveyor/auto{
+ dir = 1
},
/turf/open/floor/engine,
/area/ruin/powered)
@@ -1110,26 +1103,23 @@
/turf/open/floor/engine,
/area/ruin/powered)
"yw" = (
-/obj/machinery/power/emitter/ctf{
- dir = 4
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/turf/open/floor/engine,
+/turf/closed/wall/r_wall,
/area/ruin/powered)
"za" = (
-/obj/machinery/power/emitter/ctf{
- dir = 8
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/turf/open/floor/engine,
-/area/ruin/powered)
-"zg" = (
+/obj/structure/disposalpipe/segment,
/obj/machinery/conveyor/auto{
dir = 1
},
-/obj/item/shard,
-/obj/item/shard,
-/obj/item/shard,
-/obj/item/shard,
-/obj/item/shard,
+/turf/open/floor/engine,
+/area/ruin/powered)
+"zg" = (
+/obj/effect/turf_decal/industrial/warning/dust/corner,
/turf/open/floor/engine,
/area/ruin/powered)
"zh" = (
@@ -1205,10 +1195,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/engine,
/area/ruin/powered)
-"Br" = (
-/obj/machinery/conveyor/inverted,
-/turf/open/floor/engine,
-/area/ruin/powered)
"Bz" = (
/obj/effect/turf_decal/industrial/warning/dust{
dir = 4
@@ -1223,27 +1209,16 @@
/turf/open/floor/engine,
/area/ruin/powered)
"BE" = (
-/obj/machinery/conveyor/auto{
- dir = 1
+/obj/machinery/power/terminal{
+ dir = 4
},
-/obj/item/shard/plasma,
-/obj/item/shard/plasma,
-/obj/item/shard/plasma,
-/obj/item/shard/plasma,
-/obj/item/shard/plasma,
-/turf/open/floor/engine,
+/turf/closed/indestructible/reinforced,
/area/ruin/powered)
"BQ" = (
/obj/structure/table/greyscale,
-/obj/item/keycard,
-/turf/open/floor/engine,
-/area/ruin/powered)
-"BR" = (
-/obj/effect/turf_decal/industrial/warning/dust{
- dir = 8
+/obj/item/keycard{
+ puzzle_id = "factory4"
},
-/obj/effect/turf_decal/number/zero,
-/obj/effect/decal/cleanable/dirt,
/turf/open/floor/engine,
/area/ruin/powered)
"BW" = (
@@ -1343,30 +1318,18 @@
/obj/effect/turf_decal/industrial/warning/dust,
/turf/open/floor/engine,
/area/ruin/powered)
-"EB" = (
-/obj/machinery/conveyor/inverted,
-/mob/living/simple_animal/hostile/jungle/mook,
-/turf/open/floor/engine,
-/area/ruin/powered)
"EE" = (
/obj/effect/turf_decal/industrial/warning/dust{
dir = 4
},
/obj/structure/sign/number/four,
-/obj/effect/decal/cleanable/dirt,
/turf/open/floor/engine,
/area/ruin/powered)
"EG" = (
/obj/structure/table/greyscale,
-/turf/open/floor/engine,
-/area/ruin/powered)
-"Fa" = (
-/obj/machinery/conveyor/auto,
-/obj/item/shard/plasma,
-/obj/item/shard/plasma,
-/obj/item/shard/plasma,
-/obj/item/shard/plasma,
-/obj/item/shard/plasma,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/open/floor/engine,
/area/ruin/powered)
"Fb" = (
@@ -1458,6 +1421,7 @@
dir = 8
},
/obj/effect/decal/cleanable/dirt,
+/mob/living/simple_animal/hostile/jungle/mook,
/turf/open/floor/engine,
/area/ruin/powered)
"Gu" = (
@@ -1467,18 +1431,13 @@
/turf/open/floor/engine,
/area/ruin/powered)
"Gv" = (
-/obj/machinery/disposal/deliveryChute{
- dir = 1
- },
+/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/engine,
/area/ruin/powered)
"Gz" = (
-/obj/machinery/conveyor/auto,
-/obj/item/shard,
-/obj/item/shard,
-/obj/item/shard,
-/obj/item/shard,
-/obj/item/shard,
+/obj/effect/turf_decal/industrial/warning/dust/corner{
+ dir = 1
+ },
/turf/open/floor/engine,
/area/ruin/powered)
"GE" = (
@@ -1492,10 +1451,6 @@
/obj/machinery/conveyor/auto,
/turf/open/floor/engine,
/area/ruin/powered)
-"GN" = (
-/obj/structure/plasticflaps,
-/turf/open/floor/engine,
-/area/ruin/powered)
"GO" = (
/obj/structure/table/greyscale,
/obj/item/keycard/stockroom,
@@ -1540,16 +1495,19 @@
/obj/machinery/light/broken/directional/east,
/turf/open/floor/plating/asteroid/rockplanet,
/area/overmap_encounter/planetoid/rockplanet/explored)
-"HL" = (
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/turf/open/floor/engine,
-/area/ruin/powered)
"HT" = (
+/obj/machinery/power/emitter/welded{
+ dir = 1;
+ active = 1
+ },
+/obj/structure/cable,
+/obj/machinery/light/dim/directional/south,
/obj/structure/disposalpipe/segment{
dir = 9
},
+/obj/machinery/conveyor/auto{
+ dir = 1
+ },
/turf/open/floor/engine,
/area/ruin/powered)
"HU" = (
@@ -1574,32 +1532,29 @@
/turf/open/floor/engine,
/area/ruin/powered)
"It" = (
-/obj/structure/disposalpipe/segment{
- dir = 5
+/obj/machinery/disposal/deliveryChute{
+ dir = 8
},
-/obj/structure/railing{
- dir = 5
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/conveyor/auto{
+ dir = 1
},
/turf/open/floor/engine,
/area/ruin/powered)
"IA" = (
-/obj/machinery/conveyor/auto{
- dir = 8
+/obj/structure/disposalpipe/segment{
+ dir = 5
},
-/obj/item/shard,
-/obj/item/shard,
-/obj/item/shard,
-/obj/item/shard,
-/obj/item/shard,
+/obj/machinery/conveyor/auto,
/turf/open/floor/engine,
/area/ruin/powered)
"IF" = (
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/obj/structure/railing{
- dir = 9
+/obj/effect/turf_decal/industrial/warning/dust{
+ dir = 8
},
+/obj/effect/turf_decal/number/zero,
/turf/open/floor/engine,
/area/ruin/powered)
"IM" = (
@@ -1701,37 +1656,22 @@
},
/turf/open/floor/engine,
/area/ruin/powered)
-"KC" = (
-/obj/effect/turf_decal/industrial/warning/dust,
-/obj/structure/railing/corner{
+"KL" = (
+/obj/structure/chair/plastic{
dir = 4
},
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/engine,
-/area/ruin/powered)
-"KJ" = (
-/obj/effect/turf_decal/industrial/warning/dust,
-/obj/structure/railing{
- dir = 1
- },
-/turf/open/floor/engine,
-/area/ruin/powered)
-"KL" = (
/obj/structure/railing{
dir = 9
},
-/obj/structure/chair/plastic{
- dir = 4
- },
-/turf/open/floor/plasteel/patterned/brushed,
+/turf/open/floor/plasteel/patterned,
/area/ruin/powered)
"Lb" = (
-/obj/structure/railing{
- dir = 5
- },
/obj/structure/chair/plastic{
dir = 8
},
+/obj/structure/railing{
+ dir = 5
+ },
/turf/open/floor/plasteel/patterned,
/area/ruin/powered)
"Lp" = (
@@ -1793,6 +1733,9 @@
/obj/structure/cable{
icon_state = "4-8"
},
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
/turf/open/floor/plating/rust,
/area/ruin/powered)
"Mr" = (
@@ -1923,12 +1866,11 @@
/turf/open/floor/plasteel/patterned,
/area/ruin/powered)
"QK" = (
-/obj/machinery/conveyor/inverted,
-/obj/structure/grille,
/obj/structure/cable,
/obj/item/keycard/entry,
/obj/machinery/light/dim/directional/north,
-/turf/open/floor/engine,
+/obj/structure/grille,
+/turf/open/floor/plating,
/area/ruin/powered)
"Rd" = (
/obj/effect/decal/cleanable/dirt/dust,
@@ -2040,9 +1982,6 @@
/turf/open/floor/plasteel/patterned,
/area/ruin/powered)
"TE" = (
-/obj/structure/railing{
- dir = 1
- },
/obj/structure/table/greyscale,
/obj/item/spacecash/bundle/c1000{
pixel_y = 10
@@ -2052,6 +1991,9 @@
pixel_y = 2
},
/obj/item/toy/cards/deck/kotahi,
+/obj/structure/railing{
+ dir = 1
+ },
/turf/open/floor/plating,
/area/ruin/powered)
"TM" = (
@@ -2154,10 +2096,15 @@
/turf/open/floor/plating,
/area/ruin/powered)
"XU" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
/obj/machinery/conveyor/auto{
- dir = 4
+ dir = 1
},
-/obj/machinery/light/dim/directional/south,
/turf/open/floor/engine,
/area/ruin/powered)
"XX" = (
@@ -2774,7 +2721,7 @@ GV
aB
aB
bf
-bf
+BE
bf
hj
jL
@@ -2824,12 +2771,12 @@ jO
ln
oG
ro
-uQ
+hJ
Op
tR
DI
uW
-GN
+hJ
ro
JC
Mp
@@ -2867,7 +2814,7 @@ jR
pk
ol
rv
-uQ
+pP
hJ
AY
DO
@@ -2910,12 +2857,12 @@ jR
lC
ol
ro
-uQ
+hJ
aQ
xg
Ep
qd
-uQ
+hJ
ro
Jt
LQ
@@ -3083,8 +3030,8 @@ lQ
oo
sd
uQ
-yw
-yw
+uQ
+uQ
uQ
Ga
GS
@@ -3127,9 +3074,9 @@ px
st
vi
QK
-Br
-EB
-Br
+te
+te
+te
GU
tR
Kj
@@ -3170,9 +3117,9 @@ pC
sx
vi
sN
-Br
-Br
-Br
+te
+te
+te
Hs
Ai
Kn
@@ -3212,8 +3159,8 @@ mu
pE
sd
uQ
-za
-za
+uQ
+uQ
uQ
Go
HG
@@ -3296,14 +3243,14 @@ iS
hJ
mE
pG
-sH
-vs
-rh
-Bz
-EE
-rh
-rh
-xg
+tR
+Ai
+tR
+tR
+Ai
+tR
+tR
+tR
Ew
LQ
gv
@@ -3338,16 +3285,16 @@ aB
aB
hJ
my
-pP
-sV
-vz
+pG
+tR
+tR
zg
-BC
-BC
-te
-Gv
-It
-KC
+Bz
+EE
+GS
+tR
+tR
+Lp
Nn
zC
Pa
@@ -3381,16 +3328,16 @@ aB
bf
hi
mR
-pU
-td
-vJ
-vz
-BE
-BC
+pG
+tR
+hJ
Gv
-HL
-td
-KJ
+ro
+ro
+Gv
+hJ
+tR
+Ew
NK
hi
hi
@@ -3425,15 +3372,15 @@ bf
hj
Mq
pU
-ro
+yw
td
-hJ
of
-BC
-hJ
-td
+of
IA
-KJ
+ro
+ro
+hJ
+Ew
LT
hi
aB
@@ -3468,14 +3415,14 @@ bf
hj
no
qb
-te
-tR
-te
+Gv
+sV
+BC
BQ
EG
-rO
-rO
-rO
+ro
+It
+Gv
KL
NP
hi
@@ -3511,14 +3458,14 @@ je
kC
nq
qm
-tu
-tw
hJ
-ro
+tw
+tC
+vK
XU
+za
+HT
hJ
-tw
-BC
TE
GR
hi
@@ -3553,15 +3500,15 @@ hf
jq
kI
nt
-pE
-tw
-vK
-vz
-ro
-Fa
+vJ
+tR
+hJ
Gv
-HT
-tw
+BC
+BC
+Gv
+hJ
+tR
Lb
IO
hi
@@ -3596,16 +3543,16 @@ bf
bf
hi
lC
-qt
-tC
-vz
-rO
-ro
-ro
-Gz
-Gv
+pG
+tR
+tR
+Ip
IF
-JV
+Fb
+Gz
+tR
+tR
+Ew
NK
Ph
hj
@@ -3640,14 +3587,14 @@ bf
hi
ob
pG
-sC
-rS
-uT
-BR
-Fb
-uT
-uT
-Gu
+tR
+Ai
+tR
+Ai
+tR
+tR
+tR
+tR
Lp
Mr
Pt
diff --git a/_maps/RandomRuins/RockRuins/rockplanet_nomadcrash.dmm b/_maps/RandomRuins/RockRuins/rockplanet_nomadcrash.dmm
new file mode 100644
index 000000000000..7ca31921e401
--- /dev/null
+++ b/_maps/RandomRuins/RockRuins/rockplanet_nomadcrash.dmm
@@ -0,0 +1,4760 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"aw" = (
+/obj/structure/bonfire/prelit,
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"aL" = (
+/obj/structure/door_assembly/door_assembly_centcom{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/ruin/rockplanet/nanotrasen)
+"aN" = (
+/obj/machinery/space_heater,
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 10
+ },
+/turf/open/floor/plasteel/rockvault,
+/area/ruin/rockplanet/nanotrasen)
+"aX" = (
+/obj/effect/turf_decal/weather/dirt,
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"ba" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock{
+ dir = 4;
+ name = "Crew Berth"
+ },
+/turf/open/floor/plasteel/patterned/grid,
+/area/ruin/rockplanet/nanotrasen)
+"bv" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/open/floor/plating/asteroid/rockplanet/hull_plating,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"cd" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "9-10"
+ },
+/turf/open/floor/plasteel/rockvault,
+/area/ruin/rockplanet/nanotrasen)
+"cl" = (
+/obj/machinery/power/shuttle/engine/electric{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/floor/engine/hull/interior,
+/area/ruin/rockplanet/nanotrasen)
+"cr" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 9
+ },
+/obj/effect/turf_decal/weather/dirt{
+ dir = 5
+ },
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"cO" = (
+/obj/structure/chair/plastic{
+ dir = 4
+ },
+/turf/open/floor/plating/asteroid/rockplanet/hull_plating,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"cP" = (
+/obj/effect/turf_decal/weather/dirt,
+/obj/structure/flora/rock{
+ icon_state = "redrocks2"
+ },
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"cU" = (
+/obj/effect/turf_decal/weather/dirt/corner{
+ dir = 8
+ },
+/obj/structure/barricade/sandbags,
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"df" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible/layer2{
+ dir = 4
+ },
+/turf/open/floor/plasteel/rockvault,
+/area/ruin/rockplanet/nanotrasen)
+"dB" = (
+/turf/open/floor/plasteel/tech/grid,
+/area/ruin/rockplanet/nanotrasen)
+"dJ" = (
+/obj/structure/flora/rock{
+ icon_state = "redrock2"
+ },
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"dM" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 1
+ },
+/obj/structure/railing,
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"ei" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/door_assembly/door_assembly_hatch{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/ruin/rockplanet/nanotrasen)
+"eo" = (
+/turf/open/floor/plating/asteroid/rockplanet/plating/scorched,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"fc" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 10
+ },
+/obj/effect/turf_decal/weather/dirt{
+ dir = 1
+ },
+/obj/structure/frame/machine,
+/turf/open/floor/plating{
+ icon_state = "wet_cracked2"
+ },
+/area/ruin/rockplanet/nanotrasen)
+"fd" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 1
+ },
+/obj/structure/barricade/sandbags,
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"fe" = (
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/structure/sink{
+ pixel_y = 30
+ },
+/turf/open/floor/plating,
+/area/ruin/rockplanet/nanotrasen)
+"fw" = (
+/obj/machinery/power/port_gen/pacman,
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/ruin/rockplanet/nanotrasen)
+"fF" = (
+/obj/structure/chair/comfy/shuttle{
+ dir = 4;
+ name = "Helm"
+ },
+/turf/open/floor/plasteel/tech,
+/area/ruin/rockplanet/nanotrasen)
+"fK" = (
+/obj/effect/turf_decal/weather/dirt/corner{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/ruin/rockplanet/nanotrasen)
+"fM" = (
+/obj/machinery/door/airlock/external{
+ dir = 4
+ },
+/turf/open/floor/plasteel/tech,
+/area/ruin/rockplanet/nanotrasen)
+"ga" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/layer2{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/canister,
+/turf/open/floor/plasteel/rockvault,
+/area/ruin/rockplanet/nanotrasen)
+"gn" = (
+/obj/structure/flora/rock/asteroid,
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"gs" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/spline/fancy/opaque/bottlegreen{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/turf/open/floor/plating/asteroid/rockplanet/lit{
+ icon_state = "plastic"
+ },
+/area/ruin/rockplanet/nanotrasen)
+"gO" = (
+/obj/structure/table/reinforced,
+/obj/item/radio/intercom/wideband/table{
+ dir = 4;
+ pixel_x = 3
+ },
+/obj/effect/decal/cleanable/glass/plasma,
+/turf/open/floor/plating,
+/area/ruin/rockplanet/nanotrasen)
+"gY" = (
+/turf/open/floor/plating/asteroid/rockplanet/mud,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"ha" = (
+/obj/structure/cable{
+ icon_state = "2-5"
+ },
+/turf/open/floor/plating/asteroid/rockplanet/plating/scorched,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"hc" = (
+/obj/effect/gibspawner,
+/turf/open/floor/plasteel/tech,
+/area/ruin/rockplanet/nanotrasen)
+"hm" = (
+/obj/structure/bed/pod,
+/obj/effect/mob_spawn/human/corpse/damaged,
+/obj/structure/curtain/cloth,
+/turf/open/floor/plasteel/rockvault,
+/area/ruin/rockplanet/nanotrasen)
+"hy" = (
+/obj/effect/turf_decal/spline/fancy/opaque/yellow{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/item/stack/sheet/metal/five,
+/turf/open/floor/plating,
+/area/ruin/rockplanet/nanotrasen)
+"hV" = (
+/obj/structure/flora/rock{
+ icon_state = "basalt"
+ },
+/turf/open/floor/plating/asteroid/rockplanet/mud,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"il" = (
+/obj/effect/turf_decal/spline/fancy/opaque/yellow{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/ruin/rockplanet/nanotrasen)
+"ip" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/door/airlock/public/glass{
+ dir = 8
+ },
+/turf/open/floor/plasteel/patterned/grid,
+/area/ruin/rockplanet/nanotrasen)
+"is" = (
+/obj/item/chair/greyscale,
+/turf/open/floor/plating,
+/area/ruin/rockplanet/nanotrasen)
+"iN" = (
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"iZ" = (
+/obj/effect/turf_decal/spline/fancy/opaque/yellow{
+ dir = 6
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/tech/techmaint,
+/area/ruin/rockplanet/nanotrasen)
+"jl" = (
+/obj/effect/turf_decal/techfloor{
+ dir = 4
+ },
+/obj/structure/girder/displaced,
+/obj/effect/decal/cleanable/glass/plasma,
+/turf/open/floor/plasteel/tech,
+/area/ruin/rockplanet/nanotrasen)
+"jm" = (
+/turf/closed/mineral/random/rockplanet,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"jw" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 10
+ },
+/obj/structure/barricade/sandbags,
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"jC" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 1
+ },
+/mob/living/simple_animal/hostile/asteroid/basilisk/watcher/magmawing,
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"jD" = (
+/obj/effect/turf_decal/weather/dirt/corner,
+/obj/structure/flora/rock{
+ icon_state = "redrock2"
+ },
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"jI" = (
+/obj/structure/fence/door{
+ dir = 4
+ },
+/turf/open/floor/plating/asteroid/rockplanet/plating/scorched,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"kf" = (
+/obj/structure/table_frame,
+/turf/open/floor/plating/ashplanet/rocky,
+/area/ruin/rockplanet/nanotrasen)
+"kN" = (
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plating,
+/area/ruin/rockplanet/nanotrasen)
+"kS" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible/layer2{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-9"
+ },
+/turf/open/floor/plasteel/rockvault,
+/area/ruin/rockplanet/nanotrasen)
+"kV" = (
+/obj/structure/flora/rock{
+ icon_state = "redrocks2"
+ },
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"lg" = (
+/turf/closed/wall,
+/area/ruin/rockplanet/nanotrasen)
+"lw" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 6
+ },
+/obj/effect/turf_decal/weather/dirt{
+ dir = 8
+ },
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"lz" = (
+/obj/machinery/power/smes/shuttle/precharged,
+/turf/open/floor/plating/asteroid/rockplanet/plating/scorched,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"mu" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 10
+ },
+/obj/effect/turf_decal/weather/dirt{
+ dir = 1
+ },
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"mz" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/spline/fancy/opaque/bottlegreen,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/plating/asteroid/rockplanet/lit{
+ icon_state = "panelscorched"
+ },
+/area/ruin/rockplanet/nanotrasen)
+"mW" = (
+/obj/structure/barricade/sandbags,
+/turf/open/floor/plating/asteroid/rockplanet/mud,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"nf" = (
+/turf/open/floor/plating/asteroid/rockplanet/plasteel,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"nB" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 8
+ },
+/obj/effect/turf_decal/weather/dirt/corner{
+ dir = 8
+ },
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"on" = (
+/turf/closed/mineral/random/rockplanet,
+/area/ruin/rockplanet/nanotrasen)
+"oq" = (
+/obj/machinery/atmospherics/components/binary/pump/on/layer2{
+ dir = 8;
+ name = "Air to Distro"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating/asteroid/rockplanet/plasteel,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"or" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/frame/machine,
+/obj/effect/spawner/lootdrop/salvage_matter_bin,
+/turf/open/floor/plating/asteroid/rockplanet/plasteel,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"oz" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/ruin/rockplanet/nanotrasen)
+"oI" = (
+/obj/effect/turf_decal/spline/fancy/opaque/yellow{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/effect/turf_decal/arrowaxe_small/center{
+ dir = 8
+ },
+/turf/open/floor/plasteel/tech/techmaint,
+/area/ruin/rockplanet/nanotrasen)
+"oW" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/plasteel/rockvault,
+/area/ruin/rockplanet/nanotrasen)
+"oZ" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 1
+ },
+/obj/effect/turf_decal/weather/dirt,
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"pb" = (
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/ruin/rockplanet/nanotrasen)
+"po" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 6
+ },
+/obj/effect/turf_decal/weather/dirt{
+ dir = 9
+ },
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"pH" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 9
+ },
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"pJ" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 4
+ },
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"pV" = (
+/obj/machinery/atmospherics/components/binary/pump/on/layer2{
+ dir = 8;
+ name = "Air to Distro"
+ },
+/turf/open/floor/plating/asteroid/rockplanet/wet/atmos,
+/area/ruin/rockplanet/nanotrasen)
+"qp" = (
+/obj/effect/turf_decal/spline/fancy/opaque/yellow{
+ dir = 10
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/turf/open/floor/plasteel/tech/techmaint,
+/area/ruin/rockplanet/nanotrasen)
+"qL" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/ruin/rockplanet/nanotrasen)
+"qM" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 8
+ },
+/obj/effect/turf_decal/weather/dirt{
+ dir = 4
+ },
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"qU" = (
+/obj/structure/closet/crate,
+/obj/item/stack/sheet/metal/ten,
+/obj/item/stack/cable_coil/random/five,
+/obj/item/stack/cable_coil/random/five,
+/obj/structure/cable/yellow{
+ icon_state = "4-5"
+ },
+/turf/open/floor/plasteel/rockvault,
+/area/ruin/rockplanet/nanotrasen)
+"rc" = (
+/obj/effect/turf_decal/weather/dirt/corner{
+ dir = 4
+ },
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"rD" = (
+/obj/structure/frame/machine,
+/turf/open/floor/plating/dirt/jungle/lit,
+/area/ruin/rockplanet/nanotrasen)
+"rH" = (
+/obj/effect/turf_decal/weather/dirt/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/weather/dirt/corner{
+ dir = 8
+ },
+/obj/structure/flora/driftlog,
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"rW" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 1
+ },
+/obj/effect/turf_decal/weather/dirt/corner{
+ dir = 4
+ },
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"rY" = (
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/structure/frame/machine,
+/obj/machinery/light/small/directional/north,
+/obj/effect/spawner/lootdrop/salvage_matter_bin,
+/turf/open/floor/plating,
+/area/ruin/rockplanet/nanotrasen)
+"sn" = (
+/obj/structure/frame/machine,
+/obj/item/stock_parts/manipulator/femto,
+/turf/open/floor/plating/asteroid/rockplanet/plasteel,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"sy" = (
+/obj/effect/turf_decal/weather/dirt/corner{
+ dir = 1
+ },
+/obj/structure/railing,
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"sK" = (
+/obj/effect/turf_decal/weather/dirt/corner,
+/obj/effect/turf_decal/weather/dirt/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/weather/dirt/corner{
+ dir = 8
+ },
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"sR" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 6
+ },
+/obj/effect/turf_decal/weather/dirt{
+ dir = 1
+ },
+/turf/closed/wall/mineral/sandstone,
+/area/ruin/rockplanet/nanotrasen)
+"sX" = (
+/obj/structure/cable/yellow{
+ icon_state = "5-8"
+ },
+/turf/open/floor/plating/asteroid/rockplanet/wet/atmos,
+/area/ruin/rockplanet/nanotrasen)
+"sZ" = (
+/turf/closed/wall/rust,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"tA" = (
+/obj/structure/flora/tree/dead/tall/grey,
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"tI" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 8
+ },
+/obj/structure/flora/rock{
+ icon_state = "redrocks1"
+ },
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"tN" = (
+/turf/closed/wall,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"tX" = (
+/obj/machinery/holopad/emergency/command,
+/turf/open/floor/plasteel/tech,
+/area/ruin/rockplanet/nanotrasen)
+"uh" = (
+/turf/open/floor/plating,
+/area/ruin/rockplanet/nanotrasen)
+"uo" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 9
+ },
+/obj/item/stack/cable_coil/random/five,
+/obj/item/wirecutters,
+/turf/open/floor/plating,
+/area/ruin/rockplanet/nanotrasen)
+"uu" = (
+/obj/machinery/door/airlock/engineering{
+ dir = 1;
+ name = "Engineering"
+ },
+/turf/closed/wall,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"uB" = (
+/turf/open/floor/plasteel/tech,
+/area/ruin/rockplanet/nanotrasen)
+"uD" = (
+/obj/effect/turf_decal/weather/dirt,
+/obj/effect/turf_decal/weather/dirt{
+ dir = 1
+ },
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"uK" = (
+/obj/effect/turf_decal/corner_techfloor_grid{
+ dir = 6
+ },
+/turf/open/floor/plasteel/tech/techmaint,
+/area/ruin/rockplanet/nanotrasen)
+"uL" = (
+/obj/effect/turf_decal/weather/dirt/corner{
+ dir = 1
+ },
+/obj/structure/barricade/sandbags,
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"uN" = (
+/obj/structure/table,
+/obj/item/crowbar/large,
+/obj/item/clothing/mask/breath{
+ pixel_x = 14;
+ pixel_y = 7
+ },
+/obj/item/clothing/mask/breath{
+ pixel_x = 14;
+ pixel_y = 4
+ },
+/obj/item/clothing/mask/breath{
+ pixel_x = 14;
+ pixel_y = 1
+ },
+/obj/item/stock_parts/capacitor/adv{
+ pixel_x = -5;
+ pixel_y = 11
+ },
+/turf/open/floor/plasteel/rockvault,
+/area/ruin/rockplanet/nanotrasen)
+"uT" = (
+/obj/structure/flora/tree/cactus,
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"vi" = (
+/obj/structure/flora/rock{
+ icon_state = "redrocks3"
+ },
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"vl" = (
+/mob/living/simple_animal/hostile/asteroid/goliath/beast/rockplanet,
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"vw" = (
+/obj/machinery/power/terminal{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-10"
+ },
+/turf/open/floor/plasteel/rockvault,
+/area/ruin/rockplanet/nanotrasen)
+"vF" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"vL" = (
+/obj/structure/flora/rock{
+ icon_state = "redrocks1"
+ },
+/turf/open/floor/plating/asteroid/rockplanet/wet/atmos,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"vM" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 10
+ },
+/obj/effect/turf_decal/weather/dirt{
+ dir = 6
+ },
+/turf/open/floor/plating/asteroid/rockplanet/grass,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"vN" = (
+/obj/effect/turf_decal/spline/fancy/opaque/yellow{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2,
+/turf/open/floor/plating,
+/area/ruin/rockplanet/nanotrasen)
+"vS" = (
+/turf/open/floor/plating/asteroid/rockplanet/hull_plating,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"vW" = (
+/obj/effect/turf_decal/weather/dirt/corner,
+/obj/effect/turf_decal/weather/dirt/corner{
+ dir = 1
+ },
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"wf" = (
+/turf/open/floor/plasteel/rockvault,
+/area/ruin/rockplanet/nanotrasen)
+"wq" = (
+/obj/effect/turf_decal/weather/dirt/corner{
+ dir = 8
+ },
+/obj/structure/railing,
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"wW" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 1
+ },
+/obj/effect/turf_decal/weather/dirt{
+ dir = 6
+ },
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"xk" = (
+/obj/effect/turf_decal/techfloor,
+/obj/structure/cable{
+ icon_state = "0-1"
+ },
+/obj/machinery/computer/monitor{
+ dir = 1;
+ icon_state = "computer_broken"
+ },
+/obj/machinery/light/small/broken/directional/south,
+/turf/open/floor/plasteel/tech,
+/area/ruin/rockplanet/nanotrasen)
+"xG" = (
+/obj/structure/cable{
+ icon_state = "0-1"
+ },
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/structure/rack,
+/turf/open/floor/plasteel/rockvault,
+/area/ruin/rockplanet/nanotrasen)
+"yb" = (
+/obj/effect/turf_decal/weather/dirt/corner{
+ dir = 1
+ },
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"yn" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 10
+ },
+/obj/effect/turf_decal/weather/dirt{
+ dir = 1
+ },
+/turf/open/floor/plating/asteroid/rockplanet/grass,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"yw" = (
+/obj/structure/flora/rock/asteroid{
+ icon_state = "asteroid2"
+ },
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"zg" = (
+/obj/effect/turf_decal/spline/fancy/opaque/bottlegreen{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/glass/plasma,
+/turf/open/floor/plating/asteroid/rockplanet/lit{
+ icon_state = "plastic"
+ },
+/area/ruin/rockplanet/nanotrasen)
+"zh" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/spline/fancy/opaque/bottlegreen,
+/obj/effect/turf_decal/weather/dirt{
+ dir = 8
+ },
+/turf/open/floor/plating/asteroid/rockplanet/lit{
+ icon_state = "plastic"
+ },
+/area/ruin/rockplanet/nanotrasen)
+"zp" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 6
+ },
+/obj/machinery/telecomms/receiver,
+/turf/open/floor/plating{
+ icon_state = "wet_cracked0"
+ },
+/area/ruin/rockplanet/nanotrasen)
+"zw" = (
+/obj/machinery/door/airlock/maintenance_hatch,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating/asteroid/rockplanet/plasteel,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"zx" = (
+/obj/machinery/power/smes/shuttle/precharged{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/ruin/rockplanet/nanotrasen)
+"zz" = (
+/obj/machinery/atmospherics/components/unary/tank/air{
+ dir = 4;
+ piping_layer = 2
+ },
+/turf/open/floor/plating/asteroid/rockplanet/wet/atmos,
+/area/ruin/rockplanet/nanotrasen)
+"zF" = (
+/obj/effect/turf_decal/techfloor{
+ dir = 4
+ },
+/turf/closed/mineral/random/rockplanet,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"zH" = (
+/obj/structure/fence/door{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/obj/structure/curtain/cloth/grey,
+/turf/open/floor/plating/asteroid/rockplanet/wet/atmos,
+/area/ruin/rockplanet/nanotrasen)
+"zU" = (
+/obj/item/banner/medical/mundane,
+/turf/open/floor/plasteel/rockvault,
+/area/ruin/rockplanet/nanotrasen)
+"Ab" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 1
+ },
+/turf/open/floor/plating/asteroid/rockplanet/wet/atmos,
+/area/ruin/rockplanet/nanotrasen)
+"AS" = (
+/obj/effect/turf_decal/weather/dirt/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/weather/dirt/corner{
+ dir = 8
+ },
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"AX" = (
+/obj/effect/turf_decal/spline/fancy/opaque/yellow{
+ dir = 4
+ },
+/obj/machinery/light/small/broken/directional/east,
+/obj/effect/turf_decal/arrowaxe_small/left{
+ dir = 8
+ },
+/turf/open/floor/plasteel/tech/techmaint,
+/area/ruin/rockplanet/nanotrasen)
+"Ba" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
+/turf/open/floor/plating/asteroid/rockplanet/plasteel,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Bc" = (
+/obj/machinery/power/smes/shuttle/precharged{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/ruin/rockplanet/nanotrasen)
+"Bt" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 9
+ },
+/obj/effect/turf_decal/weather/dirt{
+ dir = 6
+ },
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"BA" = (
+/obj/effect/turf_decal/weather/dirt,
+/obj/structure/barricade/sandbags,
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"BX" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 1
+ },
+/obj/effect/turf_decal/weather/dirt/corner{
+ dir = 4
+ },
+/obj/structure/barricade/sandbags,
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Cm" = (
+/obj/effect/turf_decal/weather/dirt,
+/obj/effect/turf_decal/weather/dirt{
+ dir = 1
+ },
+/turf/closed/wall/mineral/sandstone,
+/area/ruin/rockplanet/nanotrasen)
+"CC" = (
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plating/dirt/jungle/lit,
+/area/ruin/rockplanet/nanotrasen)
+"CN" = (
+/turf/open/floor/plating/asteroid/rockplanet/stairs,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"CT" = (
+/obj/effect/turf_decal/weather/dirt/corner,
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"DJ" = (
+/obj/structure/flora/rock/asteroid{
+ icon_state = "asteroid2"
+ },
+/obj/structure/flora/driftlog,
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"DP" = (
+/obj/effect/turf_decal/weather/dirt/corner,
+/obj/effect/turf_decal/weather/dirt/corner{
+ dir = 4
+ },
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"DR" = (
+/obj/structure/closet/crate,
+/obj/item/weldingtool/mini,
+/obj/item/clothing/mask/gas/welding,
+/obj/item/reagent_containers/glass/bottle/welding_fuel,
+/obj/item/reagent_containers/glass/bottle/welding_fuel,
+/obj/item/reagent_containers/glass/bottle/welding_fuel,
+/turf/open/floor/plating,
+/area/ruin/rockplanet/nanotrasen)
+"Ec" = (
+/turf/open/floor/plating/dirt/jungle/lit,
+/area/ruin/rockplanet/nanotrasen)
+"Em" = (
+/obj/structure/rack,
+/obj/item/storage/firstaid{
+ pixel_x = 3;
+ pixel_y = 8
+ },
+/obj/item/reagent_containers/glass/rag{
+ pixel_x = -3
+ },
+/turf/open/floor/plating/asteroid/rockplanet/wet/atmos,
+/area/ruin/rockplanet/nanotrasen)
+"En" = (
+/obj/effect/decal/cleanable/robot_debris/gib,
+/turf/open/floor/plating/asteroid/rockplanet/wet/atmos,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Er" = (
+/obj/structure/flora/rock{
+ icon_state = "basalt2"
+ },
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Ew" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/turf/open/floor/plasteel/tech,
+/area/ruin/rockplanet/nanotrasen)
+"EF" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/ruin/rockplanet/nanotrasen)
+"EI" = (
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/effect/gibspawner,
+/obj/effect/decal/remains/human,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
+ },
+/turf/open/floor/plasteel/tech,
+/area/ruin/rockplanet/nanotrasen)
+"EK" = (
+/obj/effect/turf_decal/weather/dirt/corner,
+/obj/structure/barricade/sandbags,
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"EL" = (
+/obj/structure/table_frame,
+/turf/open/floor/plasteel/rockvault,
+/area/ruin/rockplanet/nanotrasen)
+"EM" = (
+/obj/structure/frame,
+/obj/item/stock_parts/micro_laser/high,
+/turf/open/floor/engine/hull/interior,
+/area/ruin/rockplanet/nanotrasen)
+"Fk" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/turf/open/floor/plating/asteroid/rockplanet/wet/atmos,
+/area/ruin/rockplanet/nanotrasen)
+"FI" = (
+/obj/effect/turf_decal/spline/fancy/opaque/yellow{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 8
+ },
+/turf/open/floor/plasteel/tech/techmaint,
+/area/ruin/rockplanet/nanotrasen)
+"FJ" = (
+/turf/open/floor/plating/asteroid/rockplanet/wet/atmos,
+/area/ruin/rockplanet/nanotrasen)
+"FP" = (
+/obj/structure/frame/machine,
+/turf/open/floor/plating/asteroid/rockplanet/plating/scorched,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Gu" = (
+/obj/structure/closet/crate,
+/obj/item/gun/energy/laser,
+/turf/open/floor/plating,
+/area/ruin/rockplanet/nanotrasen)
+"GA" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/weather/dirt{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/turf/open/floor/plating,
+/area/ruin/rockplanet/nanotrasen)
+"GB" = (
+/obj/effect/turf_decal/spline/fancy/opaque/bottlegreen{
+ dir = 5
+ },
+/obj/item/chair/stool/bar,
+/turf/open/floor/plating/asteroid/rockplanet/lit{
+ icon_state = "plastic"
+ },
+/area/ruin/rockplanet/nanotrasen)
+"GK" = (
+/turf/open/floor/plating/asteroid/rockplanet/wet/atmos,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"He" = (
+/obj/effect/turf_decal/weather/dirt/corner{
+ dir = 4
+ },
+/turf/open/floor/plating/asteroid/rockplanet/pond,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Hi" = (
+/obj/effect/turf_decal/weather/dirt/corner{
+ dir = 8
+ },
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Hr" = (
+/obj/structure/rack,
+/obj/item/ammo_box/magazine/m45,
+/obj/item/ammo_box/magazine/m45{
+ pixel_x = -5
+ },
+/obj/item/ammo_box/magazine/m45{
+ pixel_x = 7
+ },
+/obj/item/gun/ballistic/automatic/pistol/m1911/no_mag,
+/turf/open/floor/plating/ashplanet/rocky,
+/area/ruin/rockplanet/nanotrasen)
+"HG" = (
+/obj/structure/flora/driftlog,
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"HL" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/freezer{
+ dir = 8;
+ name = "Head"
+ },
+/turf/open/floor/plasteel/patterned/grid,
+/area/ruin/rockplanet/nanotrasen)
+"Io" = (
+/obj/structure/railing{
+ dir = 10
+ },
+/turf/open/floor/plating/asteroid/rockplanet/hull_plating,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Ir" = (
+/obj/structure/railing,
+/obj/structure/closet/crate,
+/obj/item/gun/energy/laser,
+/obj/item/stock_parts/cell/high,
+/turf/open/floor/plating/asteroid/rockplanet/hull_plating,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Iw" = (
+/obj/effect/turf_decal/weather/dirt,
+/obj/effect/turf_decal/weather/dirt/corner{
+ dir = 8
+ },
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"IG" = (
+/obj/machinery/atmospherics/pipe/layer_manifold/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel/rockvault,
+/area/ruin/rockplanet/nanotrasen)
+"IH" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 9
+ },
+/obj/effect/turf_decal/weather/dirt,
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"IX" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 1
+ },
+/obj/effect/turf_decal/weather/dirt/corner,
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"IY" = (
+/obj/effect/decal/cleanable/glass/plasma,
+/turf/open/floor/plating,
+/area/ruin/rockplanet/nanotrasen)
+"Jf" = (
+/obj/structure/window/plasma/reinforced/plastitanium,
+/turf/open/floor/plating,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Jy" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-6"
+ },
+/turf/open/floor/plating,
+/area/ruin/rockplanet/nanotrasen)
+"JA" = (
+/obj/effect/turf_decal/weather/dirt/corner,
+/obj/structure/flora/rock{
+ icon_state = "redrocks3"
+ },
+/obj/effect/turf_decal/weather/dirt/corner{
+ dir = 8
+ },
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"JL" = (
+/obj/effect/turf_decal/weather/dirt,
+/obj/effect/turf_decal/weather/dirt{
+ dir = 1
+ },
+/turf/open/floor/plating/asteroid/rockplanet/grass,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"JN" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/ruin/rockplanet/nanotrasen)
+"Kl" = (
+/obj/effect/turf_decal/weather/dirt/corner,
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Kn" = (
+/obj/structure/window/plasma/reinforced/plastitanium,
+/turf/open/floor/plating,
+/area/ruin/rockplanet/nanotrasen)
+"KA" = (
+/obj/structure/railing{
+ dir = 6
+ },
+/obj/structure/chair/plastic{
+ dir = 1
+ },
+/turf/open/floor/plating/asteroid/rockplanet/hull_plating,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"KL" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel/rockvault,
+/area/ruin/rockplanet/nanotrasen)
+"KN" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 4
+ },
+/obj/effect/turf_decal/weather/dirt{
+ dir = 8
+ },
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"KW" = (
+/obj/effect/decal/cleanable/robot_debris/gib,
+/obj/item/stack/sheet/metal/five{
+ pixel_x = 3;
+ pixel_y = 9
+ },
+/turf/open/floor/plating/asteroid/rockplanet/wet/atmos,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"KX" = (
+/obj/structure/barricade/sandbags,
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Le" = (
+/obj/effect/turf_decal/spline/plain/transparent/green{
+ dir = 4;
+ icon_state = "spline_plain_cee"
+ },
+/obj/structure/frame/machine,
+/obj/effect/spawner/lootdrop/salvage_matter_bin,
+/turf/open/floor/plasteel/tech/grid,
+/area/ruin/rockplanet/nanotrasen)
+"Lk" = (
+/turf/open/floor/plasteel/grimy,
+/area/ruin/rockplanet/nanotrasen)
+"Ly" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 5
+ },
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"LA" = (
+/obj/structure/cable{
+ icon_state = "4-10"
+ },
+/turf/open/floor/plating/asteroid/rockplanet/plating/scorched,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"LN" = (
+/obj/structure/filingcabinet/chestdrawer,
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/plating,
+/area/ruin/rockplanet/nanotrasen)
+"LW" = (
+/obj/structure/rack,
+/obj/machinery/recharger{
+ pixel_x = 5;
+ pixel_y = 7
+ },
+/obj/item/stock_parts/cell{
+ pixel_x = -7;
+ pixel_y = 8
+ },
+/obj/item/stock_parts/cell{
+ pixel_x = -7;
+ pixel_y = 2
+ },
+/turf/open/floor/plasteel/rockvault,
+/area/ruin/rockplanet/nanotrasen)
+"LX" = (
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/techfloor{
+ dir = 1
+ },
+/obj/structure/cursed_money{
+ pixel_x = 3;
+ pixel_y = 10
+ },
+/turf/open/floor/plasteel/tech,
+/area/ruin/rockplanet/nanotrasen)
+"Md" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 6
+ },
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Me" = (
+/obj/structure/table,
+/obj/item/tank/internals/emergency_oxygen{
+ pixel_x = 10;
+ pixel_y = 10
+ },
+/obj/item/tank/internals/emergency_oxygen{
+ pixel_x = 1;
+ pixel_y = 7
+ },
+/obj/item/tank/internals/emergency_oxygen{
+ pixel_x = 10;
+ pixel_y = 3
+ },
+/obj/item/tank/internals/emergency_oxygen{
+ pixel_x = 1;
+ pixel_y = 3
+ },
+/turf/open/floor/plasteel/rockvault,
+/area/ruin/rockplanet/nanotrasen)
+"Mi" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 8
+ },
+/turf/open/floor/plating/asteroid/rockplanet/pond,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Ms" = (
+/obj/structure/flora/rock{
+ icon_state = "basalt"
+ },
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"MV" = (
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/ruin/rockplanet/nanotrasen)
+"MW" = (
+/obj/structure/salvageable/autolathe,
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/plasteel/rockvault,
+/area/ruin/rockplanet/nanotrasen)
+"NV" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 1
+ },
+/obj/structure/railing/corner{
+ dir = 8
+ },
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Oc" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-5"
+ },
+/turf/open/floor/plasteel/rockvault,
+/area/ruin/rockplanet/nanotrasen)
+"Op" = (
+/turf/closed/wall/yesdiag,
+/area/ruin/rockplanet/nanotrasen)
+"Or" = (
+/mob/living/simple_animal/hostile/asteroid/basilisk/whitesands,
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Ot" = (
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/general/visible/layer2{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/ruin/rockplanet/nanotrasen)
+"Ox" = (
+/obj/effect/turf_decal/spline/fancy/opaque/yellow{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/effect/turf_decal/techfloor/hole,
+/turf/open/floor/plasteel/tech/techmaint,
+/area/ruin/rockplanet/nanotrasen)
+"OM" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 10
+ },
+/turf/open/floor/plating/asteroid/rockplanet/pond,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"OP" = (
+/obj/structure/rack,
+/obj/item/storage/fancy/cigarettes/cigars,
+/obj/item/lighter/greyscale,
+/turf/open/floor/plating/asteroid/rockplanet/plasteel,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"OS" = (
+/obj/structure/rack,
+/obj/item/reagent_containers/glass/bottle/morphine{
+ pixel_x = 4;
+ pixel_y = 6
+ },
+/obj/item/reagent_containers/hypospray/medipen/morphine{
+ pixel_y = -3
+ },
+/turf/open/floor/plasteel/rockvault,
+/area/ruin/rockplanet/nanotrasen)
+"OY" = (
+/obj/item/reagent_containers/glass/bucket/wooden{
+ pixel_x = 5;
+ pixel_y = 4
+ },
+/obj/item/stack/sheet/cotton/cloth/ten{
+ pixel_x = -15;
+ pixel_y = 8
+ },
+/obj/effect/turf_decal/weather/dirt{
+ dir = 5
+ },
+/turf/open/floor/plating/asteroid/rockplanet/grass,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"OZ" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 8
+ },
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Pn" = (
+/obj/machinery/power/smes/engineering{
+ charge = 1000
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/plating/ashplanet/rocky,
+/area/ruin/rockplanet/nanotrasen)
+"PD" = (
+/obj/structure/bed{
+ icon_state = "dirty_mattress";
+ name = "dirty mattress"
+ },
+/turf/open/floor/plating,
+/area/ruin/rockplanet/nanotrasen)
+"PH" = (
+/obj/structure/frame/machine,
+/turf/open/floor/plating/asteroid/rockplanet/hull_plating,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"PI" = (
+/obj/effect/turf_decal/weather/dirt,
+/turf/open/floor/plating/asteroid/rockplanet/pond,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"PX" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/structure/table,
+/obj/machinery/computer/secure_data/laptop{
+ dir = 8;
+ pixel_x = 2;
+ pixel_y = 6
+ },
+/turf/open/floor/plating/asteroid/rockplanet/hull_plating,
+/area/ruin/rockplanet/nanotrasen)
+"Qc" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/command{
+ dir = 8;
+ name = "Bridge";
+ req_access_txt = "19"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/turf/open/floor/plasteel/patterned/grid,
+/area/ruin/rockplanet/nanotrasen)
+"Qv" = (
+/turf/template_noop,
+/area/template_noop)
+"Rj" = (
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/techfloor{
+ dir = 6
+ },
+/obj/effect/decal/cleanable/glass/plasma,
+/turf/open/floor/plasteel/tech,
+/area/ruin/rockplanet/nanotrasen)
+"Rk" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/terminal{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel,
+/area/ruin/rockplanet/nanotrasen)
+"Rn" = (
+/obj/machinery/power/shuttle/engine/electric,
+/turf/open/floor/plating/asteroid/rockplanet/hull_plating,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"RB" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 10
+ },
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"RM" = (
+/obj/effect/turf_decal/weather/dirt/corner{
+ dir = 1
+ },
+/obj/structure/flora/rock{
+ icon_state = "redrocks3"
+ },
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"RN" = (
+/obj/structure/fence/door{
+ dir = 4
+ },
+/obj/structure/curtain/cloth/grey,
+/turf/open/floor/plating/asteroid/rockplanet/wet/atmos,
+/area/ruin/rockplanet/nanotrasen)
+"Sh" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 4
+ },
+/obj/effect/turf_decal/weather/dirt{
+ dir = 5
+ },
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Si" = (
+/obj/machinery/power/shieldwallgen/atmos{
+ dir = 1
+ },
+/turf/open/floor/plating/asteroid/rockplanet/hull_plating,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"So" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 9
+ },
+/obj/item/stack/sheet/metal/five,
+/turf/open/floor/plating,
+/area/ruin/rockplanet/nanotrasen)
+"SH" = (
+/obj/effect/turf_decal/weather/dirt/corner{
+ dir = 8
+ },
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"SN" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 8
+ },
+/obj/effect/turf_decal/weather/dirt{
+ dir = 6
+ },
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Tb" = (
+/obj/structure/mecha_wreckage/ripley/firefighter,
+/turf/open/floor/plating/asteroid/rockplanet/plating/scorched,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Tn" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/turf/open/floor/plasteel,
+/area/ruin/rockplanet/nanotrasen)
+"TJ" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/engineering{
+ dir = 1;
+ name = "Engineering"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/turf/open/floor/plasteel/patterned/grid,
+/area/ruin/rockplanet/nanotrasen)
+"TL" = (
+/obj/effect/turf_decal/spline/fancy/opaque/yellow{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/weather/dirt{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/ruin/rockplanet/nanotrasen)
+"TT" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 1
+ },
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Ui" = (
+/obj/machinery/light/directional/south,
+/obj/effect/turf_decal/techfloor,
+/obj/structure/frame/computer{
+ dir = 1
+ },
+/turf/open/floor/plasteel/tech,
+/area/ruin/rockplanet/nanotrasen)
+"UX" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/maintenance_hatch{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/ruin/rockplanet/nanotrasen)
+"Vy" = (
+/obj/effect/decal/cleanable/xenoblood/xgibs,
+/turf/open/floor/plating/asteroid/rockplanet/wet/atmos,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Wl" = (
+/obj/structure/barricade/sandbags,
+/obj/effect/turf_decal/weather/dirt{
+ dir = 4
+ },
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Wm" = (
+/obj/effect/turf_decal/weather/dirt,
+/obj/structure/flora/driftlog,
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Xb" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 9
+ },
+/obj/effect/turf_decal/weather/dirt{
+ dir = 4
+ },
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Xj" = (
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/plating/asteroid/rockplanet/plasteel,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Xk" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/light/small/broken/directional/south,
+/turf/open/floor/plating,
+/area/ruin/rockplanet/nanotrasen)
+"Xq" = (
+/obj/structure/flora/rock{
+ icon_state = "redrocks1"
+ },
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Xy" = (
+/obj/machinery/door/airlock/external{
+ dir = 4
+ },
+/turf/open/floor/engine/hull/interior,
+/area/ruin/rockplanet/nanotrasen)
+"XH" = (
+/turf/open/floor/plating/asteroid/rockplanet/pond,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"XK" = (
+/turf/closed/wall/rust,
+/area/ruin/rockplanet/nanotrasen)
+"XX" = (
+/obj/structure/mineral_door/sandstone,
+/turf/open/floor/plating/dirt/jungle/lit,
+/area/ruin/rockplanet/nanotrasen)
+"Yl" = (
+/obj/structure/table,
+/obj/item/modular_computer/laptop{
+ pixel_x = 3;
+ pixel_y = 8
+ },
+/turf/open/floor/plasteel/rockvault,
+/area/ruin/rockplanet/nanotrasen)
+"Ym" = (
+/turf/closed/wall/yesdiag,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Yq" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/door_assembly/door_assembly_com{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/turf/open/floor/plasteel/patterned/grid,
+/area/ruin/rockplanet/nanotrasen)
+"Yy" = (
+/mob/living/simple_animal/hostile/asteroid/gutlunch,
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"YC" = (
+/obj/structure/toilet{
+ dir = 8
+ },
+/obj/structure/curtain,
+/turf/open/floor/plating,
+/area/ruin/rockplanet/nanotrasen)
+"YQ" = (
+/turf/closed/wall/mineral/sandstone,
+/area/ruin/rockplanet/nanotrasen)
+"YT" = (
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/machinery/light/small/broken/directional/south,
+/turf/open/floor/plasteel/telecomms_floor,
+/area/ruin/rockplanet/nanotrasen)
+"YW" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/manifold/general/visible/layer2,
+/obj/structure/cable/yellow{
+ icon_state = "1-10"
+ },
+/turf/open/floor/plating/asteroid/rockplanet/wet/atmos,
+/area/ruin/rockplanet/nanotrasen)
+"Zc" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 5
+ },
+/obj/structure/cable/yellow{
+ icon_state = "6-8"
+ },
+/turf/open/floor/plasteel/rockvault,
+/area/ruin/rockplanet/nanotrasen)
+"Ze" = (
+/obj/structure/closet/crate,
+/obj/item/storage/toolbox/emergency,
+/obj/item/storage/toolbox/emergency,
+/obj/item/stack/sheet/metal/ten,
+/turf/open/floor/plating/asteroid/rockplanet/plasteel,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"Zf" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 4
+ },
+/obj/machinery/light/small/broken/directional/south,
+/obj/structure/rack,
+/obj/item/stock_parts/subspace/crystal{
+ pixel_x = -8;
+ pixel_y = 4
+ },
+/obj/item/stock_parts/subspace/filter,
+/obj/item/circuitboard/machine/telecomms/relay,
+/turf/open/floor/plating{
+ icon_state = "wet_cracked2"
+ },
+/area/ruin/rockplanet/nanotrasen)
+"Zy" = (
+/turf/closed/wall/mineral/iron,
+/area/ruin/rockplanet/nanotrasen)
+"ZE" = (
+/obj/effect/turf_decal/weather/dirt,
+/obj/effect/turf_decal/weather/dirt/corner{
+ dir = 1
+ },
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"ZO" = (
+/obj/structure/rack,
+/turf/open/floor/plasteel/rockvault,
+/area/ruin/rockplanet/nanotrasen)
+"ZS" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 6
+ },
+/obj/effect/turf_decal/weather/dirt/corner{
+ dir = 1
+ },
+/turf/open/floor/plating/asteroid/rockplanet/lit,
+/area/overmap_encounter/planetoid/rockplanet/explored)
+"ZZ" = (
+/obj/effect/turf_decal/spline/fancy/opaque/bottlegreen{
+ dir = 1
+ },
+/obj/machinery/light/small/broken/directional/north,
+/obj/structure/table_frame,
+/turf/open/floor/plating/asteroid/rockplanet/lit{
+ icon_state = "plastic"
+ },
+/area/ruin/rockplanet/nanotrasen)
+
+(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
+Qv
+iN
+iN
+iN
+iN
+iN
+Qv
+Qv
+Qv
+Qv
+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
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+iN
+iN
+iN
+Kl
+Hi
+iN
+vi
+iN
+iN
+iN
+iN
+Kl
+Hi
+iN
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+"}
+(3,1,1) = {"
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+iN
+iN
+iN
+iN
+Kl
+pJ
+Md
+TT
+iN
+iN
+iN
+iN
+iN
+iN
+aX
+Ly
+Hi
+iN
+iN
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+"}
+(4,1,1) = {"
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+iN
+kV
+iN
+vi
+iN
+aX
+gY
+gY
+TT
+iN
+iN
+iN
+iN
+iN
+iN
+aX
+gY
+Ly
+Hi
+iN
+iN
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+"}
+(5,1,1) = {"
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+iN
+iN
+iN
+iN
+iN
+aX
+gY
+gY
+TT
+iN
+HG
+iN
+iN
+iN
+iN
+rc
+RB
+gY
+TT
+iN
+iN
+iN
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+"}
+(6,1,1) = {"
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+iN
+iN
+uT
+iN
+Er
+aX
+gY
+pH
+yb
+iN
+iN
+iN
+Kl
+Hi
+iN
+iN
+aX
+gY
+TT
+iN
+iN
+iN
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+"}
+(7,1,1) = {"
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+iN
+iN
+iN
+iN
+iN
+iN
+aX
+gY
+TT
+iN
+iN
+iN
+iN
+rc
+yb
+iN
+iN
+aX
+gY
+TT
+iN
+iN
+iN
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+"}
+(8,1,1) = {"
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+iN
+iN
+tA
+dJ
+iN
+iN
+DP
+KN
+sK
+Hi
+iN
+iN
+iN
+iN
+iN
+vl
+Kl
+Md
+gY
+TT
+iN
+iN
+kV
+iN
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+"}
+(9,1,1) = {"
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+iN
+iN
+iN
+iN
+iN
+iN
+aX
+gY
+wW
+TT
+iN
+iN
+Yy
+iN
+iN
+iN
+aX
+gY
+gY
+TT
+iN
+iN
+iN
+iN
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+"}
+(10,1,1) = {"
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+iN
+iN
+iN
+iN
+iN
+iN
+aX
+gY
+gY
+TT
+iN
+iN
+iN
+iN
+iN
+vi
+DP
+SN
+gY
+TT
+vi
+iN
+iN
+iN
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+"}
+(11,1,1) = {"
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+jm
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+iN
+Ms
+iN
+iN
+iN
+Kl
+Md
+gY
+gY
+TT
+iN
+iN
+iN
+iN
+iN
+iN
+aX
+gY
+gY
+TT
+iN
+iN
+iN
+iN
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+"}
+(12,1,1) = {"
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+jm
+jm
+jm
+jm
+jm
+Qv
+Qv
+Qv
+Qv
+iN
+iN
+iN
+iN
+iN
+kV
+aX
+gY
+gY
+gY
+TT
+iN
+KX
+KX
+KX
+KX
+iN
+aX
+gY
+gY
+TT
+iN
+iN
+Ms
+iN
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+"}
+(13,1,1) = {"
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+Qv
+Qv
+iN
+iN
+iN
+iN
+iN
+iN
+aX
+gY
+gY
+gY
+TT
+KX
+iN
+iN
+iN
+iN
+EK
+Md
+gY
+pH
+yb
+iN
+iN
+iN
+iN
+iN
+Qv
+Qv
+Qv
+Qv
+Qv
+"}
+(14,1,1) = {"
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+Qv
+Xq
+iN
+iN
+KX
+KX
+KX
+BA
+gY
+gY
+pH
+yb
+iN
+iN
+iN
+gn
+DJ
+aX
+gY
+gY
+TT
+iN
+iN
+iN
+iN
+iN
+vi
+Qv
+Qv
+Qv
+Qv
+Qv
+"}
+(15,1,1) = {"
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+iN
+KX
+iN
+iN
+iN
+rc
+RB
+gY
+TT
+iN
+iN
+iN
+yw
+aw
+iN
+aX
+gY
+mW
+fd
+iN
+iN
+Yy
+iN
+iN
+iN
+Qv
+Qv
+Qv
+Qv
+Qv
+"}
+(16,1,1) = {"
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+iN
+iN
+iN
+iN
+iN
+iN
+aX
+gY
+TT
+iN
+iN
+iN
+HG
+yw
+vi
+DP
+qM
+nB
+uL
+iN
+Xq
+iN
+iN
+iN
+iN
+iN
+Qv
+Qv
+Qv
+Qv
+"}
+(17,1,1) = {"
+Qv
+Qv
+Qv
+Qv
+Qv
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+iN
+Er
+iN
+iN
+iN
+vi
+aX
+gY
+TT
+iN
+iN
+iN
+iN
+Kl
+Hi
+aX
+gY
+Ly
+cU
+iN
+iN
+iN
+iN
+Er
+iN
+iN
+Qv
+Qv
+Qv
+Qv
+"}
+(18,1,1) = {"
+Qv
+Qv
+Qv
+Qv
+Qv
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+iN
+iN
+iN
+iN
+iN
+iN
+aX
+pH
+sy
+bv
+bv
+Io
+TT
+aX
+TT
+aX
+gY
+gY
+TT
+KX
+iN
+iN
+iN
+iN
+tA
+iN
+Qv
+Qv
+Qv
+Qv
+"}
+(19,1,1) = {"
+Qv
+Qv
+Qv
+Qv
+Qv
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+iN
+iN
+Yy
+iN
+iN
+Or
+rc
+vW
+wq
+vS
+cO
+Ir
+TT
+aX
+Ly
+Iw
+gY
+gY
+Ly
+Wl
+pJ
+Hi
+vi
+iN
+iN
+dJ
+jm
+jm
+jm
+Qv
+"}
+(20,1,1) = {"
+Qv
+Qv
+Qv
+Qv
+Qv
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+iN
+iN
+iN
+iN
+gn
+iN
+Kl
+Md
+dM
+vS
+PX
+KA
+TT
+aX
+gY
+rW
+RB
+gY
+Ym
+sZ
+jI
+Ym
+tN
+iN
+jm
+jm
+jm
+jm
+jm
+Qv
+"}
+(21,1,1) = {"
+Qv
+Qv
+Qv
+Qv
+Qv
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+iN
+iN
+iN
+iN
+Kl
+Md
+gY
+dM
+vS
+CN
+CN
+TT
+rc
+OZ
+vW
+Md
+Ym
+sZ
+Ba
+nf
+tN
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+Qv
+"}
+(22,1,1) = {"
+Qv
+Qv
+Qv
+Qv
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+iN
+iN
+Xq
+iN
+aX
+gY
+gY
+NV
+vF
+CT
+SH
+iN
+iN
+iN
+aX
+gY
+gY
+vS
+nf
+Tb
+Ym
+jm
+jm
+jm
+jm
+jm
+jm
+Qv
+Qv
+"}
+(23,1,1) = {"
+Qv
+Qv
+Qv
+Qv
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+iN
+iN
+iN
+iN
+iN
+iN
+iN
+aX
+gY
+gY
+TT
+Kl
+Md
+TT
+iN
+iN
+iN
+aX
+gY
+gY
+mu
+Si
+sZ
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+Qv
+Qv
+"}
+(24,1,1) = {"
+Qv
+Qv
+Qv
+Qv
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+iN
+iN
+iN
+iN
+kV
+iN
+iN
+iN
+aX
+gY
+gY
+TT
+aX
+gY
+jC
+iN
+iN
+iN
+DP
+lw
+gY
+rW
+tI
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+Qv
+Qv
+"}
+(25,1,1) = {"
+Qv
+Qv
+Qv
+Qv
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+iN
+iN
+vi
+iN
+iN
+iN
+iN
+iN
+vi
+aX
+IH
+gY
+TT
+Wm
+gY
+TT
+Kl
+Hi
+iN
+aX
+gY
+Xb
+rH
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+Qv
+Qv
+"}
+(26,1,1) = {"
+Qv
+Qv
+Qv
+Qv
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+iN
+iN
+iN
+iN
+Er
+iN
+iN
+iN
+iN
+rc
+ZE
+gY
+TT
+aX
+gY
+TT
+aX
+TT
+Kl
+Md
+gY
+gY
+Ly
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+Qv
+Qv
+"}
+(27,1,1) = {"
+Qv
+Qv
+Qv
+Qv
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+iN
+uT
+iN
+iN
+iN
+iN
+iN
+iN
+vl
+iN
+iN
+aX
+gY
+TT
+rc
+OZ
+yb
+aX
+Ly
+Md
+gY
+gY
+EM
+XK
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+Qv
+"}
+(28,1,1) = {"
+Qv
+Qv
+Qv
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+iN
+iN
+iN
+iN
+iN
+iN
+iN
+iN
+iN
+iN
+jD
+Md
+gY
+Ly
+JA
+pJ
+pJ
+Md
+gY
+gY
+lg
+cl
+Bc
+XK
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+Qv
+"}
+(29,1,1) = {"
+Qv
+Qv
+Qv
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+pJ
+iN
+iN
+iN
+iN
+iN
+Xq
+iN
+iN
+iN
+iN
+aX
+gY
+gY
+gY
+oZ
+gY
+gY
+gY
+gY
+Bt
+lg
+zx
+Xk
+XK
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+Qv
+"}
+(30,1,1) = {"
+Qv
+Qv
+Qv
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+vM
+Sh
+Hi
+iN
+iN
+tA
+iN
+iN
+iN
+Er
+Kl
+Md
+gY
+gY
+YQ
+Xy
+XK
+YQ
+XX
+XK
+XK
+XK
+kN
+pb
+XK
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+Qv
+"}
+(31,1,1) = {"
+Qv
+Qv
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+PI
+gY
+gY
+Ly
+Hi
+iN
+iN
+iN
+iN
+iN
+iN
+aX
+gY
+gY
+mu
+YQ
+uh
+XK
+zg
+zh
+lg
+Le
+XK
+XK
+UX
+XK
+on
+Zy
+Zy
+jm
+jm
+jm
+jm
+jm
+jm
+Qv
+Qv
+"}
+(32,1,1) = {"
+Qv
+Qv
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+He
+OM
+gY
+yn
+Ly
+Hi
+iN
+iN
+vi
+iN
+iN
+aX
+gY
+cr
+ZS
+YQ
+dB
+lg
+ZZ
+mz
+lg
+YT
+lg
+fw
+oz
+Kn
+ga
+LW
+Zy
+on
+jm
+jm
+jm
+jm
+jm
+Qv
+Qv
+"}
+(33,1,1) = {"
+Qv
+Qv
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+XH
+He
+OM
+JL
+hV
+TT
+iN
+iN
+iN
+iN
+iN
+cP
+gY
+YQ
+YQ
+YQ
+fM
+lg
+GB
+gs
+lg
+ei
+XK
+Rk
+Jy
+wf
+df
+Oc
+Hr
+Zy
+on
+jm
+jm
+jm
+jm
+Qv
+Qv
+"}
+(34,1,1) = {"
+Qv
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+XH
+PI
+OY
+vM
+TT
+uT
+kV
+iN
+Kl
+pJ
+Iw
+gY
+Cm
+Zf
+lg
+uK
+XK
+XK
+ip
+lg
+qL
+XK
+rY
+Ot
+kS
+YW
+Zc
+wf
+qU
+on
+jm
+jm
+jm
+jm
+Qv
+Qv
+"}
+(35,1,1) = {"
+Qv
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+XH
+He
+Mi
+jm
+yb
+iN
+iN
+iN
+aX
+gY
+uD
+YQ
+sR
+Ec
+CC
+GA
+Ox
+hy
+vN
+FI
+qp
+TJ
+Tn
+EF
+Zy
+IG
+Ab
+cd
+sX
+on
+jm
+jm
+jm
+jm
+Qv
+Qv
+"}
+(36,1,1) = {"
+Qv
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+XH
+jm
+jm
+iN
+Or
+iN
+Kl
+AS
+OZ
+ZE
+YQ
+zp
+Ec
+fc
+rD
+TL
+AX
+oI
+il
+iZ
+XK
+lg
+aL
+Zy
+pV
+Fk
+vw
+wf
+on
+jm
+jm
+jm
+jm
+Qv
+Qv
+"}
+(37,1,1) = {"
+Qv
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+iN
+iN
+iN
+iN
+aX
+Ly
+Hi
+aX
+YQ
+rD
+uo
+lg
+lg
+ba
+XK
+Qc
+lg
+HL
+XK
+uh
+uh
+on
+zz
+KL
+Pn
+xG
+on
+jm
+jm
+jm
+jm
+Qv
+Qv
+"}
+(38,1,1) = {"
+Qv
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+iN
+iN
+iN
+iN
+KX
+aX
+gY
+IX
+Md
+YQ
+So
+fK
+XK
+uh
+MV
+lg
+Ew
+lg
+fe
+lg
+Gu
+on
+Zy
+Zy
+zH
+Zy
+Zy
+on
+on
+jm
+jm
+jm
+Qv
+Qv
+"}
+(39,1,1) = {"
+Qv
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+iN
+iN
+iN
+Er
+iN
+BA
+mW
+uD
+gY
+XK
+DR
+lg
+lg
+Lk
+PD
+lg
+Ew
+lg
+YC
+lg
+lg
+Zy
+Yl
+FJ
+KL
+MW
+Em
+ZO
+Zy
+jm
+jm
+Qv
+Qv
+Qv
+"}
+(40,1,1) = {"
+Qv
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+Xq
+iN
+iN
+Kl
+pJ
+Md
+gY
+BX
+jw
+Op
+XK
+Op
+XK
+XK
+lg
+lg
+Yq
+XK
+XK
+XK
+jm
+Zy
+kf
+wf
+Fk
+wf
+FJ
+wf
+Zy
+jm
+jm
+Qv
+Qv
+Qv
+"}
+(41,1,1) = {"
+Qv
+Qv
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+iN
+iN
+iN
+vi
+aX
+gY
+gY
+gY
+Ly
+AS
+OZ
+RB
+gY
+XK
+LN
+is
+uB
+EI
+JN
+xk
+lg
+jm
+on
+uN
+FJ
+aN
+oW
+wf
+zU
+on
+jm
+jm
+Qv
+Qv
+Qv
+"}
+(42,1,1) = {"
+Qv
+Qv
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+iN
+iN
+iN
+iN
+Kl
+Md
+gY
+po
+gY
+gY
+TT
+iN
+kV
+jm
+jm
+LX
+hc
+uh
+tX
+fF
+Ui
+lg
+jm
+on
+Me
+wf
+FJ
+wf
+wf
+FJ
+Zy
+jm
+Qv
+Qv
+Qv
+Qv
+"}
+(43,1,1) = {"
+Qv
+Qv
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+iN
+iN
+Yy
+Kl
+Md
+Ym
+sZ
+gY
+gY
+pH
+RM
+iN
+iN
+jm
+jm
+jm
+zF
+IY
+jl
+gO
+Rj
+lg
+jm
+on
+EL
+FJ
+wf
+hm
+OS
+hm
+Zy
+jm
+Qv
+Qv
+Qv
+Qv
+"}
+(44,1,1) = {"
+Qv
+Qv
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+iN
+vi
+iN
+iN
+aX
+Ym
+tN
+Bt
+gY
+gY
+TT
+iN
+iN
+iN
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+on
+on
+RN
+Zy
+Zy
+on
+on
+jm
+Qv
+Qv
+Qv
+Qv
+"}
+(45,1,1) = {"
+Qv
+Qv
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+iN
+iN
+tA
+iN
+aX
+uu
+eo
+eo
+tN
+Ym
+TT
+iN
+Ms
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+vL
+GK
+GK
+GK
+GK
+GK
+jm
+jm
+Qv
+Qv
+Qv
+Qv
+Qv
+"}
+(46,1,1) = {"
+Qv
+Qv
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+iN
+iN
+iN
+Ym
+sZ
+nf
+nf
+nf
+Ze
+sZ
+TT
+iN
+iN
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+GK
+GK
+Vy
+GK
+GK
+jm
+jm
+jm
+jm
+jm
+Qv
+Qv
+Qv
+Qv
+Qv
+"}
+(47,1,1) = {"
+Qv
+Qv
+Qv
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+iN
+iN
+iN
+sZ
+sZ
+sZ
+nf
+Xj
+OP
+tN
+Ym
+TT
+kV
+iN
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+GK
+GK
+GK
+GK
+GK
+jm
+jm
+jm
+jm
+jm
+jm
+Qv
+Qv
+Qv
+Qv
+Qv
+"}
+(48,1,1) = {"
+Qv
+Qv
+Qv
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+iN
+iN
+iN
+tN
+ha
+zw
+oq
+or
+Jf
+Ym
+OZ
+yb
+iN
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+GK
+GK
+GK
+KW
+GK
+GK
+GK
+jm
+jm
+jm
+jm
+jm
+jm
+Qv
+Qv
+Qv
+Qv
+Qv
+"}
+(49,1,1) = {"
+Qv
+Qv
+Qv
+jm
+jm
+jm
+iN
+iN
+iN
+iN
+Ms
+iN
+sZ
+LA
+eo
+sZ
+sn
+Jf
+Ym
+iN
+iN
+iN
+dJ
+jm
+jm
+jm
+jm
+jm
+En
+GK
+GK
+GK
+GK
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+Qv
+Qv
+Qv
+Qv
+Qv
+"}
+(50,1,1) = {"
+Qv
+Qv
+Qv
+jm
+jm
+jm
+dJ
+iN
+iN
+iN
+iN
+iN
+PH
+lz
+eo
+sZ
+Jf
+Ym
+iN
+iN
+iN
+Qv
+jm
+jm
+jm
+jm
+jm
+Vy
+GK
+GK
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+"}
+(51,1,1) = {"
+Qv
+Qv
+Qv
+Qv
+jm
+Qv
+iN
+iN
+iN
+vi
+iN
+iN
+Rn
+FP
+sZ
+Ym
+iN
+iN
+vi
+iN
+Qv
+Qv
+jm
+jm
+jm
+GK
+GK
+GK
+GK
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+"}
+(52,1,1) = {"
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+iN
+iN
+iN
+iN
+vS
+tN
+Ym
+iN
+kV
+Yy
+iN
+iN
+Qv
+Qv
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+"}
+(53,1,1) = {"
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+iN
+iN
+uT
+iN
+sZ
+Ym
+iN
+iN
+tA
+iN
+iN
+Qv
+Qv
+Qv
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+"}
+(54,1,1) = {"
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+iN
+iN
+iN
+iN
+vi
+iN
+iN
+Qv
+Qv
+Qv
+Qv
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+"}
+(55,1,1) = {"
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+iN
+iN
+Er
+iN
+iN
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+"}
+(56,1,1) = {"
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+iN
+iN
+iN
+iN
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+jm
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+"}
+(57,1,1) = {"
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+jm
+jm
+jm
+jm
+jm
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+Qv
+"}
+(58,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
+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/SandRuins/whitesands_surface_golemhijack.dmm b/_maps/RandomRuins/SandRuins/whitesands_surface_golemhijack.dmm
deleted file mode 100644
index 8953d652b99a..000000000000
--- a/_maps/RandomRuins/SandRuins/whitesands_surface_golemhijack.dmm
+++ /dev/null
@@ -1,1390 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"at" = (
-/obj/item/mining_scanner,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/overmap_encounter/planetoid/sand/explored)
-"aZ" = (
-/turf/closed/wall/mineral/titanium/nodiagonal,
-/area/ruin/unpowered)
-"bb" = (
-/obj/item/shard{
- icon_state = "small"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/ruin/unpowered)
-"bW" = (
-/obj/structure/shuttle/engine/heater{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"cj" = (
-/obj/effect/mob_spawn/human/corpse{
- mob_species = /datum/species/golem
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/mineral/titanium/white,
-/area/ruin/unpowered)
-"cs" = (
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/trimline/opaque/white/line{
- dir = 5
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/dark,
-/area/ruin/unpowered)
-"cB" = (
-/obj/effect/turf_decal/trimline/opaque/white/corner{
- dir = 4
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/corner/transparent/neutral,
-/obj/machinery/mecha_part_fabricator/maint,
-/turf/open/floor/plasteel/dark,
-/area/ruin/unpowered)
-"cW" = (
-/obj/structure/door_assembly/door_assembly_min{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"dz" = (
-/obj/structure/rack,
-/obj/item/pickaxe,
-/turf/open/floor/mineral/plastitanium,
-/area/overmap_encounter/planetoid/sand/explored)
-"eM" = (
-/obj/item/pickaxe{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/item/card/id/mining,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/mineral/titanium/yellow,
-/area/overmap_encounter/planetoid/sand/explored)
-"fb" = (
-/obj/item/crowbar,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/overmap_encounter/planetoid/sand/explored)
-"fo" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/mineral/titanium/purple,
-/area/ruin/unpowered)
-"fz" = (
-/turf/open/floor/plating/asteroid/whitesands,
-/area/ruin/unpowered)
-"ha" = (
-/obj/item/rack_parts,
-/turf/open/floor/mineral/plastitanium,
-/area/overmap_encounter/planetoid/sand/explored)
-"hh" = (
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/overmap_encounter/planetoid/sand/explored)
-"hi" = (
-/obj/item/resonator,
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/ruin/unpowered)
-"ht" = (
-/obj/structure/girder/displaced,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/overmap_encounter/planetoid/sand/explored)
-"hJ" = (
-/obj/item/shard{
- icon_state = "medium"
- },
-/turf/open/floor/plating/asteroid/whitesands,
-/area/overmap_encounter/planetoid/sand/explored)
-"hM" = (
-/obj/item/storage/box,
-/obj/item/light/bulb/broken,
-/obj/item/light/tube/broken,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"iE" = (
-/obj/structure/AIcore/deactivated,
-/turf/open/floor/mineral/titanium/white,
-/area/ruin/unpowered)
-"jp" = (
-/obj/effect/turf_decal/corner/transparent/neutral,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/trimline/opaque/white/line{
- dir = 8
- },
-/obj/structure/table,
-/obj/item/storage/firstaid/brute,
-/turf/open/floor/plasteel/dark,
-/area/ruin/unpowered)
-"jw" = (
-/obj/item/bedsheet/rd/royal_cape,
-/obj/item/toy/figure/rd{
- name = "the Liberator action figure";
- pixel_x = 7;
- pixel_y = -5;
- toysay = "Yeah, go do whatever."
- },
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"jy" = (
-/obj/effect/turf_decal/corner/transparent/neutral,
-/obj/effect/turf_decal/trimline/opaque/purple/line{
- dir = 8
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/corner/transparent/neutral,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/dark,
-/area/ruin/unpowered)
-"jO" = (
-/obj/item/storage/part_replacer/bluespace/tier2,
-/turf/open/floor/mineral/titanium/white,
-/area/ruin/unpowered)
-"kJ" = (
-/obj/item/stack/sheet/mineral/wood,
-/obj/item/stack/sheet/mineral/wood,
-/obj/item/stack/sheet/mineral/wood,
-/obj/item/stack/sheet/mineral/wood,
-/obj/item/mining_scanner{
- pixel_x = -7;
- pixel_y = 5
- },
-/turf/open/floor/mineral/plastitanium,
-/area/overmap_encounter/planetoid/sand/explored)
-"kT" = (
-/obj/structure/girder/displaced,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/ruin/unpowered)
-"lJ" = (
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/ruin/unpowered)
-"mO" = (
-/obj/structure/window/reinforced,
-/obj/structure/shuttle/engine/heater{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"mS" = (
-/obj/item/shard{
- icon_state = "tiny"
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"nL" = (
-/obj/item/light/bulb/broken{
- pixel_x = 8;
- pixel_y = 8
- },
-/obj/item/light/tube/broken{
- pixel_x = -10;
- pixel_y = 6
- },
-/obj/effect/decal/cleanable/oil,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"nX" = (
-/obj/machinery/door/airlock/titanium,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"nZ" = (
-/obj/item/storage/bag/ore,
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/effect/turf_decal/trimline/opaque/yellow/line{
- dir = 8
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/corner/transparent/neutral,
-/obj/item/rack_parts,
-/obj/item/resonator{
- pixel_x = -6;
- pixel_y = -6
- },
-/turf/open/floor/mineral/plastitanium,
-/area/overmap_encounter/planetoid/sand/explored)
-"od" = (
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/ruin/unpowered)
-"oP" = (
-/obj/item/toy/plush/lizardplushie{
- desc = "Awww! It looks like it will snuggle all of your internal organs!";
- name = "ashwalker plushie"
- },
-/obj/effect/mob_spawn/human/corpse{
- mob_species = /datum/species/lizard/ashwalker
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/mineral/titanium/white,
-/area/ruin/unpowered)
-"pb" = (
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/overmap_encounter/planetoid/sand/explored)
-"pC" = (
-/turf/open/floor/plasteel/dark,
-/area/ruin/unpowered)
-"pQ" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/ruin/unpowered)
-"qU" = (
-/obj/structure/table,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/ruin/unpowered)
-"qY" = (
-/obj/structure/door_assembly/door_assembly_com,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/ruin/unpowered)
-"rm" = (
-/obj/structure/girder,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/ruin/unpowered)
-"rC" = (
-/obj/effect/turf_decal/corner/transparent/neutral,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/trimline/opaque/white/corner{
- dir = 1
- },
-/obj/structure/table,
-/obj/item/areaeditor/blueprints{
- desc = "Use to build new structures in the wastes.";
- name = "land claim"
- },
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plasteel/dark,
-/area/ruin/unpowered)
-"sb" = (
-/obj/structure/frame/machine,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/dark,
-/area/ruin/unpowered)
-"sh" = (
-/obj/machinery/door/airlock/titanium,
-/turf/open/floor/plating/asteroid/whitesands,
-/area/ruin/unpowered)
-"sm" = (
-/obj/structure/frame/machine,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"sF" = (
-/obj/item/rack_parts,
-/obj/item/storage/bag/ore,
-/turf/open/floor/plating,
-/area/overmap_encounter/planetoid/sand/explored)
-"sO" = (
-/obj/item/storage/box,
-/obj/structure/table,
-/obj/item/light/bulb/broken,
-/obj/item/light/tube/broken{
- pixel_x = -1;
- pixel_y = 5
- },
-/obj/item/shard,
-/obj/effect/mob_spawn/human/corpse{
- mob_species = /datum/species/lizard/ashwalker
- },
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plasteel/dark,
-/area/ruin/unpowered)
-"tg" = (
-/obj/item/light/bulb/broken{
- pixel_x = -3;
- pixel_y = -9
- },
-/obj/item/shard{
- icon_state = "medium"
- },
-/obj/effect/decal/cleanable/oil,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"tv" = (
-/obj/item/light/bulb/broken{
- pixel_x = -4;
- pixel_y = -4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"tw" = (
-/obj/item/mining_scanner{
- pixel_y = 7
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/mineral/titanium/yellow,
-/area/overmap_encounter/planetoid/sand/explored)
-"tH" = (
-/obj/item/pickaxe{
- pixel_x = -6;
- pixel_y = 17
- },
-/obj/item/mining_scanner,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/overmap_encounter/planetoid/sand/explored)
-"uA" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/overmap_encounter/planetoid/sand/explored)
-"uY" = (
-/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"vc" = (
-/obj/item/pickaxe,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/mineral/titanium/white,
-/area/ruin/unpowered)
-"vd" = (
-/obj/item/rack_parts,
-/turf/open/floor/plating/asteroid/whitesands,
-/area/overmap_encounter/planetoid/sand/explored)
-"vD" = (
-/obj/item/shard{
- icon_state = "tiny"
- },
-/obj/item/shard{
- icon_state = "medium"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/ruin/unpowered)
-"vI" = (
-/obj/structure/rack,
-/obj/effect/turf_decal/trimline/opaque/yellow/line{
- dir = 8
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/corner/transparent/neutral,
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/item/clothing/head/hardhat/mining{
- pixel_x = -6;
- pixel_y = -6
- },
-/obj/item/clothing/head/hardhat/mining{
- pixel_x = -2;
- pixel_y = -2
- },
-/obj/item/clothing/head/hardhat/mining{
- pixel_x = 6;
- pixel_y = 6
- },
-/turf/open/floor/mineral/plastitanium,
-/area/overmap_encounter/planetoid/sand/explored)
-"wd" = (
-/obj/effect/turf_decal/trimline/opaque/purple/line{
- dir = 5
- },
-/obj/effect/turf_decal/trimline/opaque/purple/corner{
- dir = 8
- },
-/obj/item/shard{
- icon_state = "tiny"
- },
-/obj/item/shard{
- icon_state = "small"
- },
-/obj/effect/mob_spawn/human/corpse{
- mob_species = /datum/species/golem
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/unpowered)
-"wl" = (
-/obj/machinery/washing_machine,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/ruin/unpowered)
-"ww" = (
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/ruin/unpowered)
-"wH" = (
-/obj/structure/girder,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"xA" = (
-/obj/item/storage/box/rndboards,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/mineral/titanium/white,
-/area/ruin/unpowered)
-"xJ" = (
-/obj/structure/shuttle/engine/propulsion{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"xX" = (
-/obj/effect/turf_decal/industrial/outline/yellow,
-/obj/effect/turf_decal/corner/transparent/neutral,
-/obj/effect/turf_decal/trimline/opaque/yellow/line{
- dir = 8
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 4
- },
-/turf/open/floor/mineral/plastitanium,
-/area/overmap_encounter/planetoid/sand/explored)
-"yc" = (
-/turf/open/floor/plating{
- icon_state = "platingdmg2"
- },
-/area/overmap_encounter/planetoid/sand/explored)
-"yI" = (
-/obj/structure/girder,
-/turf/open/floor/plating,
-/area/overmap_encounter/planetoid/sand/explored)
-"yX" = (
-/obj/item/light/bulb/broken{
- pixel_x = 3;
- pixel_y = -1
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/ruin/unpowered)
-"zF" = (
-/turf/template_noop,
-/area/template_noop)
-"zP" = (
-/obj/effect/spawner/structure/window/shuttle,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"Al" = (
-/obj/item/shard{
- icon_state = "tiny"
- },
-/obj/item/shard,
-/obj/item/shard{
- icon_state = "small"
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"AG" = (
-/obj/machinery/mineral/ore_redemption{
- input_dir = 4;
- output_dir = 8
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"AW" = (
-/obj/effect/turf_decal/corner/transparent/neutral,
-/obj/effect/turf_decal/trimline/opaque/white/line{
- dir = 9
- },
-/obj/structure/table,
-/obj/structure/frame/machine,
-/obj/item/stack/cable_coil/cut/green,
-/obj/item/circuitboard/machine/reagentgrinder,
-/turf/open/floor/plasteel/dark,
-/area/ruin/unpowered)
-"CL" = (
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/trimline/opaque/white/line{
- dir = 4
- },
-/obj/structure/frame/machine,
-/obj/item/stack/cable_coil/cut/random,
-/obj/item/surgicaldrill/advanced,
-/turf/open/floor/plasteel/dark,
-/area/ruin/unpowered)
-"EO" = (
-/obj/effect/turf_decal/trimline/opaque/purple/line{
- dir = 8
- },
-/obj/effect/turf_decal/corner/transparent/neutral,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/dark,
-/area/ruin/unpowered)
-"EZ" = (
-/obj/machinery/door/airlock/titanium,
-/obj/effect/turf_decal/industrial/warning,
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/unpowered)
-"FK" = (
-/obj/item/resonator,
-/obj/effect/mob_spawn/human/corpse{
- mob_species = /datum/species/golem
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/mineral/titanium/purple,
-/area/ruin/unpowered)
-"Gf" = (
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/trimline/opaque/purple/line{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/dark,
-/area/ruin/unpowered)
-"Gm" = (
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"Gn" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/mineral/titanium/purple,
-/area/ruin/unpowered)
-"Gs" = (
-/obj/machinery/light/small/directional/west,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/freezer,
-/area/overmap_encounter/planetoid/sand/explored)
-"GZ" = (
-/obj/item/shard{
- icon_state = "tiny"
- },
-/obj/item/shard{
- icon_state = "small"
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"Hm" = (
-/obj/item/card/id/mining,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/overmap_encounter/planetoid/sand/explored)
-"HB" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"HE" = (
-/obj/machinery/cell_charger,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/mineral/titanium/purple,
-/area/ruin/unpowered)
-"HK" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plasteel/dark,
-/area/ruin/unpowered)
-"Ie" = (
-/obj/structure/girder/displaced,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"Il" = (
-/obj/machinery/shower,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/freezer,
-/area/overmap_encounter/planetoid/sand/explored)
-"IC" = (
-/turf/open/floor/mineral/titanium/purple,
-/area/ruin/unpowered)
-"JF" = (
-/obj/machinery/door/airlock/external,
-/turf/open/floor/plasteel/dark,
-/area/ruin/unpowered)
-"Ks" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/freezer,
-/area/overmap_encounter/planetoid/sand/explored)
-"Kt" = (
-/obj/structure/reagent_dispensers/watertank,
-/obj/effect/decal/cleanable/oil/slippery,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/ruin/unpowered)
-"KT" = (
-/obj/structure/rack,
-/obj/item/card/id/mining,
-/obj/item/clothing/head/hardhat/mining,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/overmap_encounter/planetoid/sand/explored)
-"Lz" = (
-/obj/structure/frame/machine,
-/obj/effect/decal/cleanable/oil,
-/obj/item/stack/cable_coil/cut/random,
-/obj/item/clothing/suit/space/hardsuit/mining,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/ruin/unpowered)
-"Mx" = (
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/turf/open/floor/plating/asteroid/whitesands,
-/area/ruin/unpowered)
-"MT" = (
-/obj/structure/frame/machine,
-/obj/item/shard,
-/obj/item/book/manual/wiki/research_and_development{
- name = "Sacred Text of the Liberator";
- pixel_y = -5
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/ruin/unpowered)
-"Nm" = (
-/obj/machinery/door/airlock/titanium,
-/turf/open/floor/plasteel/dark,
-/area/ruin/unpowered)
-"Nz" = (
-/turf/open/floor/plating/asteroid/whitesands,
-/area/overmap_encounter/planetoid/sand/explored)
-"Pe" = (
-/obj/structure/ore_box,
-/turf/open/floor/mineral/plastitanium,
-/area/overmap_encounter/planetoid/sand/explored)
-"PD" = (
-/obj/item/pickaxe,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"PN" = (
-/obj/structure/rack,
-/obj/item/spear,
-/obj/item/shard{
- icon_state = "medium"
- },
-/obj/item/shard{
- icon_state = "tiny"
- },
-/obj/item/shard{
- icon_state = "small"
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/unpowered)
-"Qi" = (
-/obj/item/light/bulb/broken{
- pixel_x = -13;
- pixel_y = -12
- },
-/obj/item/light/tube/broken{
- pixel_x = -10;
- pixel_y = -6
- },
-/obj/item/shard{
- icon_state = "small"
- },
-/obj/effect/decal/cleanable/oil,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"Qq" = (
-/turf/open/floor/plating{
- icon_state = "platingdmg2"
- },
-/area/ruin/unpowered)
-"Qr" = (
-/obj/item/shard,
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/corner/transparent/neutral,
-/obj/effect/turf_decal/trimline/opaque/purple/line{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/dark,
-/area/ruin/unpowered)
-"QX" = (
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/trimline/opaque/purple/line{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/unpowered)
-"Rb" = (
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/trimline/opaque/white/corner{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/trimline/opaque/white/corner,
-/turf/open/floor/plasteel/dark,
-/area/ruin/unpowered)
-"RJ" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/mineral/titanium/white,
-/area/ruin/unpowered)
-"RX" = (
-/obj/structure/rack,
-/obj/item/storage/toolbox/electrical{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/storage/toolbox/mechanical,
-/obj/item/storage/toolbox/emergency{
- pixel_x = 3;
- pixel_y = -3
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/ruin/unpowered)
-"SN" = (
-/obj/item/shard{
- icon_state = "tiny"
- },
-/obj/item/shard{
- icon_state = "small"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/ruin/unpowered)
-"Tc" = (
-/obj/item/spear,
-/obj/effect/mob_spawn/human/corpse{
- mob_species = /datum/species/lizard/ashwalker
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/ruin/unpowered)
-"Um" = (
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/corner/transparent/neutral,
-/obj/effect/turf_decal/trimline/opaque/purple/line{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/dark,
-/area/ruin/unpowered)
-"Uz" = (
-/turf/closed/wall/mineral/plastitanium,
-/area/ruin/unpowered)
-"Wm" = (
-/obj/structure/frame/machine,
-/turf/open/floor/plasteel/dark,
-/area/ruin/unpowered)
-"Wt" = (
-/obj/effect/turf_decal/corner/transparent/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/corner/transparent/neutral,
-/obj/effect/turf_decal/trimline/opaque/white/line{
- dir = 8
- },
-/obj/machinery/autolathe,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/dark,
-/area/ruin/unpowered)
-"WO" = (
-/obj/structure/door_assembly/door_assembly_com,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/ruin/unpowered)
-"Xx" = (
-/obj/structure/table,
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"XQ" = (
-/obj/item/shard,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/ruin/unpowered)
-"YG" = (
-/obj/item/resonator/upgraded,
-/obj/effect/mob_spawn/human/corpse{
- mob_species = /datum/species/golem
- },
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/ruin/unpowered)
-"YN" = (
-/obj/item/light/tube/broken{
- pixel_x = -10;
- pixel_y = -7
- },
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/ruin/unpowered)
-"YZ" = (
-/obj/effect/decal/cleanable/oil/streak,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-"ZD" = (
-/obj/structure/rack,
-/obj/item/mop,
-/obj/item/reagent_containers/glass/bucket,
-/obj/item/storage/bag/trash{
- pixel_x = 6
- },
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"ZM" = (
-/obj/item/spear/bonespear,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/ruin/unpowered)
-"ZP" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/ruin/unpowered)
-"ZT" = (
-/obj/structure/reagent_dispensers/fueltank,
-/obj/effect/decal/cleanable/oil/slippery,
-/turf/open/floor/plasteel/dark,
-/area/ruin/unpowered)
-"ZY" = (
-/obj/item/light/bulb/broken{
- pixel_x = 7;
- pixel_y = 7
- },
-/obj/item/light/tube/broken{
- pixel_x = 12;
- pixel_y = -7
- },
-/obj/effect/decal/cleanable/oil/streak,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ruin/unpowered)
-
-(1,1,1) = {"
-zF
-zF
-zF
-zP
-zP
-aZ
-aZ
-rm
-aZ
-wH
-Nz
-zF
-zF
-zF
-zF
-zF
-zF
-zF
-zF
-zF
-zF
-zF
-zF
-"}
-(2,1,1) = {"
-Uz
-Uz
-aZ
-zP
-uY
-ZD
-RX
-wH
-Gs
-pb
-Nz
-Nz
-zF
-zF
-zF
-zF
-zF
-zF
-zF
-zF
-zF
-zF
-zF
-"}
-(3,1,1) = {"
-xJ
-mO
-aZ
-wl
-ZP
-ZP
-fz
-aZ
-Il
-hh
-pb
-yI
-Nz
-zF
-zF
-zF
-zF
-zF
-zF
-zF
-zF
-zF
-zF
-"}
-(4,1,1) = {"
-xJ
-mO
-aZ
-Xx
-Tc
-fz
-fz
-nX
-Ks
-Nz
-hh
-Nz
-Nz
-Nz
-zF
-zF
-zF
-zF
-zF
-zF
-zF
-zF
-zF
-"}
-(5,1,1) = {"
-Uz
-Uz
-kT
-rm
-Nm
-kT
-PD
-rm
-pb
-hh
-uA
-ht
-hJ
-Nz
-zF
-zF
-zF
-zF
-zF
-zF
-zF
-zF
-zF
-"}
-(6,1,1) = {"
-xJ
-mO
-lJ
-Gm
-fz
-aZ
-aZ
-aZ
-aZ
-aZ
-aZ
-aZ
-aZ
-mS
-mS
-aZ
-nX
-nX
-aZ
-aZ
-Nz
-zF
-zF
-"}
-(7,1,1) = {"
-xJ
-mO
-rm
-fz
-yX
-od
-kT
-AW
-jp
-qU
-Wt
-lJ
-Qr
-jy
-EO
-lJ
-ZP
-Um
-pQ
-Ie
-Nz
-Nz
-zF
-"}
-(8,1,1) = {"
-aZ
-aZ
-aZ
-sm
-YG
-HK
-aZ
-rC
-hi
-RJ
-RJ
-lJ
-lJ
-Gn
-Gn
-jw
-pQ
-XQ
-pQ
-WO
-fb
-hh
-Nz
-"}
-(9,1,1) = {"
-JF
-pC
-JF
-HB
-ZY
-YN
-EZ
-ww
-cj
-lJ
-iE
-vc
-IC
-HE
-sb
-Gn
-bb
-SN
-SN
-Ie
-yc
-Nz
-yc
-"}
-(10,1,1) = {"
-JF
-pC
-JF
-tv
-hM
-nL
-EZ
-RJ
-RJ
-oP
-Gm
-xA
-lJ
-Gn
-Wm
-fo
-MT
-wd
-vD
-wH
-Nz
-pb
-pb
-"}
-(11,1,1) = {"
-aZ
-aZ
-aZ
-Lz
-Qi
-sO
-aZ
-cB
-RJ
-ZM
-RJ
-jO
-Qq
-FK
-lJ
-pQ
-pQ
-pQ
-pQ
-qY
-pb
-hh
-Nz
-"}
-(12,1,1) = {"
-xJ
-bW
-aZ
-Kt
-tg
-PN
-aZ
-cs
-lJ
-Rb
-CL
-lJ
-QX
-Gf
-Mx
-pQ
-Gf
-pQ
-lJ
-pb
-Nz
-Nz
-Nz
-"}
-(13,1,1) = {"
-xJ
-bW
-aZ
-ZT
-YZ
-aZ
-aZ
-aZ
-aZ
-cW
-aZ
-AG
-Al
-aZ
-aZ
-aZ
-cW
-GZ
-Ie
-Nz
-zF
-zF
-zF
-"}
-(14,1,1) = {"
-Uz
-Uz
-aZ
-aZ
-sh
-aZ
-vI
-nZ
-Hm
-xX
-Nz
-Nz
-Nz
-zF
-zF
-zF
-zF
-zF
-zF
-zF
-zF
-zF
-zF
-"}
-(15,1,1) = {"
-xJ
-mO
-aZ
-Pe
-tw
-pb
-at
-Nz
-Nz
-Nz
-zF
-zF
-zF
-zF
-zF
-zF
-zF
-zF
-zF
-zF
-zF
-zF
-zF
-"}
-(16,1,1) = {"
-xJ
-mO
-aZ
-kJ
-eM
-tH
-pb
-Hm
-Nz
-zF
-zF
-zF
-zF
-zF
-zF
-zF
-zF
-zF
-zF
-zF
-zF
-zF
-zF
-"}
-(17,1,1) = {"
-Uz
-Uz
-aZ
-aZ
-dz
-sF
-ha
-KT
-vd
-zF
-zF
-zF
-zF
-zF
-zF
-zF
-zF
-zF
-zF
-zF
-zF
-zF
-zF
-"}
-(18,1,1) = {"
-zF
-zF
-zF
-aZ
-aZ
-Nz
-Nz
-zF
-zF
-zF
-zF
-zF
-zF
-zF
-zF
-zF
-zF
-zF
-zF
-zF
-zF
-zF
-zF
-"}
diff --git a/_maps/RandomRuins/SandRuins/whitesands_surface_pubbyslopcrash.dmm b/_maps/RandomRuins/SandRuins/whitesands_surface_pubbyslopcrash.dmm
new file mode 100644
index 000000000000..1cd150e9b8dc
--- /dev/null
+++ b/_maps/RandomRuins/SandRuins/whitesands_surface_pubbyslopcrash.dmm
@@ -0,0 +1,3321 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"as" = (
+/obj/machinery/light/directional/north,
+/obj/structure/table/reinforced,
+/obj/machinery/reagentgrinder{
+ pixel_x = 6;
+ pixel_y = 14
+ },
+/obj/item/reagent_containers/food/snacks/meat/slab/xeno,
+/turf/open/floor/plastic,
+/area/ruin/whitesands/pubbycrash)
+"aR" = (
+/obj/structure/sign/number/one,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/stack/ore/salvage/scrapmetal,
+/turf/open/floor/engine,
+/area/ruin/whitesands/pubbycrash)
+"ba" = (
+/obj/machinery/door/airlock/external/glass,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/layer_manifold,
+/turf/open/floor/plasteel/dark,
+/area/ruin/whitesands/pubbycrash)
+"by" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/pod,
+/area/ruin/whitesands/pubbycrash)
+"bS" = (
+/obj/item/t_scanner/adv_mining_scanner/lesser,
+/obj/item/kinetic_crusher,
+/obj/structure/rack,
+/obj/item/pickaxe/mini,
+/obj/item/pickaxe/mini,
+/obj/effect/turf_decal/siding/brown,
+/obj/item/gun/energy/kinetic_accelerator,
+/obj/machinery/firealarm/directional/south,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/tech/techmaint,
+/area/ruin/whitesands/pubbycrash)
+"bW" = (
+/obj/effect/turf_decal/box,
+/obj/structure/table/reinforced,
+/obj/item/storage/toolbox/mechanical{
+ pixel_x = 2;
+ pixel_y = -2
+ },
+/obj/item/storage/toolbox/mechanical{
+ pixel_x = -3;
+ pixel_y = 1
+ },
+/obj/item/storage/toolbox/electrical{
+ pixel_x = 2;
+ pixel_y = 3
+ },
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/effect/turf_decal/industrial/warning{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/ruin/whitesands/pubbycrash)
+"bZ" = (
+/turf/open/floor/plating/asteroid/whitesands,
+/area/overmap_encounter/planetoid/sand)
+"ck" = (
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/plasteel/dark,
+/area/ruin/whitesands/pubbycrash)
+"co" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/turf/open/floor/plasteel/dark,
+/area/ruin/whitesands/pubbycrash)
+"cp" = (
+/obj/effect/turf_decal/spline/fancy/opaque/black,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark,
+/area/ruin/whitesands/pubbycrash)
+"ct" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/airalarm/directional/south,
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/vomit/old,
+/turf/open/floor/plasteel/grimy,
+/area/ruin/whitesands/pubbycrash)
+"cx" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
+ },
+/obj/item/stack/ore/salvage/scrapmetal,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/dark,
+/area/ruin/whitesands/pubbycrash)
+"cN" = (
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/ruin/whitesands/pubbycrash)
+"di" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = 12
+ },
+/obj/structure/railing,
+/obj/machinery/airalarm/directional/east,
+/obj/item/stack/sheet/cotton/cloth,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plastic,
+/area/ruin/whitesands/pubbycrash)
+"dm" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "engine fuel pump"
+ },
+/obj/effect/spawner/lootdrop/maintenance/two,
+/turf/open/floor/plasteel/tech,
+/area/ruin/whitesands/pubbycrash)
+"dW" = (
+/obj/item/stack/cable_coil/cut/red,
+/obj/item/stack/ore/salvage/scrapgold,
+/turf/open/floor/plating,
+/area/ruin/whitesands/pubbycrash)
+"ek" = (
+/obj/effect/turf_decal/industrial/stand_clear,
+/obj/effect/turf_decal/industrial/warning,
+/obj/machinery/button/door{
+ id = "pubbywspodsw";
+ name = "Pod Door Control";
+ pixel_x = -25;
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/stack/ore/salvage/scrapmetal,
+/obj/structure/salvageable/server,
+/turf/open/floor/engine,
+/area/ruin/whitesands/pubbycrash)
+"eq" = (
+/obj/structure/sign/number/one,
+/obj/effect/decal/cleanable/vomit/old,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/engine,
+/area/ruin/whitesands/pubbycrash)
+"ff" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/airalarm/directional/west,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/stairs{
+ dir = 1
+ },
+/area/ruin/whitesands/pubbycrash)
+"fk" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/fancy/donut_box{
+ pixel_y = 2
+ },
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/sign/poster/official/random{
+ pixel_y = -32
+ },
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/machinery/firealarm/directional/east,
+/turf/open/floor/plasteel/dark,
+/area/ruin/whitesands/pubbycrash)
+"fA" = (
+/obj/machinery/light/directional/east,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/obj/structure/sign/poster/official/random{
+ pixel_x = 32
+ },
+/obj/effect/spawner/lootdrop/maintenance/two,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/dark,
+/area/ruin/whitesands/pubbycrash)
+"fO" = (
+/obj/machinery/power/terminal{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/effect/spawner/lootdrop/maintenance/two,
+/turf/open/floor/plasteel/tech,
+/area/ruin/whitesands/pubbycrash)
+"fR" = (
+/obj/effect/turf_decal/spline/fancy/opaque/black{
+ dir = 1
+ },
+/obj/machinery/firealarm/directional/west,
+/obj/item/stack/ore/salvage/scraptitanium,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/dark,
+/area/ruin/whitesands/pubbycrash)
+"fX" = (
+/obj/effect/turf_decal/box/corners{
+ dir = 4
+ },
+/obj/item/stack/ore/salvage/scrapmetal/five,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/engine,
+/area/ruin/whitesands/pubbycrash)
+"gg" = (
+/obj/structure/reagent_dispensers/servingdish,
+/obj/structure/table/reinforced,
+/obj/item/kitchen/spoon/plastic{
+ pixel_x = 6
+ },
+/obj/item/kitchen/spoon/plastic{
+ pixel_x = -1
+ },
+/obj/item/kitchen/spoon/plastic{
+ pixel_x = 13
+ },
+/turf/open/floor/plastic,
+/area/ruin/whitesands/pubbycrash)
+"gs" = (
+/obj/effect/decal/fakelattice{
+ icon_state = "lattice-8"
+ },
+/turf/open/floor/plating/asteroid/whitesands/lit,
+/area/overmap_encounter/planetoid/sand)
+"gu" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/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/plasteel/patterned/grid,
+/area/ruin/whitesands/pubbycrash)
+"gx" = (
+/obj/effect/decal/fakelattice{
+ icon_state = "lattice-5"
+ },
+/turf/open/floor/plating/asteroid/whitesands/lit,
+/area/overmap_encounter/planetoid/sand)
+"gy" = (
+/obj/effect/turf_decal/box,
+/obj/structure/table/reinforced,
+/obj/structure/railing,
+/obj/effect/turf_decal/industrial/warning,
+/turf/open/floor/plasteel,
+/area/ruin/whitesands/pubbycrash)
+"gG" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/door/airlock/engineering{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark,
+/area/ruin/whitesands/pubbycrash)
+"gL" = (
+/obj/effect/turf_decal/box/corners{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/engine,
+/area/ruin/whitesands/pubbycrash)
+"hh" = (
+/obj/machinery/door/airlock/external/glass,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/plasteel/dark,
+/area/ruin/whitesands/pubbycrash)
+"ho" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/oil,
+/obj/effect/decal/cleanable/vomit/old,
+/turf/open/floor/plasteel/tech/techmaint,
+/area/ruin/whitesands/pubbycrash)
+"hz" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing/corner{
+ dir = 8
+ },
+/obj/structure/railing/corner,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/decal/cleanable/vomit/old,
+/turf/open/floor/plasteel/tech,
+/area/ruin/whitesands/pubbycrash)
+"hA" = (
+/obj/structure/closet/wall/red{
+ dir = 4;
+ name = "Pilots locker";
+ pixel_x = -29;
+ welded = 1
+ },
+/obj/item/clothing/under/suit/black,
+/obj/item/clothing/under/suit/black,
+/obj/item/clothing/suit/jacket,
+/obj/item/clothing/suit/jacket,
+/obj/item/clothing/head/beret/black,
+/obj/item/clothing/head/beret/black,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 1
+ },
+/obj/item/clothing/under/rank/security/officer/nt,
+/obj/item/clothing/under/rank/security/officer/nt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/ruin/whitesands/pubbycrash)
+"iw" = (
+/obj/machinery/door/firedoor/border_only{
+ dir = 1
+ },
+/obj/effect/spawner/structure/window/shuttle,
+/obj/machinery/door/poddoor{
+ id = "whiteship_windows"
+ },
+/turf/open/floor/plating,
+/area/ruin/whitesands/pubbycrash)
+"iW" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/ruin/whitesands/pubbycrash)
+"jt" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/spawner/lootdrop/maintenance/two,
+/turf/open/floor/engine,
+/area/ruin/whitesands/pubbycrash)
+"jA" = (
+/obj/item/trash/cheesie{
+ pixel_x = 5;
+ pixel_y = 6
+ },
+/obj/structure/table/reinforced{
+ color = "#c1b6a5"
+ },
+/turf/open/floor/plasteel/grimy,
+/area/ruin/whitesands/pubbycrash)
+"jF" = (
+/obj/item/stack/ore/salvage/scraptitanium,
+/turf/open/floor/plating,
+/area/ruin/whitesands/pubbycrash)
+"jG" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/ntspaceworks_small/left{
+ dir = 4
+ },
+/mob/living/simple_animal/hostile/asteroid/whitesands/survivor{
+ dir = 4;
+ faction = list("saloon")
+ },
+/turf/open/floor/plasteel/tech,
+/area/ruin/whitesands/pubbycrash)
+"kp" = (
+/obj/structure/girder/displaced,
+/turf/open/floor/plating/asteroid/whitesands/lit,
+/area/overmap_encounter/planetoid/sand)
+"kA" = (
+/obj/item/reagent_containers/food/drinks/britcup{
+ pixel_x = 9;
+ pixel_y = -3
+ },
+/obj/item/trash/pistachios{
+ pixel_y = 5
+ },
+/obj/structure/table/reinforced{
+ color = "#c1b6a5"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/grimy,
+/area/ruin/whitesands/pubbycrash)
+"kM" = (
+/obj/structure/table/reinforced,
+/obj/machinery/power/apc/auto_name/directional/north{
+ start_charge = 0
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/item/flashlight/lamp{
+ pixel_x = -6;
+ pixel_y = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/item/photo{
+ pixel_y = -12
+ },
+/obj/item/toy/figure/captain{
+ pixel_x = 7;
+ pixel_y = 12
+ },
+/obj/machinery/airalarm/directional/west,
+/obj/item/stack/ore/salvage/scrapmetal,
+/turf/open/floor/plasteel/tech,
+/area/ruin/whitesands/pubbycrash)
+"kP" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/cable/yellow,
+/obj/effect/spawner/lootdrop/maintenance/two,
+/turf/open/floor/plasteel/tech,
+/area/ruin/whitesands/pubbycrash)
+"kU" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/turf/open/floor/plasteel/stairs{
+ dir = 8
+ },
+/area/ruin/whitesands/pubbycrash)
+"ln" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/effect/turf_decal/industrial/outline/yellow,
+/obj/structure/salvageable/machine,
+/turf/open/floor/plasteel/tech,
+/area/ruin/whitesands/pubbycrash)
+"ly" = (
+/obj/machinery/door/airlock/hatch,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/showroomfloor,
+/area/ruin/whitesands/pubbycrash)
+"lA" = (
+/obj/structure/table/reinforced,
+/obj/item/laser_pointer,
+/obj/item/radio/off{
+ pixel_x = 6;
+ pixel_y = 14
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/whitesands/pubbycrash)
+"lB" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/ruin/whitesands/pubbycrash)
+"lK" = (
+/obj/effect/turf_decal/box,
+/obj/structure/railing,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/industrial/warning,
+/obj/structure/salvageable/autolathe,
+/turf/open/floor/plasteel,
+/area/ruin/whitesands/pubbycrash)
+"lR" = (
+/obj/effect/decal/fakelattice{
+ icon_state = "lattice-46"
+ },
+/turf/open/floor/plating/asteroid/whitesands/lit,
+/area/overmap_encounter/planetoid/sand)
+"mp" = (
+/obj/effect/decal/fakelattice{
+ icon_state = "lattice-3"
+ },
+/turf/open/floor/plating/asteroid/whitesands/lit,
+/area/overmap_encounter/planetoid/sand)
+"mH" = (
+/turf/open/floor/plating,
+/area/ruin/whitesands/pubbycrash)
+"mU" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/ash{
+ pixel_x = 2;
+ pixel_y = -2
+ },
+/obj/effect/decal/cleanable/ash{
+ pixel_y = -3;
+ pixel_x = -6
+ },
+/obj/item/gun/energy/laser/hitscanpistol,
+/turf/open/floor/plating{
+ icon_state = "panelscorched";
+ initial_gas_mix = "ws_atmos"
+ },
+/area/ruin/whitesands/pubbycrash)
+"mW" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/effect/turf_decal/industrial/hatch/yellow,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock/external{
+ dir = 4
+ },
+/turf/open/floor/plasteel/tech/grid,
+/area/ruin/whitesands/pubbycrash)
+"nq" = (
+/obj/effect/decal/fakelattice{
+ icon_state = "lattice-55"
+ },
+/turf/open/floor/plating/asteroid/whitesands/lit,
+/area/overmap_encounter/planetoid/sand)
+"nG" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
+/obj/machinery/firealarm/directional/south,
+/turf/open/floor/plasteel/dark,
+/area/ruin/whitesands/pubbycrash)
+"nP" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/effect/turf_decal/industrial/outline/yellow,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/suit_storage_unit/open,
+/turf/open/floor/plasteel/dark,
+/area/ruin/whitesands/pubbycrash)
+"nQ" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
+/turf/open/floor/plasteel/patterned/grid,
+/area/ruin/whitesands/pubbycrash)
+"oo" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/emcloset/wall{
+ dir = 1;
+ pixel_y = -28
+ },
+/obj/effect/spawner/lootdrop/maintenance/two,
+/turf/open/floor/plasteel/tech/grid,
+/area/ruin/whitesands/pubbycrash)
+"oq" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/plasteel/dark,
+/area/ruin/whitesands/pubbycrash)
+"oO" = (
+/obj/effect/decal/fakelattice,
+/turf/open/floor/plating/asteroid/whitesands/lit,
+/area/overmap_encounter/planetoid/sand)
+"oS" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/tech,
+/area/ruin/whitesands/pubbycrash)
+"pe" = (
+/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
+ },
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/structure/catwalk,
+/obj/effect/turf_decal/spline/fancy/opaque/black{
+ dir = 8
+ },
+/obj/item/stock_parts/cell/hyper{
+ pixel_x = 5;
+ pixel_y = 4
+ },
+/obj/item/stack/ore/salvage/scrapmetal/five{
+ pixel_x = -9
+ },
+/turf/open/floor/plating,
+/area/ruin/whitesands/pubbycrash)
+"pu" = (
+/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{
+ dir = 4
+ },
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/turf_decal/ntspaceworks_small/right{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/vomit/old,
+/obj/effect/mob_spawn/human/corpse/nanotrasensoldier,
+/obj/item/storage/box/stockparts/basic{
+ pixel_x = -3;
+ pixel_y = 4
+ },
+/turf/open/floor/plasteel/tech,
+/area/ruin/whitesands/pubbycrash)
+"pE" = (
+/obj/structure/railing/corner{
+ dir = 8
+ },
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/ruin/whitesands/pubbycrash)
+"pG" = (
+/obj/machinery/firealarm/directional/west,
+/turf/closed/mineral/random/whitesands,
+/area/overmap_encounter/planetoid/cave/explored)
+"pR" = (
+/obj/effect/turf_decal/industrial/stand_clear,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/glass,
+/obj/item/stack/ore/salvage/scrapmetal/five,
+/obj/structure/salvageable/server,
+/turf/open/floor/engine,
+/area/ruin/whitesands/pubbycrash)
+"pT" = (
+/obj/effect/turf_decal/box,
+/obj/structure/table/reinforced,
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/effect/turf_decal/industrial/warning{
+ dir = 1
+ },
+/obj/effect/spawner/lootdrop/maintenance/five,
+/obj/effect/spawner/lootdrop/maintenance/five,
+/turf/open/floor/plasteel,
+/area/ruin/whitesands/pubbycrash)
+"qz" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/window/northleft{
+ dir = 4;
+ name = "Engine Access"
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/structure/frame/machine,
+/obj/item/stack/cable_coil/cut/red,
+/obj/item/circuitboard/machine/shuttle/smes,
+/turf/open/floor/plating,
+/area/ruin/whitesands/pubbycrash)
+"qN" = (
+/obj/effect/decal/fakelattice{
+ icon_state = "lattice-74"
+ },
+/turf/open/floor/plating/asteroid/whitesands/lit,
+/area/overmap_encounter/planetoid/sand)
+"re" = (
+/obj/machinery/shower{
+ dir = 1
+ },
+/obj/structure/railing/corner{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/tech/techmaint,
+/area/ruin/whitesands/pubbycrash)
+"rT" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/ash/large,
+/turf/open/floor/plating{
+ icon_state = "panelscorched";
+ initial_gas_mix = "ws_atmos"
+ },
+/area/ruin/whitesands/pubbycrash)
+"rW" = (
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/plasteel/tech,
+/area/ruin/whitesands/pubbycrash)
+"rZ" = (
+/obj/structure/chair/office/light{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/plasteel/grimy,
+/area/ruin/whitesands/pubbycrash)
+"sd" = (
+/obj/effect/decal/fakelattice{
+ icon_state = "lattice-2"
+ },
+/mob/living/simple_animal/hostile/asteroid/whitesands/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"
+ },
+/obj/effect/decal/cleanable/vomit,
+/turf/open/floor/plating/asteroid/whitesands/lit,
+/area/overmap_encounter/planetoid/sand)
+"so" = (
+/obj/effect/turf_decal/industrial/caution,
+/obj/structure/railing/corner{
+ dir = 8
+ },
+/obj/structure/railing/corner{
+ dir = 1
+ },
+/obj/structure/catwalk,
+/obj/structure/sign/poster/retro/nanotrasen_logo_70s{
+ pixel_x = -32
+ },
+/obj/effect/spawner/lootdrop/maintenance/two,
+/turf/open/floor/plating,
+/area/ruin/whitesands/pubbycrash)
+"ss" = (
+/obj/machinery/light/directional/west,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/table/reinforced,
+/obj/item/paper_bin{
+ pixel_x = -4
+ },
+/obj/item/folder/blue{
+ pixel_x = 3;
+ pixel_y = 2
+ },
+/obj/item/folder/white,
+/obj/item/pen,
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/item/stamp/captain{
+ pixel_x = -6;
+ pixel_y = 8
+ },
+/obj/item/spacecash/bundle/c1000{
+ pixel_x = 2;
+ pixel_y = -14
+ },
+/obj/item/spacecash/bundle/c1000{
+ pixel_x = 2;
+ pixel_y = -14
+ },
+/obj/item/spacecash/bundle/c1000{
+ pixel_x = 4;
+ pixel_y = -16
+ },
+/turf/open/floor/plasteel/tech,
+/area/ruin/whitesands/pubbycrash)
+"sA" = (
+/obj/structure/sign/nanotrasen,
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/ruin/whitesands/pubbycrash)
+"sC" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/light/directional/south,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/dark,
+/area/ruin/whitesands/pubbycrash)
+"sD" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/ash,
+/obj/effect/decal/cleanable/ash{
+ pixel_y = -3;
+ pixel_x = -6
+ },
+/turf/open/floor/plating{
+ icon_state = "panelscorched";
+ initial_gas_mix = "ws_atmos"
+ },
+/area/ruin/whitesands/pubbycrash)
+"sV" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 4
+ },
+/obj/structure/railing,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/tech,
+/area/ruin/whitesands/pubbycrash)
+"uh" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating{
+ icon_state = "panelscorched";
+ initial_gas_mix = "ws_atmos"
+ },
+/area/ruin/whitesands/pubbycrash)
+"ul" = (
+/mob/living/simple_animal/hostile/asteroid/whitesands/ranged,
+/turf/open/floor/plating/asteroid/whitesands/lit,
+/area/overmap_encounter/planetoid/sand)
+"up" = (
+/obj/effect/turf_decal/box/corners{
+ dir = 1
+ },
+/obj/item/stack/ore/salvage/scrapmetal,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/engine,
+/area/ruin/whitesands/pubbycrash)
+"uB" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/ash,
+/obj/effect/decal/cleanable/ash{
+ pixel_x = -6;
+ pixel_y = 8
+ },
+/turf/open/floor/plating{
+ icon_state = "panelscorched";
+ initial_gas_mix = "ws_atmos"
+ },
+/area/ruin/whitesands/pubbycrash)
+"vc" = (
+/obj/effect/turf_decal/box/corners,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/stack/ore/salvage/scraptitanium,
+/turf/open/floor/engine,
+/area/ruin/whitesands/pubbycrash)
+"vw" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/spline/fancy/opaque/black{
+ dir = 1
+ },
+/obj/effect/gibspawner,
+/turf/open/floor/plasteel/dark,
+/area/ruin/whitesands/pubbycrash)
+"vL" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/stack/ore/salvage/scraptitanium,
+/turf/open/floor/engine,
+/area/ruin/whitesands/pubbycrash)
+"vO" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/ash{
+ pixel_x = 6;
+ pixel_y = 8
+ },
+/obj/effect/decal/cleanable/ash{
+ pixel_x = -2;
+ pixel_y = 3
+ },
+/obj/effect/decal/cleanable/ash{
+ pixel_x = -6;
+ pixel_y = 8
+ },
+/turf/open/floor/plating{
+ icon_state = "panelscorched";
+ initial_gas_mix = "ws_atmos"
+ },
+/area/ruin/whitesands/pubbycrash)
+"vX" = (
+/obj/item/radio/intercom/directional/west,
+/obj/structure/chair/office/light{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
+/turf/open/floor/plasteel/grimy,
+/area/ruin/whitesands/pubbycrash)
+"wn" = (
+/obj/effect/turf_decal/siding/brown,
+/obj/effect/turf_decal/spline/fancy/opaque/black{
+ dir = 5
+ },
+/obj/effect/turf_decal/industrial/outline/yellow,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/suit_storage_unit/open,
+/turf/open/floor/plasteel/tech/techmaint,
+/area/ruin/whitesands/pubbycrash)
+"wL" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/wall/red{
+ dir = 8;
+ name = "Firearm Locker";
+ pixel_x = 29;
+ welded = 1
+ },
+/obj/effect/turf_decal/spline/fancy/opaque/black{
+ dir = 1
+ },
+/obj/item/gun/ballistic/automatic/pistol/commander,
+/obj/item/gun/ballistic/automatic/pistol/commander,
+/obj/item/ammo_box/magazine/co9mm,
+/obj/item/ammo_box/magazine/co9mm,
+/obj/item/ammo_box/magazine/co9mm,
+/obj/item/ammo_box/magazine/co9mm,
+/turf/open/floor/plasteel/dark,
+/area/ruin/whitesands/pubbycrash)
+"wV" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/obj/structure/catwalk,
+/obj/effect/turf_decal/spline/fancy/opaque/black{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/ruin/whitesands/pubbycrash)
+"xa" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 9
+ },
+/obj/effect/decal/cleanable/glass,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 9
+ },
+/obj/structure/salvageable/machine,
+/turf/open/floor/plasteel/tech/techmaint,
+/area/ruin/whitesands/pubbycrash)
+"xc" = (
+/mob/living/simple_animal/hostile/asteroid/whitesands/survivor{
+ dir = 4
+ },
+/turf/open/floor/plating/asteroid/whitesands/lit,
+/area/overmap_encounter/planetoid/sand)
+"xy" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/whitesands/pubbycrash)
+"xA" = (
+/obj/effect/turf_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/structure/salvageable/computer,
+/turf/open/floor/plasteel/tech,
+/area/ruin/whitesands/pubbycrash)
+"yj" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/obj/structure/noticeboard{
+ pixel_y = 31
+ },
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/whitesands/pubbycrash)
+"ym" = (
+/obj/effect/gibspawner,
+/turf/open/floor/plating/asteroid/whitesands/lit,
+/area/overmap_encounter/planetoid/sand)
+"yt" = (
+/obj/effect/decal/fakelattice{
+ icon_state = "lattice-141"
+ },
+/turf/open/floor/plating/asteroid/whitesands/lit,
+/area/overmap_encounter/planetoid/sand)
+"yx" = (
+/obj/structure/railing/corner,
+/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{
+ dir = 1
+ },
+/mob/living/simple_animal/hostile/asteroid/whitesands/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"
+ },
+/obj/effect/decal/cleanable/vomit,
+/turf/open/floor/plasteel,
+/area/ruin/whitesands/pubbycrash)
+"yK" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/grunge{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/whitesands/pubbycrash)
+"yU" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/gibspawner,
+/turf/open/floor/plasteel/tech,
+/area/ruin/whitesands/pubbycrash)
+"zi" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/directional/east,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/whitesands/pubbycrash)
+"zP" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/open/floor/plasteel/tech/techmaint,
+/area/ruin/whitesands/pubbycrash)
+"zX" = (
+/obj/structure/railing/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/obj/structure/reagent_dispensers/servingdish,
+/obj/item/kitchen/spoon/plastic{
+ pixel_x = -1
+ },
+/obj/item/kitchen/spoon/plastic{
+ pixel_x = 13
+ },
+/obj/item/kitchen/spoon/plastic{
+ pixel_x = 6
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/whitesands/pubbycrash)
+"Ak" = (
+/obj/structure/closet/crate/bin,
+/obj/item/trash/pistachios{
+ pixel_y = 5
+ },
+/obj/item/trash/energybar,
+/obj/item/trash/cheesie,
+/obj/item/trash/can/food,
+/obj/item/trash/sosjerky{
+ pixel_x = 5
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/dark,
+/area/ruin/whitesands/pubbycrash)
+"AH" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/oil{
+ icon_state = "floor6"
+ },
+/turf/open/floor/plasteel/tech,
+/area/ruin/whitesands/pubbycrash)
+"AJ" = (
+/turf/closed/wall/mineral/titanium,
+/area/ruin/whitesands/pubbycrash)
+"AO" = (
+/obj/machinery/light/directional/west,
+/obj/effect/turf_decal/industrial/warning,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/dark,
+/area/ruin/whitesands/pubbycrash)
+"Bd" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/dark,
+/area/ruin/whitesands/pubbycrash)
+"Bz" = (
+/obj/effect/turf_decal/box/corners{
+ dir = 8
+ },
+/obj/item/stack/ore/salvage/scrapmetal/five,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/engine,
+/area/ruin/whitesands/pubbycrash)
+"BD" = (
+/obj/effect/turf_decal/industrial/warning,
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/obj/structure/salvageable/machine,
+/turf/open/floor/plasteel/dark,
+/area/ruin/whitesands/pubbycrash)
+"BH" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/spline/fancy/opaque/black{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/vomit/old,
+/turf/open/floor/plasteel/dark,
+/area/ruin/whitesands/pubbycrash)
+"Cg" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/toolbox/mechanical{
+ pixel_x = -2;
+ pixel_y = -1
+ },
+/obj/item/stack/cable_coil,
+/obj/structure/sign/poster/contraband/red_rum{
+ pixel_x = 30
+ },
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/whitesands/pubbycrash)
+"Cs" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 5
+ },
+/turf/open/floor/plasteel/tech/techmaint,
+/area/ruin/whitesands/pubbycrash)
+"Ct" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/spline/fancy/opaque/black{
+ dir = 1
+ },
+/mob/living/simple_animal/hostile/asteroid/whitesands/survivor{
+ faction = list("saloon")
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/whitesands/pubbycrash)
+"Cw" = (
+/obj/item/stack/ore/salvage/scraptitanium,
+/turf/open/floor/plating/asteroid/whitesands/lit,
+/area/overmap_encounter/planetoid/sand)
+"Dg" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/obj/machinery/airalarm/directional/east,
+/turf/open/floor/plasteel/tech/techmaint,
+/area/ruin/whitesands/pubbycrash)
+"Di" = (
+/obj/structure/railing/corner,
+/turf/closed/mineral/random/whitesands,
+/area/overmap_encounter/planetoid/cave/explored)
+"Dn" = (
+/obj/structure/railing,
+/obj/structure/salvageable/computer{
+ dir = 8
+ },
+/obj/item/stack/ore/salvage/scrapgold,
+/turf/open/floor/plasteel/tech,
+/area/ruin/whitesands/pubbycrash)
+"Dx" = (
+/obj/effect/spawner/structure/window/shuttle,
+/obj/machinery/door/poddoor{
+ id = "whiteship_windows"
+ },
+/turf/open/floor/plating,
+/area/ruin/whitesands/pubbycrash)
+"DB" = (
+/obj/structure/table/reinforced,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/salvageable/machine,
+/turf/open/floor/plastic,
+/area/ruin/whitesands/pubbycrash)
+"DQ" = (
+/obj/effect/turf_decal/spline/fancy/opaque/black,
+/obj/item/stack/ore/salvage/scraptitanium,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/dark,
+/area/ruin/whitesands/pubbycrash)
+"DY" = (
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/spline/fancy/opaque/black{
+ dir = 6
+ },
+/obj/structure/salvageable/machine,
+/turf/open/floor/plasteel/tech,
+/area/ruin/whitesands/pubbycrash)
+"Ea" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/patterned/grid,
+/area/ruin/whitesands/pubbycrash)
+"Eb" = (
+/obj/structure/frame/machine,
+/obj/item/circuitboard/machine/shuttle/engine/plasma,
+/obj/item/stack/cable_coil/cut/red,
+/turf/open/floor/plating,
+/area/ruin/whitesands/pubbycrash)
+"Eh" = (
+/obj/machinery/door/airlock/public/glass,
+/turf/open/floor/plasteel,
+/area/ruin/whitesands/pubbycrash)
+"Em" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/ash{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/lighter/enigma,
+/turf/open/floor/plating{
+ icon_state = "panelscorched";
+ initial_gas_mix = "ws_atmos"
+ },
+/area/ruin/whitesands/pubbycrash)
+"Et" = (
+/obj/effect/decal/cleanable/oil{
+ icon_state = "floor6"
+ },
+/obj/effect/turf_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/ntspaceworks_small{
+ dir = 4
+ },
+/turf/open/floor/plasteel/tech,
+/area/ruin/whitesands/pubbycrash)
+"Ew" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/structure/sign/poster/official/random{
+ pixel_y = -32
+ },
+/obj/effect/turf_decal/industrial/warning{
+ dir = 10
+ },
+/turf/open/floor/plasteel/tech/techmaint,
+/area/ruin/whitesands/pubbycrash)
+"EG" = (
+/obj/machinery/door/airlock/hatch{
+ welded = 1
+ },
+/turf/template_noop,
+/area/ruin/whitesands/pubbycrash)
+"ET" = (
+/obj/effect/turf_decal/industrial/warning{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/light/directional/west,
+/mob/living/simple_animal/hostile/asteroid/whitesands/survivor{
+ dir = 1;
+ faction = list("saloon")
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/whitesands/pubbycrash)
+"Fc" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/window/northleft{
+ dir = 4;
+ name = "Engine Access"
+ },
+/obj/structure/frame/machine,
+/obj/item/circuitboard/machine/shuttle/heater,
+/obj/item/stack/cable_coil/cut/red,
+/turf/open/floor/plating,
+/area/ruin/whitesands/pubbycrash)
+"Fn" = (
+/obj/structure/railing,
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/stairs{
+ dir = 4
+ },
+/area/ruin/whitesands/pubbycrash)
+"Fq" = (
+/turf/open/floor/plating{
+ icon_state = "platingdmg1";
+ initial_gas_mix = "ws_atmos"
+ },
+/area/ruin/whitesands/pubbycrash)
+"FP" = (
+/obj/effect/turf_decal/box,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/effect/turf_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
+ },
+/obj/structure/salvageable/machine,
+/turf/open/floor/plasteel,
+/area/ruin/whitesands/pubbycrash)
+"FY" = (
+/obj/structure/railing/corner{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 5
+ },
+/obj/structure/salvageable/machine,
+/turf/open/floor/plasteel/dark,
+/area/ruin/whitesands/pubbycrash)
+"Ga" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/turf/open/floor/plasteel/dark,
+/area/ruin/whitesands/pubbycrash)
+"Gi" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/door/airlock/highsecurity,
+/turf/open/floor/plasteel/dark,
+/area/ruin/whitesands/pubbycrash)
+"Gl" = (
+/turf/template_noop,
+/area/template_noop)
+"GA" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/ruin/whitesands/pubbycrash)
+"GF" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/window/northright{
+ dir = 4;
+ name = "Engine Access"
+ },
+/obj/structure/frame/machine,
+/obj/item/circuitboard/machine/shuttle/heater,
+/obj/item/stack/cable_coil/cut/red,
+/obj/item/stack/ore/salvage/scrapplasma/five,
+/turf/open/floor/plating,
+/area/ruin/whitesands/pubbycrash)
+"GK" = (
+/obj/structure/closet/wall/blue{
+ dir = 1;
+ name = "Captain's locker";
+ pixel_y = -28
+ },
+/obj/item/clothing/suit/space/hardsuit/mining/heavy,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/ash/large,
+/turf/open/floor/plating{
+ icon_state = "panelscorched";
+ initial_gas_mix = "ws_atmos"
+ },
+/area/ruin/whitesands/pubbycrash)
+"Ha" = (
+/obj/structure/table,
+/obj/machinery/cell_charger,
+/obj/effect/turf_decal/industrial/warning,
+/turf/open/floor/plasteel/tech,
+/area/ruin/whitesands/pubbycrash)
+"Hb" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/industrial/outline/yellow,
+/obj/structure/salvageable/machine,
+/turf/open/floor/plasteel/tech,
+/area/ruin/whitesands/pubbycrash)
+"Ho" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/machinery/light/directional/east,
+/obj/effect/gibspawner,
+/obj/item/stack/ore/salvage/scrapmetal/five,
+/turf/open/floor/plasteel/tech/techmaint,
+/area/ruin/whitesands/pubbycrash)
+"Hq" = (
+/obj/item/stack/cable_coil/cut/red,
+/obj/item/stack/ore/salvage/scrapgold,
+/obj/item/stack/ore/salvage/scrapgold,
+/obj/item/stack/ore/salvage/scrapmetal/five,
+/turf/open/floor/plating,
+/area/ruin/whitesands/pubbycrash)
+"HQ" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 4
+ },
+/obj/structure/railing/corner,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/light/small/directional/south,
+/obj/effect/decal/cleanable/garbage,
+/turf/open/floor/plasteel/tech,
+/area/ruin/whitesands/pubbycrash)
+"If" = (
+/turf/open/floor/plating{
+ icon_state = "panelscorched";
+ initial_gas_mix = "ws_atmos"
+ },
+/area/ruin/whitesands/pubbycrash)
+"Ig" = (
+/obj/effect/turf_decal/industrial/warning{
+ dir = 10
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
+/obj/structure/salvageable/machine,
+/turf/open/floor/plasteel/dark,
+/area/ruin/whitesands/pubbycrash)
+"Ik" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plastic,
+/area/ruin/whitesands/pubbycrash)
+"In" = (
+/obj/structure/railing,
+/turf/closed/mineral/random/whitesands,
+/area/overmap_encounter/planetoid/cave/explored)
+"IC" = (
+/obj/item/stack/ore/salvage/scrapmetal/five,
+/turf/open/floor/plating/asteroid/whitesands/lit,
+/area/overmap_encounter/planetoid/sand)
+"IQ" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/spline/fancy/opaque/black,
+/turf/open/floor/plasteel/dark,
+/area/ruin/whitesands/pubbycrash)
+"Ji" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/ruin/whitesands/pubbycrash)
+"Jz" = (
+/obj/item/stack/ore/salvage/scrapmetal/five,
+/obj/item/stack/ore/salvage/scraptitanium,
+/turf/open/floor/plating/asteroid/whitesands/lit,
+/area/overmap_encounter/planetoid/sand)
+"JI" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/spline/fancy/opaque/black,
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/whitesands/pubbycrash)
+"Kt" = (
+/obj/machinery/door/airlock/external/glass,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/dark,
+/area/ruin/whitesands/pubbycrash)
+"Ky" = (
+/obj/machinery/door/airlock/external{
+ dir = 4
+ },
+/obj/effect/turf_decal/industrial/hatch/yellow,
+/obj/machinery/atmospherics/pipe/layer_manifold{
+ dir = 4
+ },
+/turf/open/floor/plasteel/tech/grid,
+/area/ruin/whitesands/pubbycrash)
+"KB" = (
+/obj/structure/salvageable/computer,
+/obj/item/stack/ore/salvage/scrapgold,
+/turf/open/floor/plasteel/tech,
+/area/ruin/whitesands/pubbycrash)
+"KI" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/decal/cleanable/plasma,
+/obj/effect/turf_decal/spline/fancy/opaque/black,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/dark,
+/area/ruin/whitesands/pubbycrash)
+"KO" = (
+/obj/machinery/power/apc/auto_name/directional/east{
+ start_charge = 10
+ },
+/obj/structure/cable,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/tech/techmaint,
+/area/ruin/whitesands/pubbycrash)
+"KS" = (
+/obj/effect/turf_decal/box,
+/obj/structure/table/reinforced,
+/obj/item/storage/belt/utility,
+/obj/item/storage/belt/utility,
+/obj/item/multitool,
+/obj/structure/railing,
+/obj/effect/turf_decal/industrial/warning,
+/turf/open/floor/plasteel,
+/area/ruin/whitesands/pubbycrash)
+"KT" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/chair/office/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/grimy,
+/area/ruin/whitesands/pubbycrash)
+"Lj" = (
+/obj/machinery/door/airlock/glass,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/dark,
+/area/ruin/whitesands/pubbycrash)
+"Lm" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/patterned/grid,
+/area/ruin/whitesands/pubbycrash)
+"Ls" = (
+/obj/effect/turf_decal/industrial/outline/yellow,
+/obj/effect/turf_decal/siding/brown,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/suit_storage_unit/open,
+/turf/open/floor/plasteel/tech/techmaint,
+/area/ruin/whitesands/pubbycrash)
+"LM" = (
+/turf/closed/mineral/random/whitesands,
+/area/ruin/whitesands/pubbycrash)
+"LU" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/turf_decal/number/nine{
+ dir = 4
+ },
+/obj/item/stock_parts/cell/hyper,
+/turf/open/floor/plasteel/tech,
+/area/ruin/whitesands/pubbycrash)
+"LW" = (
+/obj/effect/spawner/structure/window/shuttle,
+/obj/machinery/door/poddoor{
+ dir = 4;
+ id = "whiteship_windows"
+ },
+/turf/open/floor/plating,
+/area/ruin/whitesands/pubbycrash)
+"Mi" = (
+/obj/structure/sign/number/two,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/stack/ore/salvage/scraptitanium,
+/obj/effect/gibspawner,
+/turf/open/floor/engine,
+/area/ruin/whitesands/pubbycrash)
+"Ml" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/window/northright{
+ dir = 4;
+ name = "Engine Access"
+ },
+/obj/structure/frame/machine,
+/obj/item/stack/cable_coil/cut/red,
+/obj/item/circuitboard/machine/shuttle/smes,
+/turf/open/floor/plating,
+/area/ruin/whitesands/pubbycrash)
+"Mr" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/salvageable/computer{
+ dir = 8
+ },
+/turf/open/floor/plasteel/tech,
+/area/ruin/whitesands/pubbycrash)
+"NI" = (
+/obj/machinery/holopad,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/grimy,
+/area/ruin/whitesands/pubbycrash)
+"Og" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/recharger,
+/obj/structure/railing{
+ dir = 10;
+ layer = 4.1
+ },
+/obj/effect/turf_decal/spline/fancy/opaque/black,
+/obj/item/stack/ore/salvage/scrapgold,
+/turf/open/floor/plasteel/tech,
+/area/ruin/whitesands/pubbycrash)
+"Oz" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/ash{
+ pixel_x = 2;
+ pixel_y = -2
+ },
+/obj/effect/decal/cleanable/ash{
+ pixel_y = -2;
+ pixel_x = 5
+ },
+/turf/open/floor/plating{
+ icon_state = "panelscorched";
+ initial_gas_mix = "ws_atmos"
+ },
+/area/ruin/whitesands/pubbycrash)
+"Pr" = (
+/obj/structure/table,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/industrial/warning/corner,
+/obj/effect/spawner/lootdrop/maintenance/two,
+/turf/open/floor/plasteel/tech,
+/area/ruin/whitesands/pubbycrash)
+"Pu" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/ruin/whitesands/pubbycrash)
+"PA" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/grid,
+/area/ruin/whitesands/pubbycrash)
+"PI" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/open/floor/plasteel/stairs{
+ dir = 4
+ },
+/area/ruin/whitesands/pubbycrash)
+"PK" = (
+/obj/effect/gibspawner,
+/turf/open/floor/plating,
+/area/ruin/whitesands/pubbycrash)
+"PY" = (
+/obj/effect/decal/cleanable/generic,
+/obj/structure/chair/office/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/grimy,
+/area/ruin/whitesands/pubbycrash)
+"PZ" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "engine fuel pump"
+ },
+/obj/machinery/light/small/directional/north,
+/obj/effect/spawner/lootdrop/maintenance/two,
+/obj/item/stack/sheet/mineral/wood/fifty,
+/obj/structure/closet/crate,
+/turf/open/floor/plasteel/tech,
+/area/ruin/whitesands/pubbycrash)
+"Qb" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
+/obj/effect/decal/cleanable/vomit/old,
+/obj/effect/decal/cleanable/vomit/old,
+/obj/item/stack/ore/salvage/scrapmetal,
+/obj/effect/mob_spawn/human/corpse/nanotrasenassaultsoldier,
+/obj/effect/gibspawner,
+/turf/open/floor/plasteel/tech,
+/area/ruin/whitesands/pubbycrash)
+"Qo" = (
+/obj/effect/decal/fakelattice{
+ icon_state = "lattice-9"
+ },
+/turf/open/floor/plating/asteroid/whitesands/lit,
+/area/overmap_encounter/planetoid/sand)
+"Qu" = (
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/structure/railing,
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/open/floor/plasteel/stairs{
+ dir = 4
+ },
+/area/ruin/whitesands/pubbycrash)
+"Qw" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/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{
+ dir = 4
+ },
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/turf_decal/number/seven{
+ dir = 4
+ },
+/turf/open/floor/plasteel/tech,
+/area/ruin/whitesands/pubbycrash)
+"QD" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/turf/open/floor/plasteel/patterned/grid,
+/area/ruin/whitesands/pubbycrash)
+"QI" = (
+/obj/machinery/power/terminal{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/machinery/portable_atmospherics/canister/toxins,
+/turf/open/floor/plasteel/tech,
+/area/ruin/whitesands/pubbycrash)
+"QR" = (
+/obj/structure/extinguisher_cabinet/directional/north,
+/obj/machinery/camera/autoname{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 5
+ },
+/turf/open/floor/plasteel/grimy,
+/area/ruin/whitesands/pubbycrash)
+"RC" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/effect/turf_decal/industrial/outline/yellow,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/airalarm/directional/north,
+/obj/machinery/suit_storage_unit/open,
+/turf/open/floor/plasteel/dark,
+/area/ruin/whitesands/pubbycrash)
+"RL" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/wrapping,
+/obj/effect/decal/cleanable/plastic,
+/turf/open/floor/plasteel/dark,
+/area/ruin/whitesands/pubbycrash)
+"RT" = (
+/turf/closed/mineral/random/whitesands,
+/area/overmap_encounter/planetoid/cave/explored)
+"Sy" = (
+/obj/effect/spawner/lootdrop/maintenance/two,
+/obj/item/stack/ore/salvage/scraptitanium,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/engine,
+/area/ruin/whitesands/pubbycrash)
+"SO" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/binary/dp_vent_pump{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/gibspawner,
+/turf/open/floor/plasteel/tech/grid,
+/area/ruin/whitesands/pubbycrash)
+"SU" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/reagent_dispensers/fueltank,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/tech,
+/area/ruin/whitesands/pubbycrash)
+"Tg" = (
+/obj/structure/railing,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/vomit/old,
+/obj/effect/mob_spawn/human/corpse/damaged/whitesands/survivor,
+/turf/open/floor/plastic,
+/area/ruin/whitesands/pubbycrash)
+"TB" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/whitesands/pubbycrash)
+"TF" = (
+/obj/structure/sign/poster/official/random{
+ pixel_x = 32
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/ash/large,
+/turf/open/floor/plating{
+ icon_state = "panelscorched";
+ initial_gas_mix = "ws_atmos"
+ },
+/area/ruin/whitesands/pubbycrash)
+"Uo" = (
+/obj/effect/turf_decal/spline/fancy/opaque/black,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/decal/cleanable/vomit/old,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/mob_spawn/human/corpse/nanotrasensoldier,
+/turf/open/floor/plasteel/dark,
+/area/ruin/whitesands/pubbycrash)
+"Us" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/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{
+ dir = 1;
+ faction = list("saloon")
+ },
+/obj/effect/mob_spawn/human/corpse/nanotrasensoldier,
+/turf/open/floor/plasteel/dark,
+/area/ruin/whitesands/pubbycrash)
+"Uy" = (
+/obj/machinery/door/airlock/hatch{
+ welded = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/firedoor/border_only{
+ dir = 1
+ },
+/obj/machinery/door/firedoor/border_only,
+/turf/open/floor/pod,
+/area/ruin/whitesands/pubbycrash)
+"Vj" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/on/layer4,
+/turf/open/floor/engine/hull,
+/area/ruin/whitesands/pubbycrash)
+"Vt" = (
+/turf/open/floor/plating/asteroid/whitesands/lit,
+/area/overmap_encounter/planetoid/sand)
+"VG" = (
+/obj/structure/sign/number/two,
+/obj/item/stack/ore/salvage/scrapmetal,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/engine,
+/area/ruin/whitesands/pubbycrash)
+"VK" = (
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/effect/turf_decal/industrial/outline/orange,
+/obj/machinery/portable_atmospherics/canister/toxins,
+/obj/machinery/atmospherics/components/unary/portables_connector/visible,
+/turf/open/floor/plasteel/tech/techmaint,
+/area/ruin/whitesands/pubbycrash)
+"VP" = (
+/obj/effect/decal/fakelattice{
+ icon_state = "lattice-2"
+ },
+/turf/open/floor/plating/asteroid/whitesands/lit,
+/area/overmap_encounter/planetoid/sand)
+"Wg" = (
+/obj/structure/frame/machine,
+/obj/item/stack/cable_coil/cut/red,
+/obj/item/stack/ore/salvage/scrapgold,
+/obj/item/stack/ore/salvage/scrapgold,
+/turf/open/floor/plating,
+/area/ruin/whitesands/pubbycrash)
+"Wo" = (
+/obj/structure/bed/dogbed{
+ anchored = 1;
+ name = "citrus's bed"
+ },
+/obj/effect/turf_decal/spline/fancy/opaque/black{
+ dir = 9
+ },
+/obj/machinery/light/directional/east,
+/turf/open/floor/pod,
+/area/ruin/whitesands/pubbycrash)
+"WD" = (
+/obj/effect/turf_decal/industrial/stand_clear,
+/obj/effect/turf_decal/industrial/warning,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/engine,
+/area/ruin/whitesands/pubbycrash)
+"Xm" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/ash,
+/turf/open/floor/plating{
+ icon_state = "panelscorched";
+ initial_gas_mix = "ws_atmos"
+ },
+/area/ruin/whitesands/pubbycrash)
+"Xn" = (
+/obj/effect/turf_decal/industrial/caution,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing/corner{
+ dir = 8
+ },
+/obj/structure/catwalk,
+/obj/machinery/button/door{
+ id = "whiteshipubbyEngines";
+ name = "Engine Lockdown Control";
+ pixel_x = -25;
+ dir = 4
+ },
+/obj/structure/salvageable/destructive_analyzer,
+/turf/open/floor/plating,
+/area/ruin/whitesands/pubbycrash)
+"XA" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/item/kirbyplants/random,
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/machinery/light/directional/south,
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/ruin/whitesands/pubbycrash)
+"XK" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/spline/fancy/opaque/black{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/plasteel/dark,
+/area/ruin/whitesands/pubbycrash)
+"Yt" = (
+/obj/machinery/newscaster/directional/west,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/ash/large,
+/turf/open/floor/plating{
+ icon_state = "panelscorched";
+ initial_gas_mix = "ws_atmos"
+ },
+/area/ruin/whitesands/pubbycrash)
+"Yu" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/machinery/light/directional/east,
+/obj/effect/turf_decal/number/four{
+ dir = 4
+ },
+/turf/open/floor/plasteel/tech,
+/area/ruin/whitesands/pubbycrash)
+"YC" = (
+/obj/structure/closet/wall/white{
+ dir = 1;
+ name = "Medicine storage";
+ pixel_y = -30
+ },
+/obj/item/storage/firstaid/ancient{
+ pixel_x = 6;
+ pixel_y = -5
+ },
+/obj/item/storage/firstaid/medical,
+/obj/structure/sign/poster/official/random{
+ pixel_x = 32
+ },
+/turf/open/floor/pod,
+/area/ruin/whitesands/pubbycrash)
+"YL" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/effect/turf_decal/industrial/outline/grey,
+/obj/machinery/atmospherics/components/unary/portables_connector/visible,
+/obj/machinery/portable_atmospherics/canister/air,
+/turf/open/floor/plasteel/tech/techmaint,
+/area/ruin/whitesands/pubbycrash)
+"Zg" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/structure/catwalk,
+/obj/effect/turf_decal/spline/fancy/opaque/black{
+ dir = 8
+ },
+/obj/structure/salvageable/protolathe,
+/turf/open/floor/plating,
+/area/ruin/whitesands/pubbycrash)
+"Zj" = (
+/turf/open/floor/engine/hull,
+/area/ruin/whitesands/pubbycrash)
+"Zk" = (
+/obj/structure/railing/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/brown{
+ dir = 1
+ },
+/obj/structure/closet/wall{
+ icon_door = "orange_wall";
+ name = "Mining equipment";
+ pixel_y = 28
+ },
+/obj/item/clothing/glasses/meson,
+/obj/item/clothing/glasses/meson,
+/obj/item/storage/bag/ore,
+/obj/item/storage/bag/ore,
+/obj/item/clothing/suit/hazardvest,
+/obj/item/clothing/suit/hazardvest,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/effect/decal/cleanable/cobweb,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/tech/techmaint,
+/area/ruin/whitesands/pubbycrash)
+"Zp" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/brown{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/tech/techmaint,
+/area/ruin/whitesands/pubbycrash)
+
+(1,1,1) = {"
+Gl
+Gl
+Gl
+Gl
+Gl
+Gl
+RT
+RT
+RT
+RT
+RT
+RT
+RT
+RT
+RT
+Gl
+Gl
+Gl
+Gl
+Gl
+Gl
+Gl
+Gl
+Gl
+Gl
+"}
+(2,1,1) = {"
+Gl
+Gl
+RT
+RT
+RT
+RT
+RT
+RT
+RT
+RT
+RT
+RT
+RT
+RT
+RT
+RT
+RT
+RT
+RT
+Gl
+Gl
+Gl
+Gl
+Gl
+Gl
+"}
+(3,1,1) = {"
+Gl
+RT
+RT
+RT
+RT
+RT
+RT
+RT
+RT
+RT
+RT
+RT
+RT
+RT
+RT
+RT
+RT
+RT
+RT
+RT
+Gl
+Gl
+Gl
+Gl
+Gl
+"}
+(4,1,1) = {"
+Gl
+RT
+RT
+RT
+RT
+cN
+dW
+Eb
+LM
+cN
+Ky
+cN
+cN
+Hq
+Wg
+cN
+RT
+RT
+RT
+RT
+RT
+Vt
+Gl
+Gl
+Gl
+"}
+(5,1,1) = {"
+Gl
+RT
+RT
+RT
+RT
+cN
+qz
+GF
+cN
+cN
+SO
+oo
+cN
+Fc
+Ml
+cN
+RT
+RT
+RT
+RT
+RT
+Vt
+Vt
+Gl
+Gl
+"}
+(6,1,1) = {"
+Gl
+Gl
+RT
+RT
+RT
+cN
+QI
+dm
+cN
+cN
+mW
+cN
+Ji
+PZ
+fO
+cN
+RT
+RT
+RT
+RT
+Vt
+Vt
+Vt
+Gl
+Gl
+"}
+(7,1,1) = {"
+Gl
+Gl
+RT
+RT
+RT
+cN
+SU
+HQ
+cN
+xA
+pu
+Et
+jG
+yU
+oS
+Dx
+RT
+RT
+RT
+RT
+Vt
+Vt
+Vt
+Gl
+Gl
+"}
+(8,1,1) = {"
+Gl
+Gl
+RT
+RT
+RT
+cN
+rW
+sV
+cN
+Pr
+Qw
+LU
+Yu
+kP
+AH
+Dx
+RT
+RT
+RT
+RT
+Vt
+Vt
+Vt
+Vt
+Gl
+"}
+(9,1,1) = {"
+Gl
+Gl
+RT
+RT
+RT
+cN
+cN
+Qu
+cN
+Ha
+Hb
+ln
+cN
+DY
+PI
+cN
+RT
+RT
+RT
+RT
+Vt
+Vt
+Vt
+Vt
+Gl
+"}
+(10,1,1) = {"
+Gl
+RT
+RT
+RT
+Vj
+GA
+YL
+iW
+Xn
+Zg
+pe
+wV
+so
+lB
+re
+cN
+Zj
+RT
+RT
+Vt
+Vt
+Vt
+Vt
+Vt
+Vt
+"}
+(11,1,1) = {"
+RT
+RT
+RT
+RT
+AJ
+cN
+VK
+ho
+Ho
+Dg
+Cs
+zP
+KO
+xa
+Ew
+cN
+AJ
+RT
+RT
+Vt
+Vt
+Vt
+Vt
+Vt
+Vt
+"}
+(12,1,1) = {"
+RT
+RT
+RT
+RT
+sA
+cN
+LW
+LW
+cN
+cN
+gG
+cN
+cN
+LW
+LW
+cN
+sA
+RT
+RT
+Vt
+Vt
+Vt
+Vt
+Vt
+Vt
+"}
+(13,1,1) = {"
+RT
+RT
+RT
+RT
+RT
+RT
+aR
+Sy
+ET
+cp
+PA
+fR
+AO
+jt
+Mi
+ek
+RT
+RT
+RT
+Vt
+Vt
+Vt
+Vt
+Vt
+Vt
+"}
+(14,1,1) = {"
+RT
+RT
+RT
+RT
+RT
+RT
+RT
+Bz
+pT
+JI
+Lm
+BH
+KS
+up
+RT
+RT
+RT
+RT
+RT
+Vt
+Vt
+Vt
+Vt
+Vt
+Vt
+"}
+(15,1,1) = {"
+Gl
+RT
+RT
+RT
+RT
+RT
+gL
+vc
+bW
+DQ
+gu
+Ct
+gy
+fX
+vc
+RT
+RT
+RT
+RT
+bZ
+Vt
+Vt
+Vt
+Vt
+Gl
+"}
+(16,1,1) = {"
+Gl
+Gl
+RT
+RT
+RT
+pR
+eq
+vL
+FP
+KI
+QD
+vw
+lK
+RT
+VG
+WD
+RT
+RT
+RT
+bZ
+Vt
+Vt
+Vt
+Vt
+Gl
+"}
+(17,1,1) = {"
+Gl
+Gl
+RT
+RT
+sA
+cN
+cN
+RC
+zX
+Uo
+nQ
+XK
+FY
+nP
+cN
+cN
+sA
+RT
+RT
+bZ
+Vt
+Vt
+Vt
+Vt
+Gl
+"}
+(18,1,1) = {"
+Gl
+Gl
+RT
+RT
+RT
+ck
+Kt
+Bd
+fA
+IQ
+Ea
+wL
+zi
+oq
+hh
+ck
+ba
+Cw
+Vt
+Vt
+Vt
+Vt
+Vt
+Gl
+Gl
+"}
+(19,1,1) = {"
+Gl
+Gl
+RT
+RT
+RT
+cN
+cN
+cN
+cN
+cN
+yK
+cN
+cN
+cN
+cN
+cN
+cN
+Vt
+Cw
+Vt
+Vt
+Vt
+Vt
+Gl
+Gl
+"}
+(20,1,1) = {"
+Gl
+Gl
+RT
+RT
+RT
+pG
+Di
+ff
+by
+Uy
+co
+ly
+PK
+jF
+mH
+Vt
+IC
+Vt
+Vt
+Cw
+VP
+gx
+Vt
+Gl
+Gl
+"}
+(21,1,1) = {"
+Gl
+Gl
+RT
+RT
+RT
+RT
+In
+Wo
+YC
+cN
+RL
+cN
+Fq
+If
+Vt
+Vt
+kp
+Cw
+Vt
+VP
+nq
+yt
+RT
+Gl
+Gl
+"}
+(22,1,1) = {"
+Gl
+RT
+RT
+RT
+cN
+cN
+cN
+cN
+cN
+cN
+TB
+cN
+mH
+IC
+RT
+Vt
+Vt
+Vt
+cN
+cN
+cN
+cN
+RT
+Gl
+Gl
+"}
+(23,1,1) = {"
+Gl
+RT
+RT
+RT
+iw
+vX
+rZ
+QR
+cN
+Ak
+xy
+Pu
+Cw
+Vt
+RT
+VP
+gx
+xc
+cN
+Zk
+Ls
+cN
+RT
+RT
+Gl
+"}
+(24,1,1) = {"
+Gl
+Gl
+RT
+RT
+iw
+jA
+kA
+NI
+Lj
+Us
+sC
+cN
+Vt
+RT
+RT
+IC
+lR
+nq
+cN
+Zp
+bS
+cN
+RT
+RT
+Gl
+"}
+(25,1,1) = {"
+Gl
+Gl
+RT
+RT
+iw
+PY
+KT
+ct
+cN
+Ig
+nG
+cN
+Vt
+RT
+Vt
+Vt
+cN
+cN
+cN
+Fn
+wn
+cN
+RT
+RT
+Gl
+"}
+(26,1,1) = {"
+Gl
+Gl
+RT
+RT
+cN
+yj
+Cg
+fk
+cN
+BD
+Ga
+cN
+ul
+Cw
+Cw
+sd
+Eh
+hA
+yx
+pE
+XA
+cN
+RT
+RT
+RT
+"}
+(27,1,1) = {"
+Gl
+Gl
+RT
+RT
+cN
+cN
+cN
+cN
+cN
+cN
+Gi
+cN
+Jz
+kp
+Vt
+Vt
+cN
+gg
+Tg
+sD
+rT
+iw
+RT
+RT
+RT
+"}
+(28,1,1) = {"
+Gl
+Gl
+RT
+RT
+RT
+RT
+cN
+kM
+ss
+Og
+kU
+If
+yt
+Vt
+IC
+Vt
+cN
+as
+Ik
+vO
+Xm
+iw
+RT
+RT
+RT
+"}
+(29,1,1) = {"
+Gl
+Gl
+Gl
+RT
+RT
+RT
+cN
+KB
+Qb
+hz
+cx
+uh
+oO
+mp
+gx
+Vt
+cN
+DB
+di
+TF
+uB
+iw
+RT
+RT
+RT
+"}
+(30,1,1) = {"
+Gl
+Gl
+Gl
+RT
+RT
+RT
+RT
+RT
+Mr
+Dn
+lA
+If
+Qo
+ym
+gs
+Cw
+cN
+cN
+cN
+cN
+cN
+cN
+RT
+RT
+RT
+"}
+(31,1,1) = {"
+Gl
+Gl
+Gl
+RT
+RT
+RT
+RT
+RT
+RT
+RT
+RT
+cN
+IC
+Vt
+Vt
+Vt
+cN
+Yt
+mU
+cN
+cN
+AJ
+RT
+RT
+Gl
+"}
+(32,1,1) = {"
+Gl
+Gl
+RT
+RT
+RT
+RT
+RT
+RT
+RT
+RT
+RT
+RT
+Vt
+Cw
+VP
+nq
+EG
+Em
+GK
+cN
+AJ
+RT
+RT
+RT
+Gl
+"}
+(33,1,1) = {"
+Gl
+Gl
+RT
+RT
+RT
+RT
+RT
+RT
+RT
+Vt
+Vt
+Vt
+kp
+IC
+Vt
+qN
+cN
+Oz
+cN
+AJ
+RT
+RT
+RT
+RT
+Gl
+"}
+(34,1,1) = {"
+Gl
+Gl
+Gl
+RT
+RT
+RT
+Vt
+Vt
+Vt
+Vt
+Jz
+Vt
+Vt
+Vt
+Vt
+RT
+RT
+RT
+RT
+RT
+RT
+RT
+Gl
+Gl
+Gl
+"}
+(35,1,1) = {"
+Gl
+Gl
+Gl
+Gl
+Gl
+Gl
+Gl
+Vt
+Vt
+Vt
+Vt
+Vt
+Vt
+Vt
+Gl
+RT
+RT
+RT
+RT
+RT
+RT
+Gl
+Gl
+Gl
+Gl
+"}
+(36,1,1) = {"
+Gl
+Gl
+Gl
+Gl
+Gl
+Gl
+Gl
+Gl
+Vt
+Vt
+Vt
+Vt
+Gl
+Gl
+Gl
+Gl
+RT
+RT
+RT
+Gl
+Gl
+Gl
+Gl
+Gl
+Gl
+"}
diff --git a/_maps/RandomRuins/SandRuins/whitesands_surface_youreinsane.dmm b/_maps/RandomRuins/SandRuins/whitesands_surface_youreinsane.dmm
deleted file mode 100644
index e8932e8b51ed..000000000000
--- a/_maps/RandomRuins/SandRuins/whitesands_surface_youreinsane.dmm
+++ /dev/null
@@ -1,320 +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{
- icon_state = "panelscorched";
- initial_gas_mix = "ws_atmos"
- },
-/area/ruin/unpowered)
-"c" = (
-/obj/effect/spawner/structure/window/plasma/reinforced,
-/turf/open/floor/plating{
- initial_gas_mix = "ws_atmos"
- },
-/area/ruin/unpowered)
-"f" = (
-/turf/open/floor/plating/asteroid/whitesands,
-/area/ruin/unpowered)
-"g" = (
-/obj/effect/turf_decal/industrial/outline/yellow{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/unpowered)
-"i" = (
-/obj/effect/decal/cleanable/greenglow,
-/obj/item/disk/plantgene,
-/turf/open/floor/plating{
- icon_state = "platingdmg2";
- initial_gas_mix = "ws_atmos"
- },
-/area/ruin/unpowered)
-"j" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 10
- },
-/turf/closed/wall/r_wall,
-/area/ruin/unpowered)
-"k" = (
-/obj/structure/window/plasma/reinforced,
-/obj/machinery/power/rad_collector/anchored,
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 10
- },
-/turf/open/floor/plating/asteroid/whitesands,
-/area/ruin/unpowered)
-"n" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- icon_state = "panelscorched";
- initial_gas_mix = "ws_atmos"
- },
-/area/ruin/unpowered)
-"r" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/engine,
-/area/ruin/unpowered)
-"s" = (
-/obj/effect/turf_decal/industrial/outline/yellow{
- dir = 1
- },
-/obj/machinery/portable_atmospherics/canister/nitrogen,
-/turf/open/floor/plasteel/dark,
-/area/ruin/unpowered)
-"t" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/turf/open/floor/engine,
-/area/ruin/unpowered)
-"u" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 9
- },
-/turf/closed/wall/r_wall,
-/area/ruin/unpowered)
-"w" = (
-/turf/closed/wall/r_wall,
-/area/ruin/unpowered)
-"x" = (
-/obj/effect/mob_spawn/human/engineer{
- gender = "female"
- },
-/obj/item/clothing/suit/radiation,
-/obj/item/clothing/head/radiation{
- pixel_x = -1;
- pixel_y = 9
- },
-/obj/item/geiger_counter,
-/turf/open/floor/engine,
-/area/ruin/unpowered)
-"y" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 5
- },
-/turf/closed/wall/r_wall,
-/area/ruin/unpowered)
-"z" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- initial_gas_mix = "ws_atmos"
- },
-/area/ruin/unpowered)
-"B" = (
-/obj/effect/turf_decal/industrial/hatch/yellow,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/dark,
-/area/ruin/unpowered)
-"C" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/engine,
-/area/ruin/unpowered)
-"E" = (
-/obj/effect/decal/cleanable/greenglow,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- initial_gas_mix = "ws_atmos"
- },
-/area/ruin/unpowered)
-"G" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 8
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg2";
- initial_gas_mix = "ws_atmos"
- },
-/area/ruin/unpowered)
-"H" = (
-/obj/structure/girder/displaced,
-/turf/open/floor/plating{
- initial_gas_mix = "ws_atmos"
- },
-/area/ruin/unpowered)
-"I" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/engine,
-/area/ruin/unpowered)
-"J" = (
-/obj/structure/window/plasma/reinforced{
- dir = 1
- },
-/obj/structure/frame/machine,
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 9
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg2";
- initial_gas_mix = "ws_atmos"
- },
-/area/ruin/unpowered)
-"L" = (
-/obj/structure/window/plasma/reinforced{
- dir = 1
- },
-/obj/machinery/power/rad_collector/anchored,
-/obj/machinery/atmospherics/pipe/manifold/general/visible,
-/turf/open/floor/plating{
- icon_state = "platingdmg1";
- initial_gas_mix = "ws_atmos"
- },
-/area/ruin/unpowered)
-"Q" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 6
- },
-/obj/structure/girder,
-/turf/open/floor/plating{
- initial_gas_mix = "ws_atmos"
- },
-/area/ruin/unpowered)
-"R" = (
-/obj/structure/window/plasma/reinforced,
-/obj/machinery/power/rad_collector/anchored,
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 1
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg2";
- initial_gas_mix = "ws_atmos"
- },
-/area/ruin/unpowered)
-"S" = (
-/turf/open/floor/plating{
- initial_gas_mix = "ws_atmos"
- },
-/area/ruin/unpowered)
-"T" = (
-/obj/structure/window/plasma/reinforced{
- dir = 1
- },
-/obj/structure/frame/machine,
-/obj/machinery/atmospherics/pipe/manifold/general/visible,
-/turf/open/floor/engine,
-/area/ruin/unpowered)
-"V" = (
-/turf/open/floor/plating{
- icon_state = "platingdmg1";
- initial_gas_mix = "ws_atmos"
- },
-/area/ruin/unpowered)
-"W" = (
-/obj/machinery/door/airlock/engineering/glass/critical{
- heat_proof = 1;
- name = "Supermatter Chamber";
- req_access_txt = "10";
- dir = 4
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg2";
- initial_gas_mix = "ws_atmos"
- },
-/area/ruin/unpowered)
-"X" = (
-/obj/structure/girder,
-/turf/open/floor/plating{
- initial_gas_mix = "ws_atmos"
- },
-/area/ruin/unpowered)
-"Y" = (
-/obj/machinery/door/airlock/engineering/glass/critical{
- heat_proof = 1;
- name = "Supermatter Chamber";
- req_access_txt = "10";
- dir = 4
- },
-/turf/open/floor/engine,
-/area/ruin/unpowered)
-"Z" = (
-/obj/structure/window/plasma/reinforced,
-/obj/structure/frame/machine,
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 1
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg1";
- initial_gas_mix = "ws_atmos"
- },
-/area/ruin/unpowered)
-
-(1,1,1) = {"
-a
-z
-X
-w
-W
-w
-H
-B
-a
-"}
-(2,1,1) = {"
-s
-z
-w
-z
-x
-G
-w
-g
-a
-"}
-(3,1,1) = {"
-w
-X
-Q
-u
-Y
-j
-y
-w
-w
-"}
-(4,1,1) = {"
-a
-V
-R
-I
-i
-r
-L
-f
-a
-"}
-(5,1,1) = {"
-a
-z
-Z
-I
-E
-r
-T
-n
-b
-"}
-(6,1,1) = {"
-S
-S
-k
-I
-C
-t
-J
-C
-a
-"}
-(7,1,1) = {"
-X
-w
-w
-w
-c
-w
-w
-X
-w
-"}
diff --git a/_maps/RandomRuins/SpaceRuins/Fast_Food.dmm b/_maps/RandomRuins/SpaceRuins/Fast_Food.dmm
index 3c98825f7924..5c04f6ced446 100644
--- a/_maps/RandomRuins/SpaceRuins/Fast_Food.dmm
+++ b/_maps/RandomRuins/SpaceRuins/Fast_Food.dmm
@@ -1163,7 +1163,6 @@
/area/ruin/space/has_grav/powered/macspace)
"cz" = (
/obj/structure/table,
-/obj/item/reagent_containers/food/snacks/kebab/tail,
/obj/structure/table/wood/fancy/blue,
/turf/open/floor/carpet,
/area/ruin/space/has_grav/powered/macspace)
diff --git a/_maps/RandomRuins/SpaceRuins/crashedship.dmm b/_maps/RandomRuins/SpaceRuins/crashedship.dmm
index 93b0dc996b77..fd062bcd87a4 100644
--- a/_maps/RandomRuins/SpaceRuins/crashedship.dmm
+++ b/_maps/RandomRuins/SpaceRuins/crashedship.dmm
@@ -132,7 +132,6 @@
/obj/structure/closet/crate/freezer,
/obj/item/organ/appendix,
/obj/item/reagent_containers/food/snacks/meat/slab,
-/obj/item/reagent_containers/food/snacks/meat/slab/human/mutant/golem,
/obj/effect/turf_decal/industrial/warning{
dir = 1
},
@@ -431,7 +430,6 @@
/obj/item/reagent_containers/food/snacks/hugemushroomslice,
/obj/item/organ/appendix,
/obj/item/reagent_containers/food/snacks/meat/slab,
-/obj/item/reagent_containers/food/snacks/meat/slab/human/mutant/golem/adamantine,
/obj/effect/turf_decal/industrial/warning{
dir = 2
},
diff --git a/_maps/RandomRuins/SpaceRuins/dangerous_research.dmm b/_maps/RandomRuins/SpaceRuins/dangerous_research.dmm
index 73c7dd734c00..f477717d9b81 100644
--- a/_maps/RandomRuins/SpaceRuins/dangerous_research.dmm
+++ b/_maps/RandomRuins/SpaceRuins/dangerous_research.dmm
@@ -82,7 +82,7 @@
dir = 1
},
/obj/effect/turf_decal/corner/opaque/grey,
-/obj/machinery/rnd/production/protolathe,
+/obj/machinery/rnd/production/techfab/department/medical,
/turf/open/floor/plasteel/dark,
/area/ruin/space/has_grav)
"cW" = (
@@ -1924,7 +1924,7 @@
/obj/effect/turf_decal/trimline/opaque/purple/line{
dir = 4
},
-/turf/open/space,
+/turf/open/floor/plating,
/area/ruin/space/has_grav)
"XX" = (
/obj/structure/window/reinforced{
diff --git a/_maps/RandomRuins/SpaceRuins/lab4071.dmm b/_maps/RandomRuins/SpaceRuins/lab4071.dmm
index 2f4c94d3c939..0e35f81af2f8 100644
--- a/_maps/RandomRuins/SpaceRuins/lab4071.dmm
+++ b/_maps/RandomRuins/SpaceRuins/lab4071.dmm
@@ -231,17 +231,6 @@
/turf/open/floor/plasteel/mono/white,
/area/ruin/space/has_grav/crazylab/crew)
"dO" = (
-/obj/effect/mob_spawn/human/syndicate/battlecruiser/assault{
- assignedrole = "Unlicensed Chemist";
- dir = 4;
- flavour_text = "Despite all the setbacks, you have finally found a place to practice your craft in relative peace, thanks to a shady deal with a criminal organization. You now work for them as a contract chemist, but your goal of profit leaves you plenty of options.";
- id_job = "Unlicensed Chemist";
- important_info = "Work together, use chemistry to turn a profit and help out the population of the Outer Rim.";
- mob_name = "unlicensed chemist";
- name = "Unlicensed Chemist";
- outfit = /datum/outfit/job/chemist/juniorchemist;
- short_desc = "You are a chemist in an illegal laboratory."
- },
/obj/machinery/button/door{
id = 64;
name = "Dorm Shutters";
@@ -254,34 +243,6 @@
/obj/structure/bookcase/random/reference,
/turf/open/floor/plasteel/grimy,
/area/ruin/space/has_grav/crazylab/crew)
-"eh" = (
-/obj/effect/mob_spawn/human/syndicate/battlecruiser/assault{
- assignedrole = "Unlicensed Chemist";
- dir = 4;
- flavour_text = "Despite all the setbacks, you have finally found a place to practice your craft in relative peace, thanks to a shady deal with a criminal organization. You now work for them as a contract chemist, but your goal of profit leaves you plenty of options.";
- id_job = "Unlicensed Chemist";
- important_info = "Work together, use chemistry to turn a profit and help out the population of the Outer Rim.";
- mob_name = "unlicensed chemist";
- name = "Unlicensed Chemist";
- outfit = /datum/outfit/job/chemist/juniorchemist;
- short_desc = "You are a chemist in an illegal laboratory."
- },
-/turf/open/floor/plasteel/grimy,
-/area/ruin/space/has_grav/crazylab/crew)
-"et" = (
-/obj/effect/mob_spawn/human/syndicate/battlecruiser/assault{
- assignedrole = "Unlicensed Chemist";
- dir = 8;
- flavour_text = "Despite all the setbacks, you have finally found a place to practice your craft in relative peace, thanks to a shady deal with a criminal organization. You now work for them as a contract chemist, but your goal of profit leaves you plenty of options.";
- id_job = "Unlicensed Chemist";
- important_info = "Work together, use chemistry to turn a profit and help out the population of the Outer Rim.";
- mob_name = "unlicensed chemist";
- name = "Unlicensed Chemist";
- outfit = /datum/outfit/job/chemist/juniorchemist;
- short_desc = "You are a chemist in an illegal laboratory."
- },
-/turf/open/floor/plasteel/grimy,
-/area/ruin/space/has_grav/crazylab/crew)
"eA" = (
/obj/structure/bookcase/random/nonfiction,
/turf/open/floor/plasteel/grimy,
@@ -570,17 +531,6 @@
/area/ruin/space/has_grav/crazylab/crew)
"jL" = (
/obj/machinery/light/directional/south,
-/obj/effect/mob_spawn/human/syndicate/battlecruiser/assault{
- assignedrole = "Unlicensed Chemist";
- dir = 4;
- flavour_text = "Despite all the setbacks, you have finally found a place to practice your craft in relative peace, thanks to a shady deal with a criminal organization. You now work for them as a contract chemist, but your goal of profit leaves you plenty of options.";
- id_job = "Unlicensed Chemist";
- important_info = "Work together, use chemistry to turn a profit and help out the population of the Outer Rim.";
- mob_name = "unlicensed chemist";
- name = "Unlicensed Chemist";
- outfit = /datum/outfit/job/chemist/juniorchemist;
- short_desc = "You are a chemist in an illegal laboratory."
- },
/turf/open/floor/plasteel/grimy,
/area/ruin/space/has_grav/crazylab/crew)
"jO" = (
@@ -4957,7 +4907,7 @@ GV
GV
ao
cq
-eh
+gP
gV
jG
lN
@@ -4995,7 +4945,7 @@ GV
GV
ao
cq
-et
+gP
hf
jO
lS
diff --git a/_maps/RandomRuins/SpaceRuins/mechtransport.dmm b/_maps/RandomRuins/SpaceRuins/mechtransport.dmm
deleted file mode 100644
index 43ec10644a73..000000000000
--- a/_maps/RandomRuins/SpaceRuins/mechtransport.dmm
+++ /dev/null
@@ -1,377 +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/wall/mineral/titanium/overspace,
-/area/ruin/space/has_grav/powered/mechtransport)
-"c" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/powered/mechtransport)
-"d" = (
-/turf/closed/wall/mineral/titanium,
-/area/ruin/space/has_grav/powered/mechtransport)
-"e" = (
-/obj/machinery/power/terminal,
-/turf/closed/wall/mineral/titanium/overspace,
-/area/ruin/space/has_grav/powered/mechtransport)
-"f" = (
-/obj/structure/closet/crate/secure/loot,
-/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/mineral/titanium/blue,
-/area/ruin/space/has_grav/powered/mechtransport)
-"g" = (
-/obj/structure/closet/crate/secure/loot,
-/turf/open/floor/mineral/titanium/blue,
-/area/ruin/space/has_grav/powered/mechtransport)
-"h" = (
-/obj/structure/table,
-/obj/machinery/button/door{
- id = "mechaship1";
- name = "Mecha Cargo Ship Doors"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/ruin/space/has_grav/powered/mechtransport)
-"i" = (
-/obj/structure/table,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/mineral/titanium/blue,
-/area/ruin/space/has_grav/powered/mechtransport)
-"j" = (
-/obj/machinery/computer/helm{
- dir = 8
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/ruin/space/has_grav/powered/mechtransport)
-"k" = (
-/obj/effect/decal/cleanable/vomit/old,
-/turf/open/floor/mineral/titanium/blue,
-/area/ruin/space/has_grav/powered/mechtransport)
-"l" = (
-/obj/effect/decal/remains/human,
-/turf/open/floor/mineral/titanium/blue,
-/area/ruin/space/has_grav/powered/mechtransport)
-"m" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/mineral/titanium/blue,
-/area/ruin/space/has_grav/powered/mechtransport)
-"n" = (
-/obj/structure/chair/office{
- dir = 1
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/ruin/space/has_grav/powered/mechtransport)
-"o" = (
-/obj/machinery/power/smes/shuttle/micro/precharged,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/closed/wall/mineral/titanium/overspace,
-/area/ruin/space/has_grav/powered/mechtransport)
-"p" = (
-/obj/machinery/door/airlock/hatch{
- name = "Cockpit";
- req_access_txt = "101"
- },
-/turf/open/floor/mineral/titanium,
-/area/ruin/space/has_grav/powered/mechtransport)
-"r" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/mineral/titanium/airless,
-/area/ruin/space/has_grav/powered/mechtransport)
-"s" = (
-/turf/open/floor/mineral/titanium/airless,
-/area/ruin/space/has_grav/powered/mechtransport)
-"t" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/mineral/titanium/airless,
-/area/ruin/space/has_grav/powered/mechtransport)
-"u" = (
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/turf/open/floor/mineral/titanium/airless,
-/area/ruin/space/has_grav/powered/mechtransport)
-"v" = (
-/obj/structure/mecha_wreckage/phazon,
-/turf/open/floor/mineral/titanium/yellow/airless,
-/area/ruin/space/has_grav/powered/mechtransport)
-"w" = (
-/turf/open/floor/mineral/titanium/yellow/airless,
-/area/ruin/space/has_grav/powered/mechtransport)
-"x" = (
-/obj/structure/mecha_wreckage/ripley/firefighter,
-/turf/open/floor/mineral/titanium/yellow/airless,
-/area/ruin/space/has_grav/powered/mechtransport)
-"y" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/mineral/titanium/yellow/airless,
-/area/ruin/space/has_grav/powered/mechtransport)
-"z" = (
-/obj/structure/mecha_wreckage/ripley,
-/turf/open/floor/mineral/titanium/yellow/airless,
-/area/ruin/space/has_grav/powered/mechtransport)
-"A" = (
-/obj/mecha/working/ripley{
- ruin_mecha = 1
- },
-/turf/open/floor/mineral/titanium/yellow/airless,
-/area/ruin/space/has_grav/powered/mechtransport)
-"B" = (
-/obj/effect/decal/cleanable/oil,
-/turf/open/floor/mineral/titanium/yellow/airless,
-/area/ruin/space/has_grav/powered/mechtransport)
-"C" = (
-/obj/effect/decal/cleanable/robot_debris/up,
-/turf/open/floor/mineral/titanium/yellow/airless,
-/area/ruin/space/has_grav/powered/mechtransport)
-"D" = (
-/obj/machinery/door/poddoor{
- id = "mechaship1";
- name = "Cargo Bay Door";
- dir = 4
- },
-/turf/open/floor/mineral/titanium/yellow/airless,
-/area/ruin/space/has_grav/powered/mechtransport)
-"E" = (
-/obj/effect/decal/cleanable/robot_debris,
-/turf/open/floor/mineral/titanium/yellow/airless,
-/area/ruin/space/has_grav/powered/mechtransport)
-"F" = (
-/obj/structure/mecha_wreckage/durand,
-/turf/open/floor/mineral/titanium/yellow/airless,
-/area/ruin/space/has_grav/powered/mechtransport)
-"G" = (
-/obj/item/stack/tile/plasteel,
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/powered/mechtransport)
-"H" = (
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/powered/mechtransport)
-"I" = (
-/obj/structure/lattice,
-/turf/open/space,
-/area/ruin/space/has_grav/powered/mechtransport)
-"J" = (
-/obj/machinery/computer/mecha{
- dir = 8
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/ruin/space/has_grav/powered/mechtransport)
-"K" = (
-/obj/effect/decal/cleanable/robot_debris/gib,
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/powered/mechtransport)
-"L" = (
-/obj/effect/decal/cleanable/robot_debris,
-/obj/item/stack/tile/plasteel,
-/turf/open/floor/mineral/titanium/yellow/airless,
-/area/ruin/space/has_grav/powered/mechtransport)
-"M" = (
-/turf/open/floor/plating/airless{
- icon_state = "platingdmg1"
- },
-/area/ruin/space/has_grav/powered/mechtransport)
-"N" = (
-/turf/open/floor/plating/airless{
- icon_state = "platingdmg2"
- },
-/area/ruin/space/has_grav/powered/mechtransport)
-"O" = (
-/obj/structure/mecha_wreckage/odysseus,
-/turf/open/floor/mineral/titanium/yellow/airless,
-/area/ruin/space/has_grav/powered/mechtransport)
-"P" = (
-/obj/item/stack/sheet/metal,
-/turf/open/space,
-/area/ruin/space/has_grav/powered/mechtransport)
-"Q" = (
-/obj/structure/mecha_wreckage/gygax,
-/turf/open/floor/mineral/titanium/airless,
-/area/ruin/space/has_grav/powered/mechtransport)
-"R" = (
-/turf/open/floor/plating/airless{
- icon_state = "platingdmg3"
- },
-/area/ruin/space/has_grav/powered/mechtransport)
-"S" = (
-/obj/item/stack/rods,
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/powered/mechtransport)
-"T" = (
-/turf/open/space,
-/area/ruin/space/has_grav/powered/mechtransport)
-"V" = (
-/obj/item/stack/rods,
-/turf/open/space,
-/area/ruin/space/has_grav/powered/mechtransport)
-"W" = (
-/obj/machinery/power/smes/shuttle/micro/precharged,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/closed/wall/mineral/titanium,
-/area/ruin/space/has_grav/powered/mechtransport)
-"X" = (
-/obj/machinery/power/shuttle/engine/electric,
-/obj/structure/cable,
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/powered/mechtransport)
-"Y" = (
-/obj/machinery/power/terminal,
-/turf/closed/wall/mineral/titanium,
-/area/ruin/space/has_grav/powered/mechtransport)
-
-(1,1,1) = {"
-a
-a
-a
-b
-d
-d
-d
-d
-G
-I
-M
-P
-T
-T
-T
-"}
-(2,1,1) = {"
-b
-d
-d
-d
-r
-v
-B
-E
-H
-S
-H
-I
-R
-V
-T
-"}
-(3,1,1) = {"
-c
-f
-k
-p
-s
-w
-w
-F
-w
-H
-N
-I
-I
-T
-T
-"}
-(4,1,1) = {"
-c
-g
-l
-d
-t
-w
-C
-G
-F
-w
-G
-H
-P
-T
-T
-"}
-(5,1,1) = {"
-c
-h
-m
-d
-s
-x
-w
-w
-y
-K
-O
-s
-S
-I
-T
-"}
-(6,1,1) = {"
-c
-i
-n
-d
-t
-y
-z
-w
-H
-L
-O
-H
-H
-T
-T
-"}
-(7,1,1) = {"
-c
-j
-J
-d
-t
-z
-w
-w
-y
-w
-w
-Q
-Y
-o
-X
-"}
-(8,1,1) = {"
-b
-d
-d
-d
-u
-A
-y
-w
-w
-B
-y
-s
-Y
-W
-X
-"}
-(9,1,1) = {"
-a
-a
-a
-b
-d
-d
-D
-D
-D
-D
-D
-d
-e
-o
-X
-"}
diff --git a/_maps/RandomRuins/SpaceRuins/nuclear_dump.dmm b/_maps/RandomRuins/SpaceRuins/nuclear_dump.dmm
deleted file mode 100644
index a953fc3f543c..000000000000
--- a/_maps/RandomRuins/SpaceRuins/nuclear_dump.dmm
+++ /dev/null
@@ -1,1719 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"ac" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 10
- },
-/turf/open/floor/plasteel/dark/airless,
-/area/space/nearstation)
-"ce" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 5
- },
-/obj/effect/decal/cleanable/greenglow,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/nucleardump)
-"cw" = (
-/obj/effect/turf_decal/syndicateemblem/top/right,
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/space/has_grav/nucleardump)
-"cU" = (
-/obj/structure/radioactive/waste,
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/unpowered)
-"dl" = (
-/obj/machinery/power/emitter{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/vault,
-/area/ruin/space/has_grav/nucleardump/supermatter)
-"eo" = (
-/obj/structure/radioactive,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/nucleardump)
-"fi" = (
-/turf/closed/wall,
-/area/ruin/space/has_grav/nucleardump)
-"fu" = (
-/obj/structure/radioactive,
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/unpowered)
-"gs" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/space/has_grav/nucleardump)
-"gw" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/nucleardump)
-"gO" = (
-/mob/living/simple_animal/hostile/hivebot/mechanic,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/nucleardump)
-"he" = (
-/obj/effect/mob_spawn/human/corpse/charredskeleton,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/nucleardump/supermatter)
-"ht" = (
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/nucleardump)
-"hH" = (
-/obj/item/paper/crumpled,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/nucleardump)
-"im" = (
-/obj/effect/decal/cleanable/blood/gibs/body,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/nucleardump)
-"iN" = (
-/obj/structure/lattice,
-/turf/template_noop,
-/area/space/nearstation)
-"iZ" = (
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/space/has_grav/nucleardump)
-"jm" = (
-/turf/closed/wall/r_wall/rust,
-/area/ruin/space/has_grav/nucleardump)
-"jD" = (
-/turf/closed/wall/r_wall,
-/area/ruin/space/has_grav/nucleardump)
-"jN" = (
-/turf/closed/wall/r_wall,
-/area/ruin/space/has_grav/nucleardump/supermatter)
-"kB" = (
-/obj/machinery/light/directional/west,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/nucleardump)
-"kN" = (
-/obj/machinery/light/directional/east,
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/space/has_grav/nucleardump)
-"kP" = (
-/obj/effect/turf_decal/radiation{
- pixel_y = 32
- },
-/turf/template_noop,
-/area/space/nearstation)
-"la" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/syndicateemblem/middle/right,
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/space/has_grav/nucleardump)
-"ld" = (
-/obj/effect/decal/cleanable/blood/drip,
-/obj/structure/radioactive,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/nucleardump)
-"ls" = (
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/space/has_grav/nucleardump)
-"lF" = (
-/obj/item/stack/sheet/plasmaglass,
-/turf/open/floor/vault,
-/area/ruin/space/has_grav/nucleardump/supermatter)
-"lU" = (
-/obj/effect/decal/cleanable/blood/old,
-/obj/effect/turf_decal/industrial/fire{
- dir = 4
- },
-/obj/structure/sign/warning/radiation{
- pixel_x = 32
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/nucleardump)
-"ma" = (
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/unpowered)
-"mj" = (
-/obj/effect/decal/cleanable/cobweb,
-/obj/structure/radioactive/stack,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/nucleardump)
-"mX" = (
-/obj/structure/radioactive,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/space/has_grav/nucleardump)
-"nM" = (
-/obj/item/flashlight/flare,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/space/has_grav/nucleardump)
-"ov" = (
-/obj/machinery/atmospherics/components/unary/tank/air,
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/nucleardump)
-"oC" = (
-/turf/closed/wall/r_wall/rust,
-/area/ruin/space/has_grav/nucleardump/supermatter)
-"oP" = (
-/obj/effect/decal/cleanable/blood,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/nucleardump)
-"oT" = (
-/turf/closed/mineral/random,
-/area/ruin/unpowered)
-"oU" = (
-/obj/effect/turf_decal/industrial/fire{
- dir = 4
- },
-/turf/open/floor/plasteel/dark/airless,
-/area/space/nearstation)
-"oV" = (
-/obj/effect/turf_decal/radiation{
- dir = 4;
- pixel_x = -32
- },
-/turf/template_noop,
-/area/space/nearstation)
-"pe" = (
-/obj/effect/turf_decal/industrial/fire,
-/turf/open/floor/plasteel/dark/airless,
-/area/space/nearstation)
-"pf" = (
-/obj/machinery/door/airlock/grunge{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/nucleardump)
-"pJ" = (
-/obj/effect/spawner/lootdrop/maintenance/two,
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/space/has_grav/nucleardump)
-"qy" = (
-/obj/effect/decal/cleanable/blood/footprints,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/nucleardump)
-"qA" = (
-/obj/item/geiger_counter,
-/turf/open/floor/plasteel/dark/airless,
-/area/space/nearstation)
-"qF" = (
-/obj/item/pipe,
-/turf/open/floor/engine/air,
-/area/ruin/space/has_grav/nucleardump/supermatter)
-"qH" = (
-/obj/machinery/door/airlock/grunge,
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/nucleardump)
-"qK" = (
-/obj/structure/rack,
-/obj/item/storage/box/lethalshot,
-/obj/item/gun/ballistic/shotgun/automatic/combat,
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/nucleardump)
-"rg" = (
-/obj/item/stack/ore/uranium,
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/unpowered)
-"rp" = (
-/obj/structure/radioactive/stack,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/nucleardump)
-"rM" = (
-/obj/item/pipe,
-/turf/open/floor/vault,
-/area/ruin/space/has_grav/nucleardump/supermatter)
-"rS" = (
-/turf/open/floor/engine/air,
-/area/ruin/space/has_grav/nucleardump/supermatter)
-"sN" = (
-/obj/structure/grille,
-/turf/open/floor/engine/air,
-/area/ruin/space/has_grav/nucleardump/supermatter)
-"ua" = (
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/nucleardump)
-"un" = (
-/obj/structure/closet/crate,
-/obj/effect/spawner/lootdrop/maintenance/eight,
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/nucleardump)
-"uo" = (
-/obj/machinery/door/airlock/hatch{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 8
- },
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/space/has_grav/nucleardump)
-"ur" = (
-/obj/effect/turf_decal/syndicateemblem/top/left,
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/space/has_grav/nucleardump)
-"uF" = (
-/obj/machinery/power/port_gen/pacman/super,
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/nucleardump)
-"vh" = (
-/obj/structure/sign/warning/radiation/rad_area{
- pixel_x = -32
- },
-/turf/open/floor/plasteel/dark/airless,
-/area/space/nearstation)
-"vr" = (
-/obj/item/slimecross/chilling/green,
-/turf/open/floor/vault,
-/area/ruin/space/has_grav/nucleardump/supermatter)
-"wc" = (
-/obj/structure/radioactive/supermatter,
-/turf/open/floor/engine/air,
-/area/ruin/space/has_grav/nucleardump/supermatter)
-"wr" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/siphon{
- dir = 4
- },
-/obj/machinery/light/small/broken/directional/south,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/space/has_grav/nucleardump)
-"xR" = (
-/turf/closed/wall,
-/area/space/nearstation)
-"yn" = (
-/obj/machinery/light/broken/directional/north,
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/nucleardump)
-"yw" = (
-/obj/structure/grille/broken,
-/obj/item/stack/sheet/plasmarglass,
-/turf/open/floor/engine/air,
-/area/ruin/space/has_grav/nucleardump/supermatter)
-"zp" = (
-/obj/structure/cable{
- icon_state = "4-9"
- },
-/turf/open/floor/vault,
-/area/ruin/space/has_grav/nucleardump/supermatter)
-"zx" = (
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 8
- },
-/obj/effect/turf_decal/industrial/fire{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/nucleardump)
-"zC" = (
-/obj/structure/catwalk,
-/turf/template_noop,
-/area/space/nearstation)
-"zE" = (
-/obj/effect/decal/cleanable/vomit/old,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/nucleardump)
-"AO" = (
-/obj/structure/closet/crate/secure/loot,
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/nucleardump)
-"Bl" = (
-/mob/living/simple_animal/hostile/hivebot/range,
-/obj/machinery/light/broken/directional/north,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/nucleardump)
-"BW" = (
-/obj/machinery/light/directional/west,
-/turf/open/floor/vault,
-/area/ruin/space/has_grav/nucleardump/supermatter)
-"BX" = (
-/obj/structure/cable{
- icon_state = "4-6"
- },
-/obj/machinery/atmospherics/pipe/manifold,
-/turf/open/floor/vault,
-/area/ruin/space/has_grav/nucleardump/supermatter)
-"Dq" = (
-/obj/item/stack/sheet/mineral/plasma/five,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/engine/air,
-/area/ruin/space/has_grav/nucleardump/supermatter)
-"DD" = (
-/obj/effect/decal/cleanable/blood/gibs/old,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/nucleardump)
-"Ed" = (
-/mob/living/simple_animal/hostile/hivebot,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/nucleardump)
-"EJ" = (
-/obj/structure/closet/secure/loot,
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/nucleardump)
-"EL" = (
-/obj/structure/barricade/wooden,
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 4
- },
-/obj/effect/turf_decal/industrial/fire/fulltile,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/nucleardump)
-"Fj" = (
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/nucleardump)
-"GN" = (
-/obj/effect/spawner/lootdrop/snowdin/dungeonmid,
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/nucleardump)
-"Hg" = (
-/obj/structure/closet/radiation,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/nucleardump)
-"HH" = (
-/obj/effect/spawner/structure/window/plasma/reinforced,
-/turf/open/floor/engine/air,
-/area/ruin/space/has_grav/nucleardump/supermatter)
-"Io" = (
-/obj/machinery/power/rad_collector,
-/turf/open/floor/engine/air,
-/area/ruin/space/has_grav/nucleardump/supermatter)
-"IJ" = (
-/obj/effect/spawner/structure/window/hollow/plasma/directional{
- dir = 4
- },
-/turf/open/floor/engine/air,
-/area/ruin/space/has_grav/nucleardump/supermatter)
-"IM" = (
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/engine/air,
-/area/ruin/space/has_grav/nucleardump/supermatter)
-"Jb" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/syndicateemblem/top/middle,
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/space/has_grav/nucleardump)
-"Km" = (
-/obj/structure/window/plasma/reinforced/fulltile/unanchored,
-/turf/open/floor/vault,
-/area/ruin/space/has_grav/nucleardump/supermatter)
-"KB" = (
-/turf/closed/wall,
-/area/ruin/unpowered)
-"KF" = (
-/turf/open/floor/plasteel/dark/airless,
-/area/space/nearstation)
-"KS" = (
-/mob/living/simple_animal/hostile/carp,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/syndicateemblem/bottom/middle,
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/space/has_grav/nucleardump)
-"Ln" = (
-/obj/structure/radioactive/waste,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/space/has_grav/nucleardump)
-"LH" = (
-/obj/item/stack/ore/uranium,
-/obj/item/stack/ore/uranium,
-/obj/item/stack/ore/uranium,
-/turf/open/floor/plating/asteroid/airless,
-/area/ruin/unpowered)
-"Mo" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/nucleardump)
-"MP" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 6
- },
-/obj/effect/decal/cleanable/blood/footprints{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/nucleardump)
-"MX" = (
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/space/has_grav/nucleardump)
-"Nk" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8
- },
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/space/has_grav/nucleardump)
-"NV" = (
-/obj/structure/grille/broken,
-/turf/open/floor/engine/air,
-/area/ruin/space/has_grav/nucleardump/supermatter)
-"Oq" = (
-/obj/machinery/light/directional/north,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/nucleardump)
-"OB" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/syndicateemblem/bottom/right,
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/space/has_grav/nucleardump)
-"OF" = (
-/obj/structure/radioactive/waste,
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/nucleardump)
-"OL" = (
-/obj/machinery/atmospherics/components/binary/valve/on,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/nucleardump)
-"OP" = (
-/obj/item/stack/sheet/plasmarglass,
-/turf/open/floor/vault,
-/area/ruin/space/has_grav/nucleardump/supermatter)
-"Py" = (
-/obj/structure/sign/warning/longtermwaste{
- pixel_y = 32
- },
-/obj/effect/mob_spawn/human/skeleton,
-/turf/open/floor/plasteel/dark/airless,
-/area/space/nearstation)
-"Qa" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/vault,
-/area/ruin/space/has_grav/nucleardump/supermatter)
-"Qd" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/on{
- dir = 1
- },
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"QE" = (
-/obj/structure/radioactive/stack,
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/space/has_grav/nucleardump)
-"Ra" = (
-/obj/machinery/light/directional/east,
-/turf/open/floor/engine/air,
-/area/ruin/space/has_grav/nucleardump/supermatter)
-"Ry" = (
-/obj/machinery/light/built/directional/south,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/nucleardump)
-"RC" = (
-/mob/living/simple_animal/chicken,
-/obj/item/melee/greykingsword,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/syndicateemblem/middle/middle,
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/space/has_grav/nucleardump)
-"RD" = (
-/obj/effect/turf_decal/industrial/hatch/red,
-/obj/effect/decal/cleanable/greenglow,
-/obj/structure/closet/crate/radiation,
-/obj/item/stack/sheet/mineral/uranium/twenty,
-/obj/item/coin/uranium,
-/obj/effect/spawner/lootdrop/maintenance/four,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/nucleardump)
-"RZ" = (
-/obj/machinery/door/airlock/vault/derelict,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/nucleardump/supermatter)
-"SS" = (
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/nucleardump)
-"Tm" = (
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/nucleardump)
-"Tw" = (
-/obj/machinery/light/directional/east,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/space/has_grav/nucleardump)
-"Ud" = (
-/obj/effect/decal/cleanable/greenglow,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/nucleardump)
-"UW" = (
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"UY" = (
-/obj/structure/radioactive/waste,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/nucleardump)
-"Vb" = (
-/obj/effect/radiation,
-/turf/closed/wall,
-/area/ruin/space/has_grav/nucleardump)
-"VD" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/machinery/light/directional/east,
-/turf/open/floor/engine/air,
-/area/ruin/space/has_grav/nucleardump/supermatter)
-"VE" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/nucleardump)
-"VK" = (
-/obj/machinery/door/airlock/hatch{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 4
- },
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/space/has_grav/nucleardump)
-"VL" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/syndicateemblem/middle/left,
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/space/has_grav/nucleardump)
-"VU" = (
-/turf/open/floor/mineral/plastitanium,
-/area/ruin/space/has_grav/nucleardump)
-"WH" = (
-/obj/effect/spawner/lootdrop/snowdin/dungeonlite,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/nucleardump)
-"Yg" = (
-/obj/machinery/advanced_airlock_controller{
- pixel_y = -25
- },
-/obj/effect/mob_spawn/human/corpse/frontier,
-/obj/item/tank/internals/emergency_oxygen/empty,
-/turf/open/floor/plasteel/dark/airless,
-/area/ruin/space/has_grav/nucleardump)
-"Yj" = (
-/mob/living/simple_animal/hostile/hivebot/strong,
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/nucleardump)
-"Yx" = (
-/turf/open/floor/vault,
-/area/ruin/space/has_grav/nucleardump/supermatter)
-"YZ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/syndicateemblem/bottom/left,
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/space/has_grav/nucleardump)
-"Zh" = (
-/obj/machinery/door/airlock/grunge,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/nucleardump)
-"Zi" = (
-/obj/effect/turf_decal/industrial/fire{
- dir = 4
- },
-/obj/structure/radioactive/waste,
-/obj/structure/sign/warning/radiation{
- pixel_x = 32
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/nucleardump)
-"Zn" = (
-/turf/template_noop,
-/area/template_noop)
-"ZO" = (
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/mineral/plastitanium/red,
-/area/ruin/space/has_grav/nucleardump)
-
-(1,1,1) = {"
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-"}
-(2,1,1) = {"
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-"}
-(3,1,1) = {"
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-oT
-oT
-oT
-oT
-oT
-oT
-oT
-oT
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-"}
-(4,1,1) = {"
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-oT
-oT
-oT
-oT
-oT
-oT
-oT
-oT
-oT
-oT
-oT
-oT
-oT
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-"}
-(5,1,1) = {"
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-oT
-oT
-oT
-oT
-oT
-oT
-oT
-oT
-oT
-oT
-oT
-oT
-oT
-oT
-oT
-oT
-oT
-oT
-oT
-Zn
-Zn
-Zn
-"}
-(6,1,1) = {"
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-oT
-oT
-oT
-oT
-oT
-oT
-oT
-oT
-fi
-fi
-fi
-fi
-fi
-fi
-fi
-oT
-oT
-oT
-oT
-oT
-oT
-oT
-oT
-Zn
-Zn
-Zn
-"}
-(7,1,1) = {"
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-oT
-oT
-oT
-oT
-oT
-oT
-oT
-fi
-fi
-VU
-iZ
-iZ
-ZO
-mX
-fi
-fi
-oT
-oT
-oT
-oT
-oT
-oT
-oT
-Zn
-Zn
-Zn
-"}
-(8,1,1) = {"
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-oT
-oT
-oT
-oT
-oT
-oT
-oT
-fi
-Ln
-pJ
-ur
-VL
-YZ
-iZ
-VU
-fi
-oT
-oT
-oT
-oT
-oT
-oT
-oT
-Zn
-Zn
-Zn
-"}
-(9,1,1) = {"
-Zn
-Zn
-Zn
-oT
-oT
-oT
-oT
-oT
-oT
-oT
-oT
-oT
-fu
-fi
-VU
-iZ
-Jb
-RC
-KS
-gs
-VU
-fi
-fi
-fi
-fi
-fi
-oT
-oT
-oT
-Zn
-Zn
-Zn
-"}
-(10,1,1) = {"
-Zn
-Zn
-Zn
-oT
-oT
-oT
-oT
-oT
-oT
-oT
-ma
-rg
-LH
-fi
-QE
-iZ
-cw
-la
-OB
-gs
-MX
-fi
-rp
-RD
-eo
-fi
-oT
-oT
-oT
-Zn
-Zn
-Zn
-"}
-(11,1,1) = {"
-Zn
-Zn
-oT
-oT
-oT
-oT
-oT
-oT
-ma
-rg
-fu
-ma
-cU
-fi
-ls
-VU
-kN
-gs
-Tw
-VU
-mX
-fi
-Ud
-eo
-UY
-fi
-oT
-oT
-oT
-Zn
-Zn
-Zn
-"}
-(12,1,1) = {"
-Zn
-Zn
-oT
-oT
-fi
-fi
-fi
-fi
-fi
-fi
-fi
-fi
-fi
-fi
-Vb
-fi
-fi
-pf
-fi
-fi
-fi
-fi
-ua
-ua
-Ud
-fi
-oT
-oT
-oT
-Zn
-Zn
-Zn
-"}
-(13,1,1) = {"
-Zn
-Zn
-oT
-oT
-fi
-AO
-AO
-qK
-fi
-mj
-Tm
-kB
-Tm
-ld
-Tm
-kB
-Tm
-Ed
-Tm
-Fj
-Hg
-fi
-Oq
-ua
-im
-fi
-oT
-oT
-oT
-Zn
-Zn
-Zn
-"}
-(14,1,1) = {"
-Zn
-Zn
-oT
-oT
-fi
-EJ
-GN
-ht
-fi
-Bl
-DD
-Tm
-hH
-Tm
-Tm
-ld
-oP
-qy
-qy
-qy
-Ry
-fi
-zE
-gO
-WH
-fi
-oT
-oT
-oT
-Zn
-Zn
-Zn
-"}
-(15,1,1) = {"
-Zn
-Zn
-Zn
-oT
-fi
-yn
-Yj
-ht
-Zh
-Tm
-SS
-Fj
-fi
-fi
-fi
-fi
-fi
-fi
-fi
-MP
-gw
-qH
-VE
-VE
-ce
-fi
-oT
-oT
-oT
-Zn
-Zn
-Zn
-"}
-(16,1,1) = {"
-Zn
-Zn
-Zn
-oT
-fi
-uF
-OF
-un
-fi
-lU
-zx
-Zi
-fi
-oT
-oT
-oT
-oT
-oT
-jD
-VK
-jD
-jD
-ov
-OL
-Mo
-fi
-oT
-oT
-oT
-Zn
-Zn
-Zn
-"}
-(17,1,1) = {"
-Zn
-Zn
-oT
-oT
-fi
-fi
-fi
-fi
-fi
-fi
-EL
-fi
-fi
-oT
-oT
-oT
-oT
-oT
-jD
-Nk
-Yg
-jD
-fi
-fi
-fi
-fi
-oT
-oT
-Zn
-Zn
-Zn
-Zn
-"}
-(18,1,1) = {"
-Zn
-Zn
-oT
-oT
-oT
-jN
-jN
-jN
-jN
-jN
-RZ
-oC
-oC
-jN
-jN
-oC
-oT
-oT
-jm
-nM
-wr
-jm
-oT
-oT
-oT
-oT
-oT
-Zn
-Zn
-Zn
-Zn
-Zn
-"}
-(19,1,1) = {"
-Zn
-oT
-oT
-oT
-oT
-oC
-jN
-oC
-jN
-jN
-he
-jN
-jN
-jN
-oC
-oC
-oT
-oT
-jD
-jD
-uo
-jm
-oT
-oT
-Zn
-iN
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-"}
-(20,1,1) = {"
-Zn
-oT
-oT
-oT
-oT
-oC
-jN
-Yx
-rM
-Yx
-Qa
-Yx
-BX
-Yx
-oC
-jN
-oT
-oT
-oT
-vh
-ac
-Qd
-zC
-Zn
-Zn
-iN
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-"}
-(21,1,1) = {"
-Zn
-oT
-oT
-oT
-oT
-oC
-jN
-Yx
-Ra
-Io
-IM
-Dq
-VD
-zp
-oC
-jN
-oT
-oT
-oT
-qA
-UW
-pe
-zC
-Zn
-Zn
-iN
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-"}
-(22,1,1) = {"
-Zn
-Zn
-oT
-oT
-oT
-jN
-jN
-Yx
-oC
-HH
-IJ
-rS
-oC
-Qa
-jN
-jN
-oT
-oT
-KB
-Py
-UW
-UW
-iN
-iN
-iN
-xR
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-"}
-(23,1,1) = {"
-Zn
-Zn
-Zn
-oT
-oT
-jN
-oC
-Yx
-sN
-rS
-wc
-qF
-yw
-dl
-jN
-jN
-oT
-oT
-KB
-KF
-UW
-pe
-iN
-Zn
-Zn
-xR
-kP
-Zn
-Zn
-Zn
-Zn
-Zn
-"}
-(24,1,1) = {"
-Zn
-Zn
-Zn
-oT
-oT
-jN
-jN
-lF
-rS
-rS
-rS
-rS
-sN
-OP
-jN
-jN
-oT
-oT
-oT
-KF
-KF
-UW
-iN
-Zn
-Zn
-iN
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-"}
-(25,1,1) = {"
-Zn
-Zn
-Zn
-oT
-oT
-jN
-jN
-Yx
-oC
-NV
-HH
-rS
-jN
-Yx
-oC
-oC
-oT
-oT
-oT
-UW
-oU
-UW
-zC
-Zn
-Zn
-iN
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-"}
-(26,1,1) = {"
-Zn
-Zn
-Zn
-oT
-oT
-oC
-jN
-Yx
-Km
-Yx
-Yx
-vr
-BW
-Yx
-oC
-oC
-oT
-oT
-oT
-iN
-iN
-zC
-zC
-Zn
-Zn
-xR
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-"}
-(27,1,1) = {"
-Zn
-Zn
-oT
-oT
-oT
-oC
-oC
-oC
-jN
-oC
-oC
-oC
-jN
-oC
-oC
-oC
-oT
-oT
-Zn
-Zn
-iN
-Zn
-Zn
-Zn
-Zn
-xR
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-"}
-(28,1,1) = {"
-Zn
-Zn
-oT
-oT
-oT
-jN
-oC
-oC
-oC
-jN
-jN
-jN
-jN
-jN
-oC
-oC
-oT
-oT
-iN
-xR
-xR
-xR
-iN
-iN
-xR
-xR
-kP
-Zn
-Zn
-Zn
-Zn
-Zn
-"}
-(29,1,1) = {"
-Zn
-Zn
-oT
-oT
-oT
-oT
-oT
-oT
-oT
-oT
-oT
-oT
-oT
-oT
-oT
-oT
-oT
-oT
-Zn
-Zn
-oV
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-"}
-(30,1,1) = {"
-Zn
-Zn
-oT
-oT
-oT
-oT
-oT
-oT
-oT
-oT
-oT
-oT
-oT
-oT
-oT
-oT
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-"}
-(31,1,1) = {"
-Zn
-Zn
-oT
-oT
-oT
-Zn
-oT
-oT
-oT
-oT
-oT
-oT
-oT
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-"}
-(32,1,1) = {"
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-Zn
-"}
diff --git a/_maps/RandomRuins/SpaceRuins/oldstation.dmm b/_maps/RandomRuins/SpaceRuins/oldstation.dmm
index 321daa633782..8c2493f833d6 100644
--- a/_maps/RandomRuins/SpaceRuins/oldstation.dmm
+++ b/_maps/RandomRuins/SpaceRuins/oldstation.dmm
@@ -283,6 +283,14 @@
},
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/comm)
+"aS" = (
+/obj/machinery/light/small/directional/west,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/ruin/space/has_grav/ancientstation)
"aT" = (
/turf/closed/wall,
/area/ruin/space/has_grav/ancientstation)
@@ -6184,148 +6192,164 @@
/mob/living/simple_animal/hostile/alien,
/turf/open/floor/plasteel/white,
/area/ruin/space/has_grav/ancientstation/proto)
-"ra" = (
+"re" = (
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/plating/airless,
+/area/ruin/space/has_grav/ancientstation/betastorage)
+"rH" = (
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/yellow{
- dir = 1
+/obj/machinery/light/directional/north,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
-/obj/effect/turf_decal/corner/opaque/yellow{
- dir = 8
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
-/obj/machinery/firealarm/directional/west,
/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation/atmo)
-"rd" = (
+/area/ruin/space/has_grav/ancientstation/deltacorridor)
+"rN" = (
/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 8
- },
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 1
- },
-/obj/machinery/firealarm/directional/west,
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav/ancientstation/proto)
-"rv" = (
+/obj/machinery/light/small/directional/north,
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small/directional/west,
-/obj/effect/turf_decal/corner/opaque/red{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/red{
- dir = 8
+/obj/structure/cable{
+ icon_state = "4-8"
},
+/turf/open/floor/plasteel,
+/area/ruin/space/has_grav/ancientstation)
+"se" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/plasteel,
+/area/ruin/space/has_grav/ancientstation/deltacorridor)
+"sg" = (
+/obj/structure/table,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/directional/west,
+/obj/item/broken_bottle,
+/obj/item/soap/nanotrasen,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/ruin/space/has_grav/ancientstation/rnd)
+"si" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
icon_state = "1-2"
},
+/obj/machinery/firealarm/directional/west,
/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation/sec)
-"rB" = (
+/area/ruin/space/has_grav/ancientstation)
+"su" = (
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small/directional/west,
-/obj/effect/turf_decal/corner/opaque/red{
+/obj/machinery/light/small/directional/west{
+ brightness = 3
+ },
+/obj/effect/turf_decal/corner/opaque/yellow{
dir = 1
},
-/obj/effect/turf_decal/corner/opaque/red{
+/obj/effect/turf_decal/corner/opaque/yellow{
dir = 8
},
/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation/sec)
-"rE" = (
-/obj/machinery/door/airlock/science{
- pixel_y = 0;
- dir = 4
+/area/ruin/space/has_grav/ancientstation/engi)
+"sy" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
},
+/turf/open/floor/plasteel,
+/area/ruin/space/has_grav/ancientstation/engi)
+"sz" = (
+/obj/structure/table,
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small/directional/east,
+/obj/item/paper/fluff/ruins/oldstation,
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/firedoor/border_only{
+/turf/open/floor/plasteel,
+/area/ruin/space/has_grav/ancientstation)
+"sC" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/door/airlock,
+/turf/open/floor/plasteel/white,
+/area/ruin/space/has_grav/ancientstation)
+"sD" = (
+/obj/machinery/light/small/directional/east,
+/obj/structure/alien/weeds,
+/obj/machinery/portable_atmospherics/scrubber,
+/turf/open/floor/plasteel/dark,
+/area/ruin/space/has_grav/ancientstation/deltaai)
+"sH" = (
+/obj/machinery/portable_atmospherics/canister/toxins,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 8
},
-/obj/machinery/door/firedoor/border_only{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation/deltacorridor)
-"sa" = (
/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/plating,
+/area/ruin/space/has_grav/ancientstation/atmo)
+"sO" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
/obj/machinery/light/small/directional/east,
/obj/effect/turf_decal/corner/opaque/yellow,
/obj/effect/turf_decal/corner/opaque/yellow{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/obj/structure/cable{
- icon_state = "1-2"
+/obj/machinery/light_switch{
+ pixel_x = 26
},
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/engi)
-"sk" = (
-/obj/structure/table,
-/obj/item/crowbar,
-/obj/item/flashlight/glowstick,
+"sV" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/light/small/directional/west,
+/obj/machinery/airalarm/directional/west,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation)
-"sy" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
+/obj/structure/cable{
+ icon_state = "1-2"
},
/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation/engi)
-"sC" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/airlock,
-/turf/open/floor/plasteel/white,
/area/ruin/space/has_grav/ancientstation)
"sY" = (
/obj/structure/lattice,
/obj/item/stack/rods,
/turf/template_noop,
/area/space/nearstation)
-"td" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/particle_accelerator/particle_emitter/center,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/ancientstation/deltacorridor)
-"te" = (
-/obj/machinery/light/directional/west,
-/obj/structure/table/reinforced,
-/obj/item/paper/fluff/ruins/oldstation/protohealth,
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav/ancientstation/proto)
-"tg" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
+"sZ" = (
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
+/obj/machinery/light/small/directional/west{
+ brightness = 3
},
-/obj/machinery/door/firedoor/border_only{
- dir = 4
+/obj/effect/decal/cleanable/oil,
+/obj/effect/turf_decal/corner/opaque/yellow{
+ dir = 1
},
-/obj/machinery/door/firedoor/border_only{
+/obj/effect/turf_decal/corner/opaque/yellow{
dir = 8
},
-/obj/machinery/door/airlock/command{
- dir = 4
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
+/obj/machinery/firealarm/directional/west,
/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation/betacorridor)
+/area/ruin/space/has_grav/ancientstation/engi)
+"tb" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small/directional/south,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/ruin/space/has_grav/ancientstation)
+"td" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/particle_accelerator/particle_emitter/center,
+/turf/open/floor/plating,
+/area/ruin/space/has_grav/ancientstation/deltacorridor)
"tn" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/chair,
@@ -6337,62 +6361,37 @@
},
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/kitchen)
-"to" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small/directional/west,
-/obj/machinery/airalarm/directional/west,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation)
-"tK" = (
-/obj/machinery/door/airlock/engineering{
- name = "Engineering";
- dir = 4
- },
+"tq" = (
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/firedoor/border_only{
- dir = 8
- },
-/obj/machinery/door/firedoor/border_only{
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/turf_decal/corner/opaque/yellow{
dir = 4
},
-/obj/machinery/door/poddoor{
- id = "ancient";
- dir = 8
- },
+/obj/machinery/airalarm/directional/east,
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/engi)
-"tL" = (
+"tN" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/rack,
-/obj/item/gun/energy/laser/retro/old{
- pixel_x = -2;
- pixel_y = -2
- },
-/obj/item/gun/energy/laser/retro/old{
- pixel_x = 2;
- pixel_y = 2
- },
-/obj/effect/turf_decal/corner/opaque/red{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/red,
-/obj/effect/turf_decal/corner/opaque/red{
- dir = 8
+/obj/machinery/light/small/directional/south,
+/obj/effect/turf_decal/corner/opaque/green,
+/obj/machinery/light_switch{
+ pixel_x = 0;
+ pixel_y = -26
},
-/obj/machinery/airalarm/directional/west,
/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation/sec)
+/area/ruin/space/has_grav/ancientstation/hydroponics)
"tT" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/particle_accelerator/end_cap,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
/area/ruin/space/has_grav/ancientstation/deltacorridor)
-"ud" = (
+"ur" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/firealarm/directional/east,
+/turf/open/floor/plasteel,
+/area/ruin/space/has_grav/ancientstation)
+"uB" = (
/obj/item/shard{
icon_state = "medium"
},
@@ -6402,74 +6401,90 @@
icon_state = "platingdmg3"
},
/area/ruin/space/has_grav/ancientstation/betacorridor)
-"uD" = (
-/obj/machinery/door/airlock/highsecurity,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper,
-/obj/structure/alien/weeds,
-/obj/effect/decal/cleanable/xenoblood/xtracks,
-/obj/effect/decal/cleanable/blood/tracks,
-/obj/structure/cable{
- icon_state = "1-2"
+"uE" = (
+/obj/machinery/door/airlock/maintenance_hatch{
+ dir = 4
},
-/obj/machinery/door/firedoor/border_only,
+/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/firedoor/border_only{
- dir = 1
+ dir = 4
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
},
/turf/open/floor/plating,
-/area/ruin/space/has_grav/ancientstation/deltaai)
-"uT" = (
-/turf/open/floor/engine/n2,
-/area/ruin/space/has_grav/ancientstation/atmo)
-"uY" = (
+/area/ruin/space/has_grav/ancientstation/deltacorridor)
+"uM" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small/directional/west{
+ brightness = 3
+ },
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation/sec)
-"vb" = (
-/obj/machinery/light/small/directional/south,
-/obj/structure/closet/firecloset/full,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/ancientstation/deltacorridor)
-"vk" = (
+/area/ruin/space/has_grav/ancientstation)
+"uN" = (
+/obj/machinery/light/small/directional/west{
+ brightness = 3
+ },
+/obj/structure/alien/weeds,
+/obj/effect/gibspawner/human,
+/turf/open/floor/plasteel/dark,
+/area/ruin/space/has_grav/ancientstation/deltaai)
+"uT" = (
+/turf/open/floor/engine/n2,
+/area/ruin/space/has_grav/ancientstation/atmo)
+"uW" = (
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small/directional/east,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/turf_decal/corner/opaque/yellow{
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
-/obj/machinery/airalarm/directional/east,
/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation/engi)
-"vu" = (
+/area/ruin/space/has_grav/ancientstation)
+"uX" = (
+/obj/machinery/door/airlock/medical/glass{
+ dir = 4;
+ name = "Chemical Storage";
+ req_access_txt = "200"
+ },
+/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
+ dir = 4
},
+/obj/effect/decal/cleanable/dirt,
/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
+ dir = 4
},
/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation/kitchen)
-"vw" = (
-/obj/machinery/light/small/directional/west{
- brightness = 3
- },
-/obj/structure/alien/weeds,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/ancientstation/deltaai)
-"vK" = (
+/area/ruin/space/has_grav/ancientstation/rnd)
+"uY" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/chair{
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/ruin/space/has_grav/ancientstation/sec)
+"vd" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/kirbyplants{
+ icon_state = "plant-25"
+ },
+/obj/machinery/light/small/directional/west,
+/obj/effect/turf_decal/corner/opaque/green{
+ dir = 1
+ },
+/obj/effect/turf_decal/corner/opaque/green{
dir = 4
},
-/obj/machinery/light/small/directional/west{
- brightness = 3
+/obj/effect/turf_decal/corner/opaque/green{
+ dir = 8
},
/obj/machinery/firealarm/directional/west,
+/turf/open/floor/plasteel,
+/area/ruin/space/has_grav/ancientstation/hydroponics)
+"vh" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small/directional/north,
/obj/effect/turf_decal/corner/opaque/white{
dir = 1
},
@@ -6478,56 +6493,91 @@
},
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/kitchen)
-"vO" = (
-/obj/structure/table,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/directional/west,
-/obj/item/broken_bottle,
-/obj/item/soap/nanotrasen,
+"vj" = (
+/obj/machinery/door/airlock/security{
+ dir = 4
+ },
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/obj/machinery/door/poddoor{
+ dir = 8;
+ id = "ancient"
+ },
/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation/rnd)
-"vP" = (
+/area/ruin/space/has_grav/ancientstation/sec)
+"vr" = (
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small/directional/east,
-/obj/effect/turf_decal/corner/opaque/green,
+/obj/machinery/light/small/directional/west,
/obj/effect/turf_decal/corner/opaque/green{
- dir = 4
+ dir = 1
},
-/obj/machinery/power/apc{
- name = "Charlie Station Garden APC ";
- pixel_y = -25;
- start_charge = 0
+/obj/effect/turf_decal/corner/opaque/green{
+ dir = 8
},
-/obj/item/reagent_containers/glass/bottle/nutrient/ez,
-/obj/item/reagent_containers/glass/bottle/nutrient/l4z,
-/obj/item/reagent_containers/glass/bottle/nutrient/rh,
+/obj/item/reagent_containers/spray/weedspray,
+/obj/item/reagent_containers/spray/pestspray,
/obj/structure/closet/crate/hydroponics,
-/obj/structure/cable{
- icon_state = "0-8"
- },
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/hydroponics)
-"wc" = (
+"vu" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/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/ancientstation/kitchen)
+"vK" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/light/small/directional/east,
-/obj/machinery/portable_atmospherics/scrubber,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/ancientstation/deltacorridor)
-"wd" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/airalarm/directional/east,
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation/deltacorridor)
-"wx" = (
+/area/ruin/space/has_grav/ancientstation/betacorridor)
+"wh" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/light/directional/north,
+/turf/open/floor/plasteel/white,
+/area/ruin/space/has_grav/ancientstation/proto)
+"wq" = (
/obj/machinery/door/window/eastleft,
/obj/machinery/door/poddoor{
- id = "proto";
- dir = 4
+ dir = 4;
+ id = "proto"
},
/turf/open/floor/plasteel/white,
/area/ruin/space/has_grav/ancientstation/proto)
+"wu" = (
+/obj/machinery/door/airlock/maintenance_hatch{
+ dir = 8;
+ name = "Engineering Storage"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/ruin/space/has_grav/ancientstation/deltacorridor)
"wz" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -6540,77 +6590,132 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
/area/ruin/space/has_grav/ancientstation/deltacorridor)
+"wE" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/firealarm/directional/west,
+/turf/open/floor/plasteel/white,
+/area/ruin/space/has_grav/ancientstation/rnd)
+"wF" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small/directional/east,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/ruin/space/has_grav/ancientstation)
"wJ" = (
/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/industrial/warning{
- dir = 4
+/obj/effect/turf_decal/corner/opaque/green{
+ dir = 8
},
-/obj/machinery/light/directional/north,
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav/ancientstation/proto)
+/obj/structure/closet/crate/bin,
+/obj/machinery/airalarm/directional/south,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/ruin/space/has_grav/ancientstation/hydroponics)
"wL" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/components/unary/vent_pump/on,
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/engi)
-"wM" = (
-/obj/machinery/door/airlock/science{
- dir = 4
- },
+"wP" = (
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+/obj/machinery/airalarm/directional/west,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/blood/old,
+/turf/open/floor/plasteel,
+/area/ruin/space/has_grav/ancientstation/deltacorridor)
+"xl" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/ruin/space/has_grav/ancientstation)
+"xB" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small/directional/east,
+/obj/effect/turf_decal/corner/opaque/yellow,
+/obj/effect/turf_decal/corner/opaque/yellow{
dir = 4
},
-/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+ dir = 9
},
/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 8
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 4
+ icon_state = "1-2"
},
/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation/deltacorridor)
-"wX" = (
-/obj/machinery/door/airlock/science{
- dir = 4
+/area/ruin/space/has_grav/ancientstation/engi)
+"xS" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/plasteel,
+/area/ruin/space/has_grav/ancientstation/betacorridor)
+"yb" = (
+/obj/structure/table,
+/obj/item/crowbar,
+/obj/item/flashlight/glowstick,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small/directional/west,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/ruin/space/has_grav/ancientstation)
+"yg" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/airalarm/directional/east,
+/obj/effect/turf_decal/corner/opaque/yellow,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/ruin/space/has_grav/ancientstation/rnd)
+"yk" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 1
},
+/turf/open/floor/plating,
+/area/ruin/space/has_grav/ancientstation)
+"yp" = (
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/directional/south,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 4;
- icon_state = "tracks"
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 4
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 8
+/obj/effect/decal/cleanable/blood/old,
+/obj/structure/cable{
+ icon_state = "4-8"
},
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/deltacorridor)
-"xc" = (
+"yq" = (
+/obj/machinery/door/poddoor{
+ dir = 4;
+ id = "proto"
+ },
+/obj/machinery/door/window/westright,
+/turf/open/floor/plasteel/white,
+/area/ruin/space/has_grav/ancientstation/proto)
+"yx" = (
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small/directional/south,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation)
-"xk" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/plating,
+/area/ruin/space/has_grav/ancientstation/deltacorridor)
+"yC" = (
+/obj/machinery/door/airlock/medical/glass{
+ dir = 4;
+ name = "Medical Bay"
+ },
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/airlock/maintenance_hatch{
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 8
+ },
/obj/structure/cable{
icon_state = "4-8"
},
@@ -6620,26 +6725,42 @@
/obj/machinery/door/firedoor/border_only{
dir = 8
},
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/ancientstation/deltacorridor)
-"xl" = (
+/turf/open/floor/plasteel,
+/area/ruin/space/has_grav/ancientstation/medbay)
+"yD" = (
/obj/effect/decal/cleanable/dirt,
-/obj/effect/spawner/lootdrop/maintenance,
+/obj/machinery/light/small/directional/east,
+/obj/machinery/portable_atmospherics/scrubber,
/turf/open/floor/plating,
-/area/ruin/space/has_grav/ancientstation)
-"xt" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/firealarm/directional/south,
-/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/deltacorridor)
-"xG" = (
-/obj/machinery/door/airlock/engineering{
- name = "Backup Generator Room";
- dir = 4
+"yE" = (
+/obj/structure/closet/crate,
+/obj/item/cautery{
+ pixel_x = 4
},
-/obj/structure/cable{
- icon_state = "0-4"
+/obj/item/hemostat,
+/obj/item/circular_saw,
+/obj/item/scalpel{
+ pixel_y = 12
+ },
+/obj/item/retractor,
+/obj/machinery/light/small/broken/directional/west{
+ icon_state = "bulb-broken"
+ },
+/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/plasteel/airless,
+/area/ruin/space/has_grav/ancientstation/medbay)
+"yI" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/door/airlock/public/glass{
+ dir = 4;
+ name = "Dining Area"
},
/obj/machinery/door/firedoor/border_only{
dir = 8
@@ -6647,91 +6768,60 @@
/obj/machinery/door/firedoor/border_only{
dir = 4
},
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/ancientstation/engi)
-"xL" = (
-/obj/effect/turf_decal/corner/opaque/blue{
+/obj/effect/turf_decal/corner/opaque/white{
dir = 1
},
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 8
+/obj/effect/turf_decal/corner/opaque/white{
+ dir = 2
},
-/obj/machinery/airalarm/directional/west,
-/turf/open/floor/plasteel/airless,
-/area/ruin/space/has_grav/ancientstation/medbay)
-"xP" = (
+/turf/open/floor/plasteel,
+/area/ruin/space/has_grav/ancientstation/kitchen)
+"yL" = (
+/obj/machinery/airalarm/directional/east,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small/directional/east,
/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation/deltacorridor)
-"ya" = (
-/obj/machinery/light/directional/west,
-/obj/structure/table/reinforced,
-/obj/item/paper/fluff/ruins/oldstation/protosuit,
+/area/ruin/space/has_grav/ancientstation)
+"yY" = (
+/obj/machinery/door/window/westleft,
+/obj/machinery/door/poddoor{
+ dir = 4;
+ id = "proto"
+ },
/turf/open/floor/plasteel/white,
/area/ruin/space/has_grav/ancientstation/proto)
-"yk" = (
+"zb" = (
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/components/binary/pump{
+/obj/machinery/light/small/directional/west,
+/obj/effect/turf_decal/corner/opaque/red{
dir = 1
},
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/ancientstation)
-"yx" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/ancientstation/deltacorridor)
-"yA" = (
-/obj/machinery/door/airlock/science{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/firedoor/border_only{
- dir = 4
- },
-/obj/machinery/door/firedoor/border_only{
+/obj/effect/turf_decal/corner/opaque/red{
dir = 8
},
/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation/deltacorridor)
-"yM" = (
-/obj/machinery/door/airlock/science{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
+/area/ruin/space/has_grav/ancientstation/sec)
+"zk" = (
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/firedoor/border_only{
- dir = 8
- },
-/obj/machinery/door/firedoor/border_only{
+/obj/machinery/light/small/directional/east,
+/obj/effect/turf_decal/corner/opaque/green,
+/obj/effect/turf_decal/corner/opaque/green{
dir = 4
},
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation/deltacorridor)
-"yZ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/item/shard{
- icon_state = "small"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/light/broken/directional/west{
- icon_state = "tube-broken"
+/obj/machinery/power/apc{
+ name = "Charlie Station Garden APC ";
+ pixel_y = -25;
+ start_charge = 0
},
+/obj/item/reagent_containers/glass/bottle/nutrient/ez,
+/obj/item/reagent_containers/glass/bottle/nutrient/l4z,
+/obj/item/reagent_containers/glass/bottle/nutrient/rh,
+/obj/structure/closet/crate/hydroponics,
/obj/structure/cable{
- icon_state = "1-2"
+ icon_state = "0-8"
},
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/ancientstation/betacorridor)
-"zb" = (
-/obj/machinery/light/small/directional/east,
-/obj/machinery/airalarm/directional/east,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation)
+/area/ruin/space/has_grav/ancientstation/hydroponics)
"zm" = (
/obj/machinery/door/window/brigdoor{
dir = 8;
@@ -6746,43 +6836,14 @@
},
/turf/open/floor/plating,
/area/ruin/space/has_grav/ancientstation/atmo)
-"zq" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small/directional/west{
- brightness = 3
- },
-/obj/effect/decal/cleanable/oil,
-/obj/effect/turf_decal/corner/opaque/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/yellow{
+"zD" = (
+/obj/machinery/light/small/directional/west,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/firealarm/directional/west,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation/engi)
-"zz" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/airalarm/directional/east,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood/tracks,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation/deltacorridor)
-"zB" = (
-/obj/structure/table,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small/directional/east,
-/obj/item/paper/fluff/ruins/oldstation,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation)
-"zF" = (
/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/firealarm/directional/east,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation)
"zG" = (
@@ -6816,7 +6877,7 @@
},
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/atmo)
-"Ae" = (
+"Al" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -6834,12 +6895,45 @@
dir = 4
},
/obj/machinery/door/airlock/atmos/glass{
- name = "Station Atmospherics";
- dir = 4
+ dir = 4;
+ name = "Station Atmospherics"
},
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/atmo)
-"Ax" = (
+"Ap" = (
+/obj/effect/spawner/structure/window/hollow/reinforced,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/poddoor{
+ dir = 8;
+ id = "ancient"
+ },
+/turf/open/floor/plating,
+/area/ruin/space/has_grav/ancientstation/engi)
+"As" = (
+/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
+ },
+/turf/open/floor/plating,
+/area/ruin/space/has_grav/ancientstation/deltacorridor)
+"AE" = (
/obj/structure/window/reinforced{
dir = 8
},
@@ -6847,79 +6941,111 @@
dir = 8;
icon_state = "inje_map-2"
},
-/obj/machinery/light/small/directional/south,
-/turf/open/floor/engine/n2,
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/engine/o2,
/area/ruin/space/has_grav/ancientstation/atmo)
"AF" = (
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/ruin/space/has_grav/ancientstation/deltacorridor)
-"AP" = (
-/obj/machinery/door/airlock/command{
- dir = 4
- },
+"Bs" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/turf/open/floor/engine/o2,
+/area/ruin/space/has_grav/ancientstation/atmo)
+"Bz" = (
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/firedoor/border_only{
- dir = 4
+/obj/structure/chair{
+ dir = 1
},
-/obj/machinery/door/firedoor/border_only{
+/obj/machinery/light/directional/west,
+/obj/effect/turf_decal/corner/opaque/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/corner/opaque/blue{
dir = 8
},
/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation/betacorridor)
-"AQ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/directional/east,
+/area/ruin/space/has_grav/ancientstation/comm)
+"BB" = (
+/obj/machinery/airalarm/directional/west,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/blood/old,
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/deltacorridor)
-"Bi" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+"BH" = (
+/obj/structure/particle_accelerator/particle_emitter/left,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/ruin/space/has_grav/ancientstation/deltacorridor)
+"BQ" = (
+/obj/machinery/light/small/directional/west{
+ brightness = 3
+ },
+/obj/structure/alien/weeds,
+/turf/open/floor/plasteel/dark,
+/area/ruin/space/has_grav/ancientstation/deltaai)
+"BV" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/machinery/door/airlock/external{
+ dir = 4;
+ name = "Engineering External Access"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/ruin/space/has_grav/ancientstation/engi)
+"Cf" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/manifold/supply/visible{
+ dir = 4
+ },
+/obj/machinery/light/small/directional/east,
+/obj/effect/turf_decal/corner/opaque/yellow{
dir = 4
},
+/obj/effect/turf_decal/corner/opaque/yellow,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/ruin/space/has_grav/ancientstation/atmo)
+"Cg" = (
/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+/obj/machinery/light/small/directional/east,
+/obj/effect/turf_decal/corner/opaque/red,
+/obj/effect/turf_decal/corner/opaque/red{
dir = 4
},
-/obj/machinery/airalarm/directional/south,
-/obj/structure/cable{
- icon_state = "4-8"
- },
+/obj/structure/closet/crate/bin,
/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation/betacorridor)
-"Bl" = (
-/obj/machinery/light/small/broken/directional/north{
- icon_state = "bulb-broken"
+/area/ruin/space/has_grav/ancientstation/sec)
+"Ci" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/chair{
+ dir = 4
},
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/ancientstation/atmo)
-"Bo" = (
-/obj/structure/closet,
-/obj/item/tank/jetpack/void,
-/obj/item/clothing/head/helmet/space/nasavoid/old,
-/obj/item/clothing/suit/space/nasavoid,
-/obj/effect/turf_decal/corner/opaque/brown{
- dir = 8
+/obj/machinery/light/small/directional/west{
+ brightness = 3
},
-/obj/effect/turf_decal/corner/opaque/brown{
+/obj/machinery/firealarm/directional/west,
+/obj/effect/turf_decal/corner/opaque/white{
dir = 1
},
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small/directional/west,
+/obj/effect/turf_decal/corner/opaque/white{
+ dir = 2
+ },
/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation/mining)
-"Bs" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/turf/open/floor/engine/o2,
-/area/ruin/space/has_grav/ancientstation/atmo)
-"BH" = (
-/obj/structure/particle_accelerator/particle_emitter/left,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/ancientstation/deltacorridor)
+/area/ruin/space/has_grav/ancientstation/kitchen)
"Cr" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 8
@@ -6934,57 +7060,69 @@
/area/ruin/space/has_grav/ancientstation/kitchen)
"Cu" = (
/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
+/obj/machinery/light/small/directional/south,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/storage/backpack/old,
+/obj/structure/closet,
+/turf/open/floor/plasteel,
+/area/ruin/space/has_grav/ancientstation)
+"CG" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/plasteel,
+/area/ruin/space/has_grav/ancientstation/mining)
+"CM" = (
+/obj/structure/table,
+/obj/item/reagent_containers/glass/bottle/iodine{
+ pixel_y = 8
},
-/obj/machinery/light/directional/north,
-/obj/machinery/light_switch{
- pixel_x = 0;
- pixel_y = 26
+/obj/item/reagent_containers/glass/bottle/iron{
+ pixel_x = 6
+ },
+/obj/item/reagent_containers/glass/bottle/lithium{
+ pixel_x = -6
},
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav/ancientstation/proto)
-"Cz" = (
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/directional/south,
-/obj/structure/table,
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav/ancientstation/proto)
-"Da" = (
+/obj/machinery/light/small/directional/east,
+/obj/effect/turf_decal/corner/opaque/yellow,
+/obj/effect/turf_decal/corner/opaque/yellow{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/ruin/space/has_grav/ancientstation/rnd)
+"CR" = (
+/obj/machinery/door/airlock/science{
+ dir = 4
+ },
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/airlock/public/glass{
- name = "Dining Area";
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
/obj/machinery/door/firedoor/border_only{
dir = 8
},
/obj/machinery/door/firedoor/border_only{
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/ancientstation/kitchen)
-"De" = (
+/area/ruin/space/has_grav/ancientstation/deltacorridor)
+"CU" = (
/obj/effect/decal/cleanable/dirt,
-/obj/item/kirbyplants{
- icon_state = "plant-25"
- },
-/obj/machinery/light/small/directional/east,
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/green,
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 4
- },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/firealarm/directional/east,
+/mob/living/simple_animal/hostile/alien/drone,
/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation/hydroponics)
+/area/ruin/space/has_grav/ancientstation/deltacorridor)
+"CX" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/airalarm/directional/north,
+/turf/open/floor/plasteel/white,
+/area/ruin/space/has_grav/ancientstation/proto)
"Dm" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
@@ -6992,19 +7130,10 @@
/area/ruin/space/has_grav/ancientstation/sec)
"Dn" = (
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/airalarm/directional/west,
-/obj/machinery/light/directional/west,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
- dir = 8
- },
-/obj/effect/turf_decal/corner/opaque/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/yellow{
- dir = 8
- },
+/obj/machinery/airalarm/directional/east,
+/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation/atmo)
+/area/ruin/space/has_grav/ancientstation/deltacorridor)
"Dp" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -7035,13 +7164,35 @@
},
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/rnd)
-"DO" = (
+"DM" = (
+/obj/machinery/door/airlock/science{
+ dir = 4
+ },
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small/directional/west,
-/obj/structure/table,
-/obj/effect/spawner/lootdrop/minor/beret_or_rabbitears,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/ruin/space/has_grav/ancientstation/deltacorridor)
+"DQ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/directional/west,
+/obj/effect/turf_decal/corner/opaque/purple{
+ dir = 1
+ },
+/obj/effect/turf_decal/corner/opaque/purple,
+/obj/effect/turf_decal/corner/opaque/purple{
+ dir = 8
+ },
/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav/ancientstation)
+/area/ruin/space/has_grav/ancientstation/rnd)
"DT" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 4
@@ -7052,60 +7203,61 @@
},
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/atmo)
-"DX" = (
+"DY" = (
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/directional/north,
+/obj/machinery/light/directional/south,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
+/mob/living/simple_animal/hostile/alien/drone,
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/deltacorridor)
-"Ex" = (
+"Eh" = (
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/firealarm/directional/east,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation)
-"EB" = (
+/obj/structure/rack,
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/directional/north,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation/betacorridor)
-"EH" = (
-/obj/item/kirbyplants{
- icon_state = "plant-25"
+/obj/structure/rack,
+/obj/item/gun/energy/laser/retro{
+ pixel_x = -2;
+ pixel_y = -2
},
-/obj/effect/decal/cleanable/cobweb,
-/obj/machinery/light/small/broken/directional/west{
- icon_state = "bulb-broken"
+/obj/item/gun/energy/laser/retro{
+ pixel_x = 2;
+ pixel_y = 2
},
-/obj/effect/turf_decal/corner/opaque/blue{
+/obj/effect/turf_decal/corner/opaque/red{
dir = 1
},
-/obj/effect/turf_decal/corner/opaque/blue{
+/obj/effect/turf_decal/corner/opaque/red,
+/obj/effect/turf_decal/corner/opaque/red{
dir = 8
},
-/obj/effect/turf_decal/corner/opaque/blue{
+/obj/machinery/airalarm/directional/west,
+/turf/open/floor/plasteel,
+/area/ruin/space/has_grav/ancientstation/sec)
+"ED" = (
+/obj/machinery/door/airlock/science{
dir = 4
},
-/turf/open/floor/plasteel/airless,
-/area/ruin/space/has_grav/ancientstation/medbay)
-"EI" = (
-/obj/machinery/light/small/directional/east,
-/obj/structure/alien/weeds,
-/obj/machinery/portable_atmospherics/scrubber,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/ancientstation/deltaai)
-"EN" = (
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/directional/east,
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/blood/tracks{
+ dir = 4;
+ icon_state = "tracks"
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/deltacorridor)
"EP" = (
@@ -7127,22 +7279,6 @@
},
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/atmo)
-"EY" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small/directional/north,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation)
-"Fn" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/directional/east,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation/deltacorridor)
-"FD" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/directional/west,
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav/ancientstation/rnd)
"FH" = (
/obj/structure/window/reinforced{
dir = 4
@@ -7158,73 +7294,35 @@
},
/turf/open/floor/plasteel/airless,
/area/ruin/space/has_grav/ancientstation/atmo)
-"FJ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/airalarm/directional/north,
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav/ancientstation/proto)
-"FR" = (
-/obj/machinery/door/airlock/science{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+"Gh" = (
+/obj/machinery/door/airlock/maintenance_hatch{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "4-8"
- },
/obj/machinery/door/firedoor/border_only{
dir = 8
},
/obj/machinery/door/firedoor/border_only{
dir = 4
},
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation/deltacorridor)
-"FT" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/xenoblood/xgibs/up,
-/obj/machinery/firealarm/directional/west,
-/turf/open/floor/plasteel,
+/turf/open/floor/plating,
/area/ruin/space/has_grav/ancientstation/deltacorridor)
"Gp" = (
-/obj/machinery/light/small/directional/east,
-/obj/structure/alien/weeds,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/ancientstation/deltaai)
-"Gq" = (
/obj/effect/decal/cleanable/dirt,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 8
- },
-/obj/machinery/door/airlock/external{
- name = "Engineering External Access";
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 4
+/obj/machinery/door/airlock/command{
+ dir = 4;
+ name = "Delta Station Access"
},
-/obj/machinery/door/firedoor/border_only{
- dir = 8
+/obj/machinery/door/poddoor{
+ dir = 4;
+ id = "ancient"
},
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/ancientstation/engi)
-"Gs" = (
/obj/effect/decal/cleanable/dirt,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/machinery/door/airlock/external{
- name = "Engineering External Access";
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
/obj/machinery/door/firedoor/border_only{
dir = 4
@@ -7232,19 +7330,17 @@
/obj/machinery/door/firedoor/border_only{
dir = 8
},
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/ancientstation/engi)
+/turf/open/floor/plasteel,
+/area/ruin/space/has_grav/ancientstation)
+"GE" = (
+/obj/machinery/firealarm/directional/north,
+/turf/open/floor/plasteel,
+/area/ruin/space/has_grav/ancientstation/betacorridor)
"GG" = (
/obj/structure/closet,
/obj/effect/spawner/lootdrop/maintenance/three,
/turf/open/floor/plating,
/area/ruin/space/has_grav/ancientstation/deltacorridor)
-"GJ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small/directional/north,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation/betacorridor)
"GP" = (
/obj/machinery/pipedispenser/disposal,
/obj/effect/turf_decal/industrial/warning/corner{
@@ -7252,6 +7348,12 @@
},
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/atmo)
+"GX" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/firealarm/directional/south,
+/turf/open/floor/plasteel,
+/area/ruin/space/has_grav/ancientstation/deltacorridor)
"Hn" = (
/turf/open/floor/engine/o2,
/area/ruin/space/has_grav/ancientstation/atmo)
@@ -7263,99 +7365,16 @@
/obj/effect/turf_decal/corner/opaque/yellow,
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/atmo)
-"HL" = (
-/obj/machinery/door/airlock/maintenance_hatch{
- name = "Engineering Storage";
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/firedoor/border_only{
- dir = 4
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/ancientstation/deltacorridor)
-"HV" = (
-/obj/structure/closet/firecloset,
-/obj/machinery/light_switch{
- pixel_x = 26
- },
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/ancientstation/betastorage)
-"HZ" = (
-/obj/machinery/light/small/directional/west,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+"HI" = (
+/obj/structure/window/reinforced{
dir = 8
},
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation)
-"Ig" = (
-/obj/effect/spawner/structure/window/hollow/reinforced,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
/obj/machinery/door/poddoor{
- id = "ancient";
- dir = 8
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/ancientstation/engi)
-"Ii" = (
-/obj/machinery/light/small/directional/west,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation)
-"Im" = (
-/obj/structure/closet/crate,
-/obj/item/cautery{
- pixel_x = 4
- },
-/obj/item/hemostat,
-/obj/item/circular_saw,
-/obj/item/scalpel{
- pixel_y = 12
- },
-/obj/item/retractor,
-/obj/machinery/light/small/broken/directional/west{
- icon_state = "bulb-broken"
- },
-/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/plasteel/airless,
-/area/ruin/space/has_grav/ancientstation/medbay)
-"Ir" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/chair{
- dir = 8
- },
-/obj/machinery/light/small/directional/east,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
+ dir = 4;
+ id = "proto"
},
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation/kitchen)
+/turf/open/floor/plasteel/white,
+/area/ruin/space/has_grav/ancientstation/proto)
"It" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/sink{
@@ -7368,19 +7387,6 @@
},
/turf/open/floor/plasteel/white,
/area/ruin/space/has_grav/ancientstation)
-"IH" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/directional/south,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood/old,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation/deltacorridor)
"IM" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -7401,20 +7407,6 @@
},
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/deltacorridor)
-"Jd" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/firealarm/directional/west,
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav/ancientstation/rnd)
-"Ji" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small/directional/north,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation)
"Jo" = (
/obj/effect/turf_decal/industrial/warning{
dir = 9
@@ -7429,48 +7421,16 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation)
-"JI" = (
-/obj/machinery/light/small/directional/west{
- brightness = 3
- },
+"Jq" = (
+/obj/machinery/light/small/directional/east,
/obj/structure/alien/weeds,
-/obj/effect/gibspawner/human,
/turf/open/floor/plasteel/dark,
/area/ruin/space/has_grav/ancientstation/deltaai)
-"JT" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation/deltacorridor)
-"JW" = (
-/obj/machinery/light/directional/east,
-/obj/structure/table/reinforced,
-/obj/item/paper/fluff/ruins/oldstation/protogun,
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav/ancientstation/proto)
-"Ko" = (
-/obj/machinery/door/airlock/maintenance_hatch{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/firedoor/border_only{
- dir = 8
- },
-/obj/machinery/door/firedoor/border_only{
+"Js" = (
+/obj/machinery/door/airlock/science{
dir = 4
},
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/ancientstation/deltacorridor)
-"Ku" = (
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/particle_accelerator/control_box,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/ancientstation/deltacorridor)
-"KD" = (
-/obj/machinery/door/airlock/maintenance_hatch{
- dir = 4
- },
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/firedoor/border_only{
dir = 4
@@ -7478,30 +7438,22 @@
/obj/machinery/door/firedoor/border_only{
dir = 8
},
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/ancientstation/deltacorridor)
-"KL" = (
-/obj/machinery/firealarm/directional/north,
/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation/betacorridor)
-"KQ" = (
+/area/ruin/space/has_grav/ancientstation/deltacorridor)
+"JE" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/directional/west,
+/turf/open/floor/plasteel/white,
+/area/ruin/space/has_grav/ancientstation/rnd)
+"JG" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/barricade/wooden,
/obj/machinery/door/airlock/command{
- name = "Beta Station Access"
- },
-/obj/machinery/door/poddoor{
- id = "ancient";
- dir = 4
+ dir = 4;
+ name = "Charlie Station Access";
+ req_access_txt = "200"
},
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
/obj/machinery/door/firedoor/border_only{
dir = 8
},
@@ -7509,40 +7461,71 @@
dir = 4
},
/turf/open/floor/plasteel,
+/area/ruin/space/has_grav/ancientstation/deltacorridor)
+"JK" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/storage/backpack/old,
+/obj/structure/closet,
+/obj/machinery/firealarm/directional/west,
+/turf/open/floor/plasteel,
+/area/ruin/space/has_grav/ancientstation)
+"JT" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/ruin/space/has_grav/ancientstation/deltacorridor)
+"JZ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small/directional/north,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/ruin/space/has_grav/ancientstation)
+"Km" = (
+/obj/structure/closet/firecloset,
+/obj/machinery/light_switch{
+ pixel_x = 26
+ },
+/turf/open/floor/plating/airless,
+/area/ruin/space/has_grav/ancientstation/betastorage)
+"Ko" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small/directional/west,
+/obj/structure/table,
+/obj/effect/spawner/lootdrop/minor/beret_or_rabbitears,
+/turf/open/floor/plasteel/white,
+/area/ruin/space/has_grav/ancientstation)
+"Kq" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation)
-"Lg" = (
-/obj/machinery/door/airlock/maintenance_hatch{
- dir = 4
- },
+"Ku" = (
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+/obj/machinery/particle_accelerator/control_box,
+/turf/open/floor/plating,
+/area/ruin/space/has_grav/ancientstation/deltacorridor)
+"KE" = (
+/obj/structure/window/reinforced{
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/door/poddoor{
+ dir = 4;
+ id = "proto"
},
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/ancientstation)
+/turf/open/floor/plasteel/white,
+/area/ruin/space/has_grav/ancientstation/proto)
+"Le" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/firealarm/directional/west,
+/turf/open/floor/plasteel,
+/area/ruin/space/has_grav/ancientstation/deltacorridor)
"Lh" = (
/obj/structure/window/reinforced,
/turf/open/floor/engine/o2,
/area/ruin/space/has_grav/ancientstation/atmo)
-"Li" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small/directional/west,
-/obj/structure/cable,
-/obj/machinery/firealarm/directional/west,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/ancientstation/engi)
"Ll" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/particle_accelerator/particle_emitter/right,
@@ -7560,42 +7543,24 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/atmo)
-"LF" = (
+"Lq" = (
+/obj/machinery/light/directional/west,
+/obj/structure/table/reinforced,
+/obj/item/paper/fluff/ruins/oldstation/protosuit,
+/turf/open/floor/plasteel/white,
+/area/ruin/space/has_grav/ancientstation/proto)
+"Ls" = (
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/directional/east,
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/firealarm/directional/east,
-/mob/living/simple_animal/hostile/alien/drone,
+/obj/effect/decal/cleanable/blood/old,
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/deltacorridor)
-"LI" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small/directional/east,
-/obj/effect/turf_decal/corner/opaque/red,
-/obj/effect/turf_decal/corner/opaque/red{
- dir = 4
- },
-/obj/machinery/firealarm/directional/east,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation/sec)
-"LS" = (
-/obj/structure/table,
-/obj/item/reagent_containers/glass/bottle/iodine{
- pixel_y = 8
- },
-/obj/item/reagent_containers/glass/bottle/iron{
- pixel_x = 6
- },
-/obj/item/reagent_containers/glass/bottle/lithium{
- pixel_x = -6
- },
+"LR" = (
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small/directional/east,
-/obj/effect/turf_decal/corner/opaque/yellow,
-/obj/effect/turf_decal/corner/opaque/yellow{
- dir = 4
- },
+/obj/machinery/light/directional/east,
/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation/rnd)
+/area/ruin/space/has_grav/ancientstation/deltacorridor)
"LY" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 8;
@@ -7603,73 +7568,60 @@
},
/turf/open/floor/plating/airless,
/area/ruin/space/has_grav/ancientstation/atmo)
-"Ma" = (
-/obj/machinery/door/window/westleft,
-/obj/machinery/door/poddoor{
- id = "proto";
- dir = 4
+"Mh" = (
+/obj/machinery/door/airlock/engineering{
+ dir = 4;
+ name = "Engineering"
},
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav/ancientstation/proto)
-"Mg" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/airalarm/directional/east,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation/betacorridor)
-"Mo" = (
-/obj/machinery/light/small/directional/east,
-/obj/effect/decal/cleanable/shreds,
-/obj/structure/alien/weeds/node,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/ancientstation/deltaai)
-"Mr" = (
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/airlock/command{
- name = "Delta Station Access";
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/border_only{
dir = 4
},
/obj/machinery/door/poddoor{
- id = "ancient";
- dir = 4
+ dir = 8;
+ id = "ancient"
},
+/turf/open/floor/plasteel,
+/area/ruin/space/has_grav/ancientstation/engi)
+"Mq" = (
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "Charlie Station Kitchen APC";
+ pixel_y = 25;
+ start_charge = 0
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+/obj/machinery/light/small/directional/north,
+/obj/structure/cable{
+ icon_state = "0-8"
},
-/obj/machinery/door/firedoor/border_only{
- dir = 4
+/obj/effect/turf_decal/corner/opaque/white{
+ dir = 1
},
-/obj/machinery/door/firedoor/border_only{
- dir = 8
+/obj/effect/turf_decal/corner/opaque/white{
+ dir = 2
},
/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation)
+/area/ruin/space/has_grav/ancientstation/kitchen)
"Mt" = (
/obj/effect/spawner/structure/window/hollow/reinforced/end,
/turf/open/floor/plating,
/area/ruin/space/has_grav/ancientstation/atmo)
-"ME" = (
+"Mw" = (
/obj/effect/decal/cleanable/dirt,
-/obj/item/kirbyplants{
- icon_state = "plant-25"
- },
-/obj/machinery/light/small/directional/west,
-/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{
- dir = 8
+/obj/machinery/light/directional/east,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/blood/tracks{
+ dir = 1;
+ icon_state = "tracks"
},
-/obj/machinery/firealarm/directional/west,
+/obj/machinery/firealarm/directional/east,
+/mob/living/simple_animal/hostile/alien,
/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation/hydroponics)
+/area/ruin/space/has_grav/ancientstation/deltacorridor)
"MG" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -7683,102 +7635,55 @@
},
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/kitchen)
-"MP" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small/directional/east,
-/obj/item/assembly/flash/handheld,
-/obj/item/assembly/flash/handheld,
-/obj/item/storage/box/firingpins,
-/obj/structure/closet/crate/secure/weapon{
- req_access_txt = "203"
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/ancientstation/deltacorridor)
-"MQ" = (
-/obj/machinery/door/airlock/science{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+"MK" = (
+/obj/machinery/door/airlock/maintenance_hatch{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/firedoor/border_only{
- dir = 8
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation/deltacorridor)
-"MR" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/airlock/maintenance_hatch{
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/obj/structure/cable{
icon_state = "4-8"
},
/obj/machinery/door/firedoor/border_only{
- dir = 4
+ dir = 8
},
/obj/machinery/door/firedoor/border_only{
- dir = 8
+ dir = 4
},
-/turf/open/floor/plasteel/airless,
-/area/ruin/space/has_grav/ancientstation/betastorage)
-"MT" = (
-/obj/machinery/light/small/directional/east,
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/ancientstation/betastorage)
-"MV" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small/directional/south,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
+/turf/open/floor/plating,
/area/ruin/space/has_grav/ancientstation)
-"Na" = (
-/obj/machinery/light/small/directional/east,
-/obj/structure/alien/weeds,
-/obj/effect/decal/cleanable/blood/tracks,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/ancientstation/deltaai)
-"Nf" = (
+"No" = (
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small/directional/west,
-/obj/effect/turf_decal/corner/opaque/green{
+/obj/effect/decal/cleanable/xenoblood/xgibs/up,
+/obj/machinery/firealarm/directional/west,
+/turf/open/floor/plasteel,
+/area/ruin/space/has_grav/ancientstation/deltacorridor)
+"Nx" = (
+/obj/effect/turf_decal/corner/opaque/blue{
dir = 1
},
-/obj/effect/turf_decal/corner/opaque/green{
+/obj/effect/turf_decal/corner/opaque/blue{
dir = 8
},
-/obj/item/reagent_containers/spray/weedspray,
-/obj/item/reagent_containers/spray/pestspray,
-/obj/structure/closet/crate/hydroponics,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation/hydroponics)
-"Nz" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small/directional/west{
- brightness = 3
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation)
-"ND" = (
+/obj/machinery/airalarm/directional/west,
+/turf/open/floor/plasteel/airless,
+/area/ruin/space/has_grav/ancientstation/medbay)
+"Ny" = (
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small/directional/south,
+/obj/machinery/light/directional/west,
/obj/effect/decal/cleanable/dirt,
-/obj/item/storage/backpack/old,
-/obj/structure/closet,
/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation)
+/area/ruin/space/has_grav/ancientstation/deltacorridor)
+"NF" = (
+/obj/machinery/light/small/directional/east,
+/obj/structure/alien/weeds/node,
+/turf/open/floor/plasteel/dark,
+/area/ruin/space/has_grav/ancientstation/deltaai)
"NQ" = (
/obj/structure/window/reinforced{
dir = 8
@@ -7791,28 +7696,44 @@
internal_pressure_bound = 5066;
name = "Nitrogen Out"
},
-/turf/open/floor/engine/o2,
-/area/ruin/space/has_grav/ancientstation/atmo)
-"Om" = (
+/turf/open/floor/engine/o2,
+/area/ruin/space/has_grav/ancientstation/atmo)
+"NZ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/directional/east,
+/obj/effect/turf_decal/corner/opaque/purple,
+/obj/effect/turf_decal/corner/opaque/purple{
+ dir = 4
+ },
+/obj/effect/turf_decal/corner/opaque/purple{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/ruin/space/has_grav/ancientstation/rnd)
+"Oi" = (
+/obj/machinery/light/small/directional/west,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/ruin/space/has_grav/ancientstation)
+"Ok" = (
/obj/machinery/door/window/eastright,
/obj/machinery/door/poddoor{
- id = "proto";
- dir = 4
+ dir = 4;
+ id = "proto"
},
/turf/open/floor/plasteel/white,
/area/ruin/space/has_grav/ancientstation/proto)
-"Ov" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 8
- },
-/obj/structure/closet/crate/bin,
-/obj/machinery/airalarm/directional/south,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation/hydroponics)
+"Oo" = (
+/obj/machinery/light/small/directional/east,
+/obj/effect/decal/cleanable/shreds,
+/obj/structure/alien/weeds/node,
+/turf/open/floor/plasteel/dark,
+/area/ruin/space/has_grav/ancientstation/deltaai)
"OA" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -7823,34 +7744,35 @@
},
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/rnd)
+"OB" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small/directional/east,
+/obj/effect/turf_decal/corner/opaque/red,
+/obj/effect/turf_decal/corner/opaque/red{
+ dir = 4
+ },
+/obj/machinery/firealarm/directional/east,
+/turf/open/floor/plasteel,
+/area/ruin/space/has_grav/ancientstation/sec)
"OC" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/white,
/area/ruin/space/has_grav/ancientstation)
-"OE" = (
+"OD" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/chair{
- dir = 1
- },
-/obj/machinery/airalarm/directional/east,
-/obj/machinery/light/directional/east,
-/obj/effect/turf_decal/corner/opaque/blue,
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 4
+/obj/machinery/door/airlock/public/glass{
+ dir = 4;
+ name = "Hydroponics"
},
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation/comm)
-"OF" = (
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small/directional/north,
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
},
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
},
/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation/kitchen)
+/area/ruin/space/has_grav/ancientstation/hydroponics)
"OU" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
/turf/open/floor/plasteel,
@@ -7862,49 +7784,53 @@
},
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/sec)
-"OW" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small/directional/south,
-/obj/effect/turf_decal/corner/opaque/green,
-/obj/machinery/light_switch{
- pixel_x = 0;
- pixel_y = -26
+"OY" = (
+/obj/machinery/door/airlock/command{
+ name = "Beta Station Access"
},
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation/hydroponics)
-"Pg" = (
-/obj/machinery/door/airlock/security{
- dir = 4
+/obj/machinery/door/poddoor{
+ dir = 4;
+ id = "ancient"
},
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/firedoor/border_only{
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
/obj/machinery/door/firedoor/border_only{
dir = 8
},
-/obj/machinery/door/poddoor{
- id = "ancient";
- dir = 8
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
},
/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation/sec)
-"Pk" = (
-/obj/machinery/door/airlock/maintenance_hatch{
+/area/ruin/space/has_grav/ancientstation)
+"Pe" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/airalarm/directional/east,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/blood/tracks,
+/turf/open/floor/plasteel,
+/area/ruin/space/has_grav/ancientstation/deltacorridor)
+"Pj" = (
+/obj/machinery/door/airlock/science{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "4-8"
- },
+/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/firedoor/border_only{
dir = 8
},
/obj/machinery/door/firedoor/border_only{
dir = 4
},
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/ancientstation)
+/turf/open/floor/plasteel,
+/area/ruin/space/has_grav/ancientstation/deltacorridor)
"Pn" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/corner/opaque/red{
@@ -7925,6 +7851,30 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation)
+"Pr" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ 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/door/airlock/command{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/ruin/space/has_grav/ancientstation/betacorridor)
"Px" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -7932,13 +7882,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/deltacorridor)
-"Py" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small/directional/west{
- brightness = 3
- },
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav/ancientstation)
"PC" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -7947,25 +7890,6 @@
},
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/comm)
-"PQ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small/directional/east,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation/betacorridor)
-"PR" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/directional/south,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/mob/living/simple_animal/hostile/alien/drone,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation/deltacorridor)
"PV" = (
/obj/item/kirbyplants{
icon_state = "plant-25"
@@ -7977,56 +7901,20 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation)
-"Qc" = (
-/obj/machinery/door/airlock/command{
- name = "Beta Station Access"
- },
-/obj/machinery/door/poddoor{
- id = "ancient";
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/firedoor/border_only{
- dir = 8
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation)
-"Qd" = (
+"Qo" = (
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/directional/east,
-/obj/effect/turf_decal/corner/opaque/purple,
-/obj/effect/turf_decal/corner/opaque/purple{
- dir = 4
- },
-/obj/effect/turf_decal/corner/opaque/purple{
- dir = 8
+/obj/effect/turf_decal/corner/opaque/yellow{
+ dir = 1
},
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav/ancientstation/rnd)
-"Qi" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/directional/east,
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav/ancientstation/rnd)
-"Qk" = (
-/obj/structure/rack,
-/obj/item/storage/bag/ore,
-/obj/item/storage/bag/ore,
-/obj/item/mining_scanner,
-/obj/item/mining_scanner,
-/obj/effect/turf_decal/corner/opaque/brown{
+/obj/effect/turf_decal/corner/opaque/yellow{
dir = 8
},
-/obj/effect/turf_decal/corner/opaque/brown{
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 1
},
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/airalarm/directional/west,
+/obj/machinery/firealarm/directional/west,
/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation/mining)
+/area/ruin/space/has_grav/ancientstation/rnd)
"Qp" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/window/westright,
@@ -8035,140 +7923,148 @@
},
/turf/open/floor/plasteel/white,
/area/ruin/space/has_grav/ancientstation)
-"Qz" = (
-/obj/machinery/light/directional/east,
-/obj/structure/table/reinforced,
-/obj/item/paper/fluff/ruins/oldstation/protosing,
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav/ancientstation/proto)
-"QC" = (
-/obj/machinery/airalarm/directional/west,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation/deltacorridor)
-"QH" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/directional/west,
+"Qr" = (
+/obj/machinery/door/airlock/command{
+ name = "Beta Station Access"
+ },
+/obj/machinery/door/poddoor{
+ dir = 4;
+ id = "ancient"
+ },
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
+ },
/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation/deltacorridor)
-"QM" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
+/area/ruin/space/has_grav/ancientstation)
+"Qz" = (
/obj/machinery/light/small/directional/east,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation/mining)
-"QQ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
+/obj/structure/alien/weeds,
+/obj/effect/decal/cleanable/blood/tracks,
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation/hydroponics)
-"QT" = (
-/obj/machinery/airalarm/directional/east,
-/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/dark,
+/area/ruin/space/has_grav/ancientstation/deltaai)
+"QA" = (
+/obj/machinery/light/small/directional/south,
+/obj/structure/closet/firecloset/full,
+/turf/open/floor/plating,
+/area/ruin/space/has_grav/ancientstation/deltacorridor)
+"QQ" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation)
-"QV" = (
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small/directional/west{
- brightness = 3
- },
-/obj/effect/turf_decal/corner/opaque/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/yellow{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
},
/turf/open/floor/plasteel,
+/area/ruin/space/has_grav/ancientstation/hydroponics)
+"QY" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small/directional/west,
+/obj/structure/cable,
+/obj/machinery/firealarm/directional/west,
+/turf/open/floor/plating,
/area/ruin/space/has_grav/ancientstation/engi)
-"Ra" = (
-/obj/machinery/light/small/directional/west{
- brightness = 3
+"Rc" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/cobweb,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/airalarm/directional/west,
+/obj/machinery/light_switch{
+ pixel_x = 0;
+ pixel_y = 26
},
-/obj/structure/alien/weeds,
-/mob/living/simple_animal/hostile/alien,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/ancientstation/deltaai)
+/turf/open/floor/plasteel,
+/area/ruin/space/has_grav/ancientstation)
"Re" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/deltacorridor)
-"Ri" = (
+"Rf" = (
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/airlock/command{
- name = "Delta Station Access";
- dir = 4
- },
-/obj/machinery/door/poddoor{
- id = "ancient";
- dir = 4
- },
+/obj/machinery/light/directional/east,
+/turf/open/floor/plasteel/white,
+/area/ruin/space/has_grav/ancientstation/rnd)
+"Rn" = (
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/firedoor/border_only{
+/obj/machinery/light/small/directional/west,
+/obj/effect/turf_decal/corner/opaque/red{
+ dir = 1
+ },
+/obj/effect/turf_decal/corner/opaque/red{
dir = 8
},
-/obj/machinery/door/firedoor/border_only{
- dir = 4
+/obj/structure/cable{
+ icon_state = "1-2"
},
/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation)
-"Rn" = (
-/obj/machinery/door/airlock/atmos/glass{
- name = "Station Atmospherics";
- dir = 4
+/area/ruin/space/has_grav/ancientstation/sec)
+"Ru" = (
+/obj/machinery/light/directional/east,
+/obj/structure/table/reinforced,
+/obj/item/paper/fluff/ruins/oldstation/protogun,
+/turf/open/floor/plasteel/white,
+/area/ruin/space/has_grav/ancientstation/proto)
+"RG" = (
+/obj/machinery/door/airlock/engineering{
+ dir = 4;
+ name = "Backup Generator Room"
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
},
-/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/firedoor/border_only{
dir = 8
},
/obj/machinery/door/firedoor/border_only{
dir = 4
},
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation/atmo)
-"Rx" = (
+/turf/open/floor/plating,
+/area/ruin/space/has_grav/ancientstation/engi)
+"RH" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/chair{
- dir = 1
+/obj/effect/turf_decal/industrial/warning/corner{
+ dir = 8
},
-/obj/machinery/light/directional/west,
-/obj/effect/turf_decal/corner/opaque/blue{
+/obj/effect/turf_decal/industrial/warning/corner{
dir = 1
},
-/obj/effect/turf_decal/corner/opaque/blue{
- dir = 8
+/obj/machinery/firealarm/directional/west,
+/turf/open/floor/plasteel/white,
+/area/ruin/space/has_grav/ancientstation/proto)
+"RP" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
},
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/comm)
-"RL" = (
+"RU" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/light/directional/east,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/deltacorridor)
-"RO" = (
+"RZ" = (
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/directional/west,
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 1
},
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation/deltacorridor)
-"RP" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
+/obj/effect/turf_decal/corner/opaque/yellow{
+ dir = 1
},
+/obj/effect/turf_decal/corner/opaque/yellow{
+ dir = 8
+ },
+/obj/machinery/firealarm/directional/west,
/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation/comm)
+/area/ruin/space/has_grav/ancientstation/atmo)
"Se" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -8184,16 +8080,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
/area/ruin/space/has_grav/ancientstation/deltacorridor)
-"Sh" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small/directional/east,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation)
"Sn" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -8202,16 +8088,37 @@
},
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation)
-"Sp" = (
-/obj/structure/window/reinforced{
+"Sr" = (
+/obj/machinery/door/airlock/maintenance_hatch{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/border_only{
dir = 8
},
-/obj/machinery/door/poddoor{
- id = "proto";
+/obj/machinery/door/firedoor/border_only{
dir = 4
},
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav/ancientstation/proto)
+/turf/open/floor/plating,
+/area/ruin/space/has_grav/ancientstation)
+"St" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/kirbyplants{
+ icon_state = "plant-25"
+ },
+/obj/machinery/light/small/directional/east,
+/obj/effect/turf_decal/corner/opaque/green{
+ dir = 1
+ },
+/obj/effect/turf_decal/corner/opaque/green,
+/obj/effect/turf_decal/corner/opaque/green{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/ruin/space/has_grav/ancientstation/hydroponics)
"Su" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/light_switch{
@@ -8226,6 +8133,23 @@
},
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/kitchen)
+"Sv" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/directional/west,
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/ruin/space/has_grav/ancientstation/deltacorridor)
+"SA" = (
+/obj/effect/decal/cleanable/oil,
+/obj/machinery/light/small/directional/west{
+ brightness = 3
+ },
+/obj/structure/alien/weeds,
+/turf/open/floor/plasteel/dark,
+/area/ruin/space/has_grav/ancientstation/deltaai)
"SP" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/mirror{
@@ -8245,45 +8169,78 @@
},
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/deltacorridor)
+"SW" = (
+/obj/effect/spawner/structure/window/hollow/reinforced,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/machinery/door/poddoor{
+ dir = 8;
+ id = "ancient"
+ },
+/turf/open/floor/plating,
+/area/ruin/space/has_grav/ancientstation/sec)
+"Tb" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/machinery/door/airlock/external{
+ dir = 8;
+ name = "Engineering External Access"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/ruin/space/has_grav/ancientstation/engi)
"Td" = (
/obj/item/stack/rods,
/obj/structure/lattice,
/turf/template_noop,
/area/space/nearstation)
-"Tg" = (
-/obj/machinery/door/poddoor{
- id = "proto";
- dir = 4
- },
-/obj/machinery/door/window/westright,
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav/ancientstation/proto)
"Tk" = (
/obj/effect/spawner/structure/window/hollow/reinforced/end{
dir = 1
},
/turf/open/floor/plating,
/area/ruin/space/has_grav/ancientstation/atmo)
-"Ts" = (
+"Tz" = (
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/airlock/command{
- name = "Charlie Station Access";
- req_access_txt = "200";
- dir = 4
+/obj/machinery/light/directional/east,
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8
},
/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/ruin/space/has_grav/ancientstation/deltacorridor)
+"TF" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/directional/north,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
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{
dir = 4
},
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/deltacorridor)
"TL" = (
@@ -8293,32 +8250,67 @@
dir = 4;
name = "Broken Computer"
},
-/obj/effect/turf_decal/industrial/warning{
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/ruin/space/has_grav/ancientstation/atmo)
+"TU" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/airalarm/directional/north,
+/obj/effect/decal/cleanable/food/egg_smudge,
+/obj/structure/cable{
+ icon_state = "4-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/has_grav/ancientstation/kitchen)
+"TZ" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/outlet_injector/on{
+ dir = 8;
+ icon_state = "inje_map-2"
+ },
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/engine/n2,
+/area/ruin/space/has_grav/ancientstation/atmo)
+"Ua" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/light/directional/north,
+/obj/machinery/light_switch{
+ pixel_x = 0;
+ pixel_y = 26
+ },
+/turf/open/floor/plasteel/white,
+/area/ruin/space/has_grav/ancientstation/proto)
+"Ug" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 4
},
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation/atmo)
-"TW" = (
-/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "1-2"
+/obj/effect/turf_decal/industrial/warning{
+ dir = 6
},
-/obj/machinery/firealarm/directional/west,
/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation)
-"TZ" = (
-/obj/machinery/door/airlock/medical/glass{
- name = "Medical Bay";
+/area/ruin/space/has_grav/ancientstation/atmo)
+"Ut" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+/obj/machinery/door/airlock/maintenance_hatch{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 8
- },
/obj/structure/cable{
icon_state = "4-8"
},
@@ -8328,19 +8320,30 @@
/obj/machinery/door/firedoor/border_only{
dir = 8
},
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation/medbay)
-"Ug" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+/turf/open/floor/plasteel/airless,
+/area/ruin/space/has_grav/ancientstation/betastorage)
+"Uw" = (
+/obj/machinery/light/small/directional/west{
+ brightness = 3
+ },
+/obj/structure/alien/weeds,
+/mob/living/simple_animal/hostile/alien,
+/turf/open/floor/plasteel/dark,
+/area/ruin/space/has_grav/ancientstation/deltaai)
+"UB" = (
+/obj/machinery/door/airlock/command{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/industrial/warning{
- dir = 6
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
},
/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation/atmo)
-"UL" = (
+/area/ruin/space/has_grav/ancientstation/betacorridor)
+"UC" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/chair{
dir = 1
@@ -8355,28 +8358,20 @@
/obj/machinery/firealarm/directional/west,
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/comm)
-"UM" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/airalarm/directional/west,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation/deltacorridor)
-"UP" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/airalarm/directional/north,
-/obj/effect/decal/cleanable/food/egg_smudge,
-/obj/structure/cable{
- icon_state = "4-8"
+"UJ" = (
+/obj/machinery/door/airlock/atmos/glass{
+ dir = 4;
+ name = "Station Atmospherics"
},
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 1
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
},
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
},
/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation/kitchen)
+/area/ruin/space/has_grav/ancientstation/atmo)
"UV" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -8392,98 +8387,110 @@
},
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/atmo)
-"Vd" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/item/storage/backpack/old,
-/obj/structure/closet,
-/obj/machinery/firealarm/directional/west,
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation)
"Ve" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/ruin/space/has_grav/ancientstation/deltacorridor)
+"Vj" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/firealarm/directional/east,
+/turf/open/floor/plasteel,
+/area/ruin/space/has_grav/ancientstation)
+"Vr" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/airalarm/directional/west,
+/turf/open/floor/plating/airless,
+/area/ruin/space/has_grav/ancientstation/betastorage)
"VH" = (
/obj/structure/sign/poster/retro/nanotrasen_logo_80s,
/turf/closed/wall,
/area/ruin/space/has_grav/ancientstation/comm)
-"VI" = (
+"VW" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/airalarm/directional/east,
+/turf/open/floor/plasteel/white,
+/area/ruin/space/has_grav/ancientstation/rnd)
+"Wb" = (
+/obj/machinery/light/small/directional/east,
+/obj/machinery/airalarm/directional/east,
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/airlock/public/glass{
- name = "Hydroponics";
- dir = 4
- },
/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/ruin/space/has_grav/ancientstation/hydroponics)
-"Wc" = (
+/area/ruin/space/has_grav/ancientstation)
+"Wi" = (
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/directional/west,
-/obj/effect/turf_decal/corner/opaque/purple{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/purple,
-/obj/effect/turf_decal/corner/opaque/purple{
- dir = 8
+/obj/machinery/light/small/directional/west{
+ brightness = 3
},
/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav/ancientstation/rnd)
-"Wm" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/manifold/supply/visible{
- dir = 4
- },
-/obj/machinery/light/small/directional/east,
-/obj/effect/turf_decal/corner/opaque/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/corner/opaque/yellow,
-/obj/structure/cable{
- icon_state = "1-2"
+/area/ruin/space/has_grav/ancientstation)
+"Wp" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "N2 Output"
},
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/atmo)
-"Wn" = (
-/obj/machinery/portable_atmospherics/canister/toxins,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+"Wu" = (
+/obj/structure/closet,
+/obj/item/tank/jetpack/void,
+/obj/item/clothing/head/helmet/space/nasavoid/old,
+/obj/item/clothing/suit/space/nasavoid,
+/obj/effect/turf_decal/corner/opaque/brown{
dir = 8
},
+/obj/effect/turf_decal/corner/opaque/brown{
+ dir = 1
+ },
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/plasteel,
+/area/ruin/space/has_grav/ancientstation/mining)
+"WF" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/light/small/directional/east,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/ancientstation/atmo)
-"Wp" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 8;
- name = "N2 Output"
+/obj/item/assembly/flash/handheld,
+/obj/item/assembly/flash/handheld,
+/obj/item/storage/box/firingpins,
+/obj/structure/closet/crate/secure/weapon{
+ req_access_txt = "203"
},
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation/atmo)
-"WG" = (
+/turf/open/floor/plating,
+/area/ruin/space/has_grav/ancientstation/deltacorridor)
+"WP" = (
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small/directional/east,
-/obj/effect/turf_decal/corner/opaque/red,
-/obj/effect/turf_decal/corner/opaque/red{
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/machinery/airalarm/directional/east,
+/obj/machinery/light/directional/east,
+/obj/effect/turf_decal/corner/opaque/blue,
+/obj/effect/turf_decal/corner/opaque/blue{
dir = 4
},
-/obj/structure/closet/crate/bin,
/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation/sec)
-"WP" = (
+/area/ruin/space/has_grav/ancientstation/comm)
+"WQ" = (
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/door/airlock/command{
+ dir = 4;
+ name = "Delta Station Access"
+ },
+/obj/machinery/door/poddoor{
+ dir = 4;
+ id = "ancient"
+ },
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/firealarm/directional/west,
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
+ },
/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation/deltacorridor)
+/area/ruin/space/has_grav/ancientstation)
"WT" = (
/obj/structure/window/reinforced{
dir = 8
@@ -8501,52 +8508,28 @@
},
/turf/open/floor/engine/n2,
/area/ruin/space/has_grav/ancientstation/atmo)
-"WY" = (
-/obj/effect/decal/cleanable/oil,
-/obj/machinery/light/small/directional/west{
- brightness = 3
- },
-/obj/structure/alien/weeds,
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/ancientstation/deltaai)
-"WZ" = (
-/obj/machinery/light/small/directional/west,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation)
-"Xc" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/power/apc{
- dir = 1;
- name = "Charlie Station Kitchen APC";
- pixel_y = 25;
- start_charge = 0
- },
-/obj/machinery/light/small/directional/north,
-/obj/structure/cable{
- icon_state = "0-8"
+"Xb" = (
+/obj/structure/rack,
+/obj/item/storage/bag/ore,
+/obj/item/storage/bag/ore,
+/obj/item/mining_scanner,
+/obj/item/mining_scanner,
+/obj/effect/turf_decal/corner/opaque/brown{
+ dir = 8
},
-/obj/effect/turf_decal/corner/opaque/white{
+/obj/effect/turf_decal/corner/opaque/brown{
dir = 1
},
-/obj/effect/turf_decal/corner/opaque/white{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation/kitchen)
-"Xg" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small/directional/east,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/airalarm/directional/west,
/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation)
+/area/ruin/space/has_grav/ancientstation/mining)
+"Xd" = (
+/obj/machinery/light/directional/east,
+/obj/structure/table/reinforced,
+/obj/item/paper/fluff/ruins/oldstation/protosing,
+/turf/open/floor/plasteel/white,
+/area/ruin/space/has_grav/ancientstation/proto)
"Xh" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -8559,53 +8542,59 @@
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/rnd)
"Xo" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/obj/machinery/light/small/directional/east,
-/obj/effect/turf_decal/corner/opaque/yellow,
-/obj/effect/turf_decal/corner/opaque/yellow{
- dir = 4
- },
-/obj/machinery/light_switch{
- pixel_x = 26
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation/engi)
+/obj/machinery/light/directional/west,
+/obj/structure/table/reinforced,
+/obj/item/paper/fluff/ruins/oldstation/protohealth,
+/turf/open/floor/plasteel/white,
+/area/ruin/space/has_grav/ancientstation/proto)
"Xr" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/components/unary/vent_pump/on,
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/hydroponics)
-"Xz" = (
+"XJ" = (
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/directional/east,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/ruin/space/has_grav/ancientstation/engi)
+"XK" = (
+/obj/machinery/door/airlock/science{
+ dir = 4
+ },
/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood/tracks{
- dir = 1;
- icon_state = "tracks"
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ 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/firealarm/directional/east,
-/mob/living/simple_animal/hostile/alien,
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/deltacorridor)
-"XE" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/airalarm/directional/east,
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav/ancientstation/rnd)
-"XF" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/airalarm/directional/west,
+"XO" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/item/shard{
+ icon_state = "small"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/light/broken/directional/west{
+ icon_state = "tube-broken"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/ancientstation/betastorage)
-"XJ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/ancientstation/engi)
-"Ya" = (
+/area/ruin/space/has_grav/ancientstation/betacorridor)
+"XY" = (
/obj/machinery/door/airlock/science{
dir = 8
},
@@ -8637,6 +8626,34 @@
/obj/item/soap/nanotrasen,
/turf/open/floor/plasteel/white,
/area/ruin/space/has_grav/ancientstation)
+"Yn" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/directional/south,
+/obj/structure/table,
+/turf/open/floor/plasteel/white,
+/area/ruin/space/has_grav/ancientstation/proto)
+"Yo" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/door/airlock/command{
+ dir = 4;
+ name = "Charlie Station Access";
+ req_access_txt = "200"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ 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{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/ruin/space/has_grav/ancientstation/deltacorridor)
"Yr" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -8652,60 +8669,72 @@
},
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/deltacorridor)
-"YB" = (
+"YF" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/barricade/wooden,
-/obj/machinery/door/airlock/command{
- name = "Charlie Station Access";
- req_access_txt = "200";
- dir = 4
- },
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/firedoor/border_only{
- dir = 8
+/obj/machinery/airalarm/directional/east,
+/turf/open/floor/plasteel,
+/area/ruin/space/has_grav/ancientstation/betacorridor)
+"YJ" = (
+/obj/machinery/door/airlock/highsecurity,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/structure/alien/weeds,
+/obj/effect/decal/cleanable/xenoblood/xtracks,
+/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 = 4
+ dir = 1
},
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation/deltacorridor)
-"YH" = (
-/obj/machinery/light/small/directional/east,
-/obj/structure/alien/weeds/node,
-/turf/open/floor/plasteel/dark,
+/turf/open/floor/plating,
/area/ruin/space/has_grav/ancientstation/deltaai)
"YN" = (
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/airalarm/directional/east,
-/obj/effect/turf_decal/corner/opaque/yellow,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/airalarm/directional/west,
+/obj/machinery/light/directional/west,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
+ dir = 8
+ },
+/obj/effect/turf_decal/corner/opaque/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/corner/opaque/yellow{
+ dir = 8
+ },
/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation/rnd)
-"YR" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/directional/north,
+/area/ruin/space/has_grav/ancientstation/atmo)
+"YT" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
+/obj/machinery/airalarm/directional/south,
/obj/structure/cable{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation/deltacorridor)
-"Zd" = (
-/obj/structure/window/reinforced{
- dir = 4
+/area/ruin/space/has_grav/ancientstation/betacorridor)
+"YU" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/chair{
+ dir = 8
},
-/obj/machinery/door/poddoor{
- id = "proto";
- dir = 4
+/obj/machinery/light/small/directional/east,
+/obj/effect/turf_decal/corner/opaque/white{
+ dir = 1
},
-/turf/open/floor/plasteel/white,
-/area/ruin/space/has_grav/ancientstation/proto)
+/obj/effect/turf_decal/corner/opaque/white{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/ruin/space/has_grav/ancientstation/kitchen)
"Ze" = (
/obj/machinery/portable_atmospherics/canister/nitrogen,
/turf/open/floor/engine/n2,
@@ -8717,78 +8746,51 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
/area/ruin/space/has_grav/ancientstation/atmo)
-"Zm" = (
-/obj/machinery/door/airlock/medical/glass{
- name = "Chemical Storage";
- req_access_txt = "200";
- dir = 4
+"Zj" = (
+/obj/item/kirbyplants{
+ icon_state = "plant-25"
},
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+/obj/effect/decal/cleanable/cobweb,
+/obj/machinery/light/small/broken/directional/west{
+ icon_state = "bulb-broken"
},
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+/obj/effect/turf_decal/corner/opaque/blue{
+ dir = 1
},
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation/rnd)
-"Zs" = (
-/obj/structure/window/reinforced{
+/obj/effect/turf_decal/corner/opaque/blue{
dir = 8
},
-/obj/machinery/atmospherics/components/unary/outlet_injector/on{
- dir = 8;
- icon_state = "inje_map-2"
- },
-/obj/machinery/light/small/directional/north,
-/turf/open/floor/engine/o2,
-/area/ruin/space/has_grav/ancientstation/atmo)
-"ZO" = (
-/obj/effect/spawner/structure/window/hollow/reinforced,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+/obj/effect/turf_decal/corner/opaque/blue{
dir = 4
},
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "0-8"
+/turf/open/floor/plasteel/airless,
+/area/ruin/space/has_grav/ancientstation/medbay)
+"Zp" = (
+/obj/machinery/light/small/broken/directional/north{
+ icon_state = "bulb-broken"
},
-/obj/machinery/door/poddoor{
- id = "ancient";
- dir = 8
+/turf/open/floor/plating/airless,
+/area/ruin/space/has_grav/ancientstation/atmo)
+"Zv" = (
+/obj/machinery/door/airlock/science{
+ dir = 4;
+ pixel_y = 0
},
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/ancientstation/sec)
-"ZV" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/cobweb,
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/airalarm/directional/west,
-/obj/machinery/light_switch{
- pixel_x = 0;
- pixel_y = 26
- },
-/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation)
-"ZY" = (
/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/corner/opaque/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/yellow{
+/obj/machinery/door/firedoor/border_only{
dir = 8
},
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
},
-/obj/machinery/firealarm/directional/west,
/turf/open/floor/plasteel,
-/area/ruin/space/has_grav/ancientstation/rnd)
+/area/ruin/space/has_grav/ancientstation/deltacorridor)
+"ZH" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/directional/north,
+/turf/open/floor/plasteel,
+/area/ruin/space/has_grav/ancientstation/betacorridor)
(1,1,1) = {"
aa
@@ -8906,11 +8908,11 @@ ee
et
ee
gi
-EH
-xL
+Zj
+Nx
mq
mF
-Im
+yE
gu
gK
aa
@@ -8925,8 +8927,8 @@ nt
kK
Ln
ny
-ra
-Dn
+RZ
+YN
nB
nK
EV
@@ -8971,7 +8973,7 @@ lh
nk
nm
pP
-Wm
+Cf
qe
Ab
nA
@@ -9001,7 +9003,7 @@ de
dx
ec
eg
-GJ
+xS
eT
gu
hm
@@ -9018,8 +9020,8 @@ gK
lh
lh
nk
-Rn
-Ae
+UJ
+Al
mH
mH
kX
@@ -9055,7 +9057,7 @@ gt
gi
jU
mg
-TZ
+yC
mg
gu
mW
@@ -9067,7 +9069,7 @@ qy
qD
qD
kQ
-Bl
+Zp
pR
gf
mH
@@ -9111,7 +9113,7 @@ nq
nG
ox
oY
-yZ
+XO
qA
qE
qH
@@ -9120,11 +9122,11 @@ oM
pS
pf
kQ
-Zs
+AE
NQ
zm
WT
-Ax
+TZ
kQ
cD
lh
@@ -9150,8 +9152,8 @@ de
ec
eT
gx
-Mg
-PQ
+YF
+vK
eT
eT
mM
@@ -9162,7 +9164,7 @@ oA
pq
ee
qB
-ud
+uB
qJ
oz
pd
@@ -9197,8 +9199,8 @@ az
fU
fU
ec
-AP
-tg
+UB
+Pr
ec
jC
jQ
@@ -9206,7 +9208,7 @@ jQ
jQ
jQ
jQ
-MR
+Ut
jC
jC
qx
@@ -9220,7 +9222,7 @@ kQ
kQ
Bs
Lh
-Wn
+sH
pv
Ze
mH
@@ -9254,7 +9256,7 @@ jR
md
mS
mX
-XF
+Vr
or
oB
qv
@@ -9349,12 +9351,12 @@ hd
eg
jJ
lz
-MT
+re
mT
mf
nD
-MT
-HV
+re
+Km
jQ
dF
dF
@@ -9393,7 +9395,7 @@ dF
aa
gK
eg
-EB
+ZH
hd
eg
jC
@@ -9442,7 +9444,7 @@ dF
aa
gK
eg
-KL
+GE
hn
eg
gK
@@ -9634,8 +9636,8 @@ aa
gK
bI
cf
-Qk
-Bo
+Xb
+Wu
fA
ce
eW
@@ -9831,7 +9833,7 @@ aM
cc
cy
cI
-QM
+CG
ga
dj
eT
@@ -9933,7 +9935,7 @@ fy
gg
ce
eT
-Bi
+YT
eg
gK
aa
@@ -9941,7 +9943,7 @@ aa
aa
gK
fB
-Gs
+Tb
fB
gK
aa
@@ -10079,7 +10081,7 @@ aa
aa
gK
eg
-EB
+ZH
hd
ec
gK
@@ -10088,7 +10090,7 @@ eI
eI
fb
fD
-Gq
+BV
gV
hk
eI
@@ -10134,13 +10136,13 @@ ec
gK
eI
bv
-QV
+su
id
ji
kg
mr
mZ
-zq
+sZ
nO
eI
gK
@@ -10244,7 +10246,7 @@ sy
hv
eI
oS
-Li
+QY
gH
eI
gK
@@ -10330,13 +10332,13 @@ eg
lJ
ju
en
-Xo
-vk
+sO
+tq
el
kH
my
nb
-sa
+xB
nP
oc
ix
@@ -10373,17 +10375,17 @@ aT
aG
aG
aG
-Qc
-KQ
+Qr
+OY
aG
eI
eI
dl
dl
eI
-tK
-Ig
-tK
+Mh
+Ap
+Mh
gX
eI
eI
@@ -10391,7 +10393,7 @@ dl
eI
eI
iX
-xG
+RG
eI
aG
aT
@@ -10425,9 +10427,9 @@ aG
fm
fc
gp
-to
+sV
jF
-TW
+si
mt
ij
ne
@@ -10436,8 +10438,8 @@ jF
nd
mt
pu
-TW
-to
+si
+sV
gp
jF
px
@@ -10479,9 +10481,9 @@ UV
UV
eP
is
-Sh
+uW
oJ
-Xg
+wF
is
UV
UV
@@ -10525,15 +10527,15 @@ cn
cQ
ey
dP
-VI
+OD
dP
cQ
ey
-Lg
+MK
gI
gY
hR
-Da
+yI
hR
gI
gI
@@ -10564,19 +10566,19 @@ as
as
bl
aP
-Rx
+Bz
aP
-UL
+UC
ak
ak
dN
fh
cQ
-ME
+vd
dQ
dQ
eQ
-Nf
+vr
ey
oO
gI
@@ -10584,15 +10586,15 @@ hr
ht
ht
ht
-vK
+Ci
gI
oX
dS
aG
aT
-Vd
+JK
gZ
-sk
+yb
kD
mz
aT
@@ -10618,7 +10620,7 @@ ba
bk
bs
by
-Ji
+rN
cn
cR
do
@@ -10636,15 +10638,15 @@ tn
iI
iY
cn
-xc
+Kq
aG
-ZV
+Rc
bN
bN
bN
pi
pk
-ND
+Cu
aG
dw
cD
@@ -10678,7 +10680,7 @@ dp
ey
oO
gI
-OF
+vh
ht
EP
ly
@@ -10723,7 +10725,7 @@ dp
gE
ep
eR
-OW
+tN
ey
oO
gY
@@ -10821,11 +10823,11 @@ dp
gE
er
mD
-Ov
+wJ
cQ
oQ
gY
-UP
+TU
hV
pM
ht
@@ -10874,7 +10876,7 @@ iO
ey
oQ
gY
-Xc
+Mq
ht
MG
ht
@@ -10912,7 +10914,7 @@ aQ
bm
bM
VH
-EY
+JZ
fQ
cT
dr
@@ -10930,7 +10932,7 @@ tn
iM
ja
cn
-MV
+tb
aT
ph
bN
@@ -10938,7 +10940,7 @@ bN
bN
bN
bN
-ND
+Cu
aG
gK
aa
@@ -10956,7 +10958,7 @@ as
as
fP
aR
-OE
+WP
aR
bn
ak
@@ -10964,11 +10966,11 @@ ak
dS
dS
ey
-De
+St
dR
dQ
mL
-vP
+zk
ey
oQ
gY
@@ -10976,7 +10978,7 @@ hy
ly
ly
ly
-Ir
+YU
gY
oZ
pV
@@ -10984,7 +10986,7 @@ aG
aT
qU
bN
-zB
+sz
kF
jP
aG
@@ -11015,15 +11017,15 @@ cq
ey
cQ
dP
-VI
+OD
dP
cQ
cQ
-Pk
+Sr
gI
gI
hR
-Da
+yI
hR
gY
gY
@@ -11053,11 +11055,11 @@ aa
gK
gK
aT
-DO
+Ko
OC
sC
SP
-Py
+Wi
dg
cq
cq
@@ -11067,15 +11069,15 @@ dt
dt
dt
iV
-WZ
+Oi
oT
-Ii
+aS
np
mb
mb
ml
Po
-HZ
+zD
hN
cq
qb
@@ -11111,19 +11113,19 @@ aG
PV
bN
cV
-zb
+Wb
bN
-zF
+Vj
bN
jc
Sn
ld
cq
nu
-Ex
+ur
cq
bN
-QT
+yL
cV
pa
bW
@@ -11158,23 +11160,23 @@ aT
aT
aT
bX
-Ri
+WQ
bX
eJ
eJ
eJ
dv
fp
-Pg
-ZO
-Pg
+vj
+SW
+vj
eJ
eJ
eJ
eJ
eJ
hM
-Mr
+Gp
bX
aG
aG
@@ -11208,21 +11210,21 @@ az
cK
cK
bN
-Nz
+uM
eJ
gL
hp
-rv
+Rn
hp
js
lm
ha
Pn
-rB
+zb
hz
-tL
+Eh
eJ
-Nz
+uM
pa
bN
aG
@@ -11409,11 +11411,11 @@ gK
eJ
ex
eV
-WG
+Cg
fO
lv
fO
-LI
+OB
hX
im
eJ
@@ -11755,7 +11757,7 @@ gK
bD
he
lV
-vb
+QA
bE
gK
dF
@@ -11796,7 +11798,7 @@ gK
bE
Re
cx
-xP
+se
bE
gK
gK
@@ -11810,7 +11812,7 @@ gK
dF
gK
bD
-Fn
+LR
pE
lw
bE
@@ -11844,7 +11846,7 @@ aa
gK
bE
ct
-YB
+JG
cb
bE
bE
@@ -11852,7 +11854,7 @@ bD
bD
bD
bD
-xk
+As
bE
bE
bE
@@ -11860,7 +11862,7 @@ bE
bE
bE
cb
-Ts
+Yo
cb
bD
gK
@@ -11895,19 +11897,19 @@ gK
bE
ft
fE
-RO
-UM
-WP
+Sv
+wP
+Le
hQ
-QH
+Ny
jv
ma
Re
-QH
+Ny
nH
-FT
-QC
-RO
+No
+BB
+Sv
Re
pE
od
@@ -11991,8 +11993,8 @@ ac
gK
gK
bE
-rE
-FR
+Zv
+CR
eY
eY
eY
@@ -12007,8 +12009,8 @@ dy
eY
dy
dy
-wM
-yM
+XK
+Pj
jA
jA
jA
@@ -12044,15 +12046,15 @@ Re
ge
eY
di
-FD
-Jd
+JE
+wE
dZ
-Wc
+DQ
eb
hf
zG
hY
-vO
+sg
iD
iP
eY
@@ -12060,9 +12062,9 @@ pI
Re
jA
kd
-ya
+Lq
jA
-te
+Xo
kZ
jA
gK
@@ -12079,11 +12081,11 @@ gK
ac
ad
ae
-YH
+NF
ae
ae
ae
-Mo
+Oo
cM
jD
ac
@@ -12108,11 +12110,11 @@ eY
pJ
lw
jA
-wx
-Zd
+wq
+KE
jA
-Zd
-Om
+KE
+Ok
jA
dF
aa
@@ -12139,7 +12141,7 @@ ac
df
bE
Re
-IH
+yp
eY
gW
fa
@@ -12154,12 +12156,12 @@ mk
ls
mn
dy
-YR
+TF
Re
jA
-Cu
+Ua
kv
-rd
+RH
kv
kv
jA
@@ -12210,7 +12212,7 @@ qf
lF
kw
lF
-Cz
+Yn
jA
dF
aa
@@ -12226,14 +12228,14 @@ gK
ac
ae
aj
-Gp
+Jq
be
ah
bG
-Na
+Qz
cO
dI
-uD
+YJ
dm
dW
fL
@@ -12296,7 +12298,7 @@ jL
oh
mR
hi
-YN
+yg
ir
lT
hi
@@ -12324,11 +12326,11 @@ gK
ac
af
ah
-vw
+BQ
bg
ae
ag
-JI
+uN
ao
bh
ac
@@ -12346,18 +12348,18 @@ eB
eY
eY
eY
-Zm
+uX
dy
dy
dy
ST
Re
jA
-FJ
+CX
lF
lF
kw
-Cz
+Yn
jA
dF
aa
@@ -12384,7 +12386,7 @@ ac
gK
bE
oq
-PR
+DY
dy
dZ
fu
@@ -12396,13 +12398,13 @@ dy
hF
lM
OA
-ZY
+Qo
iQ
eY
-DX
-xt
+rH
+GX
jA
-wJ
+wh
lG
qV
kx
@@ -12451,11 +12453,11 @@ dy
IV
Re
jA
-Tg
-Sp
+yq
+HI
jA
-Sp
-Ma
+HI
+yY
jA
dF
aa
@@ -12485,15 +12487,15 @@ Re
dc
dy
eD
-Qi
-XE
+Rf
+VW
dZ
-Qd
+NZ
eb
dy
hH
hZ
-LS
+CM
iG
iS
dy
@@ -12501,9 +12503,9 @@ Yr
Re
jA
kl
-Qz
+Xd
jA
-JW
+Ru
lc
jA
gK
@@ -12530,8 +12532,8 @@ ag
ac
gK
bE
-Ya
-MQ
+XY
+DM
dy
eY
dy
@@ -12546,8 +12548,8 @@ dy
dy
dy
eY
-wX
-yA
+ED
+Js
jA
jA
jA
@@ -12569,11 +12571,11 @@ gK
ac
ah
ae
-Gp
+Jq
bh
ae
ag
-EI
+sD
ae
bg
ac
@@ -12630,19 +12632,19 @@ gK
bE
ou
Re
-EN
-wd
-LF
+Tz
+Dn
+CU
ib
-AQ
+Ls
DB
oN
lw
-RL
+RU
nL
Se
-zz
-Xz
+Pe
+Mw
nY
Yh
od
@@ -12667,17 +12669,17 @@ gK
gK
ac
ap
-WY
+SA
bV
ae
bQ
-Ra
+Uw
dd
ac
gK
bE
bE
-KD
+uE
bD
bD
bE
@@ -12685,7 +12687,7 @@ bE
bD
bD
bD
-HL
+wu
bE
bE
bE
@@ -12693,7 +12695,7 @@ bE
bE
bE
bD
-Ko
+Gh
bE
bE
gK
@@ -12775,7 +12777,7 @@ dK
gK
bE
he
-wc
+yD
jf
AF
qO
@@ -12791,7 +12793,7 @@ Ll
Sf
bE
jg
-MP
+WF
yx
bE
dF
diff --git a/_maps/RandomRuins/SpaceRuins/provinggrounds.dmm b/_maps/RandomRuins/SpaceRuins/provinggrounds.dmm
index 521b2beac456..7b1e496384f5 100644
--- a/_maps/RandomRuins/SpaceRuins/provinggrounds.dmm
+++ b/_maps/RandomRuins/SpaceRuins/provinggrounds.dmm
@@ -324,7 +324,6 @@
/area/ruin/space/has_grav/syndicircle/winter)
"iR" = (
/obj/effect/mine/shrapnel,
-/obj/effect/turf_decal/weather/snow/corner,
/obj/item/stack/tile/mineral/snow,
/obj/machinery/light/dim/directional/west,
/obj/effect/decal/cleanable/dirt/dust,
@@ -796,6 +795,12 @@
/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
@@ -3365,7 +3370,7 @@ AV
Dm
Bj
IY
-ap
+vT
ap
OE
am
diff --git a/_maps/RandomRuins/SpaceRuins/singularity_lab.dmm b/_maps/RandomRuins/SpaceRuins/singularity_lab.dmm
index 67fb3c35f127..12875d01ff1a 100644
--- a/_maps/RandomRuins/SpaceRuins/singularity_lab.dmm
+++ b/_maps/RandomRuins/SpaceRuins/singularity_lab.dmm
@@ -1660,8 +1660,8 @@
/area/ruin/space/has_grav/singularitylab/civvie)
"gP" = (
/obj/structure/table/reinforced,
-/obj/structure/extinguisher_cabinet/directional/north,
/obj/machinery/light/small/directional/west,
+/obj/structure/extinguisher_cabinet/directional/west,
/turf/open/floor/carpet/nanoweave/beige,
/area/ruin/space/has_grav/singularitylab/cargo)
"gR" = (
@@ -2017,7 +2017,9 @@
/obj/structure/cable{
icon_state = "0-2"
},
-/obj/structure/poddoor_assembly,
+/obj/structure/poddoor_assembly{
+ dir = 8
+ },
/obj/structure/spacevine,
/obj/machinery/power/shieldwallgen/atmos,
/turf/open/floor/plating,
@@ -2208,7 +2210,6 @@
/area/ruin/space/has_grav/singularitylab/civvie)
"iZ" = (
/obj/structure/cable,
-/obj/structure/poddoor_assembly,
/obj/structure/spacevine,
/obj/structure/spacevine/dense{
pixel_y = -32
@@ -2216,6 +2217,9 @@
/obj/machinery/power/shieldwallgen/atmos{
dir = 1
},
+/obj/structure/poddoor_assembly{
+ dir = 8
+ },
/turf/open/floor/plating,
/area/ruin/space/has_grav/singularitylab)
"ja" = (
@@ -2660,8 +2664,8 @@
/area/ruin/space/has_grav/singularitylab/cargo)
"kS" = (
/obj/effect/turf_decal/box,
-/obj/structure/extinguisher_cabinet/directional/north,
/obj/structure/ore_box,
+/obj/structure/extinguisher_cabinet/directional/east,
/turf/open/floor/plasteel/patterned/cargo_one,
/area/ruin/space/has_grav/singularitylab/cargo)
"kT" = (
@@ -4396,7 +4400,7 @@
pixel_x = -32;
pixel_y = -4
},
-/obj/structure/extinguisher_cabinet/directional/north,
+/obj/structure/extinguisher_cabinet/directional/south,
/turf/open/floor/plasteel/dark,
/area/ruin/space/has_grav/singularitylab/cargo)
"rp" = (
@@ -4788,7 +4792,7 @@
/area/ruin/space/has_grav/singularitylab/lab)
"th" = (
/obj/structure/spacevine,
-/obj/structure/extinguisher_cabinet/directional/north,
+/obj/structure/extinguisher_cabinet/directional/west,
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/singularitylab)
"tk" = (
@@ -8771,9 +8775,11 @@
/obj/structure/cable{
icon_state = "0-8"
},
-/obj/structure/poddoor_assembly,
/obj/structure/spacevine,
/obj/machinery/power/shieldwallgen/atmos,
+/obj/structure/poddoor_assembly{
+ dir = 8
+ },
/turf/open/floor/plating,
/area/ruin/space/has_grav/singularitylab)
"Iq" = (
@@ -8822,8 +8828,10 @@
/obj/structure/cable{
icon_state = "4-8"
},
-/obj/structure/poddoor_assembly,
/obj/structure/spacevine,
+/obj/structure/poddoor_assembly{
+ dir = 8
+ },
/turf/open/floor/plating,
/area/ruin/space/has_grav/singularitylab)
"IA" = (
@@ -8934,8 +8942,10 @@
/turf/open/floor/plasteel/dark,
/area/ruin/space/has_grav/singularitylab/engineering)
"Jb" = (
-/obj/structure/poddoor_assembly,
/obj/structure/spacevine,
+/obj/structure/poddoor_assembly{
+ dir = 8
+ },
/turf/open/floor/plating,
/area/ruin/space/has_grav/singularitylab)
"Jc" = (
@@ -12169,7 +12179,7 @@
"Uo" = (
/obj/structure/table,
/obj/structure/spacevine,
-/obj/structure/extinguisher_cabinet/directional/north,
+/obj/structure/extinguisher_cabinet/directional/west,
/turf/open/floor/plasteel/dark,
/area/ruin/space/has_grav/singularitylab/engineering)
"Up" = (
@@ -12932,11 +12942,13 @@
/obj/structure/cable{
icon_state = "0-8"
},
-/obj/structure/poddoor_assembly,
/obj/structure/spacevine,
/obj/machinery/power/shieldwallgen/atmos{
dir = 1
},
+/obj/structure/poddoor_assembly{
+ dir = 8
+ },
/turf/open/floor/plating,
/area/ruin/space/has_grav/singularitylab)
"WJ" = (
diff --git a/_maps/RandomRuins/SpaceRuins/spacegym.dmm b/_maps/RandomRuins/SpaceRuins/spacegym.dmm
deleted file mode 100644
index 6d69992c7910..000000000000
--- a/_maps/RandomRuins/SpaceRuins/spacegym.dmm
+++ /dev/null
@@ -1,321 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"a" = (
-/obj/structure/chair/stool,
-/turf/open/floor/plasteel/airless,
-/area/ruin/space/has_grav/spacegym)
-"b" = (
-/obj/structure/chair/stool,
-/mob/living/simple_animal/hostile/zombie{
- desc = "Hey buddy, I think you got the wrong door. Leather club is two blocks down.";
- environment_smash = 0;
- health = 60;
- melee_damage_lower = 11;
- melee_damage_upper = 11;
- name = "Boss of this Gym";
- zombiejob = null
- },
-/turf/open/floor/plasteel/airless,
-/area/ruin/space/has_grav/spacegym)
-"c" = (
-/mob/living/simple_animal/hostile/zombie/leatherman{
- a_intent = "Leatherman";
- environment_smash = 0;
- zombiejob = null
- },
-/turf/open/floor/plasteel/airless,
-/area/ruin/space/has_grav/spacegym)
-"d" = (
-/obj/item/reagent_containers/glass/bucket,
-/turf/open/floor/plasteel/airless,
-/area/ruin/space/has_grav/spacegym)
-"e" = (
-/obj/item/clothing/under/costume/jabroni,
-/turf/open/floor/plasteel/airless,
-/area/ruin/space/has_grav/spacegym)
-"f" = (
-/obj/effect/decal/cleanable/oil,
-/turf/open/floor/plasteel/airless,
-/area/ruin/space/has_grav/spacegym)
-"h" = (
-/obj/machinery/door/airlock,
-/turf/open/floor/plasteel/airless,
-/area/ruin/space/has_grav/spacegym)
-"k" = (
-/turf/open/floor/plasteel/airless{
- icon_state = "damaged1"
- },
-/area/ruin/space/has_grav/spacegym)
-"m" = (
-/obj/item/reagent_containers/food/snacks/meatball,
-/turf/open/floor/plasteel/airless,
-/area/ruin/space/has_grav/spacegym)
-"n" = (
-/turf/open/floor/plasteel/airless,
-/area/ruin/space/has_grav/spacegym)
-"o" = (
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plasteel/airless,
-/area/ruin/space/has_grav/spacegym)
-"r" = (
-/obj/machinery/door/airlock{
- dir = 4
- },
-/turf/open/floor/plasteel/airless,
-/area/ruin/space/has_grav/spacegym)
-"s" = (
-/obj/machinery/shower,
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/obj/item/storage/pill_bottle/floorpill/full,
-/turf/open/floor/plasteel/airless,
-/area/ruin/space/has_grav/spacegym)
-"u" = (
-/turf/open/space,
-/area/space)
-"v" = (
-/obj/item/reagent_containers/spray/cleaner,
-/turf/open/floor/plasteel/airless{
- icon_state = "damaged1"
- },
-/area/ruin/space/has_grav/spacegym)
-"y" = (
-/obj/structure/closet/boxinggloves,
-/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/plasteel/airless,
-/area/ruin/space/has_grav/spacegym)
-"z" = (
-/obj/structure/closet/boxinggloves,
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/turf/open/floor/plasteel/airless,
-/area/ruin/space/has_grav/spacegym)
-"B" = (
-/obj/structure/weightmachine/stacklifter,
-/obj/effect/spawner/lootdrop/spacegym,
-/turf/open/floor/plasteel/airless,
-/area/ruin/space/has_grav/spacegym)
-"E" = (
-/mob/living/simple_animal/hostile/zombie{
- desc = "He's the boy next door.";
- environment_smash = 0;
- health = 60;
- melee_damage_lower = 11;
- melee_damage_upper = 11;
- name = "Boy Next Door";
- zombiejob = null
- },
-/turf/open/floor/plasteel/airless,
-/area/ruin/space/has_grav/spacegym)
-"F" = (
-/obj/machinery/shower,
-/turf/open/floor/plasteel/airless,
-/area/ruin/space/has_grav/spacegym)
-"G" = (
-/obj/effect/spawner/lootdrop/spacegym,
-/turf/open/floor/plasteel/airless,
-/area/ruin/space/has_grav/spacegym)
-"I" = (
-/obj/structure/lattice,
-/turf/open/space,
-/area/ruin/space/has_grav/spacegym)
-"J" = (
-/obj/structure/weightmachine/weightlifter,
-/turf/open/floor/plasteel/airless,
-/area/ruin/space/has_grav/spacegym)
-"L" = (
-/obj/structure/lattice,
-/obj/structure/grille,
-/turf/open/space,
-/area/ruin/space/has_grav/spacegym)
-"O" = (
-/turf/closed/wall,
-/area/ruin/space/has_grav/spacegym)
-"Q" = (
-/obj/structure/closet,
-/turf/open/floor/plasteel/airless,
-/area/ruin/space/has_grav/spacegym)
-"R" = (
-/obj/item/mop,
-/obj/structure/mopbucket,
-/turf/open/floor/plasteel/airless,
-/area/ruin/space/has_grav/spacegym)
-"U" = (
-/obj/structure/grille,
-/turf/open/floor/plasteel/airless,
-/area/ruin/space/has_grav/spacegym)
-"V" = (
-/obj/structure/chair/stool,
-/obj/item/reagent_containers/glass/rag,
-/turf/open/floor/plasteel/airless,
-/area/ruin/space/has_grav/spacegym)
-"X" = (
-/obj/effect/decal/cleanable/vomit,
-/turf/open/floor/plasteel/airless,
-/area/ruin/space/has_grav/spacegym)
-
-(1,1,1) = {"
-u
-u
-u
-I
-u
-I
-G
-k
-I
-I
-I
-u
-"}
-(2,1,1) = {"
-u
-u
-I
-O
-O
-O
-O
-O
-O
-O
-U
-u
-"}
-(3,1,1) = {"
-u
-u
-u
-O
-y
-Q
-Q
-Q
-X
-B
-O
-U
-"}
-(4,1,1) = {"
-u
-n
-u
-O
-b
-a
-a
-a
-o
-m
-O
-k
-"}
-(5,1,1) = {"
-u
-U
-I
-O
-n
-G
-k
-n
-c
-U
-h
-u
-"}
-(6,1,1) = {"
-u
-I
-I
-U
-V
-a
-a
-a
-n
-k
-O
-u
-"}
-(7,1,1) = {"
-u
-f
-I
-O
-z
-Q
-Q
-Q
-U
-J
-O
-u
-"}
-(8,1,1) = {"
-u
-u
-U
-U
-O
-O
-O
-O
-r
-O
-O
-u
-"}
-(9,1,1) = {"
-u
-u
-I
-O
-F
-I
-k
-G
-d
-U
-U
-u
-"}
-(10,1,1) = {"
-u
-u
-I
-O
-s
-E
-e
-n
-U
-R
-I
-u
-"}
-(11,1,1) = {"
-u
-u
-v
-U
-O
-U
-I
-O
-U
-O
-O
-u
-"}
-(12,1,1) = {"
-u
-u
-u
-u
-u
-I
-L
-L
-u
-u
-u
-u
-"}
diff --git a/_maps/RandomRuins/SpaceRuins/spacemall.dmm b/_maps/RandomRuins/SpaceRuins/spacemall.dmm
index a8413ce407c3..548003149338 100644
--- a/_maps/RandomRuins/SpaceRuins/spacemall.dmm
+++ b/_maps/RandomRuins/SpaceRuins/spacemall.dmm
@@ -4990,15 +4990,6 @@
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/spacemall)
"sH" = (
-/obj/item/clothing/under/pants/classicjeans{
- pixel_y = -5
- },
-/obj/item/clothing/under/pants/classicjeans{
- pixel_y = -5
- },
-/obj/item/clothing/under/pants/classicjeans{
- pixel_y = -5
- },
/obj/item/clothing/suit/ianshirt,
/obj/item/clothing/suit/ianshirt,
/obj/item/clothing/suit/ianshirt,
diff --git a/_maps/configs/independent_rigger.json b/_maps/configs/independent_rigger.json
index 8229cee469de..324cf75dd3ea 100644
--- a/_maps/configs/independent_rigger.json
+++ b/_maps/configs/independent_rigger.json
@@ -18,7 +18,7 @@
],
"map_path": "_maps/shuttles/independent/independent_rigger.dmm",
"roundstart": true,
- "limit": 2,
+ "limit": 1,
"job_slots": {
"Captain": {
"outfit": "/datum/outfit/job/captain/western",
diff --git a/_maps/configs/independent_shetland.json b/_maps/configs/independent_shetland.json
index a1d88413bc18..3923bed47db5 100644
--- a/_maps/configs/independent_shetland.json
+++ b/_maps/configs/independent_shetland.json
@@ -22,11 +22,6 @@
"officer": true,
"slots": 1
},
- "Lieutenant": {
- "outfit": "/datum/outfit/job/lieutenant",
- "officer": true,
- "slots": 1
- },
"First Mate": {
"outfit": "/datum/outfit/job/head_of_personnel",
"officer": true,
diff --git a/_maps/configs/nanotrasen_heron.json b/_maps/configs/nanotrasen_heron.json
index 3cdc9821a859..fbe11a792000 100644
--- a/_maps/configs/nanotrasen_heron.json
+++ b/_maps/configs/nanotrasen_heron.json
@@ -4,7 +4,7 @@
"namelists": ["WEAPONS"],
"map_name": "Heron-Class Dreadnaught",
"map_short_name": "Heron-class",
- "map_path": "_maps/shuttles/shiptest/nanotrasen_heron.dmm",
+ "map_path": "_maps/shuttles/nanotrasen/nanotrasen_heron.dmm",
"map_id": "nanotrasen_heron",
"description": "The Heron-Class is the biggest ship available to NanoTrasen's frontier forces. These vessels served as the flagship of many fleets during the war, serving as a carrier for an operative team, or a command vessel for corporate units. Captains of this vessel were known to retrofit bluespace artillery onto the hangar, and directly fire it during combat. Since the end of the war, it has been repurposed for peacekeeping missions on backline sectors. Though the age of the design is starting to show, it stands as one of the remnants of NanoTrasen's once powerful hold over the cosmos.",
"limit": 1,
diff --git a/_maps/configs/solgov_inkwell.json b/_maps/configs/solgov_inkwell.json
new file mode 100644
index 000000000000..d34cb392f65e
--- /dev/null
+++ b/_maps/configs/solgov_inkwell.json
@@ -0,0 +1,49 @@
+{
+ "$schema": "https://raw.githubusercontent.com/shiptest-ss13/Shiptest/master/_maps/ship_config_schema.json",
+ "map_name": "Inkwell-class Supply Freighter",
+ "prefix": "SGSV",
+ "namelists": [
+ "SOLGOV",
+ "SPACE",
+ "BRITISH_NAVY",
+ "NATURAL"
+ ],
+ "map_short_name": "Inkwell-class",
+ "map_path": "_maps/shuttles/solgov/solgov_inkwell.dmm",
+ "description": "One of the few Sol-designed hulls used outside of official contexts by non-Confederation parties, the Inkwell is a freighter respected for its engineering and loved for its lavish crew accommodations. \n The Inkwell-class seen in numerous contexts, perhaps most notably among the Verwaltungskompanien, where they are essential in solving the logistic concerns of any proper military-administration-for-hire. Additionally, they are often commissioned and sold to non-Solarian parties for use in interstellar shipping. \n The usage of the Inkwell-class to move illicit or untracked cargo is known by any seasoned (or even half-cooked) port authority; \"...such regrettable actions by an outlier minority are mere part-and-parcel of the realities of interstellar shipping,\" goes the official reply.",
+ "tags": ["RP Focus", "Combat", "Cargo", "Mining"],
+ "limit": 1,
+ "job_slots": {
+ "Captain": {
+ "outfit": "/datum/outfit/job/solgov/captain",
+ "officer": true,
+ "slots": 1
+ },
+ "Logistics Deck Officer": {
+ "outfit": "/datum/outfit/job/solgov/quartermaster",
+ "officer": true,
+ "slots": 1
+ },
+ "Sonnensöldner": {
+ "outfit": "/datum/outfit/job/solgov/sonnensoldner",
+ "slots": 3
+ },
+ "Ship Engineer": {
+ "outfit": "/datum/outfit/job/solgov/engineer",
+ "slots": 2
+ },
+ "Field Engineer": {
+ "outfit": "/datum/outfit/job/solgov/miner",
+ "slots": 3
+ },
+ "Bureaucrat": {
+ "outfit": "/datum/outfit/job/solgov/bureaucrat",
+ "slots": 2
+ },
+ "Scribe": {
+ "outfit": "/datum/outfit/job/solgov/assistant",
+ "slots" : 6
+ }
+ },
+ "enabled": true
+}
diff --git a/_maps/configs/syndicate_aegis.json b/_maps/configs/syndicate_aegis.json
index 50d7dea915e7..9dc307f7f091 100644
--- a/_maps/configs/syndicate_aegis.json
+++ b/_maps/configs/syndicate_aegis.json
@@ -18,38 +18,38 @@
],
"job_slots": {
"Captain": {
- "outfit": "/datum/outfit/job/captain/syndicate",
+ "outfit": "/datum/outfit/job/syndicate/captain",
"officer": true,
"slots": 1
},
"Lead Doctor": {
- "outfit": "/datum/outfit/job/cmo/syndicate/nsv",
+ "outfit": "/datum/outfit/job/syndicate/cmo/suns",
"slots": 1
},
"Ship Doctor":{
- "outfit": "/datum/outfit/job/doctor/syndicate/nsv",
+ "outfit": "/datum/outfit/job/syndicate/doctor/suns",
"slots": 2
},
"Mechanic": {
- "outfit": "/datum/outfit/job/engineer/syndicate",
+ "outfit": "/datum/outfit/job/syndicate/engineer",
"slots": 1
},
"Deck Service Assistant": {
- "outfit": "/datum/outfit/job/botanist/syndicate/nsv",
+ "outfit": "/datum/outfit/job/syndicate/botanist/suns",
"slots": 2
},
"Ship Psychologist": {
- "outfit": "/datum/outfit/job/psychologist/syndicate/nsv",
+ "outfit": "/datum/outfit/job/syndicate/psychologist/suns",
"slots": 1
},
"Long Term Patient": {
- "outfit": "/datum/outfit/job/prisoner/syndicatepatient",
+ "outfit": "/datum/outfit/job/syndicate/patient",
"slots": 2
}
},
diff --git a/_maps/configs/syndicate_cybersun_kansatsu.json b/_maps/configs/syndicate_cybersun_kansatsu.json
index 8696db8e0359..fbde6dc608d6 100644
--- a/_maps/configs/syndicate_cybersun_kansatsu.json
+++ b/_maps/configs/syndicate_cybersun_kansatsu.json
@@ -15,26 +15,26 @@
"map_path": "_maps/shuttles/syndicate/syndicate_cybersun_kansatsu.dmm",
"map_id": "cybersun_kansatsu",
"job_slots": {
- "Captain": {
- "outfit": "/datum/outfit/job/captain/syndicate/cybersun",
+ "Commander": {
+ "outfit": "/datum/outfit/job/syndicate/captain/cybersun",
"officer": true,
"slots": 1
},
"Intelligence Officer": {
- "outfit": "/datum/outfit/job/head_of_personnel/syndicate/intel",
+ "outfit": "/datum/outfit/job/syndicate/head_of_personnel/cybersun",
"officer": true,
"slots": 1
},
"Engineer": {
- "outfit": "/datum/outfit/job/engineer/syndicate/cybersun",
+ "outfit": "/datum/outfit/job/syndicate/engineer/cybersun",
"slots": 1
},
"Field Agent": {
- "outfit": "/datum/outfit/job/miner/syndicate/cybersun",
+ "outfit": "/datum/outfit/job/syndicate/miner/cybersun",
"slots": 2
},
"Junior Agent": {
- "outfit": "/datum/outfit/job/assistant/syndicate/cyberagent",
+ "outfit": "/datum/outfit/job/syndicate/assistant/cybersun",
"slots": 2
}
},
diff --git a/_maps/configs/syndicate_gorlex_hyena.json b/_maps/configs/syndicate_gorlex_hyena.json
index 6e1fa6ae92ce..4e9086139275 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/captain/syndicate/gorlex",
+ "outfit": "/datum/outfit/job/syndicate/captain/gorlex",
"officer": true,
"slots": 1
},
"Foreman": {
- "outfit": "/datum/outfit/job/ce/syndicate/gorlex",
+ "outfit": "/datum/outfit/job/syndicate/ce/gorlex",
"officer": true,
"slots": 1
},
"Mechanic": {
- "outfit": "/datum/outfit/job/engineer/syndicate/gorlex",
+ "outfit": "/datum/outfit/job/syndicate/engineer/gorlex",
"slots": 1
},
"Wrecker": {
- "outfit": "/datum/outfit/job/miner/syndicate/gorlex",
+ "outfit": "/datum/outfit/job/syndicate/miner/gorlex",
"slots": 2
},
"Junior Agent": {
- "outfit": "/datum/outfit/job/assistant/syndicate/gorlex",
+ "outfit": "/datum/outfit/job/syndicate/assistant/gorlex",
"slots": 2
}
},
diff --git a/_maps/configs/syndicate_gorlex_komodo.json b/_maps/configs/syndicate_gorlex_komodo.json
index da4b9e58a795..5692eaf44a14 100644
--- a/_maps/configs/syndicate_gorlex_komodo.json
+++ b/_maps/configs/syndicate_gorlex_komodo.json
@@ -19,33 +19,33 @@
"limit": 1,
"job_slots": {
"Captain": {
- "outfit": "/datum/outfit/job/captain/syndicate/gorlex",
+ "outfit": "/datum/outfit/job/syndicate/captain/gorlex",
"officer": true,
"slots": 1
},
"Sergeant": {
- "outfit": "/datum/outfit/job/hos/syndicate",
+ "outfit": "/datum/outfit/job/syndicate/hos/gorlex",
"officer": true,
"slots": 1
},
"Medic": {
- "outfit": "/datum/outfit/job/doctor/syndicate_komodo",
+ "outfit": "/datum/outfit/job/syndicate/doctor/gorlex",
"slots": 1
},
"Mechanic": {
- "outfit": "/datum/outfit/job/engineer/syndicate/gorlex",
+ "outfit": "/datum/outfit/job/syndicate/miner/gorlex",
"slots": 1
},
"Trooper": {
- "outfit": "/datum/outfit/job/security/syndicate/gorlex",
+ "outfit": "/datum/outfit/job/syndicate/security/gorlex",
"slots": 3
},
"Deck assistant": {
- "outfit": "/datum/outfit/job/assistant/syndicate/gorlex",
+ "outfit": "/datum/outfit/job/syndicate/assistant/gorlex",
"slots": 2
},
"Bridge officer": {
- "outfit": "/datum/outfit/job/head_of_personnel/syndicate",
+ "outfit": "/datum/outfit/job/syndicate/head_of_personnel",
"slots": 1
}
},
diff --git a/_maps/configs/independent_litieguai.json b/_maps/configs/syndicate_litieguai.json
similarity index 73%
rename from _maps/configs/independent_litieguai.json
rename to _maps/configs/syndicate_litieguai.json
index d189af20b550..887828e28176 100644
--- a/_maps/configs/independent_litieguai.json
+++ b/_maps/configs/syndicate_litieguai.json
@@ -1,12 +1,13 @@
{
"$schema": "https://raw.githubusercontent.com/shiptest-ss13/Shiptest/master/_maps/ship_config_schema.json",
"map_name": "Li Tieguai-class Rescue Ship",
+ "prefix": "SSV",
"map_short_name": "Li Tieguai-class",
"description": "A small, nimble, and exceptionally well-built medical response vessel, the Li Tieguai is a recent addition to Cybersun’s fleet, forming a critical component of their Frontier stabilization program. Li Tieguais come equipped with high-end medical equipment, including a selection of Cybersun augments and prosthetics, as well as weaponry and armor sufficient to protect its personnel in the often-dangerous Frontier sectors, so that they can offer premium healthcare (at premium prices) in even the most dangerous of scenarios.",
"tags": [
"Medical"
],
- "map_path": "_maps/shuttles/independent/independent_litieguai.dmm",
+ "map_path": "_maps/shuttles/syndicate/syndicate_litieguai.dmm",
"namelists": [
"SPACE",
"BEASTS",
@@ -14,20 +15,20 @@
],
"job_slots": {
"Captain": {
- "outfit": "/datum/outfit/job/captain",
+ "outfit": "/datum/outfit/job/syndicate/captain/cybersun",
"slots": 1
},
- "Chief Medical Officer": {
- "outfit": "/datum/outfit/job/cmo/medicaldirector",
+ "Medical Director": {
+ "outfit": "/datum/outfit/job/syndicate/cmo",
"officer": true,
"slots": 1
},
"Trauma Team Technician": {
- "outfit": "/datum/outfit/job/paramedic/traumateam",
+ "outfit": "/datum/outfit/job/syndicate/doctor/cybersun",
"slots": 3
},
- "Medical Intern": {
- "outfit": "/datum/outfit/job/doctor/juniordoctor",
+ "Cybersun Medical Intern": {
+ "outfit": "/datum/outfit/job/syndicate/assistant/cybersun",
"slots": 3
}
},
diff --git a/_maps/configs/syndicate_lugol.json b/_maps/configs/syndicate_lugol.json
index 268769618857..26599d93a8ee 100644
--- a/_maps/configs/syndicate_lugol.json
+++ b/_maps/configs/syndicate_lugol.json
@@ -17,28 +17,28 @@
"limit": 2,
"job_slots": {
"Project Overseer": {
- "outfit": "/datum/outfit/job/ce/gec",
+ "outfit": "/datum/outfit/job/syndicate/ce/gec",
"slots": 1,
"officer": true
},
- "GEC Engineer": {
- "outfit": "/datum/outfit/job/engineer/gec",
+ "GEC Engineering": {
+ "outfit": "/datum/outfit/job/syndicate/engineer/gec",
"slots": 3
},
- "Atmospheric Technician": {
- "outfit": "/datum/outfit/job/atmos/gec",
+ "GEC Atmospherics": {
+ "outfit": "/datum/outfit/job/syndicate/atmos/gec",
"slots": 3
},
"Beverage Specialist": {
- "outfit": "/datum/outfit/job/bartender/syndicate",
+ "outfit": "/datum/outfit/job/syndicate/bartender",
"slots": 1
},
- "Shaft Miner": {
- "outfit": "/datum/outfit/job/miner/syndicate/gec",
+ "GEC Miner": {
+ "outfit": "/datum/outfit/job/syndicate/miner/gec",
"slots": 1
},
"GEC Apprentice": {
- "outfit": "/datum/outfit/job/assistant/syndicate/gec",
+ "outfit": "/datum/outfit/job/syndicate/assistant/gec",
"slots": 2
}
},
diff --git a/_maps/configs/syndicate_luxembourg.json b/_maps/configs/syndicate_luxembourg.json
index d34f20183fae..1433f2da547a 100644
--- a/_maps/configs/syndicate_luxembourg.json
+++ b/_maps/configs/syndicate_luxembourg.json
@@ -18,19 +18,19 @@
"starting_funds": 6000,
"job_slots": {
"Manager": {
- "outfit": "/datum/outfit/job/quartermaster/donk",
+ "outfit": "/datum/outfit/job/syndicate/quartermaster/donk",
"slots": 1
},
"Customer Service Representative": {
- "outfit": "/datum/outfit/job/cargo_tech/donk",
+ "outfit": "/datum/outfit/job/syndicate/cargo_tech/donk",
"slots": 5
},
"Food and Beverage Specialist": {
- "outfit": "/datum/outfit/job/bartender/syndicate",
+ "outfit": "/datum/outfit/job/syndicate/bartender",
"slots": 1
},
"GEC Contracted Engineer": {
- "outfit": "/datum/outfit/job/engineer/gec",
+ "outfit": "/datum/outfit/job/syndicate/engineer/gec",
"slots": 1
}
},
diff --git a/_maps/configs/syndicate_twinkleshine.json b/_maps/configs/syndicate_twinkleshine.json
index 2c7a57e1bd66..e5765b1691dd 100644
--- a/_maps/configs/syndicate_twinkleshine.json
+++ b/_maps/configs/syndicate_twinkleshine.json
@@ -18,37 +18,37 @@
"map_path": "_maps/shuttles/syndicate/syndicate_twinkleshine.dmm",
"job_slots": {
"Captain": {
- "outfit": "/datum/outfit/job/captain/syndicate/sbc",
+ "outfit": "/datum/outfit/job/syndicate/captain/twink",
"officer": true,
"slots": 1
},
"Lieutenant": {
- "outfit": "/datum/outfit/job/warden/syndicate/sbc",
+ "outfit": "/datum/outfit/job/syndicate/hos/twink",
"officer": true,
"slots": 1
},
"Medic": {
- "outfit": "/datum/outfit/job/brig_phys/syndicate/sbc",
+ "outfit": "/datum/outfit/job/syndicate/paramedic/twink",
"slots": 2
},
"Engineer": {
- "outfit": "/datum/outfit/job/engineer/syndicate/sbc",
+ "outfit": "/datum/outfit/job/syndicate/engineer/twink",
"slots": 2
},
"Operative": {
- "outfit": "/datum/outfit/job/security/syndicate/sbc",
+ "outfit": "/datum/outfit/job/syndicate/security/twink",
"slots": 5
},
"Bartender": {
- "outfit": "/datum/outfit/job/bartender/syndicate/sbc",
+ "outfit": "/datum/outfit/job/syndicate/bartender/twink",
"slots": 1
},
"Miner": {
- "outfit": "/datum/outfit/job/miner/syndicate/sbc",
+ "outfit": "/datum/outfit/job/syndicate/miner/twink",
"slots": 1
},
"Deck Assistant": {
- "outfit": "/datum/outfit/job/assistant/syndicate/sbc",
+ "outfit": "/datum/outfit/job/syndicate/assistant/twink",
"slots": 2
}
},
diff --git a/_maps/map_catalogue.txt b/_maps/map_catalogue.txt
index e4f2881948b3..3d86570f326c 100644
--- a/_maps/map_catalogue.txt
+++ b/_maps/map_catalogue.txt
@@ -46,6 +46,10 @@ Find the key for using this catalogue in "map_catalogue_key.txt"
Size = (x = 85)(y = 47)(z = 1)
Tags = "Minor Combat Challenge", "Shelter", "Medium loot", "Ghost Role"
+ File Name = _maps\RandomRuins\IceRuins\icemoon_crashed_holemaker.dmm
+ Size = (x = 47)(y = 37)(z = 1)
+ Tags = "Medium Combat Challenge", "Minor Loot", "Shelter"
+
JungleRuins:
@@ -69,10 +73,6 @@ Find the key for using this catalogue in "map_catalogue_key.txt"
Size = (x = 15)(y = 15)(z = 1)
Tags = "Medium Combat Challenge", "Medium Loot", "Liveable"
- File Name = "_maps\RandomRuins\JungleRuins\jungle_spider.dmm"
- Size = (x = 7)(y = 9)(z = 1)
- Tags = "Medium Combat Challenge", "Major Loot", "Liveable"
-
File Name = "_maps\RandomRuins\JungleRuins\jungle_surface_coffinepirate.dmm"
Size = (x = 14)(y = 15)(z = 1)
Tags = "No Combat", "Minor Loot", "Liveable"
@@ -174,10 +174,6 @@ Find the key for using this catalogue in "map_catalogue_key.txt"
Size = (x = 30)(y = 20)(z = 1)
Tags = "Medium Combat Challenge", "Medium Loot", "Shelter", "Antag Gear"
- File Name = "_maps\RandomRuins\LavaRuins\lavaland_surface_golem_ship.dmm"
- Size = (x = 30)(y = 18)(z = 1)
- Tags = "No Combat", "Medium Loot", "Ghost Role", "Shelter"
-
File Name = "_maps\RandomRuins\LavaRuins\lavaland_surface_hermit.dmm"
Size = (x = 16)(y = 16)(z = 1)
Tags = "No Combat", "Minor Loot", "Ghost Role", "Shelter"
@@ -246,10 +242,6 @@ Find the key for using this catalogue in "map_catalogue_key.txt"
Size = (x = 15)(y = 23)(z = 1)
Tags = "No Combat", "Medium Loot", "Shelter"
- File Name = "_maps\RandomRuins\RockRuins\rockplanet_clock.dmm"
- Size = (x = 15)(y = 15)(z = 1)
- Tags = "Medium Combat Challenge", "Medium Loot", "Necropolis Loot", "Shelter"
-
File Name = "_maps\RandomRuins\RockRuins\rockplanet_crash_cult.dmm"
Size = (x = 26)(y = 18)(z = 1)
Tags = "Medium Combat Challenge", "Medium Loot", "Inhospitable"
@@ -290,6 +282,10 @@ Find the key for using this catalogue in "map_catalogue_key.txt"
Size = (x = 9)(y = 9)(z = 1)
Tags = "Boss Combat Challenge", "Major Loot", "Hazardous", "Inhospitable"
+ File Name = "_maps\RandomRuins\RockRuins\rockplanet_nomadcrash.dmm"
+ Size = (x = 58)(y = 48)(z = 1)
+ Tags = "Medium Combat Challenge", "Medium Loot", "Hazardous", "Hospitable"
+
SandRuins:
File Name = "_maps\RandomRuins\Ruins\whitesands_surface_assaultpodcrash.dmm"
@@ -316,10 +312,6 @@ Find the key for using this catalogue in "map_catalogue_key.txt"
Size = (x = 13)(y = 13)(z = 1)
Tags = "No Combat", "Minor Loot", "Shelter"
- File Name = "_maps\RandomRuins\Ruins\whitesands_surface_golem_hijack.dmm"
- Size = (x = 18)(y = 23)(z = 1)
- Tags = "No Combat", "Medium Loot", "Inhospitable"
-
File Name = "_maps\RandomRuins\Ruins\whitesands_surface_medipen_plant.dmm"
Size = (x = 23)(y = 29)(z = 1)
Tags = "No Combat", "Major Loot", "Shelter"
@@ -344,6 +336,11 @@ Find the key for using this catalogue in "map_catalogue_key.txt"
Size = (x = 7)(y = 9)(z = 1)
Tags = "No Combat", "Minor Loot", "Inhospitable"
+ File Name = "_maps\RandomRuins\Ruins\whitesands_surface_pubbyslopcrash.dmm"
+ Size = (x = 35)(y = 25)(z = 1)
+ Tags = "Minor Combat Challange", "Medium Loot", "Shelter"
+
+
SpaceRuins:
File Name = "_maps\RandomRuins\SpaceRuins\.dmm"
@@ -394,10 +391,6 @@ Find the key for using this catalogue in "map_catalogue_key.txt"
Size = (x = 50)(y = 50)(z = 1)
Tags = "No Combat", "Minor Loot", "Inhospitable"
- File Name = "_maps\RandomRuins\SpaceRuins\gondolaasteroid.dmm"
- Size = (x = 35)(y = 35)(z = 1)
- Tags = "No Combat", "Minor Loot", "Shelter"
-
File Name = "_maps\RandomRuins\SpaceRuins\hellfactory.dmm"
Size = (x = 25)(y = 25)(z = 1)
Tags = "No Combat", "Medium Loot", "Shelter"
@@ -406,18 +399,10 @@ Find the key for using this catalogue in "map_catalogue_key.txt"
Size = (x = 73)(y = 36)(z = 1)
Tags = "Medium Combat Challenge", "Major Loot", "Ghost Role", "Shelter", "Antag Gear"
- File Name = "_maps\RandomRuins\SpaceRuins\mechtransport.dmm"
- Size = (x = 9)(y = 15)(z = 1)
- Tags = "No Combat", "Medium Loot", "Inhospitable"
-
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\nuclear_dump.dmm"
- Size = (x = 32)(y = 32)(z = 1)
- Tags = "Minor Combat Challenge", "Medium Loot", "Shelter", "Hazardous"
-
File Name = "_maps\RandomRuins\SpaceRuins\oldcodeops.dmm"
Size = (x = 17)(y = 22)(z = 1)
Tags = "Boss Combat Challenge", "Major Loot", "Shelter", "Antag Gear"
@@ -446,10 +431,6 @@ Find the key for using this catalogue in "map_catalogue_key.txt"
Size = (x = 60)(y = 60)(z = 1)
Tags = "Medium Combat Challenge", "Medium Loot", "Inhospitable"
- File Name = "_maps\RandomRuins\SpaceRuins\spacegym.dmm"
- Size = (x = 12)(y = 12)(z = 1)
- Tags = "Minor Combat Challenge", "Minor Loot", "Inhospitable"
-
File Name = "_maps\RandomRuins\SpaceRuins\transport18.dmm"
Size = (x = 51)(y = 23)(z = 1)
Tags = "No Combat", "Medium Loot", "Inhospitable"
@@ -507,6 +488,10 @@ Find the key for using this catalogue in "map_catalogue_key.txt"
Size = (x = 37)(y = 43)(z = 1)
Tags = "Medium Combat Challenge", "Medium Loot", "Liveable"
+ File Name = "_maps\RandomRuins\BeachRuins\beach_float_resort.dmm"
+ 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)
@@ -565,7 +550,7 @@ Find the key for using this catalogue in "map_catalogue_key.txt"
Tags = "No Combat", "Medium Loot", "Shelter"
- Waste Ruins:
+ Waste Ruins:
File name ="_maps\RandomRuins\wasteruins\wasteplanet_clowncrash.dmm"
Size = (x = 11)(y = 12)(z = 1)
Tags = "No Combat", "Minor Loot", "Shelter" "hospitable"
diff --git a/_maps/outpost/elevator_ice.dmm b/_maps/outpost/elevator_ice.dmm
new file mode 100644
index 000000000000..e8256f71aabe
--- /dev/null
+++ b/_maps/outpost/elevator_ice.dmm
@@ -0,0 +1,47 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/obj/structure/elevator_platform,
+/obj/machinery/light/small/directional/east{
+ pixel_y = 6
+ },
+/turf/template_noop,
+/area/template_noop)
+"e" = (
+/obj/structure/elevator_platform,
+/obj/machinery/light/small/directional/east{
+ pixel_y = -6
+ },
+/obj/machinery/elevator_floor_button{
+ pixel_y = 10;
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/template_noop,
+/area/template_noop)
+"A" = (
+/obj/structure/elevator_platform,
+/turf/template_noop,
+/area/template_noop)
+"S" = (
+/obj/structure/elevator_platform,
+/obj/machinery/status_display/elevator{
+ pixel_x = 32
+ },
+/turf/template_noop,
+/area/template_noop)
+
+(1,1,1) = {"
+A
+A
+A
+"}
+(2,1,1) = {"
+A
+A
+A
+"}
+(3,1,1) = {"
+a
+S
+e
+"}
diff --git a/_maps/outpost/elevator_indie.dmm b/_maps/outpost/elevator_indie.dmm
new file mode 100644
index 000000000000..f692a2918a5b
--- /dev/null
+++ b/_maps/outpost/elevator_indie.dmm
@@ -0,0 +1,47 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/obj/structure/elevator_platform,
+/obj/machinery/status_display/elevator{
+ pixel_x = -32
+ },
+/turf/template_noop,
+/area/template_noop)
+"e" = (
+/obj/structure/elevator_platform,
+/obj/machinery/light/small/directional/east,
+/turf/template_noop,
+/area/template_noop)
+"k" = (
+/obj/structure/elevator_platform,
+/obj/machinery/light/small/directional/west,
+/turf/template_noop,
+/area/template_noop)
+"A" = (
+/obj/structure/elevator_platform,
+/turf/template_noop,
+/area/template_noop)
+"S" = (
+/obj/structure/elevator_platform,
+/obj/machinery/elevator_floor_button{
+ pixel_y = 0;
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/template_noop,
+/area/template_noop)
+
+(1,1,1) = {"
+k
+a
+k
+"}
+(2,1,1) = {"
+A
+A
+A
+"}
+(3,1,1) = {"
+e
+S
+e
+"}
diff --git a/_maps/outpost/hangar/nt_ice_20x20.dmm b/_maps/outpost/hangar/nt_ice_20x20.dmm
new file mode 100644
index 000000000000..ec7577ab620f
--- /dev/null
+++ b/_maps/outpost/hangar/nt_ice_20x20.dmm
@@ -0,0 +1,3389 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"ac" = (
+/turf/closed/indestructible/rock/schist,
+/area/hangar)
+"ad" = (
+/obj/machinery/light/floor,
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"al" = (
+/obj/effect/decal/fakelattice,
+/obj/effect/decal/cleanable/dirt{
+ color = "#808080"
+ },
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"am" = (
+/turf/closed/indestructible/reinforced,
+/area/hangar)
+"ao" = (
+/obj/effect/turf_decal/industrial/traffic{
+ dir = 1
+ },
+/obj/effect/turf_decal/industrial/traffic,
+/obj/machinery/door/poddoor/ert,
+/turf/open/floor/plasteel/patterned/brushed{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"ap" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"av" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"ay" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 5
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"az" = (
+/obj/effect/spawner/structure/window/reinforced/indestructable,
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"aB" = (
+/obj/effect/landmark/outpost/hangar_dock,
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"aC" = (
+/obj/effect/turf_decal/borderfloor,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"aJ" = (
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"aL" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/effect/turf_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/white,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"aM" = (
+/turf/open/floor/plating/asteroid/icerock/temperate,
+/area/hangar)
+"aN" = (
+/obj/effect/turf_decal/borderfloor/full,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1;
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"aO" = (
+/obj/effect/turf_decal/borderfloor,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"aP" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white/corner{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing/corner{
+ dir = 8;
+ layer = 4.1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"aT" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"aY" = (
+/obj/effect/decal/fakelattice,
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"aZ" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"bA" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"bI" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 10
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/landmark/outpost/hangar_numbers,
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"cf" = (
+/obj/effect/decal/fakelattice,
+/obj/effect/decal/cleanable/greenglow{
+ color = "#808080"
+ },
+/obj/effect/decal/cleanable/dirt{
+ color = "#808080"
+ },
+/obj/effect/decal/cleanable/dirt{
+ color = "#808080"
+ },
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"cB" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/structure/catwalk/over/plated_catwalk,
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"cD" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"cI" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"dM" = (
+/obj/effect/decal/fakelattice,
+/obj/effect/decal/cleanable/sprayweb{
+ color = "#808080";
+ name = "web"
+ },
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"fb" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 6
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"gy" = (
+/obj/effect/turf_decal/borderfloor/full,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1;
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"hg" = (
+/turf/open/floor/plasteel/tech,
+/area/hangar)
+"hv" = (
+/obj/effect/turf_decal/borderfloor/full,
+/obj/machinery/light/floor,
+/turf/open/floor/plasteel/patterned/cargo_one{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"hw" = (
+/obj/effect/turf_decal/industrial/hatch/yellow,
+/obj/machinery/vending/coffee,
+/obj/effect/decal/cleanable/wrapping,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark,
+/area/hangar)
+"hG" = (
+/obj/effect/decal/fakelattice,
+/obj/machinery/light/small/directional/east,
+/obj/effect/decal/cleanable/dirt{
+ color = "#808080"
+ },
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"ic" = (
+/obj/effect/decal/fakelattice,
+/obj/effect/decal/cleanable/dirt{
+ color = "#808080"
+ },
+/obj/effect/decal/cleanable/glass{
+ dir = 8;
+ color = "#808080"
+ },
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"im" = (
+/obj/structure/flora/grass/both,
+/obj/structure/flora/grass/both,
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"me" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"mR" = (
+/obj/machinery/door/airlock/outpost,
+/turf/open/floor/plasteel/tech,
+/area/hangar)
+"nr" = (
+/obj/effect/turf_decal/borderfloor,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"nK" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white,
+/obj/structure/railing{
+ layer = 4.1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"oi" = (
+/obj/effect/turf_decal/borderfloor/full,
+/obj/machinery/light/floor,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/cargo_one{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"oE" = (
+/obj/effect/turf_decal/borderfloor,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/machinery/light/small/directional/east{
+ pixel_y = -8
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"pr" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/effect/turf_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/white,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/effect/landmark/outpost/elevator_machine{
+ shaft = "1"
+ },
+/obj/machinery/light/small/directional/east{
+ pixel_y = -8
+ },
+/obj/machinery/elevator_call_button{
+ dir = 8;
+ pixel_x = 25;
+ pixel_y = 6
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/patterned/brushed{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"rj" = (
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"rQ" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"rY" = (
+/obj/effect/decal/fakelattice,
+/obj/effect/decal/cleanable/glass{
+ dir = 8;
+ color = "#808080"
+ },
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"sV" = (
+/obj/structure/closet/crate/bin,
+/obj/effect/turf_decal/industrial/outline/yellow,
+/obj/machinery/light/small/directional/east{
+ pixel_y = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/newscaster/security_unit/directional/east{
+ pixel_y = -6
+ },
+/turf/open/floor/plasteel/dark,
+/area/hangar)
+"ui" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 10
+ },
+/obj/effect/turf_decal/siding/white/corner{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing/corner{
+ dir = 4
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"uC" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing{
+ layer = 4.1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"xB" = (
+/obj/effect/turf_decal/borderfloor/full,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
+ },
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1;
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"xI" = (
+/obj/effect/decal/fakelattice{
+ layer = 2.010
+ },
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"yB" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 10
+ },
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Aj" = (
+/obj/effect/turf_decal/borderfloor/corner,
+/obj/effect/turf_decal/siding/white{
+ dir = 9
+ },
+/obj/structure/railing{
+ dir = 9
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Dh" = (
+/obj/effect/decal/fakelattice,
+/obj/effect/decal/cleanable/dirt{
+ color = "#808080"
+ },
+/obj/effect/decal/cleanable/dirt{
+ color = "#808080"
+ },
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"ES" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 6
+ },
+/obj/effect/turf_decal/siding/white/corner{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Fi" = (
+/obj/effect/turf_decal/borderfloor,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"FM" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 10
+ },
+/obj/effect/turf_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/structure/railing{
+ layer = 4.1;
+ dir = 10
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"FS" = (
+/obj/effect/turf_decal/borderfloor/full,
+/obj/machinery/light/floor,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/cargo_one{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"GH" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/turf_decal/siding/white/corner,
+/obj/structure/railing/corner{
+ layer = 4.1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"GK" = (
+/obj/effect/turf_decal/borderfloor/full,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1;
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"GX" = (
+/obj/structure/flora/tree/pine,
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"Iz" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white/corner,
+/obj/structure/railing/corner,
+/obj/machinery/light/small/directional/east{
+ pixel_y = -8
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"IA" = (
+/obj/effect/decal/fakelattice,
+/obj/effect/decal/cleanable/dirt{
+ color = "#808080"
+ },
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"IG" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"JU" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Ku" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 9
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"KC" = (
+/obj/effect/decal/fakelattice,
+/obj/effect/decal/cleanable/oil,
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Lo" = (
+/obj/effect/turf_decal/borderfloor/full,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1;
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"MI" = (
+/obj/structure/flora/grass/both,
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"MK" = (
+/obj/effect/turf_decal/borderfloor/full,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
+ },
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1;
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"MN" = (
+/obj/structure/flora/grass/green,
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"MR" = (
+/obj/effect/turf_decal/borderfloor,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"NO" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"PB" = (
+/obj/effect/decal/fakelattice,
+/obj/effect/decal/cleanable/dirt{
+ color = "#808080"
+ },
+/obj/effect/decal/cleanable/sprayweb{
+ color = "#808080";
+ name = "web"
+ },
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Qb" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Qu" = (
+/obj/structure/flora/tree/dead,
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"SW" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 5
+ },
+/obj/effect/turf_decal/siding/white/corner{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Te" = (
+/obj/effect/turf_decal/corner/opaque/neutral,
+/obj/effect/turf_decal/siding/white{
+ dir = 10
+ },
+/obj/structure/rack,
+/obj/item/clothing/suit/hooded/wintercoat,
+/obj/item/clothing/suit/hooded/wintercoat,
+/obj/item/clothing/suit/hooded/wintercoat{
+ pixel_y = 3
+ },
+/obj/item/clothing/suit/hooded/wintercoat{
+ pixel_y = 3
+ },
+/obj/item/clothing/suit/hooded/wintercoat{
+ pixel_y = 6
+ },
+/obj/item/clothing/suit/hooded/wintercoat{
+ pixel_y = 6
+ },
+/obj/structure/railing{
+ layer = 4.1;
+ dir = 10
+ },
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1;
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"TA" = (
+/obj/structure/flora/rock/pile/icy,
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"TF" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing{
+ layer = 4.1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"TQ" = (
+/obj/effect/turf_decal/corner/opaque/neutral,
+/obj/effect/turf_decal/siding/white,
+/obj/structure/railing{
+ layer = 4.1
+ },
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1;
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"TR" = (
+/obj/machinery/door/airlock{
+ dir = 4
+ },
+/obj/effect/turf_decal/industrial/warning/fulltile,
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/turf/open/floor/plasteel/tech,
+/area/hangar)
+"Ul" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"UV" = (
+/obj/effect/decal/fakelattice{
+ layer = 2.010
+ },
+/obj/effect/landmark/outpost/elevator{
+ shaft = "1"
+ },
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Vk" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Ww" = (
+/obj/effect/turf_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 5
+ },
+/obj/structure/railing{
+ dir = 5
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Xd" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/obj/effect/turf_decal/borderfloor{
+ dir = 4
+ },
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"XC" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 6
+ },
+/obj/effect/turf_decal/corner/opaque/neutral,
+/obj/structure/rack,
+/obj/item/clothing/suit/hooded/wintercoat,
+/obj/item/clothing/suit/hooded/wintercoat,
+/obj/item/clothing/suit/hooded/wintercoat{
+ pixel_y = 3
+ },
+/obj/item/clothing/suit/hooded/wintercoat{
+ pixel_y = 3
+ },
+/obj/item/clothing/suit/hooded/wintercoat{
+ pixel_y = 6
+ },
+/obj/item/clothing/suit/hooded/wintercoat{
+ pixel_y = 6
+ },
+/obj/structure/railing{
+ layer = 4.1;
+ dir = 6
+ },
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1;
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"YN" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 9
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"YU" = (
+/obj/effect/turf_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 6
+ },
+/obj/structure/railing{
+ layer = 4.1;
+ dir = 6
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Ze" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Zi" = (
+/obj/effect/turf_decal/industrial/traffic{
+ dir = 4
+ },
+/obj/effect/turf_decal/industrial/traffic{
+ dir = 8
+ },
+/obj/machinery/door/airlock{
+ dir = 8
+ },
+/obj/effect/landmark/outpost/elevator_machine,
+/turf/open/floor/plasteel/patterned/brushed{
+ planetary_atmos = 1
+ },
+/area/hangar)
+
+(1,1,1) = {"
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+"}
+(2,1,1) = {"
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+"}
+(3,1,1) = {"
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+rj
+rj
+rj
+rj
+rj
+ac
+ac
+ac
+aM
+rj
+rj
+rj
+rj
+rj
+ac
+ac
+ac
+ac
+ac
+ac
+aM
+aM
+aM
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+"}
+(4,1,1) = {"
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+MI
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+ac
+ac
+TA
+rj
+rj
+rj
+rj
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+"}
+(5,1,1) = {"
+ac
+ac
+ac
+ac
+ac
+ac
+rj
+rj
+rj
+rj
+rj
+MI
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+MI
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+ac
+ac
+ac
+ac
+ac
+"}
+(6,1,1) = {"
+ac
+ac
+ac
+ac
+ac
+rj
+rj
+rj
+rj
+MN
+rj
+rj
+rj
+MI
+rj
+rj
+rj
+MI
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+MN
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+ac
+ac
+ac
+ac
+ac
+"}
+(7,1,1) = {"
+ac
+ac
+ac
+ac
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+MN
+rj
+rj
+rj
+MI
+rj
+rj
+TA
+rj
+MI
+rj
+MI
+rj
+rj
+rj
+GX
+rj
+rj
+ac
+ac
+ac
+ac
+"}
+(8,1,1) = {"
+ac
+ac
+ac
+rj
+rj
+rj
+GX
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+TA
+rj
+aM
+ac
+ac
+ac
+"}
+(9,1,1) = {"
+ac
+ac
+ac
+rj
+MI
+rj
+rj
+rj
+rj
+rj
+rj
+MI
+rj
+rj
+MN
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+MI
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+ac
+ac
+ac
+"}
+(10,1,1) = {"
+ac
+ac
+aM
+rj
+rj
+rj
+rj
+MN
+rj
+rj
+rj
+rj
+rj
+TA
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+MI
+rj
+MN
+rj
+rj
+rj
+rj
+Qu
+rj
+rj
+MI
+rj
+rj
+rj
+GX
+rj
+aM
+ac
+ac
+"}
+(11,1,1) = {"
+ac
+ac
+aM
+rj
+rj
+GX
+rj
+Qu
+rj
+rj
+rj
+rj
+MN
+rj
+rj
+rj
+MI
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+MI
+rj
+rj
+rj
+MI
+rj
+rj
+rj
+rj
+MI
+rj
+rj
+aM
+ac
+ac
+"}
+(12,1,1) = {"
+ac
+ac
+ac
+rj
+rj
+rj
+rj
+rj
+rj
+MI
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+MI
+rj
+ac
+ac
+ac
+"}
+(13,1,1) = {"
+ac
+ac
+ac
+rj
+MI
+rj
+rj
+Aj
+bA
+yB
+GK
+GK
+MK
+MK
+MK
+GK
+GK
+GK
+GK
+GK
+GK
+GK
+Lo
+GK
+GK
+GK
+GK
+MK
+MK
+GK
+YN
+Xd
+FM
+rj
+rj
+rj
+rj
+ac
+ac
+ac
+"}
+(14,1,1) = {"
+ac
+ac
+ac
+rj
+rj
+rj
+rj
+MR
+hv
+ap
+xB
+xB
+xB
+gy
+gy
+gy
+gy
+gy
+aN
+gy
+xB
+xB
+xB
+xB
+xB
+gy
+gy
+gy
+gy
+gy
+cB
+oi
+nK
+rj
+rj
+GX
+rj
+ac
+ac
+ac
+"}
+(15,1,1) = {"
+ac
+ac
+ac
+ac
+ac
+rj
+rj
+aC
+rQ
+av
+aJ
+aJ
+ad
+aJ
+aJ
+aJ
+aJ
+ad
+aJ
+aJ
+aJ
+aJ
+ad
+aJ
+aJ
+aJ
+aJ
+ad
+aJ
+aB
+nr
+rQ
+nK
+rj
+rj
+MN
+TA
+am
+am
+am
+"}
+(16,1,1) = {"
+ac
+ac
+ac
+ac
+aM
+MN
+rj
+aC
+rQ
+av
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+nr
+ap
+nK
+rj
+rj
+GX
+rj
+am
+hg
+am
+"}
+(17,1,1) = {"
+am
+am
+am
+am
+rj
+rj
+MI
+Fi
+ap
+av
+ad
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+ad
+nr
+rQ
+nK
+rj
+rj
+rj
+rj
+mR
+hg
+am
+"}
+(18,1,1) = {"
+am
+hg
+hg
+am
+rj
+GX
+rj
+nr
+ap
+av
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+nr
+rQ
+aT
+MI
+rj
+rj
+rj
+am
+am
+am
+"}
+(19,1,1) = {"
+am
+hg
+hg
+am
+rj
+rj
+rj
+Fi
+rQ
+av
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aO
+rQ
+nK
+rj
+rj
+MI
+ac
+ac
+ac
+ac
+"}
+(20,1,1) = {"
+am
+hg
+hg
+mR
+rj
+rj
+GX
+aC
+NO
+av
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+nr
+rQ
+nK
+rj
+GX
+rj
+ac
+ac
+ac
+ac
+"}
+(21,1,1) = {"
+am
+hg
+hg
+am
+MI
+rj
+rj
+aC
+IG
+av
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+nr
+NO
+nK
+rj
+rj
+ac
+ac
+ac
+ac
+ac
+"}
+(22,1,1) = {"
+am
+am
+am
+am
+rj
+MN
+rj
+aC
+cI
+av
+ad
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+ad
+nr
+NO
+nK
+MI
+rj
+aM
+ac
+ac
+ac
+ac
+"}
+(23,1,1) = {"
+ac
+ac
+ac
+ac
+rj
+GX
+MN
+aC
+NO
+aT
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+nr
+NO
+nK
+rj
+GX
+ac
+ac
+ac
+ac
+ac
+"}
+(24,1,1) = {"
+ac
+ac
+ac
+ac
+rj
+rj
+rj
+aC
+NO
+aT
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+nr
+NO
+uC
+rj
+rj
+ac
+ac
+ac
+ac
+ac
+"}
+(25,1,1) = {"
+ac
+ac
+ac
+TA
+rj
+MI
+rj
+Fi
+rQ
+aT
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+nr
+rQ
+TF
+rj
+MI
+ac
+ac
+ac
+ac
+ac
+"}
+(26,1,1) = {"
+ac
+ac
+ac
+rj
+rj
+rj
+MI
+aC
+rQ
+av
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+nr
+NO
+TF
+rj
+ac
+ac
+ac
+ac
+ac
+ac
+"}
+(27,1,1) = {"
+ac
+ac
+ac
+rj
+rj
+rj
+rj
+aC
+rQ
+av
+ad
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+ad
+aO
+ap
+nK
+MN
+ac
+ac
+ac
+ac
+ac
+ac
+"}
+(28,1,1) = {"
+ac
+ac
+aM
+rj
+rj
+rj
+GX
+aC
+ap
+av
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aO
+rQ
+nK
+rj
+ac
+ac
+ac
+ac
+ac
+ac
+"}
+(29,1,1) = {"
+ac
+ac
+aM
+rj
+MI
+rj
+rj
+aC
+ap
+av
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aO
+rQ
+nK
+MI
+rj
+ac
+ac
+ac
+ac
+ac
+"}
+(30,1,1) = {"
+ac
+ac
+aM
+rj
+rj
+rj
+rj
+aC
+ap
+av
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+nr
+rQ
+nK
+GX
+rj
+aM
+ac
+ac
+ac
+ac
+"}
+(31,1,1) = {"
+ac
+ac
+ac
+rj
+rj
+MI
+rj
+aC
+ap
+av
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+nr
+NO
+nK
+rj
+rj
+aM
+ac
+ac
+ac
+ac
+"}
+(32,1,1) = {"
+ac
+ac
+ac
+rj
+rj
+GX
+rj
+aC
+rQ
+aT
+ad
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+ad
+nr
+NO
+nK
+rj
+MI
+ac
+ac
+ac
+ac
+ac
+"}
+(33,1,1) = {"
+ac
+ac
+ac
+rj
+rj
+MN
+rj
+Fi
+rQ
+aT
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+nr
+rQ
+nK
+rj
+GX
+ac
+ac
+ac
+ac
+ac
+"}
+(34,1,1) = {"
+ac
+ac
+ac
+rj
+rj
+rj
+GX
+Fi
+ap
+aT
+aJ
+aJ
+ad
+aJ
+aJ
+aJ
+aJ
+ad
+aJ
+aJ
+aJ
+aJ
+ad
+aJ
+aJ
+aJ
+aJ
+ad
+aJ
+aJ
+nr
+ap
+nK
+rj
+rj
+ac
+ac
+ac
+ac
+ac
+"}
+(35,1,1) = {"
+ac
+ac
+ac
+MI
+rj
+rj
+rj
+aC
+ap
+SW
+Qb
+Qb
+Qb
+Qb
+Qb
+Qb
+Qb
+Qb
+Qb
+Qb
+Qb
+Qb
+Qb
+Qb
+Qb
+Qb
+Qb
+Qb
+Qb
+Qb
+ES
+ap
+nK
+MI
+TA
+ac
+ac
+ac
+ac
+ac
+"}
+(36,1,1) = {"
+ac
+ac
+rj
+rj
+rj
+MI
+rj
+aC
+hv
+ap
+NO
+rQ
+rQ
+rQ
+ap
+NO
+NO
+rQ
+rQ
+rQ
+FS
+ap
+rQ
+ap
+ap
+ap
+NO
+NO
+rQ
+ap
+ap
+FS
+uC
+rj
+ac
+ac
+ac
+ac
+ac
+ac
+"}
+(37,1,1) = {"
+ac
+ac
+rj
+rj
+rj
+GX
+rj
+Ww
+aZ
+aZ
+aZ
+Vk
+aZ
+aZ
+aZ
+aZ
+aZ
+Ul
+Ul
+ui
+NO
+GH
+Vk
+aZ
+aZ
+aZ
+aZ
+aZ
+cD
+Ul
+Ul
+Ul
+YU
+MN
+ac
+ac
+ac
+ac
+ac
+ac
+"}
+(38,1,1) = {"
+ac
+ac
+ac
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+MN
+rj
+rj
+MI
+aC
+rQ
+uC
+rj
+rj
+rj
+MI
+rj
+rj
+rj
+MN
+rj
+rj
+rj
+GX
+rj
+ac
+ac
+ac
+ac
+ac
+"}
+(39,1,1) = {"
+ac
+ac
+ac
+rj
+rj
+MI
+rj
+MN
+rj
+rj
+rj
+rj
+GX
+MI
+rj
+rj
+rj
+GX
+rj
+aC
+rQ
+aP
+Te
+MI
+rj
+rj
+rj
+MI
+rj
+GX
+rj
+rj
+MI
+rj
+rj
+ac
+ac
+ac
+ac
+ac
+"}
+(40,1,1) = {"
+ac
+ac
+ac
+rj
+GX
+rj
+rj
+Qu
+rj
+MI
+rj
+MN
+rj
+rj
+rj
+MI
+rj
+rj
+rj
+aC
+NO
+Ze
+TQ
+rj
+rj
+GX
+rj
+MI
+rj
+rj
+rj
+rj
+rj
+rj
+rj
+ac
+ac
+ac
+ac
+ac
+"}
+(41,1,1) = {"
+ac
+ac
+ac
+rj
+rj
+rj
+rj
+rj
+GX
+rj
+rj
+rj
+rj
+rj
+Qu
+rj
+rj
+MN
+rj
+oE
+rQ
+Iz
+XC
+rj
+rj
+MI
+rj
+rj
+rj
+MI
+rj
+MI
+rj
+rj
+GX
+ac
+ac
+ac
+ac
+ac
+"}
+(42,1,1) = {"
+ac
+ac
+ac
+aM
+rj
+rj
+GX
+MI
+rj
+rj
+rj
+GX
+rj
+rj
+rj
+rj
+ac
+am
+am
+am
+TR
+am
+am
+am
+TA
+rj
+MI
+rj
+rj
+rj
+GX
+rj
+rj
+rj
+rj
+ac
+ac
+ac
+ac
+ac
+"}
+(43,1,1) = {"
+ac
+ac
+ac
+ac
+ac
+ac
+rj
+rj
+rj
+MI
+rj
+rj
+MI
+rj
+ac
+aM
+ac
+am
+hw
+Ku
+JU
+bI
+aL
+am
+ac
+rj
+rj
+rj
+rj
+rj
+rj
+im
+rj
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+"}
+(44,1,1) = {"
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+TA
+rj
+rj
+MI
+rj
+rj
+ac
+ac
+ac
+ac
+am
+sV
+ay
+me
+fb
+pr
+am
+ac
+ac
+rj
+MI
+rj
+MI
+rj
+rj
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+"}
+(45,1,1) = {"
+am
+am
+am
+am
+am
+am
+am
+am
+az
+az
+az
+az
+am
+am
+am
+am
+am
+am
+am
+Zi
+Zi
+Zi
+am
+am
+am
+am
+am
+az
+az
+az
+az
+am
+am
+am
+am
+am
+am
+am
+am
+am
+"}
+(46,1,1) = {"
+am
+aY
+aY
+aY
+ao
+dM
+Dh
+Dh
+al
+al
+cf
+al
+Dh
+PB
+al
+aY
+al
+al
+ao
+xI
+xI
+UV
+ao
+dM
+Dh
+Dh
+al
+aY
+al
+al
+cf
+al
+Dh
+PB
+al
+ao
+aY
+al
+Dh
+am
+"}
+(47,1,1) = {"
+am
+aY
+aY
+aY
+ao
+aY
+Dh
+Dh
+Dh
+al
+aY
+KC
+Dh
+al
+al
+aY
+ic
+al
+ao
+xI
+xI
+xI
+ao
+aY
+Dh
+Dh
+al
+aY
+ic
+al
+aY
+KC
+Dh
+al
+ic
+ao
+aY
+aY
+Dh
+am
+"}
+(48,1,1) = {"
+am
+aY
+aY
+aY
+ao
+aY
+dM
+aY
+hG
+aY
+aY
+al
+Dh
+Dh
+IA
+aY
+aY
+aY
+ao
+xI
+xI
+xI
+ao
+rY
+al
+Dh
+aY
+aY
+al
+Dh
+Dh
+IA
+Dh
+Dh
+aY
+ao
+aY
+al
+Dh
+am
+"}
+(49,1,1) = {"
+am
+am
+am
+am
+am
+ac
+ac
+ac
+am
+ac
+ac
+ac
+ac
+ac
+am
+ac
+ac
+ac
+am
+am
+am
+am
+am
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+am
+ac
+ac
+ac
+am
+am
+am
+am
+am
+"}
+(50,1,1) = {"
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+"}
+(51,1,1) = {"
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+"}
+(52,1,1) = {"
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+"}
+(53,1,1) = {"
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+"}
+(54,1,1) = {"
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+"}
+(55,1,1) = {"
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+"}
diff --git a/_maps/outpost/hangar/nt_ice_40x20.dmm b/_maps/outpost/hangar/nt_ice_40x20.dmm
new file mode 100644
index 000000000000..a9066a1dcef2
--- /dev/null
+++ b/_maps/outpost/hangar/nt_ice_40x20.dmm
@@ -0,0 +1,4283 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"ab" = (
+/turf/closed/indestructible/reinforced,
+/area/hangar)
+"ae" = (
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"af" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"ai" = (
+/obj/effect/decal/fakelattice,
+/obj/effect/decal/cleanable/dirt{
+ color = "#808080"
+ },
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"al" = (
+/obj/structure/flora/tree/pine,
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"am" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"an" = (
+/obj/effect/turf_decal/borderfloor/full,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
+ },
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1;
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"ap" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/turf_decal/siding/white,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"as" = (
+/obj/structure/flora/grass/green,
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"aw" = (
+/turf/open/floor/plating/asteroid/icerock/temperate,
+/area/hangar)
+"aA" = (
+/obj/effect/spawner/structure/window/reinforced/indestructable,
+/turf/open/floor/plating{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"aD" = (
+/obj/machinery/light/floor,
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"aF" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 10
+ },
+/obj/effect/turf_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/structure/railing{
+ layer = 4.1;
+ dir = 10
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"aG" = (
+/obj/effect/turf_decal/industrial/traffic{
+ dir = 1
+ },
+/obj/effect/turf_decal/industrial/traffic,
+/obj/machinery/door/poddoor/ert,
+/turf/open/floor/plasteel/patterned/brushed{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"aH" = (
+/obj/effect/decal/fakelattice,
+/obj/effect/decal/cleanable/glass{
+ dir = 8;
+ color = "#808080"
+ },
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"aL" = (
+/obj/effect/turf_decal/borderfloor,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"aM" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"aO" = (
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"aR" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"aT" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 10
+ },
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"aU" = (
+/obj/effect/turf_decal/borderfloor/full,
+/obj/machinery/light/floor,
+/turf/open/floor/plasteel/patterned/cargo_one{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"aY" = (
+/turf/closed/indestructible/rock/schist,
+/area/hangar)
+"bj" = (
+/obj/effect/decal/fakelattice,
+/obj/effect/decal/cleanable/dirt{
+ color = "#808080"
+ },
+/obj/effect/decal/cleanable/dirt{
+ color = "#808080"
+ },
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"bk" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 6
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"bz" = (
+/obj/effect/decal/fakelattice,
+/obj/effect/decal/cleanable/oil,
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"bL" = (
+/obj/effect/turf_decal/industrial/traffic{
+ dir = 4
+ },
+/obj/effect/turf_decal/industrial/traffic{
+ dir = 8
+ },
+/obj/machinery/door/airlock{
+ dir = 8
+ },
+/obj/effect/landmark/outpost/elevator_machine,
+/turf/open/floor/plasteel/patterned/brushed{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"dA" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"dF" = (
+/obj/effect/turf_decal/corner/opaque/neutral,
+/obj/effect/turf_decal/siding/white,
+/obj/structure/railing{
+ layer = 4.1
+ },
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1;
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"dR" = (
+/obj/effect/turf_decal/borderfloor/corner,
+/obj/effect/turf_decal/siding/white{
+ dir = 9
+ },
+/obj/structure/railing{
+ dir = 9
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"es" = (
+/obj/effect/decal/fakelattice,
+/obj/machinery/light/small/directional/east,
+/obj/effect/decal/cleanable/dirt{
+ color = "#808080"
+ },
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"eK" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"eW" = (
+/obj/effect/turf_decal/borderfloor/full,
+/obj/machinery/light/floor,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/cargo_one{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"fE" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"fQ" = (
+/obj/effect/turf_decal/borderfloor,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"hh" = (
+/obj/effect/turf_decal/borderfloor/full,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
+ },
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1;
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"hX" = (
+/obj/effect/landmark/outpost/hangar_dock,
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"io" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/effect/turf_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/white,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"iB" = (
+/obj/effect/turf_decal/borderfloor/full,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1;
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"jv" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"kL" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 10
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"lb" = (
+/obj/effect/decal/fakelattice,
+/obj/effect/decal/cleanable/dirt{
+ color = "#808080"
+ },
+/obj/effect/decal/cleanable/glass{
+ dir = 8;
+ color = "#808080"
+ },
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"lG" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 9
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"lO" = (
+/obj/effect/turf_decal/borderfloor,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"lQ" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white,
+/obj/structure/railing{
+ layer = 4.1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"mj" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 6
+ },
+/obj/effect/turf_decal/siding/white/corner{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"oA" = (
+/obj/effect/turf_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 6
+ },
+/obj/structure/railing{
+ layer = 4.1;
+ dir = 6
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"oC" = (
+/obj/machinery/door/airlock{
+ dir = 4
+ },
+/obj/effect/turf_decal/industrial/warning/fulltile,
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/turf/open/floor/plasteel/tech,
+/area/hangar)
+"oL" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white/corner{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing/corner{
+ dir = 8;
+ layer = 4.1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"pv" = (
+/obj/structure/flora/grass/both,
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"qa" = (
+/obj/effect/turf_decal/borderfloor,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"qh" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"qN" = (
+/obj/effect/turf_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 5
+ },
+/obj/structure/railing{
+ dir = 5
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"rk" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 10
+ },
+/obj/effect/turf_decal/siding/white/corner{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing/corner{
+ dir = 4
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"rq" = (
+/obj/effect/turf_decal/borderfloor,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"rr" = (
+/obj/effect/decal/fakelattice,
+/obj/effect/decal/cleanable/greenglow{
+ color = "#808080"
+ },
+/obj/effect/decal/cleanable/dirt{
+ color = "#808080"
+ },
+/obj/effect/decal/cleanable/dirt{
+ color = "#808080"
+ },
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"rI" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"rU" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 5
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"sx" = (
+/obj/effect/decal/fakelattice{
+ layer = 2.010
+ },
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"tB" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/effect/turf_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/white,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/effect/landmark/outpost/elevator_machine{
+ shaft = "1"
+ },
+/obj/machinery/light/small/directional/east{
+ pixel_y = -8
+ },
+/obj/machinery/elevator_call_button{
+ dir = 8;
+ pixel_x = 25;
+ pixel_y = 6
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"wH" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"wL" = (
+/obj/effect/turf_decal/borderfloor,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/machinery/light/small/directional/east{
+ pixel_y = -8
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"wR" = (
+/obj/structure/flora/rock/pile/icy,
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"xG" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/structure/catwalk/over/plated_catwalk,
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"zT" = (
+/obj/structure/flora/tree/dead,
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"AN" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/turf_decal/siding/white/corner,
+/obj/structure/railing/corner{
+ layer = 4.1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Cg" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"DM" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Ep" = (
+/obj/effect/turf_decal/industrial/hatch/yellow,
+/obj/machinery/vending/coffee,
+/obj/effect/decal/cleanable/wrapping,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark,
+/area/hangar)
+"EJ" = (
+/obj/effect/turf_decal/borderfloor/full,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1;
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"Fx" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 10
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/landmark/outpost/hangar_numbers,
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"FX" = (
+/obj/effect/decal/fakelattice,
+/obj/effect/decal/cleanable/dirt{
+ color = "#808080"
+ },
+/obj/effect/decal/cleanable/sprayweb{
+ color = "#808080";
+ name = "web"
+ },
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"GS" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 5
+ },
+/obj/effect/turf_decal/siding/white/corner{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Iv" = (
+/obj/effect/turf_decal/borderfloor/full,
+/obj/machinery/light/floor,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/cargo_one{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"Jb" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 9
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Js" = (
+/obj/effect/turf_decal/corner/opaque/neutral,
+/obj/effect/turf_decal/siding/white{
+ dir = 10
+ },
+/obj/structure/rack,
+/obj/item/clothing/suit/hooded/wintercoat,
+/obj/item/clothing/suit/hooded/wintercoat,
+/obj/item/clothing/suit/hooded/wintercoat{
+ pixel_y = 3
+ },
+/obj/item/clothing/suit/hooded/wintercoat{
+ pixel_y = 3
+ },
+/obj/item/clothing/suit/hooded/wintercoat{
+ pixel_y = 6
+ },
+/obj/item/clothing/suit/hooded/wintercoat{
+ pixel_y = 6
+ },
+/obj/structure/railing{
+ layer = 4.1;
+ dir = 10
+ },
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1;
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"JT" = (
+/obj/effect/turf_decal/borderfloor/full,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1;
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"LS" = (
+/obj/structure/closet/crate/bin,
+/obj/effect/turf_decal/industrial/outline/yellow,
+/obj/machinery/light/small/directional/east{
+ pixel_y = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/newscaster/security_unit/directional/east{
+ pixel_y = -6
+ },
+/turf/open/floor/plasteel/dark,
+/area/hangar)
+"Mf" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white/corner,
+/obj/structure/railing/corner,
+/obj/machinery/light/small/directional/east{
+ pixel_y = -8
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Mi" = (
+/obj/effect/turf_decal/borderfloor/full,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1;
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"MM" = (
+/turf/open/floor/plasteel/tech,
+/area/hangar)
+"OP" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing{
+ layer = 4.1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Qu" = (
+/obj/structure/flora/grass/both,
+/obj/structure/flora/grass/both,
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"QX" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"RU" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Sh" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/obj/effect/turf_decal/borderfloor{
+ dir = 4
+ },
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Sn" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing{
+ layer = 4.1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"TX" = (
+/obj/effect/decal/fakelattice,
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Uo" = (
+/obj/machinery/door/airlock/outpost,
+/turf/open/floor/plasteel/tech,
+/area/hangar)
+"Vs" = (
+/obj/effect/decal/fakelattice,
+/obj/effect/decal/cleanable/dirt{
+ color = "#808080"
+ },
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Ww" = (
+/obj/effect/turf_decal/borderfloor,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"WM" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Xz" = (
+/obj/effect/decal/fakelattice,
+/obj/effect/decal/cleanable/sprayweb{
+ color = "#808080";
+ name = "web"
+ },
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"XP" = (
+/obj/effect/decal/fakelattice{
+ layer = 2.010
+ },
+/obj/effect/landmark/outpost/elevator{
+ shaft = "1"
+ },
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Zc" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 6
+ },
+/obj/effect/turf_decal/corner/opaque/neutral,
+/obj/structure/rack,
+/obj/item/clothing/suit/hooded/wintercoat,
+/obj/item/clothing/suit/hooded/wintercoat,
+/obj/item/clothing/suit/hooded/wintercoat{
+ pixel_y = 3
+ },
+/obj/item/clothing/suit/hooded/wintercoat{
+ pixel_y = 3
+ },
+/obj/item/clothing/suit/hooded/wintercoat{
+ pixel_y = 6
+ },
+/obj/item/clothing/suit/hooded/wintercoat{
+ pixel_y = 6
+ },
+/obj/structure/railing{
+ layer = 4.1;
+ dir = 6
+ },
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1;
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"ZK" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1
+ },
+/area/hangar)
+
+(1,1,1) = {"
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+"}
+(2,1,1) = {"
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+"}
+(3,1,1) = {"
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aO
+aO
+aO
+aO
+aO
+aY
+aY
+aY
+aw
+aO
+aO
+aO
+aO
+aO
+aY
+aY
+aY
+aY
+aY
+aY
+aw
+aw
+aw
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+"}
+(4,1,1) = {"
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+pv
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aY
+aY
+wR
+aO
+aO
+aO
+aO
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+"}
+(5,1,1) = {"
+aY
+aY
+aY
+aY
+aY
+aY
+aO
+aO
+aO
+aO
+aO
+pv
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+pv
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aY
+aY
+aY
+aY
+aY
+"}
+(6,1,1) = {"
+aY
+aY
+aY
+aY
+aY
+aO
+aO
+aO
+aO
+as
+aO
+aO
+aO
+pv
+aO
+aO
+aO
+pv
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+as
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aY
+aY
+aY
+aY
+aY
+"}
+(7,1,1) = {"
+aY
+aY
+aY
+aY
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+as
+aO
+aO
+aO
+pv
+aO
+aO
+wR
+aO
+pv
+aO
+pv
+aO
+aO
+aO
+al
+aO
+aO
+aY
+aY
+aY
+aY
+"}
+(8,1,1) = {"
+aY
+aY
+aY
+aO
+aO
+aO
+al
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+wR
+aO
+aw
+aY
+aY
+aY
+"}
+(9,1,1) = {"
+aY
+aY
+aY
+aO
+pv
+aO
+aO
+aO
+aO
+aO
+aO
+pv
+aO
+aO
+as
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+pv
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aY
+aY
+aY
+"}
+(10,1,1) = {"
+aY
+aY
+aw
+aO
+aO
+aO
+aO
+as
+aO
+aO
+aO
+aO
+aO
+wR
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+pv
+aO
+as
+aO
+aO
+aO
+aO
+zT
+aO
+aO
+pv
+aO
+aO
+aO
+al
+aO
+aw
+aY
+aY
+"}
+(11,1,1) = {"
+aY
+aY
+aw
+aO
+aO
+al
+aO
+zT
+aO
+aO
+aO
+aO
+as
+aO
+aO
+aO
+pv
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+pv
+aO
+aO
+aO
+pv
+aO
+aO
+aO
+aO
+pv
+aO
+aO
+aw
+aY
+aY
+"}
+(12,1,1) = {"
+aY
+aY
+aY
+aO
+aO
+aO
+aO
+aO
+aO
+pv
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+pv
+aO
+aY
+aY
+aY
+"}
+(13,1,1) = {"
+aY
+aY
+aY
+aO
+pv
+aO
+aO
+dR
+qh
+aT
+JT
+JT
+hh
+hh
+hh
+JT
+JT
+JT
+JT
+JT
+JT
+JT
+EJ
+JT
+JT
+JT
+JT
+hh
+hh
+JT
+Jb
+Sh
+aF
+aO
+aO
+aO
+aO
+aY
+aY
+aY
+"}
+(14,1,1) = {"
+aY
+aY
+aY
+aO
+aO
+aO
+aO
+lO
+aU
+am
+an
+an
+an
+iB
+iB
+iB
+iB
+iB
+Mi
+iB
+an
+an
+an
+an
+an
+iB
+iB
+iB
+iB
+iB
+xG
+eW
+lQ
+aO
+aO
+al
+aO
+aY
+aY
+aY
+"}
+(15,1,1) = {"
+aY
+aY
+aY
+aO
+aO
+al
+aO
+Ww
+aR
+ap
+ae
+ae
+aD
+ae
+ae
+ae
+ae
+aD
+ae
+ae
+ae
+ae
+aD
+ae
+ae
+ae
+ae
+aD
+ae
+hX
+kL
+aR
+lQ
+aO
+as
+aO
+pv
+aY
+aY
+aY
+"}
+(16,1,1) = {"
+aY
+aY
+aY
+aO
+aO
+aO
+aO
+aL
+aR
+aM
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+rq
+rI
+OP
+aO
+aO
+aO
+aO
+aw
+aY
+aY
+"}
+(17,1,1) = {"
+aY
+aY
+aY
+aY
+aO
+as
+aO
+aL
+aR
+dA
+aD
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+aD
+rq
+aR
+OP
+aO
+aO
+pv
+aO
+aY
+aY
+aY
+"}
+(18,1,1) = {"
+aY
+aY
+aY
+aY
+pv
+aO
+aO
+aL
+aR
+DM
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+fQ
+WM
+OP
+aO
+al
+aO
+aO
+aY
+aY
+aY
+"}
+(19,1,1) = {"
+aY
+aY
+aY
+aY
+aO
+aO
+aO
+aL
+rI
+DM
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+fQ
+aR
+lQ
+aO
+aO
+aO
+aO
+aY
+aY
+aY
+"}
+(20,1,1) = {"
+aY
+aY
+aY
+aY
+aY
+aO
+as
+aL
+rI
+DM
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+rq
+am
+OP
+aO
+aO
+aO
+aY
+aY
+aY
+aY
+"}
+(21,1,1) = {"
+aY
+aY
+aY
+aY
+aw
+al
+aO
+aL
+rI
+DM
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+rq
+am
+OP
+aO
+pv
+aO
+aY
+aY
+aY
+aY
+"}
+(22,1,1) = {"
+aY
+aY
+aY
+aY
+aY
+aO
+pv
+aL
+rI
+DM
+aD
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+aD
+rq
+am
+OP
+aO
+aO
+aY
+aY
+aY
+aY
+aY
+"}
+(23,1,1) = {"
+aY
+aY
+aY
+aY
+aY
+aO
+aO
+aL
+rI
+DM
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+rq
+am
+OP
+aO
+aO
+aY
+aY
+aY
+aY
+aY
+"}
+(24,1,1) = {"
+aY
+aY
+aY
+aY
+aY
+wR
+aO
+Ww
+rI
+DM
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+rq
+am
+OP
+aO
+al
+aY
+aY
+aY
+aY
+aY
+"}
+(25,1,1) = {"
+aY
+aY
+aY
+aY
+aY
+aY
+aO
+Ww
+rI
+DM
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+rq
+am
+OP
+aO
+as
+aw
+aY
+aY
+aY
+aY
+"}
+(26,1,1) = {"
+aY
+aY
+aY
+aY
+aY
+aY
+aO
+Ww
+am
+DM
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+fQ
+am
+OP
+pv
+aO
+aY
+aY
+aY
+aY
+aY
+"}
+(27,1,1) = {"
+aY
+aY
+aY
+aY
+aY
+pv
+aO
+Ww
+am
+DM
+aD
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+aD
+rq
+aR
+OP
+aO
+aO
+aY
+aY
+aY
+aY
+aY
+"}
+(28,1,1) = {"
+aY
+aY
+aY
+aY
+aY
+aO
+as
+Ww
+am
+DM
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+rq
+rI
+lQ
+aO
+al
+aY
+aY
+aY
+aY
+aY
+"}
+(29,1,1) = {"
+aY
+aY
+aY
+aY
+aY
+aO
+al
+aL
+am
+DM
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+rq
+rI
+lQ
+aO
+aO
+aO
+aY
+aY
+aY
+aY
+"}
+(30,1,1) = {"
+aY
+aY
+aY
+aY
+aY
+aO
+aO
+aL
+am
+DM
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+rq
+rI
+OP
+aO
+pv
+aO
+aY
+aY
+aY
+aY
+"}
+(31,1,1) = {"
+aY
+aY
+aY
+aY
+aY
+pv
+aO
+aL
+am
+aM
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+rq
+rI
+lQ
+aO
+aO
+aO
+aw
+aY
+aY
+aY
+"}
+(32,1,1) = {"
+aY
+aY
+aY
+aY
+aY
+aO
+aO
+aL
+rI
+aM
+aD
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+aD
+rq
+rI
+lQ
+aO
+aO
+as
+wR
+ab
+ab
+ab
+"}
+(33,1,1) = {"
+aY
+aY
+aY
+aY
+aw
+as
+aO
+aL
+rI
+DM
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+qa
+aR
+lQ
+aO
+aO
+al
+aO
+ab
+MM
+ab
+"}
+(34,1,1) = {"
+ab
+ab
+ab
+ab
+aO
+aO
+pv
+rq
+rI
+DM
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+rq
+rI
+DM
+aO
+aO
+aO
+aO
+Uo
+MM
+ab
+"}
+(35,1,1) = {"
+ab
+MM
+MM
+ab
+aO
+al
+aO
+aL
+rI
+DM
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+rq
+rI
+lQ
+pv
+aO
+aO
+aO
+ab
+ab
+ab
+"}
+(36,1,1) = {"
+ab
+MM
+MM
+ab
+aO
+aO
+aO
+aL
+rI
+DM
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+rq
+am
+lQ
+al
+aO
+pv
+aY
+aY
+aY
+aY
+"}
+(37,1,1) = {"
+ab
+MM
+MM
+Uo
+aO
+aO
+al
+Ww
+am
+DM
+aD
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+aD
+rq
+rI
+lQ
+aO
+aO
+aO
+aY
+aY
+aY
+aY
+"}
+(38,1,1) = {"
+ab
+MM
+MM
+ab
+pv
+aO
+aO
+aL
+am
+DM
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+rq
+rI
+OP
+aO
+aO
+aY
+aY
+aY
+aY
+aY
+"}
+(39,1,1) = {"
+ab
+ab
+ab
+ab
+aO
+as
+aO
+Ww
+rI
+DM
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+fQ
+rI
+lQ
+pv
+aO
+aw
+aY
+aY
+aY
+aY
+"}
+(40,1,1) = {"
+aY
+aY
+aY
+aY
+aO
+al
+as
+aL
+aR
+DM
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+rq
+rI
+lQ
+aO
+al
+aY
+aY
+aY
+aY
+aY
+"}
+(41,1,1) = {"
+aY
+aY
+aY
+aY
+aO
+aO
+aO
+aL
+WM
+DM
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+rq
+aR
+lQ
+aO
+aO
+aY
+aY
+aY
+aY
+aY
+"}
+(42,1,1) = {"
+aY
+aY
+aY
+wR
+aO
+pv
+aO
+aL
+wH
+DM
+aD
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+aD
+rq
+aR
+lQ
+aO
+pv
+aY
+aY
+aY
+aY
+aY
+"}
+(43,1,1) = {"
+aY
+aY
+aY
+aO
+aO
+aO
+pv
+aL
+aR
+aM
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+rq
+aR
+lQ
+aO
+aY
+aY
+aY
+aY
+aY
+aY
+"}
+(44,1,1) = {"
+aY
+aY
+aY
+aO
+aO
+aO
+aO
+aL
+aR
+aM
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+rq
+aR
+OP
+as
+aY
+aY
+aY
+aY
+aY
+aY
+"}
+(45,1,1) = {"
+aY
+aY
+aw
+aO
+aO
+aO
+al
+Ww
+rI
+aM
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+rq
+rI
+Sn
+aO
+aY
+aY
+aY
+aY
+aY
+aY
+"}
+(46,1,1) = {"
+aY
+aY
+aw
+aO
+pv
+aO
+aO
+aL
+rI
+DM
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+rq
+aR
+Sn
+pv
+aO
+aY
+aY
+aY
+aY
+aY
+"}
+(47,1,1) = {"
+aY
+aY
+aw
+aO
+aO
+aO
+aO
+aL
+rI
+DM
+aD
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+aD
+fQ
+am
+lQ
+al
+aO
+aw
+aY
+aY
+aY
+aY
+"}
+(48,1,1) = {"
+aY
+aY
+aY
+aO
+aO
+pv
+aO
+aL
+am
+DM
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+fQ
+rI
+lQ
+aO
+aO
+aw
+aY
+aY
+aY
+aY
+"}
+(49,1,1) = {"
+aY
+aY
+aY
+aO
+aO
+al
+aO
+aL
+am
+DM
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+fQ
+rI
+lQ
+aO
+pv
+aY
+aY
+aY
+aY
+aY
+"}
+(50,1,1) = {"
+aY
+aY
+aY
+aO
+aO
+as
+aO
+aL
+am
+DM
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+rq
+rI
+lQ
+aO
+al
+aY
+aY
+aY
+aY
+aY
+"}
+(51,1,1) = {"
+aY
+aY
+aY
+aO
+aO
+aO
+al
+aL
+am
+DM
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+rq
+aR
+lQ
+aO
+aO
+aY
+aY
+aY
+aY
+aY
+"}
+(52,1,1) = {"
+aY
+aY
+aY
+pv
+aO
+aO
+aO
+aL
+rI
+aM
+aD
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+aD
+rq
+aR
+lQ
+pv
+wR
+aY
+aY
+aY
+aY
+aY
+"}
+(53,1,1) = {"
+aY
+aY
+aO
+aO
+aO
+pv
+aO
+Ww
+rI
+aM
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+rq
+rI
+lQ
+aO
+aY
+aY
+aY
+aY
+aY
+aY
+"}
+(54,1,1) = {"
+aY
+aY
+aO
+aO
+aO
+aO
+aO
+Ww
+am
+aM
+ae
+ae
+aD
+ae
+ae
+ae
+ae
+aD
+ae
+ae
+ae
+ae
+aD
+ae
+ae
+ae
+ae
+aD
+ae
+ae
+rq
+am
+lQ
+as
+aY
+aY
+aY
+aY
+aY
+aY
+"}
+(55,1,1) = {"
+aY
+aY
+aO
+aO
+al
+aO
+aO
+aL
+am
+GS
+af
+af
+af
+af
+af
+af
+af
+af
+af
+af
+af
+af
+af
+af
+af
+af
+af
+af
+af
+af
+mj
+am
+lQ
+pv
+aY
+aY
+aY
+aY
+aY
+aY
+"}
+(56,1,1) = {"
+aY
+aY
+aO
+aO
+pv
+aO
+aO
+aL
+aU
+am
+aR
+rI
+rI
+rI
+am
+aR
+aR
+rI
+rI
+rI
+Iv
+am
+rI
+am
+am
+am
+aR
+aR
+rI
+am
+am
+Iv
+OP
+aO
+aO
+aY
+aY
+aY
+aY
+aY
+"}
+(57,1,1) = {"
+aY
+aY
+aY
+aO
+aO
+aO
+al
+qN
+jv
+jv
+jv
+RU
+jv
+jv
+jv
+jv
+jv
+QX
+QX
+rk
+aR
+AN
+RU
+jv
+jv
+jv
+jv
+jv
+fE
+QX
+QX
+QX
+oA
+aO
+pv
+aY
+aY
+aY
+aY
+aY
+"}
+(58,1,1) = {"
+aY
+aY
+aY
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+as
+aO
+aO
+pv
+aL
+rI
+OP
+aO
+aO
+aO
+pv
+aO
+aO
+aO
+as
+aO
+aO
+aO
+al
+aO
+aY
+aY
+aY
+aY
+aY
+"}
+(59,1,1) = {"
+aY
+aY
+aY
+aO
+aO
+pv
+aO
+as
+aO
+aO
+aO
+aO
+al
+pv
+aO
+aO
+aO
+al
+aO
+aL
+rI
+oL
+Js
+pv
+aO
+aO
+aO
+pv
+aO
+al
+aO
+aO
+pv
+aO
+aO
+aY
+aY
+aY
+aY
+aY
+"}
+(60,1,1) = {"
+aY
+aY
+aY
+aO
+al
+aO
+aO
+zT
+aO
+pv
+aO
+as
+aO
+aO
+aO
+pv
+aO
+aO
+aO
+aL
+aR
+Cg
+dF
+aO
+aO
+al
+aO
+pv
+aO
+aO
+aO
+aO
+aO
+aO
+aO
+aY
+aY
+aY
+aY
+aY
+"}
+(61,1,1) = {"
+aY
+aY
+aY
+aO
+aO
+aO
+aO
+aO
+al
+aO
+aO
+aO
+aO
+aO
+zT
+aO
+aO
+as
+aO
+wL
+rI
+Mf
+Zc
+aO
+aO
+pv
+aO
+aO
+aO
+pv
+aO
+pv
+aO
+aO
+al
+aY
+aY
+aY
+aY
+aY
+"}
+(62,1,1) = {"
+aY
+aY
+aY
+aw
+aO
+aO
+al
+pv
+aO
+aO
+aO
+al
+aO
+aO
+aO
+aO
+aY
+ab
+ab
+ab
+oC
+ab
+ab
+ab
+wR
+aO
+pv
+aO
+aO
+aO
+al
+aO
+aO
+aO
+aO
+aY
+aY
+aY
+aY
+aY
+"}
+(63,1,1) = {"
+aY
+aY
+aY
+aY
+aY
+aY
+aO
+aO
+aO
+pv
+aO
+aO
+pv
+aO
+aY
+aw
+aY
+ab
+Ep
+lG
+eK
+Fx
+io
+ab
+aY
+aO
+aO
+aO
+aO
+aO
+aO
+Qu
+aO
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+"}
+(64,1,1) = {"
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+wR
+aO
+aO
+pv
+aO
+aO
+aY
+aY
+aY
+aY
+ab
+LS
+rU
+ZK
+bk
+tB
+ab
+aY
+aY
+aO
+pv
+aO
+pv
+aO
+aO
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+"}
+(65,1,1) = {"
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aA
+aA
+aA
+aA
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+bL
+bL
+bL
+ab
+ab
+ab
+ab
+ab
+aA
+aA
+aA
+aA
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+"}
+(66,1,1) = {"
+ab
+TX
+TX
+TX
+aG
+Xz
+bj
+bj
+ai
+ai
+rr
+ai
+bj
+FX
+ai
+TX
+ai
+ai
+aG
+sx
+sx
+XP
+aG
+Xz
+bj
+bj
+ai
+TX
+ai
+ai
+rr
+ai
+bj
+FX
+ai
+aG
+TX
+ai
+bj
+ab
+"}
+(67,1,1) = {"
+ab
+TX
+TX
+TX
+aG
+TX
+bj
+bj
+bj
+ai
+TX
+bz
+bj
+ai
+ai
+TX
+lb
+ai
+aG
+sx
+sx
+sx
+aG
+TX
+bj
+bj
+ai
+TX
+lb
+ai
+TX
+bz
+bj
+ai
+lb
+aG
+TX
+TX
+bj
+ab
+"}
+(68,1,1) = {"
+ab
+TX
+TX
+TX
+aG
+TX
+Xz
+TX
+es
+TX
+TX
+ai
+bj
+bj
+Vs
+TX
+TX
+TX
+aG
+sx
+sx
+sx
+aG
+aH
+ai
+bj
+TX
+TX
+ai
+bj
+bj
+Vs
+bj
+bj
+TX
+aG
+TX
+ai
+bj
+ab
+"}
+(69,1,1) = {"
+ab
+ab
+ab
+ab
+ab
+aY
+aY
+aY
+ab
+aY
+aY
+aY
+aY
+aY
+ab
+aY
+aY
+aY
+ab
+ab
+ab
+ab
+ab
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+ab
+aY
+aY
+aY
+ab
+ab
+ab
+ab
+ab
+"}
+(70,1,1) = {"
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+"}
+(71,1,1) = {"
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+"}
+(72,1,1) = {"
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+"}
+(73,1,1) = {"
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+"}
+(74,1,1) = {"
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+"}
+(75,1,1) = {"
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+aY
+"}
diff --git a/_maps/outpost/hangar/nt_ice_40x40.dmm b/_maps/outpost/hangar/nt_ice_40x40.dmm
new file mode 100644
index 000000000000..c2b6ae69926f
--- /dev/null
+++ b/_maps/outpost/hangar/nt_ice_40x40.dmm
@@ -0,0 +1,6020 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"aa" = (
+/turf/closed/indestructible/reinforced,
+/area/hangar)
+"ab" = (
+/obj/structure/flora/grass/both,
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"ac" = (
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"ag" = (
+/obj/effect/turf_decal/borderfloor,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"ah" = (
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"ak" = (
+/obj/structure/flora/grass/green,
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"am" = (
+/obj/effect/turf_decal/borderfloor/full,
+/obj/machinery/light/floor,
+/turf/open/floor/plasteel/patterned/cargo_one{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"an" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"ap" = (
+/obj/effect/decal/fakelattice,
+/obj/effect/decal/cleanable/dirt{
+ color = "#808080"
+ },
+/obj/effect/decal/cleanable/dirt{
+ color = "#808080"
+ },
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"as" = (
+/turf/open/floor/plating/asteroid/icerock/temperate,
+/area/hangar)
+"at" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"au" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"aw" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"ax" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white,
+/obj/structure/railing{
+ layer = 4.1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"ay" = (
+/obj/effect/turf_decal/borderfloor,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"aC" = (
+/obj/structure/flora/tree/pine,
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"aF" = (
+/obj/effect/turf_decal/borderfloor/full,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
+ },
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1;
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"aH" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white/corner,
+/obj/structure/railing/corner,
+/obj/machinery/light/small/directional/east{
+ pixel_y = -8
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"aQ" = (
+/obj/structure/flora/rock/pile/icy,
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"aS" = (
+/obj/effect/spawner/structure/window/reinforced/indestructable,
+/turf/open/floor/plating{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"aT" = (
+/turf/closed/indestructible/rock/schist,
+/area/hangar)
+"aX" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"aY" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"by" = (
+/obj/effect/turf_decal/borderfloor/full,
+/obj/machinery/light/floor,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/cargo_one{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"bz" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 10
+ },
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"bQ" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing{
+ layer = 4.1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"cy" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"dQ" = (
+/obj/effect/decal/fakelattice,
+/obj/effect/decal/cleanable/greenglow{
+ color = "#808080"
+ },
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"dZ" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 10
+ },
+/obj/effect/turf_decal/siding/white/corner{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing/corner{
+ dir = 4
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"eU" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/oil,
+/turf/open/floor/plasteel/tech,
+/area/hangar)
+"fJ" = (
+/obj/effect/turf_decal/industrial/traffic{
+ dir = 1
+ },
+/obj/effect/turf_decal/industrial/traffic,
+/obj/machinery/door/poddoor/ert,
+/turf/open/floor/plasteel/patterned/brushed{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"gE" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/effect/turf_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/white,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/effect/landmark/outpost/elevator_machine{
+ shaft = "1"
+ },
+/obj/machinery/light/small/directional/east{
+ pixel_y = -8
+ },
+/obj/machinery/elevator_call_button{
+ dir = 8;
+ pixel_x = 25;
+ pixel_y = 6
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"hr" = (
+/obj/effect/turf_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 5
+ },
+/obj/structure/railing{
+ dir = 5
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"hI" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"hT" = (
+/obj/effect/landmark/outpost/hangar_dock,
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"ig" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 9
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"iw" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/turf_decal/siding/white/corner,
+/obj/structure/railing/corner{
+ layer = 4.1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"iB" = (
+/obj/effect/decal/fakelattice,
+/obj/effect/decal/cleanable/dirt{
+ color = "#808080"
+ },
+/obj/effect/decal/cleanable/glass{
+ dir = 8;
+ color = "#808080"
+ },
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"jF" = (
+/obj/effect/turf_decal/corner/opaque/neutral,
+/obj/effect/turf_decal/siding/white,
+/obj/structure/railing{
+ layer = 4.1
+ },
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1;
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"jY" = (
+/obj/machinery/light/floor,
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"kq" = (
+/obj/effect/decal/fakelattice{
+ layer = 2.010
+ },
+/obj/effect/landmark/outpost/elevator{
+ shaft = "1"
+ },
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"kQ" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/structure/catwalk/over/plated_catwalk,
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"kT" = (
+/obj/machinery/computer/security{
+ icon_state = "computer-middle";
+ dir = 4;
+ pixel_x = -7
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/telecomms_floor,
+/area/hangar)
+"lC" = (
+/obj/effect/turf_decal/borderfloor,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"lI" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 10
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/landmark/outpost/hangar_numbers,
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"lJ" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing{
+ layer = 4.1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"mA" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 9
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"mQ" = (
+/obj/effect/decal/fakelattice{
+ layer = 2.010
+ },
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"na" = (
+/obj/effect/turf_decal/borderfloor/full,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/chair/comfy/brown{
+ dir = 8;
+ pixel_x = 6
+ },
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/plating{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"oC" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"pd" = (
+/obj/effect/turf_decal/borderfloor/full,
+/obj/effect/turf_decal/industrial/warning,
+/obj/structure/filingcabinet/double/grey,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/plating{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"qW" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/tech,
+/area/hangar)
+"rK" = (
+/obj/effect/decal/fakelattice,
+/obj/effect/decal/cleanable/dirt{
+ color = "#808080"
+ },
+/obj/effect/decal/cleanable/sprayweb{
+ color = "#808080";
+ name = "web"
+ },
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"sS" = (
+/obj/effect/turf_decal/borderfloor/full,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1;
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"ta" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"tb" = (
+/obj/structure/closet/crate/bin,
+/obj/effect/turf_decal/industrial/outline/yellow,
+/obj/machinery/light/small/directional/east{
+ pixel_y = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/newscaster/security_unit/directional/east{
+ pixel_y = -6
+ },
+/turf/open/floor/plasteel/dark,
+/area/hangar)
+"ti" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"um" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 5
+ },
+/obj/effect/turf_decal/siding/white/corner{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"uS" = (
+/obj/effect/decal/fakelattice,
+/obj/effect/decal/cleanable/sprayweb{
+ color = "#808080";
+ name = "web"
+ },
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"wK" = (
+/obj/effect/turf_decal/borderfloor/full,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
+ },
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1;
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"xJ" = (
+/obj/machinery/computer/prisoner/management{
+ icon_state = "computer-right";
+ dir = 4;
+ pixel_x = -7
+ },
+/turf/open/floor/plasteel/telecomms_floor,
+/area/hangar)
+"xO" = (
+/obj/effect/decal/fakelattice,
+/obj/effect/decal/cleanable/wrapping{
+ color = "#808080"
+ },
+/obj/effect/decal/cleanable/dirt{
+ color = "#808080"
+ },
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"yG" = (
+/obj/effect/decal/fakelattice,
+/obj/effect/decal/cleanable/dirt{
+ color = "#808080"
+ },
+/obj/effect/decal/cleanable/dirt{
+ color = "#808080"
+ },
+/obj/effect/decal/cleanable/wrapping{
+ color = "#808080"
+ },
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"zM" = (
+/obj/machinery/telecomms/relay,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/telecomms_floor,
+/area/hangar)
+"Bf" = (
+/obj/structure/flora/tree/dead,
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"BE" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"BK" = (
+/obj/effect/decal/fakelattice,
+/obj/effect/decal/cleanable/dirt{
+ color = "#808080"
+ },
+/obj/effect/decal/cleanable/dirt{
+ color = "#808080"
+ },
+/obj/effect/decal/cleanable/dirt{
+ color = "#808080"
+ },
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"CG" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Dd" = (
+/obj/effect/turf_decal/borderfloor,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Ec" = (
+/obj/effect/turf_decal/borderfloor,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Ex" = (
+/obj/machinery/door/airlock/outpost,
+/obj/effect/turf_decal/industrial/warning/fulltile,
+/turf/open/floor/plasteel/tech,
+/area/hangar)
+"EG" = (
+/obj/effect/turf_decal/borderfloor/full,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1;
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"FH" = (
+/obj/effect/turf_decal/corner/opaque/neutral,
+/obj/effect/turf_decal/siding/white{
+ dir = 10
+ },
+/obj/structure/rack,
+/obj/item/clothing/suit/hooded/wintercoat,
+/obj/item/clothing/suit/hooded/wintercoat,
+/obj/item/clothing/suit/hooded/wintercoat{
+ pixel_y = 3
+ },
+/obj/item/clothing/suit/hooded/wintercoat{
+ pixel_y = 3
+ },
+/obj/item/clothing/suit/hooded/wintercoat{
+ pixel_y = 6
+ },
+/obj/item/clothing/suit/hooded/wintercoat{
+ pixel_y = 6
+ },
+/obj/structure/railing{
+ layer = 4.1;
+ dir = 10
+ },
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1;
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"Go" = (
+/obj/effect/decal/fakelattice,
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"GF" = (
+/obj/machinery/blackbox_recorder,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/telecomms_floor,
+/area/hangar)
+"Hv" = (
+/obj/structure/table/reinforced,
+/obj/item/flashlight/lamp{
+ pixel_x = -6;
+ pixel_y = 5
+ },
+/obj/machinery/button/door{
+ req_one_access_txt = "101";
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = 8
+ },
+/obj/machinery/button/door{
+ req_one_access_txt = "101";
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = -4
+ },
+/turf/open/floor/plasteel/telecomms_floor,
+/area/hangar)
+"HD" = (
+/obj/effect/turf_decal/industrial/traffic{
+ dir = 4
+ },
+/obj/effect/turf_decal/industrial/traffic{
+ dir = 8
+ },
+/obj/machinery/door/airlock{
+ dir = 8
+ },
+/obj/effect/landmark/outpost/elevator_machine,
+/turf/open/floor/plasteel/patterned/brushed{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"HH" = (
+/obj/machinery/door/airlock/outpost,
+/turf/open/floor/plasteel/tech,
+/area/hangar)
+"Ia" = (
+/obj/effect/decal/fakelattice,
+/obj/effect/decal/cleanable/dirt{
+ color = "#808080"
+ },
+/obj/effect/decal/cleanable/dirt{
+ color = "#808080"
+ },
+/obj/effect/decal/cleanable/oil,
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"JI" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"JN" = (
+/obj/effect/decal/fakelattice,
+/obj/effect/decal/cleanable/dirt{
+ color = "#808080"
+ },
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"KA" = (
+/obj/effect/turf_decal/borderfloor/full,
+/obj/machinery/light/floor,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/cargo_one{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"Li" = (
+/obj/effect/turf_decal/borderfloor/full,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1;
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"Lt" = (
+/obj/effect/turf_decal/industrial/hatch/yellow,
+/obj/machinery/vending/coffee,
+/obj/effect/decal/cleanable/wrapping,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark,
+/area/hangar)
+"LJ" = (
+/obj/effect/decal/fakelattice,
+/obj/effect/decal/cleanable/greenglow{
+ color = "#808080"
+ },
+/obj/effect/decal/cleanable/dirt{
+ color = "#808080"
+ },
+/obj/effect/decal/cleanable/dirt{
+ color = "#808080"
+ },
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"LV" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/turf_decal/siding/white,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Mm" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/tech,
+/area/hangar)
+"Mz" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"NY" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 6
+ },
+/obj/effect/turf_decal/corner/opaque/neutral,
+/obj/structure/rack,
+/obj/item/clothing/suit/hooded/wintercoat,
+/obj/item/clothing/suit/hooded/wintercoat,
+/obj/item/clothing/suit/hooded/wintercoat{
+ pixel_y = 3
+ },
+/obj/item/clothing/suit/hooded/wintercoat{
+ pixel_y = 3
+ },
+/obj/item/clothing/suit/hooded/wintercoat{
+ pixel_y = 6
+ },
+/obj/item/clothing/suit/hooded/wintercoat{
+ pixel_y = 6
+ },
+/obj/structure/railing{
+ layer = 4.1;
+ dir = 6
+ },
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1;
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"Os" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/effect/turf_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/white,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Ow" = (
+/obj/machinery/door/airlock{
+ dir = 4
+ },
+/obj/effect/turf_decal/industrial/warning/fulltile,
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/turf/open/floor/plasteel/tech,
+/area/hangar)
+"OJ" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 6
+ },
+/obj/effect/turf_decal/siding/white/corner{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"OR" = (
+/obj/effect/decal/fakelattice,
+/obj/machinery/light/small/directional/east,
+/obj/effect/decal/cleanable/dirt{
+ color = "#808080"
+ },
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"OU" = (
+/obj/effect/turf_decal/borderfloor/corner,
+/obj/effect/turf_decal/siding/white{
+ dir = 9
+ },
+/obj/structure/railing{
+ dir = 9
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Ps" = (
+/obj/machinery/computer/secure_data{
+ icon_state = "computer-left";
+ dir = 4;
+ pixel_x = -7
+ },
+/turf/open/floor/plasteel/telecomms_floor,
+/area/hangar)
+"Px" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white/corner{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing/corner{
+ dir = 8;
+ layer = 4.1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Qs" = (
+/obj/effect/turf_decal/borderfloor/full,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1;
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"Rk" = (
+/obj/effect/turf_decal/borderfloor,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Rl" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 10
+ },
+/obj/effect/turf_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/structure/railing{
+ layer = 4.1;
+ dir = 10
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Rx" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 10
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Sf" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Sg" = (
+/obj/effect/decal/fakelattice,
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"SC" = (
+/obj/machinery/light/floor,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Tn" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Tp" = (
+/obj/effect/turf_decal/borderfloor,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/machinery/light/small/directional/east{
+ pixel_y = -8
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Tq" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/obj/effect/turf_decal/borderfloor{
+ dir = 4
+ },
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Ui" = (
+/obj/effect/turf_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 6
+ },
+/obj/structure/railing{
+ layer = 4.1;
+ dir = 6
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"VR" = (
+/obj/effect/decal/fakelattice,
+/obj/effect/decal/cleanable/dirt{
+ color = "#808080"
+ },
+/obj/effect/decal/cleanable/greenglow{
+ color = "#808080"
+ },
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Wd" = (
+/obj/effect/decal/fakelattice,
+/obj/effect/decal/cleanable/glass{
+ dir = 8;
+ color = "#808080"
+ },
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"WJ" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"WR" = (
+/obj/effect/decal/fakelattice,
+/obj/effect/decal/cleanable/dirt{
+ color = "#808080"
+ },
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"XA" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"XQ" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 5
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"XR" = (
+/obj/effect/decal/fakelattice,
+/obj/effect/decal/cleanable/oil,
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Yt" = (
+/turf/open/floor/plasteel/tech,
+/area/hangar)
+"Zb" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"ZW" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 6
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1
+ },
+/area/hangar)
+
+(1,1,1) = {"
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+"}
+(2,1,1) = {"
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+"}
+(3,1,1) = {"
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+as
+aT
+aT
+aT
+aT
+aT
+as
+aT
+aT
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aT
+aT
+aT
+as
+ac
+ac
+ac
+ac
+ac
+aT
+aT
+aT
+aT
+aT
+aT
+as
+as
+as
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+"}
+(4,1,1) = {"
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+ac
+ac
+ac
+ac
+ac
+aQ
+aT
+aT
+aT
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ab
+ac
+ac
+ab
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aT
+aT
+aQ
+ac
+ac
+ac
+ac
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+"}
+(5,1,1) = {"
+aT
+aT
+aT
+aT
+aT
+aT
+ac
+ac
+ac
+Bf
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ab
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ab
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aT
+aT
+aT
+aT
+aT
+"}
+(6,1,1) = {"
+aT
+aT
+aT
+aT
+aT
+ac
+ac
+ac
+ac
+ab
+ac
+aQ
+ak
+ac
+ac
+ac
+ac
+ak
+ac
+ac
+ab
+ac
+ac
+aQ
+ak
+ac
+ac
+ac
+ac
+ak
+ac
+ac
+ac
+ab
+ac
+ac
+ac
+ab
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ak
+ac
+ac
+ac
+ac
+aC
+ac
+ac
+ac
+aT
+aT
+aT
+aT
+aT
+"}
+(7,1,1) = {"
+aT
+aT
+aT
+aT
+ac
+ac
+ac
+aC
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ab
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ak
+ac
+ac
+ac
+ab
+ac
+ac
+aQ
+ac
+ab
+ac
+ac
+ac
+ac
+ac
+aC
+ac
+ac
+aT
+aT
+aT
+aT
+"}
+(8,1,1) = {"
+aT
+aT
+aT
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ab
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ab
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aQ
+ac
+as
+aT
+aT
+aT
+"}
+(9,1,1) = {"
+aT
+aT
+aT
+ac
+ab
+ac
+ac
+ac
+ac
+ac
+ac
+ab
+ac
+ac
+aQ
+ac
+ac
+ac
+ac
+ac
+ac
+ak
+ac
+ab
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ab
+ac
+ac
+ak
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ab
+ac
+ac
+ac
+ac
+ac
+aC
+ac
+ac
+ac
+ac
+ac
+aT
+aT
+aT
+"}
+(10,1,1) = {"
+aT
+aT
+as
+ac
+ac
+ac
+ac
+ac
+aC
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aQ
+ac
+ac
+ac
+ac
+ac
+ak
+ac
+ac
+ak
+ac
+ac
+ac
+ac
+ac
+aQ
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ab
+ac
+ak
+ac
+ac
+ac
+ac
+Bf
+ac
+ac
+ac
+ac
+ac
+ac
+aC
+ac
+as
+aT
+aT
+"}
+(11,1,1) = {"
+aT
+aT
+as
+ac
+ac
+aC
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ab
+ac
+ak
+ac
+ac
+ac
+ac
+ab
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ak
+ac
+ac
+ac
+ab
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ab
+ac
+ac
+ac
+ab
+ac
+ac
+ac
+ac
+ab
+ac
+ac
+as
+aT
+aT
+"}
+(12,1,1) = {"
+aT
+aT
+aT
+ac
+ac
+ac
+ac
+ab
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ab
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ab
+ac
+aT
+aT
+aT
+"}
+(13,1,1) = {"
+aT
+aT
+aT
+ac
+ab
+ac
+ac
+OU
+ti
+bz
+wK
+wK
+EG
+EG
+EG
+EG
+wK
+EG
+EG
+wK
+wK
+wK
+wK
+EG
+wK
+wK
+wK
+wK
+wK
+EG
+EG
+EG
+wK
+wK
+wK
+EG
+EG
+EG
+EG
+EG
+EG
+EG
+Li
+EG
+EG
+EG
+EG
+wK
+wK
+EG
+mA
+Tq
+Rl
+ac
+ac
+ac
+ac
+aT
+aT
+aT
+"}
+(14,1,1) = {"
+aT
+aT
+aT
+ac
+ac
+ac
+ac
+Ec
+am
+JI
+aF
+aF
+aF
+aF
+sS
+sS
+sS
+aF
+sS
+sS
+aF
+aF
+aF
+aF
+sS
+sS
+sS
+sS
+sS
+aF
+aF
+aF
+aF
+sS
+sS
+sS
+sS
+sS
+Qs
+sS
+aF
+aF
+aF
+aF
+aF
+sS
+sS
+sS
+sS
+sS
+kQ
+KA
+ax
+ac
+ac
+aC
+ac
+aT
+aT
+aT
+"}
+(15,1,1) = {"
+aT
+aT
+aT
+ac
+ac
+aC
+ac
+Dd
+hI
+LV
+ta
+ta
+SC
+ta
+ah
+ah
+ah
+jY
+ah
+ah
+ah
+ah
+jY
+ah
+ah
+ah
+ah
+jY
+ta
+ta
+ah
+ah
+jY
+ah
+ah
+ah
+ah
+jY
+ah
+ah
+ah
+ah
+jY
+ah
+ah
+ah
+ah
+jY
+ah
+hT
+Rx
+hI
+ax
+ac
+ak
+ac
+ab
+aT
+aT
+aT
+"}
+(16,1,1) = {"
+aT
+aT
+aT
+ac
+ac
+ac
+ac
+Rk
+hI
+at
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ag
+an
+bQ
+ac
+ac
+ac
+ac
+as
+aT
+aT
+"}
+(17,1,1) = {"
+aT
+aT
+aT
+aT
+ac
+ak
+ac
+Rk
+hI
+Zb
+jY
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+jY
+ag
+hI
+bQ
+ac
+ac
+ab
+ac
+aT
+aT
+aT
+"}
+(18,1,1) = {"
+aT
+aT
+aT
+aT
+ab
+ac
+ac
+Rk
+hI
+au
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ay
+aY
+bQ
+ac
+aC
+ac
+ac
+aT
+aT
+aT
+"}
+(19,1,1) = {"
+aT
+aT
+aT
+aT
+ac
+ac
+ac
+Rk
+an
+au
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ay
+hI
+ax
+ac
+ac
+ac
+ac
+aT
+aT
+aT
+"}
+(20,1,1) = {"
+aT
+aT
+aT
+aT
+aT
+ac
+ak
+Rk
+an
+au
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ag
+JI
+bQ
+ac
+ac
+ac
+aT
+aT
+aT
+aT
+"}
+(21,1,1) = {"
+aT
+aT
+aT
+aT
+as
+aC
+ac
+Rk
+an
+au
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ag
+JI
+bQ
+ac
+ab
+ac
+aT
+aT
+aT
+aT
+"}
+(22,1,1) = {"
+aT
+aT
+aT
+aT
+aT
+ac
+ab
+Rk
+an
+au
+jY
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+jY
+ag
+JI
+bQ
+ac
+ac
+aT
+aT
+aT
+aT
+aT
+"}
+(23,1,1) = {"
+aT
+aT
+aT
+aT
+aT
+ac
+ac
+Rk
+an
+au
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ag
+JI
+bQ
+ac
+ac
+aT
+aT
+aT
+aT
+aT
+"}
+(24,1,1) = {"
+aT
+aT
+aT
+aT
+aT
+aQ
+ac
+Dd
+an
+au
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ag
+JI
+bQ
+ac
+aC
+aT
+aT
+aT
+aT
+aT
+"}
+(25,1,1) = {"
+aT
+aT
+aT
+aT
+aT
+aT
+ac
+Dd
+an
+au
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ag
+JI
+bQ
+ac
+ak
+as
+aT
+aT
+aT
+aT
+"}
+(26,1,1) = {"
+aT
+aT
+aT
+aT
+aT
+aT
+ac
+Dd
+JI
+au
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ay
+JI
+bQ
+ab
+ac
+aT
+aT
+aT
+aT
+aT
+"}
+(27,1,1) = {"
+aT
+aT
+aT
+aT
+aT
+ab
+ac
+Dd
+JI
+au
+jY
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+jY
+ag
+hI
+bQ
+ac
+ac
+aT
+aT
+aT
+aT
+aT
+"}
+(28,1,1) = {"
+aT
+aT
+aT
+aT
+aT
+ac
+ak
+Dd
+JI
+au
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ag
+an
+ax
+ac
+aC
+aT
+aT
+aT
+aT
+aT
+"}
+(29,1,1) = {"
+aT
+aT
+aT
+aT
+aT
+ac
+aC
+Rk
+JI
+au
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ag
+an
+ax
+ac
+ac
+ac
+aT
+aT
+aT
+aT
+"}
+(30,1,1) = {"
+aT
+aT
+aT
+aT
+aT
+ac
+ac
+Rk
+JI
+au
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ag
+an
+bQ
+ac
+ab
+ac
+aT
+aT
+aT
+aT
+"}
+(31,1,1) = {"
+aT
+aT
+aT
+aT
+aT
+ab
+ac
+Rk
+JI
+at
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ag
+an
+ax
+ac
+ac
+ac
+as
+aT
+aT
+aT
+"}
+(32,1,1) = {"
+aT
+aT
+aT
+aT
+aT
+ac
+ac
+Rk
+an
+at
+jY
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+jY
+ag
+an
+ax
+ac
+ac
+ak
+aQ
+aa
+aa
+aa
+"}
+(33,1,1) = {"
+aT
+aT
+aT
+aT
+as
+ak
+ac
+Rk
+an
+au
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+lC
+hI
+ax
+ac
+ac
+aC
+ac
+aa
+Yt
+aa
+"}
+(34,1,1) = {"
+aa
+aa
+aa
+aa
+ac
+ac
+ab
+ag
+an
+au
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ag
+an
+au
+ac
+ac
+ac
+ac
+HH
+Yt
+aa
+"}
+(35,1,1) = {"
+aa
+Yt
+Yt
+aa
+ac
+aC
+ac
+Rk
+an
+au
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ag
+an
+ax
+ab
+ac
+ac
+ac
+aa
+aa
+aa
+"}
+(36,1,1) = {"
+aa
+Yt
+Yt
+aa
+ac
+ac
+ac
+Rk
+an
+au
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ag
+JI
+ax
+aC
+ac
+ab
+aT
+aT
+aT
+aT
+"}
+(37,1,1) = {"
+aa
+Yt
+Yt
+HH
+ac
+ac
+aC
+Dd
+JI
+au
+jY
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+jY
+ag
+an
+ax
+ac
+ac
+ac
+aT
+aT
+aT
+aT
+"}
+(38,1,1) = {"
+aa
+Yt
+Yt
+aa
+ab
+ac
+ac
+Rk
+JI
+au
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ag
+an
+bQ
+ac
+ac
+aT
+aT
+aT
+aT
+aT
+"}
+(39,1,1) = {"
+aa
+aa
+aa
+aa
+ac
+ak
+ac
+Dd
+an
+au
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ay
+an
+ax
+ab
+ac
+as
+aT
+aT
+aT
+aT
+"}
+(40,1,1) = {"
+aT
+aT
+aT
+aT
+ac
+aC
+ak
+Rk
+hI
+au
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ag
+an
+ax
+ac
+aC
+aT
+aT
+aT
+aT
+aT
+"}
+(41,1,1) = {"
+aT
+aT
+aT
+aT
+ac
+ac
+ac
+Rk
+aY
+au
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ag
+hI
+ax
+ac
+ac
+aT
+aT
+aT
+aT
+aT
+"}
+(42,1,1) = {"
+aT
+aT
+aT
+aQ
+ac
+ab
+ac
+Rk
+Sf
+au
+jY
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+jY
+ag
+hI
+ax
+ac
+ab
+aT
+aT
+aT
+aT
+aT
+"}
+(43,1,1) = {"
+aT
+aT
+aT
+ac
+ac
+ac
+ab
+Rk
+hI
+at
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ag
+hI
+ax
+ac
+aT
+aT
+aT
+aT
+aT
+aT
+"}
+(44,1,1) = {"
+aT
+aT
+aT
+ac
+aC
+ac
+ac
+Rk
+hI
+at
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ag
+hI
+bQ
+ak
+aT
+aT
+aT
+aT
+aT
+aT
+"}
+(45,1,1) = {"
+aT
+aT
+as
+ac
+ac
+ac
+aC
+Dd
+an
+at
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ag
+an
+lJ
+ac
+aT
+aT
+aT
+aT
+aT
+aT
+"}
+(46,1,1) = {"
+aT
+aT
+as
+ac
+ab
+ac
+ac
+Rk
+an
+au
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ag
+hI
+lJ
+ab
+ac
+aT
+aT
+aT
+aT
+aT
+"}
+(47,1,1) = {"
+aT
+aT
+as
+ac
+ac
+ac
+ac
+Rk
+an
+au
+jY
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+jY
+ay
+JI
+ax
+aC
+ac
+as
+aT
+aT
+aT
+aT
+"}
+(48,1,1) = {"
+aT
+aT
+aT
+ac
+ac
+ab
+ac
+Rk
+JI
+au
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ay
+an
+ax
+ac
+ac
+as
+aT
+aT
+aT
+aT
+"}
+(49,1,1) = {"
+aT
+aT
+aT
+ac
+ac
+aC
+ac
+Rk
+JI
+au
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ay
+an
+ax
+ac
+ab
+aT
+aT
+aT
+aT
+aT
+"}
+(50,1,1) = {"
+aT
+aT
+aT
+ac
+ac
+ak
+ac
+Rk
+JI
+au
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ag
+an
+ax
+ac
+aC
+aT
+aT
+aT
+aT
+aT
+"}
+(51,1,1) = {"
+aT
+aT
+aT
+ac
+ac
+ac
+aC
+Rk
+JI
+au
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ag
+hI
+ax
+ac
+ac
+aT
+aT
+aT
+aT
+aT
+"}
+(52,1,1) = {"
+aT
+aT
+aT
+ab
+ac
+ac
+ac
+Rk
+an
+at
+jY
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+jY
+ag
+hI
+ax
+ab
+aQ
+aT
+aT
+aT
+aT
+aT
+"}
+(53,1,1) = {"
+aT
+aT
+ac
+ac
+ac
+ab
+ac
+Dd
+an
+at
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ag
+an
+ax
+ac
+aT
+aT
+aT
+aT
+aT
+aT
+"}
+(54,1,1) = {"
+aT
+aT
+ac
+ac
+ac
+ab
+ac
+Dd
+JI
+at
+ah
+ah
+jY
+ah
+ah
+ah
+ah
+jY
+ah
+ah
+ah
+ah
+jY
+ah
+ah
+ah
+ah
+jY
+ah
+ah
+ah
+ah
+jY
+ah
+ah
+ah
+ah
+jY
+ah
+ah
+ah
+ah
+jY
+ah
+ah
+ah
+ah
+jY
+ah
+ah
+ag
+JI
+ax
+ak
+aT
+aT
+aT
+aT
+aT
+aT
+"}
+(55,1,1) = {"
+aT
+aT
+ac
+ac
+aC
+ac
+ac
+Rk
+JI
+um
+Tn
+aX
+aX
+aX
+Tn
+Tn
+Tn
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+Tn
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+aX
+OJ
+JI
+ax
+ab
+aT
+aT
+aT
+aT
+aT
+aT
+"}
+(56,1,1) = {"
+aT
+aT
+ac
+ac
+ab
+ac
+ac
+Rk
+am
+JI
+JI
+JI
+JI
+JI
+an
+an
+an
+an
+an
+JI
+JI
+JI
+JI
+an
+an
+hI
+an
+an
+an
+an
+hI
+by
+an
+an
+JI
+hI
+hI
+an
+an
+JI
+JI
+JI
+an
+JI
+JI
+JI
+hI
+hI
+an
+JI
+JI
+by
+bQ
+ac
+ac
+aT
+aT
+aT
+aT
+aT
+"}
+(57,1,1) = {"
+aT
+aT
+aT
+ac
+ac
+ac
+aC
+hr
+Mz
+Mz
+BE
+BE
+Mz
+Mz
+Mz
+Mz
+Mz
+Mz
+Mz
+oC
+BE
+BE
+Mz
+Mz
+Mz
+Mz
+Mz
+Mz
+Mz
+Mz
+dZ
+hI
+iw
+Mz
+Mz
+Mz
+Mz
+oC
+oC
+Mz
+Mz
+aw
+BE
+Mz
+Mz
+Mz
+Mz
+Mz
+XA
+aw
+oC
+oC
+Ui
+ac
+ab
+aT
+aT
+aT
+aT
+aT
+"}
+(58,1,1) = {"
+aT
+aT
+aT
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ak
+ac
+ac
+ac
+ac
+ac
+ac
+ak
+ac
+aC
+ab
+Rk
+an
+bQ
+ac
+ac
+ac
+ab
+ac
+ac
+ac
+ak
+ac
+ac
+ab
+ac
+ac
+ac
+ac
+ac
+ak
+ac
+ac
+ac
+aC
+ac
+aT
+aT
+aT
+aT
+aT
+"}
+(59,1,1) = {"
+aT
+aT
+aT
+ac
+ac
+ab
+ac
+ak
+ac
+ab
+ac
+ab
+ac
+ac
+aC
+aQ
+ac
+ab
+ac
+ac
+ac
+ac
+ac
+aC
+ab
+ac
+ac
+ac
+ac
+ac
+Rk
+an
+Px
+FH
+ab
+ac
+ac
+ac
+ac
+aC
+ac
+ab
+ac
+ac
+aC
+ab
+ac
+ab
+ac
+ac
+Bf
+ac
+ab
+ac
+ac
+aT
+aT
+aT
+aT
+aT
+"}
+(60,1,1) = {"
+aT
+aT
+aT
+ac
+aC
+ac
+ac
+Bf
+ac
+ac
+aC
+ac
+ac
+ac
+ac
+ab
+ac
+ac
+aC
+ac
+ab
+ac
+ak
+ac
+ac
+aT
+aT
+as
+aT
+aT
+Rk
+hI
+cy
+jF
+ac
+ac
+aC
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aC
+ac
+ac
+ac
+ac
+ac
+ac
+aT
+aT
+aT
+aT
+aT
+"}
+(61,1,1) = {"
+aT
+aT
+aT
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aC
+ac
+ac
+ac
+ak
+ac
+ac
+aa
+aS
+aS
+aS
+aS
+aa
+aT
+aT
+aT
+aT
+Tp
+an
+aH
+NY
+ac
+ac
+ab
+ac
+aC
+ab
+ac
+ac
+aC
+ab
+ac
+Bf
+ac
+ac
+ac
+ab
+ac
+ab
+ac
+ac
+aC
+aT
+aT
+aT
+aT
+aT
+"}
+(62,1,1) = {"
+aT
+aT
+aT
+as
+ac
+ac
+aC
+ab
+ac
+ac
+ab
+ac
+ac
+ac
+ac
+ab
+ac
+ac
+ab
+ac
+aa
+Hv
+xJ
+kT
+Ps
+aa
+aa
+aa
+aa
+aa
+aa
+Ow
+aa
+aa
+aa
+aQ
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+aC
+ac
+ab
+ac
+ac
+ac
+aC
+ac
+ac
+ac
+ac
+aT
+aT
+aT
+aT
+aT
+"}
+(63,1,1) = {"
+aT
+aT
+aT
+aT
+aT
+ac
+ac
+aQ
+ac
+ac
+aC
+ac
+ac
+ac
+aC
+ac
+ac
+ac
+aC
+ac
+Ex
+Mm
+eU
+qW
+Mm
+Ex
+Go
+Go
+aa
+Lt
+ig
+WJ
+lI
+Os
+aa
+aT
+ac
+ab
+ac
+ab
+ac
+ac
+aC
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ac
+ab
+ac
+as
+aT
+aT
+aT
+aT
+aT
+"}
+(64,1,1) = {"
+aT
+aT
+aT
+aT
+aT
+aT
+ac
+ac
+ak
+ac
+ac
+ac
+ab
+ac
+ac
+ak
+ac
+ac
+ac
+ac
+aa
+pd
+zM
+GF
+na
+aa
+Go
+Go
+aa
+tb
+XQ
+CG
+ZW
+gE
+aa
+aT
+aT
+ac
+ac
+ac
+ac
+ab
+ac
+as
+aT
+aT
+ac
+ab
+ac
+ab
+ac
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+"}
+(65,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aS
+aS
+aS
+aS
+aa
+aa
+aS
+aS
+aS
+aS
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+HD
+HD
+HD
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aS
+aS
+aS
+aa
+aa
+aa
+aa
+aS
+aS
+aS
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(66,1,1) = {"
+aa
+Go
+Go
+Go
+fJ
+uS
+ap
+ap
+ap
+VR
+JN
+Wd
+Go
+JN
+JN
+iB
+JN
+JN
+Go
+JN
+JN
+LJ
+JN
+ap
+rK
+JN
+Go
+JN
+JN
+fJ
+mQ
+mQ
+kq
+fJ
+uS
+ap
+ap
+ap
+VR
+JN
+Wd
+Go
+JN
+JN
+iB
+JN
+JN
+Go
+JN
+JN
+LJ
+JN
+ap
+rK
+JN
+fJ
+Go
+JN
+ap
+aa
+"}
+(67,1,1) = {"
+aa
+Go
+Go
+Go
+fJ
+Go
+ap
+ap
+BK
+yG
+Ia
+Go
+ap
+ap
+ap
+ap
+JN
+JN
+Go
+iB
+JN
+Go
+XR
+ap
+JN
+JN
+Go
+iB
+JN
+fJ
+mQ
+mQ
+mQ
+fJ
+Go
+ap
+ap
+BK
+yG
+Ia
+Go
+ap
+ap
+ap
+ap
+JN
+JN
+Go
+iB
+JN
+Go
+XR
+ap
+JN
+iB
+fJ
+Go
+Go
+ap
+aa
+"}
+(68,1,1) = {"
+aa
+Go
+Go
+Go
+fJ
+Go
+uS
+Sg
+Wd
+JN
+ap
+JN
+Go
+OR
+JN
+xO
+dQ
+JN
+JN
+Sg
+Go
+Go
+JN
+ap
+ap
+WR
+Go
+Go
+Go
+fJ
+mQ
+mQ
+mQ
+fJ
+Wd
+JN
+ap
+JN
+Go
+OR
+JN
+xO
+dQ
+JN
+JN
+Sg
+Go
+Go
+JN
+ap
+ap
+WR
+ap
+ap
+Go
+fJ
+Go
+JN
+ap
+aa
+"}
+(69,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aT
+aT
+aa
+aT
+aT
+aT
+aT
+aT
+aa
+aT
+aT
+aT
+aT
+aT
+aa
+aT
+aT
+aT
+aT
+aT
+aa
+aT
+aT
+aT
+aa
+aa
+aa
+aa
+aa
+aT
+aT
+aT
+aT
+aT
+aa
+aT
+aT
+aT
+aT
+aT
+aa
+aT
+aT
+aT
+aT
+aT
+aa
+aT
+aT
+aT
+aa
+aa
+aa
+aa
+aa
+"}
+(70,1,1) = {"
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+"}
+(71,1,1) = {"
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+"}
+(72,1,1) = {"
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+"}
+(73,1,1) = {"
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+"}
+(74,1,1) = {"
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+"}
+(75,1,1) = {"
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+"}
diff --git a/_maps/outpost/hangar/nt_ice_56x20.dmm b/_maps/outpost/hangar/nt_ice_56x20.dmm
new file mode 100644
index 000000000000..c7e73652ef0d
--- /dev/null
+++ b/_maps/outpost/hangar/nt_ice_56x20.dmm
@@ -0,0 +1,4965 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"ad" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 10
+ },
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"ae" = (
+/turf/open/floor/plating/asteroid/icerock/temperate,
+/area/hangar)
+"af" = (
+/obj/effect/landmark/outpost/hangar_dock,
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"ag" = (
+/turf/closed/indestructible/reinforced,
+/area/hangar)
+"ai" = (
+/obj/effect/decal/fakelattice,
+/obj/effect/decal/cleanable/dirt{
+ color = "#808080"
+ },
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"aj" = (
+/obj/effect/spawner/structure/window/reinforced/indestructable,
+/turf/open/floor/plating{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"al" = (
+/turf/closed/indestructible/rock/schist,
+/area/hangar)
+"an" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/effect/turf_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/white,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"ap" = (
+/obj/structure/flora/grass/green,
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"as" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"ax" = (
+/obj/machinery/light/floor,
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"ay" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white,
+/obj/structure/railing{
+ layer = 4.1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"aB" = (
+/obj/effect/decal/fakelattice,
+/obj/effect/decal/cleanable/dirt{
+ color = "#808080"
+ },
+/obj/effect/decal/cleanable/dirt{
+ color = "#808080"
+ },
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"aE" = (
+/obj/effect/turf_decal/borderfloor/full,
+/obj/machinery/light/floor,
+/turf/open/floor/plasteel/patterned/cargo_one{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"aG" = (
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"aI" = (
+/obj/structure/flora/tree/dead,
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"aM" = (
+/obj/structure/flora/grass/both,
+/obj/structure/flora/grass/both,
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"aN" = (
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"aW" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 5
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"aX" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"bq" = (
+/obj/effect/turf_decal/industrial/hatch/yellow,
+/obj/machinery/vending/coffee,
+/obj/effect/decal/cleanable/wrapping,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark,
+/area/hangar)
+"cY" = (
+/obj/effect/turf_decal/borderfloor/corner,
+/obj/effect/turf_decal/siding/white{
+ dir = 9
+ },
+/obj/structure/railing{
+ dir = 9
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"dM" = (
+/obj/machinery/door/airlock{
+ dir = 4
+ },
+/obj/effect/turf_decal/industrial/warning/fulltile,
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/turf/open/floor/plasteel/tech,
+/area/hangar)
+"ez" = (
+/obj/effect/turf_decal/industrial/traffic{
+ dir = 1
+ },
+/obj/effect/turf_decal/industrial/traffic,
+/obj/machinery/door/poddoor/ert,
+/turf/open/floor/plasteel/patterned/brushed{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"fC" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"gQ" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/turf_decal/siding/white,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"iY" = (
+/obj/effect/turf_decal/borderfloor,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"jk" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"jJ" = (
+/obj/effect/decal/fakelattice,
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"ll" = (
+/obj/effect/decal/fakelattice,
+/obj/effect/decal/cleanable/sprayweb{
+ color = "#808080";
+ name = "web"
+ },
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"mu" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/turf_decal/siding/white/corner,
+/obj/structure/railing/corner{
+ layer = 4.1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"mX" = (
+/obj/effect/turf_decal/borderfloor/full,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1;
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"oq" = (
+/obj/effect/turf_decal/borderfloor,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/machinery/light/small/directional/east{
+ pixel_y = -8
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"oy" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white/corner{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing/corner{
+ dir = 8;
+ layer = 4.1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"pb" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"pC" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 10
+ },
+/obj/effect/turf_decal/siding/white/corner{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing/corner{
+ dir = 4
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"pD" = (
+/obj/effect/turf_decal/industrial/traffic{
+ dir = 4
+ },
+/obj/effect/turf_decal/industrial/traffic{
+ dir = 8
+ },
+/obj/machinery/door/airlock{
+ dir = 8
+ },
+/obj/effect/landmark/outpost/elevator_machine,
+/turf/open/floor/plasteel/patterned/brushed{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"pM" = (
+/obj/effect/turf_decal/borderfloor/full,
+/obj/machinery/light/floor,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/cargo_one{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"qq" = (
+/obj/effect/decal/fakelattice,
+/obj/effect/decal/cleanable/dirt{
+ color = "#808080"
+ },
+/obj/effect/decal/cleanable/glass{
+ dir = 8;
+ color = "#808080"
+ },
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"sp" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 9
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"sE" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white/corner,
+/obj/structure/railing/corner,
+/obj/machinery/light/small/directional/east{
+ pixel_y = -8
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"sN" = (
+/obj/effect/decal/fakelattice,
+/obj/effect/decal/cleanable/oil,
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"uy" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"vh" = (
+/obj/effect/turf_decal/borderfloor/full,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
+ },
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1;
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"vl" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 6
+ },
+/obj/effect/turf_decal/siding/white/corner{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"vM" = (
+/obj/effect/turf_decal/borderfloor,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"xt" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"xy" = (
+/obj/effect/decal/fakelattice{
+ layer = 2.010
+ },
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"xE" = (
+/obj/effect/turf_decal/borderfloor/full,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
+ },
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1;
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"xT" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/obj/effect/turf_decal/borderfloor{
+ dir = 4
+ },
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"zG" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing{
+ layer = 4.1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Ag" = (
+/obj/effect/turf_decal/borderfloor/full,
+/obj/machinery/light/floor,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/cargo_one{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"Bh" = (
+/obj/machinery/door/airlock/outpost,
+/turf/open/floor/plasteel/tech,
+/area/hangar)
+"BB" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 10
+ },
+/obj/effect/turf_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/structure/railing{
+ layer = 4.1;
+ dir = 10
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Cs" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"Cv" = (
+/obj/structure/closet/crate/bin,
+/obj/effect/turf_decal/industrial/outline/yellow,
+/obj/machinery/light/small/directional/east{
+ pixel_y = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/newscaster/security_unit/directional/east{
+ pixel_y = -6
+ },
+/turf/open/floor/plasteel/dark,
+/area/hangar)
+"Dk" = (
+/obj/effect/turf_decal/borderfloor,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Dn" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"Eg" = (
+/obj/effect/decal/fakelattice,
+/obj/effect/decal/cleanable/glass{
+ dir = 8;
+ color = "#808080"
+ },
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Fs" = (
+/obj/structure/flora/rock/pile/icy,
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"Fu" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 6
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"GL" = (
+/obj/effect/turf_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 5
+ },
+/obj/structure/railing{
+ dir = 5
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Ho" = (
+/obj/effect/turf_decal/borderfloor/full,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1;
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"Hr" = (
+/turf/open/floor/plasteel/tech,
+/area/hangar)
+"HC" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 5
+ },
+/obj/effect/turf_decal/siding/white/corner{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Jh" = (
+/obj/effect/decal/fakelattice,
+/obj/effect/decal/cleanable/dirt{
+ color = "#808080"
+ },
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"KH" = (
+/obj/structure/flora/grass/both,
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"Ms" = (
+/obj/effect/turf_decal/corner/opaque/neutral,
+/obj/effect/turf_decal/siding/white,
+/obj/structure/railing{
+ layer = 4.1
+ },
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1;
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"Mx" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"MB" = (
+/obj/effect/decal/fakelattice,
+/obj/effect/decal/cleanable/greenglow{
+ color = "#808080"
+ },
+/obj/effect/decal/cleanable/dirt{
+ color = "#808080"
+ },
+/obj/effect/decal/cleanable/dirt{
+ color = "#808080"
+ },
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"NE" = (
+/obj/structure/flora/tree/pine,
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"OC" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing{
+ layer = 4.1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"OZ" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Pu" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"PW" = (
+/obj/effect/turf_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 6
+ },
+/obj/structure/railing{
+ layer = 4.1;
+ dir = 6
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Rl" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Rs" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"RC" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"RI" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Sk" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 9
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"SC" = (
+/obj/effect/turf_decal/borderfloor,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"SS" = (
+/obj/effect/decal/fakelattice,
+/obj/effect/decal/cleanable/dirt{
+ color = "#808080"
+ },
+/obj/effect/decal/cleanable/sprayweb{
+ color = "#808080";
+ name = "web"
+ },
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Tj" = (
+/obj/effect/turf_decal/borderfloor/full,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1;
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"Uo" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/effect/turf_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/white,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/effect/landmark/outpost/elevator_machine{
+ shaft = "1"
+ },
+/obj/machinery/light/small/directional/east{
+ pixel_y = -8
+ },
+/obj/machinery/elevator_call_button{
+ dir = 8;
+ pixel_x = 25;
+ pixel_y = 6
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"UJ" = (
+/obj/effect/turf_decal/borderfloor,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"VH" = (
+/obj/effect/turf_decal/corner/opaque/neutral,
+/obj/effect/turf_decal/siding/white{
+ dir = 10
+ },
+/obj/structure/rack,
+/obj/item/clothing/suit/hooded/wintercoat,
+/obj/item/clothing/suit/hooded/wintercoat,
+/obj/item/clothing/suit/hooded/wintercoat{
+ pixel_y = 3
+ },
+/obj/item/clothing/suit/hooded/wintercoat{
+ pixel_y = 3
+ },
+/obj/item/clothing/suit/hooded/wintercoat{
+ pixel_y = 6
+ },
+/obj/item/clothing/suit/hooded/wintercoat{
+ pixel_y = 6
+ },
+/obj/structure/railing{
+ layer = 4.1;
+ dir = 10
+ },
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1;
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"VX" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 10
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"WP" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 10
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/landmark/outpost/hangar_numbers,
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"WQ" = (
+/obj/effect/decal/fakelattice{
+ layer = 2.010
+ },
+/obj/effect/landmark/outpost/elevator{
+ shaft = "1"
+ },
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"XO" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 6
+ },
+/obj/effect/turf_decal/corner/opaque/neutral,
+/obj/structure/rack,
+/obj/item/clothing/suit/hooded/wintercoat,
+/obj/item/clothing/suit/hooded/wintercoat,
+/obj/item/clothing/suit/hooded/wintercoat{
+ pixel_y = 3
+ },
+/obj/item/clothing/suit/hooded/wintercoat{
+ pixel_y = 3
+ },
+/obj/item/clothing/suit/hooded/wintercoat{
+ pixel_y = 6
+ },
+/obj/item/clothing/suit/hooded/wintercoat{
+ pixel_y = 6
+ },
+/obj/structure/railing{
+ layer = 4.1;
+ dir = 6
+ },
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1;
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"XU" = (
+/obj/effect/decal/fakelattice,
+/obj/machinery/light/small/directional/east,
+/obj/effect/decal/cleanable/dirt{
+ color = "#808080"
+ },
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"YB" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"YK" = (
+/obj/effect/turf_decal/borderfloor/full,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1;
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"YS" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/structure/catwalk/over/plated_catwalk,
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"YT" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"ZK" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"ZZ" = (
+/obj/effect/turf_decal/borderfloor,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+
+(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
+al
+al
+"}
+(2,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
+al
+al
+"}
+(3,1,1) = {"
+al
+al
+al
+al
+al
+al
+al
+al
+al
+al
+aG
+aG
+al
+al
+al
+ae
+aG
+aG
+aG
+aG
+aG
+al
+al
+al
+al
+al
+al
+ae
+ae
+ae
+al
+al
+al
+al
+al
+al
+al
+al
+al
+al
+"}
+(4,1,1) = {"
+al
+al
+al
+al
+al
+al
+al
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+al
+al
+Fs
+aG
+aG
+aG
+aG
+al
+al
+al
+al
+al
+al
+al
+al
+al
+"}
+(5,1,1) = {"
+al
+al
+al
+al
+al
+al
+aG
+aG
+aG
+aI
+aG
+KH
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+KH
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+al
+al
+al
+al
+al
+"}
+(6,1,1) = {"
+al
+al
+al
+al
+al
+aG
+aG
+aG
+aG
+KH
+aG
+aG
+aG
+KH
+aG
+aG
+aG
+KH
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+ap
+aG
+aG
+aG
+aG
+NE
+aG
+aG
+aG
+al
+al
+al
+al
+al
+"}
+(7,1,1) = {"
+al
+al
+al
+al
+aG
+aG
+aG
+NE
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+ap
+aG
+aG
+aG
+KH
+aG
+aG
+Fs
+aG
+KH
+aG
+aG
+aG
+aG
+aG
+NE
+aG
+aG
+al
+al
+al
+al
+"}
+(8,1,1) = {"
+al
+al
+al
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+Fs
+aG
+ae
+al
+al
+al
+"}
+(9,1,1) = {"
+al
+al
+al
+aG
+KH
+aG
+aG
+aG
+aG
+aG
+aG
+KH
+aG
+aG
+ap
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+KH
+aG
+aG
+aG
+aG
+aG
+NE
+aG
+aG
+aG
+aG
+aG
+al
+al
+al
+"}
+(10,1,1) = {"
+al
+al
+ae
+aG
+aG
+aG
+aG
+aG
+NE
+aG
+aG
+aG
+aG
+Fs
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+KH
+aG
+ap
+aG
+aG
+aG
+aG
+aI
+aG
+aG
+aG
+aG
+aG
+aG
+NE
+aG
+ae
+al
+al
+"}
+(11,1,1) = {"
+al
+al
+ae
+aG
+aG
+NE
+aG
+aG
+aG
+aG
+aG
+aG
+ap
+aG
+aG
+aG
+KH
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+KH
+aG
+aG
+aG
+KH
+aG
+aG
+aG
+aG
+KH
+aG
+aG
+ae
+al
+al
+"}
+(12,1,1) = {"
+al
+al
+al
+aG
+aG
+aG
+aG
+KH
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+KH
+aG
+al
+al
+al
+"}
+(13,1,1) = {"
+al
+al
+al
+aG
+KH
+aG
+aG
+cY
+ZK
+ad
+YK
+YK
+vh
+vh
+vh
+YK
+YK
+YK
+YK
+YK
+YK
+YK
+Tj
+YK
+YK
+YK
+YK
+vh
+vh
+YK
+sp
+xT
+BB
+aG
+aG
+aG
+aG
+al
+al
+al
+"}
+(14,1,1) = {"
+al
+al
+al
+aG
+aG
+aG
+KH
+iY
+aE
+as
+xE
+xE
+xE
+mX
+mX
+mX
+mX
+mX
+Ho
+mX
+xE
+xE
+xE
+xE
+xE
+mX
+mX
+mX
+mX
+mX
+YS
+Ag
+ay
+aG
+aG
+NE
+aG
+al
+al
+al
+"}
+(15,1,1) = {"
+al
+al
+al
+aG
+aG
+NE
+aG
+Dk
+Cs
+gQ
+aN
+aN
+ax
+aN
+aN
+aN
+aN
+ax
+aN
+aN
+aN
+aN
+ax
+aN
+aN
+aN
+aN
+ax
+aN
+af
+VX
+Cs
+ay
+aG
+ap
+aG
+KH
+al
+al
+al
+"}
+(16,1,1) = {"
+al
+al
+al
+ap
+aG
+ap
+aG
+UJ
+Cs
+Rs
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+SC
+Dn
+zG
+ap
+aG
+aG
+al
+al
+al
+al
+"}
+(17,1,1) = {"
+al
+al
+al
+aG
+aG
+aG
+NE
+UJ
+Cs
+aX
+ax
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+ax
+SC
+Cs
+zG
+aG
+NE
+aG
+al
+al
+al
+al
+"}
+(18,1,1) = {"
+al
+al
+al
+ae
+NE
+aG
+KH
+UJ
+Cs
+OZ
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+vM
+pb
+zG
+KH
+aG
+aG
+ae
+al
+al
+al
+"}
+(19,1,1) = {"
+al
+al
+al
+al
+KH
+aG
+aG
+UJ
+Dn
+OZ
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+vM
+Cs
+ay
+aG
+aG
+aG
+NE
+al
+al
+al
+"}
+(20,1,1) = {"
+al
+al
+al
+al
+aG
+aG
+aG
+UJ
+Dn
+OZ
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+SC
+as
+zG
+KH
+aG
+ap
+aG
+al
+al
+al
+"}
+(21,1,1) = {"
+al
+al
+al
+al
+aG
+aG
+aG
+UJ
+Dn
+OZ
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+SC
+as
+zG
+aG
+aG
+aG
+al
+al
+al
+al
+"}
+(22,1,1) = {"
+al
+al
+al
+al
+aG
+NE
+KH
+UJ
+Dn
+OZ
+ax
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+ax
+SC
+as
+zG
+aG
+aG
+aG
+al
+al
+al
+al
+"}
+(23,1,1) = {"
+al
+al
+ae
+aG
+KH
+aG
+aG
+UJ
+Dn
+OZ
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+SC
+as
+zG
+aG
+NE
+KH
+al
+al
+al
+al
+"}
+(24,1,1) = {"
+al
+al
+al
+ap
+aG
+KH
+aG
+Dk
+Dn
+OZ
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+SC
+as
+zG
+KH
+aG
+aG
+aG
+al
+al
+al
+"}
+(25,1,1) = {"
+al
+al
+al
+aG
+NE
+aG
+aG
+Dk
+Dn
+OZ
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+SC
+as
+zG
+aG
+aG
+NE
+aG
+al
+al
+al
+"}
+(26,1,1) = {"
+al
+al
+al
+Fs
+aG
+aG
+NE
+Dk
+as
+OZ
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+vM
+as
+zG
+ap
+aG
+aG
+al
+al
+al
+al
+"}
+(27,1,1) = {"
+al
+al
+al
+aG
+ap
+KH
+aG
+Dk
+as
+OZ
+ax
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+ax
+SC
+Cs
+zG
+aG
+KH
+Fs
+ae
+al
+al
+al
+"}
+(28,1,1) = {"
+al
+al
+al
+aG
+aG
+aG
+KH
+Dk
+as
+OZ
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+SC
+Dn
+ay
+aG
+aG
+aG
+al
+al
+al
+al
+"}
+(29,1,1) = {"
+al
+al
+al
+aG
+aG
+ap
+aG
+UJ
+as
+OZ
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+SC
+Dn
+ay
+KH
+aG
+aG
+al
+al
+al
+al
+"}
+(30,1,1) = {"
+al
+al
+ae
+aG
+KH
+aG
+NE
+UJ
+as
+OZ
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+SC
+Dn
+zG
+aG
+aG
+KH
+aG
+al
+al
+al
+"}
+(31,1,1) = {"
+al
+al
+ae
+KH
+aG
+aG
+KH
+UJ
+as
+Rs
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+SC
+Dn
+ay
+aG
+aG
+NE
+aG
+al
+al
+al
+"}
+(32,1,1) = {"
+al
+al
+al
+aG
+aG
+NE
+aG
+UJ
+Cs
+Rs
+ax
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+ax
+SC
+Dn
+zG
+aG
+aG
+aG
+aG
+ae
+al
+al
+"}
+(33,1,1) = {"
+al
+al
+al
+al
+aG
+ap
+aG
+UJ
+Cs
+aX
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+SC
+Cs
+zG
+ap
+aG
+KH
+aG
+al
+al
+al
+"}
+(34,1,1) = {"
+al
+al
+al
+al
+KH
+aG
+ap
+UJ
+Cs
+OZ
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+vM
+pb
+zG
+aG
+NE
+aG
+aG
+al
+al
+al
+"}
+(35,1,1) = {"
+al
+al
+al
+al
+aG
+aG
+aG
+UJ
+Dn
+OZ
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+vM
+Cs
+ay
+aG
+aG
+ap
+aG
+al
+al
+al
+"}
+(36,1,1) = {"
+al
+al
+al
+al
+al
+aG
+ap
+UJ
+Dn
+OZ
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+SC
+as
+zG
+aG
+aG
+aG
+al
+al
+al
+al
+"}
+(37,1,1) = {"
+al
+al
+al
+al
+ae
+NE
+aG
+UJ
+Dn
+OZ
+ax
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+ax
+SC
+as
+zG
+aG
+KH
+aG
+al
+al
+al
+al
+"}
+(38,1,1) = {"
+al
+al
+al
+al
+al
+aG
+KH
+UJ
+Dn
+OZ
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+SC
+as
+zG
+aG
+aG
+al
+al
+al
+al
+al
+"}
+(39,1,1) = {"
+al
+al
+al
+al
+al
+ap
+aG
+UJ
+Dn
+OZ
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+SC
+as
+zG
+aG
+aG
+al
+al
+al
+al
+al
+"}
+(40,1,1) = {"
+al
+al
+al
+al
+al
+Fs
+aG
+Dk
+Dn
+OZ
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+SC
+as
+zG
+aG
+NE
+al
+al
+al
+al
+al
+"}
+(41,1,1) = {"
+al
+al
+al
+al
+al
+al
+aG
+Dk
+Dn
+OZ
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+SC
+as
+zG
+aG
+ap
+ae
+al
+al
+al
+al
+"}
+(42,1,1) = {"
+al
+al
+al
+al
+al
+al
+aG
+Dk
+as
+OZ
+ax
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+ax
+vM
+as
+zG
+KH
+aG
+al
+al
+al
+al
+al
+"}
+(43,1,1) = {"
+al
+al
+al
+al
+al
+KH
+aG
+Dk
+as
+OZ
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+SC
+Cs
+zG
+aG
+aG
+al
+al
+al
+al
+al
+"}
+(44,1,1) = {"
+al
+al
+al
+al
+al
+aG
+ap
+Dk
+as
+OZ
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+SC
+Dn
+ay
+aG
+NE
+al
+al
+al
+al
+al
+"}
+(45,1,1) = {"
+al
+al
+al
+al
+al
+aG
+NE
+UJ
+as
+OZ
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+SC
+Dn
+ay
+aG
+aG
+aG
+al
+al
+al
+al
+"}
+(46,1,1) = {"
+al
+al
+al
+al
+al
+aG
+aG
+UJ
+as
+OZ
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+SC
+Dn
+zG
+aG
+KH
+aG
+al
+al
+al
+al
+"}
+(47,1,1) = {"
+al
+al
+al
+al
+al
+KH
+aG
+UJ
+as
+Rs
+ax
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+ax
+SC
+Dn
+ay
+aG
+aG
+aG
+ae
+al
+al
+al
+"}
+(48,1,1) = {"
+al
+al
+al
+al
+al
+aG
+aG
+UJ
+Dn
+Rs
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+SC
+Dn
+ay
+aG
+aG
+ap
+Fs
+ag
+ag
+ag
+"}
+(49,1,1) = {"
+al
+al
+al
+al
+ae
+ap
+aG
+UJ
+Dn
+OZ
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+ZZ
+Cs
+ay
+aG
+aG
+NE
+aG
+ag
+Hr
+ag
+"}
+(50,1,1) = {"
+ag
+ag
+ag
+ag
+aG
+aG
+KH
+SC
+Dn
+OZ
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+SC
+Dn
+OZ
+aG
+aG
+aG
+aG
+Bh
+Hr
+ag
+"}
+(51,1,1) = {"
+ag
+Hr
+Hr
+ag
+aG
+NE
+aG
+UJ
+Dn
+OZ
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+SC
+Dn
+ay
+KH
+aG
+aG
+aG
+ag
+ag
+ag
+"}
+(52,1,1) = {"
+ag
+Hr
+Hr
+ag
+aG
+aG
+aG
+UJ
+Dn
+OZ
+ax
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+ax
+SC
+as
+ay
+NE
+aG
+KH
+al
+al
+al
+al
+"}
+(53,1,1) = {"
+ag
+Hr
+Hr
+Bh
+aG
+aG
+NE
+Dk
+as
+OZ
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+SC
+Dn
+ay
+aG
+aG
+aG
+al
+al
+al
+al
+"}
+(54,1,1) = {"
+ag
+Hr
+Hr
+ag
+KH
+aG
+aG
+UJ
+as
+OZ
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+SC
+Dn
+zG
+aG
+aG
+al
+al
+al
+al
+al
+"}
+(55,1,1) = {"
+ag
+ag
+ag
+ag
+aG
+ap
+aG
+Dk
+Dn
+OZ
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+vM
+Dn
+ay
+KH
+aG
+ae
+al
+al
+al
+al
+"}
+(56,1,1) = {"
+al
+al
+al
+al
+aG
+NE
+ap
+UJ
+Cs
+OZ
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+SC
+Dn
+ay
+aG
+NE
+al
+al
+al
+al
+al
+"}
+(57,1,1) = {"
+al
+al
+al
+al
+aG
+aG
+aG
+UJ
+pb
+OZ
+ax
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+ax
+SC
+Cs
+ay
+aG
+aG
+al
+al
+al
+al
+al
+"}
+(58,1,1) = {"
+al
+al
+al
+Fs
+aG
+KH
+aG
+UJ
+YT
+OZ
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+SC
+Cs
+ay
+aG
+KH
+al
+al
+al
+al
+al
+"}
+(59,1,1) = {"
+al
+al
+al
+aG
+aG
+aG
+KH
+UJ
+Cs
+Rs
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+SC
+Cs
+ay
+aG
+al
+al
+al
+al
+al
+al
+"}
+(60,1,1) = {"
+al
+al
+al
+aG
+NE
+aG
+aG
+UJ
+Cs
+Rs
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+SC
+Cs
+zG
+ap
+al
+al
+al
+al
+al
+al
+"}
+(61,1,1) = {"
+al
+al
+ae
+aG
+aG
+aG
+NE
+Dk
+Dn
+Rs
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+SC
+Dn
+OC
+aG
+al
+al
+al
+al
+al
+al
+"}
+(62,1,1) = {"
+al
+al
+ae
+aG
+KH
+aG
+aG
+UJ
+Dn
+OZ
+ax
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+ax
+SC
+Cs
+OC
+KH
+aG
+al
+al
+al
+al
+al
+"}
+(63,1,1) = {"
+al
+al
+ae
+aG
+aG
+aG
+aG
+UJ
+Dn
+OZ
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+vM
+as
+ay
+NE
+aG
+ae
+al
+al
+al
+al
+"}
+(64,1,1) = {"
+al
+al
+al
+aG
+aG
+KH
+aG
+UJ
+as
+OZ
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+vM
+Dn
+ay
+aG
+aG
+ae
+al
+al
+al
+al
+"}
+(65,1,1) = {"
+al
+al
+al
+aG
+aG
+NE
+aG
+UJ
+as
+OZ
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+vM
+Dn
+ay
+aG
+KH
+al
+al
+al
+al
+al
+"}
+(66,1,1) = {"
+al
+al
+al
+aG
+aG
+ap
+aG
+UJ
+as
+OZ
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+SC
+Dn
+ay
+aG
+NE
+al
+al
+al
+al
+al
+"}
+(67,1,1) = {"
+al
+al
+al
+aG
+aG
+aG
+NE
+UJ
+as
+OZ
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+SC
+Cs
+ay
+aG
+aG
+al
+al
+al
+al
+al
+"}
+(68,1,1) = {"
+al
+al
+al
+KH
+aG
+aG
+aG
+UJ
+Dn
+Rs
+ax
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+ax
+SC
+Cs
+ay
+KH
+Fs
+al
+al
+al
+al
+al
+"}
+(69,1,1) = {"
+al
+al
+aG
+aG
+aG
+KH
+aG
+Dk
+Dn
+Rs
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+aN
+SC
+Dn
+ay
+aG
+al
+al
+al
+al
+al
+al
+"}
+(70,1,1) = {"
+al
+al
+aG
+aG
+aG
+aG
+aG
+Dk
+as
+Rs
+aN
+aN
+ax
+aN
+aN
+aN
+aN
+ax
+aN
+aN
+aN
+aN
+ax
+aN
+aN
+aN
+aN
+ax
+aN
+aN
+SC
+as
+ay
+ap
+al
+al
+al
+al
+al
+al
+"}
+(71,1,1) = {"
+al
+al
+aG
+aG
+NE
+aG
+aG
+UJ
+as
+HC
+RC
+RC
+RC
+RC
+RC
+RC
+RC
+RC
+RC
+RC
+RC
+RC
+RC
+RC
+RC
+RC
+RC
+RC
+RC
+RC
+vl
+as
+ay
+KH
+al
+al
+al
+al
+al
+al
+"}
+(72,1,1) = {"
+al
+al
+aG
+aG
+KH
+aG
+aG
+UJ
+aE
+as
+Cs
+Dn
+Dn
+Dn
+as
+Cs
+Cs
+Dn
+Dn
+as
+pM
+as
+Dn
+as
+as
+as
+Cs
+Cs
+Dn
+as
+as
+pM
+zG
+aG
+aG
+al
+al
+al
+al
+al
+"}
+(73,1,1) = {"
+al
+al
+al
+aG
+aG
+aG
+NE
+GL
+xt
+xt
+xt
+Pu
+uy
+xt
+xt
+xt
+xt
+uy
+uy
+pC
+Mx
+mu
+Pu
+xt
+xt
+xt
+xt
+xt
+RI
+uy
+uy
+uy
+PW
+aG
+KH
+al
+al
+al
+al
+al
+"}
+(74,1,1) = {"
+al
+al
+al
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+ap
+aG
+aG
+KH
+UJ
+Rl
+zG
+aG
+aG
+aG
+KH
+aG
+aG
+aG
+ap
+aG
+aG
+aG
+NE
+aG
+al
+al
+al
+al
+al
+"}
+(75,1,1) = {"
+al
+al
+al
+aG
+aG
+KH
+aG
+ap
+aG
+KH
+aG
+aG
+NE
+KH
+aG
+aG
+aG
+NE
+aG
+UJ
+Rl
+oy
+VH
+KH
+aG
+aG
+aG
+KH
+aG
+NE
+aG
+aG
+KH
+aG
+aG
+al
+al
+al
+al
+al
+"}
+(76,1,1) = {"
+al
+al
+al
+aG
+NE
+aG
+aG
+aI
+aG
+aG
+aG
+ap
+aG
+aG
+aG
+KH
+aG
+aG
+aG
+UJ
+Mx
+fC
+Ms
+aG
+aG
+NE
+aG
+KH
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+al
+al
+al
+al
+al
+"}
+(77,1,1) = {"
+al
+al
+al
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aG
+aI
+aG
+aG
+ap
+aG
+oq
+Rl
+sE
+XO
+aG
+aG
+KH
+aG
+aG
+aG
+KH
+aG
+KH
+aG
+aG
+NE
+al
+al
+al
+al
+al
+"}
+(78,1,1) = {"
+al
+al
+al
+ae
+aG
+aG
+NE
+KH
+aG
+aG
+aG
+NE
+aG
+aG
+aG
+aG
+al
+ag
+ag
+ag
+dM
+ag
+ag
+ag
+Fs
+aG
+KH
+aG
+aG
+aG
+NE
+aG
+aG
+aG
+aG
+al
+al
+al
+al
+al
+"}
+(79,1,1) = {"
+al
+al
+al
+al
+al
+aG
+aG
+Fs
+aG
+aG
+aG
+aG
+KH
+aG
+al
+ae
+al
+ag
+bq
+Sk
+YB
+WP
+an
+ag
+al
+aG
+aG
+aG
+aG
+aG
+aG
+aM
+aG
+al
+al
+al
+al
+al
+al
+al
+"}
+(80,1,1) = {"
+al
+al
+al
+al
+al
+al
+aG
+aG
+ap
+aG
+KH
+aG
+aG
+al
+al
+al
+al
+ag
+Cv
+aW
+jk
+Fu
+Uo
+ag
+al
+al
+aG
+KH
+aG
+KH
+aG
+aG
+al
+al
+al
+al
+al
+al
+al
+al
+"}
+(81,1,1) = {"
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+aj
+aj
+aj
+aj
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+pD
+pD
+pD
+ag
+ag
+ag
+ag
+ag
+aj
+aj
+aj
+aj
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+"}
+(82,1,1) = {"
+ag
+jJ
+jJ
+jJ
+ez
+ll
+aB
+aB
+ai
+ai
+MB
+ai
+aB
+SS
+ai
+jJ
+ai
+ai
+ez
+xy
+xy
+WQ
+ez
+ll
+aB
+aB
+ai
+jJ
+ai
+ai
+MB
+ai
+aB
+SS
+ai
+ez
+jJ
+ai
+aB
+ag
+"}
+(83,1,1) = {"
+ag
+jJ
+jJ
+jJ
+ez
+jJ
+aB
+aB
+aB
+ai
+jJ
+sN
+aB
+ai
+ai
+jJ
+qq
+ai
+ez
+xy
+xy
+xy
+ez
+jJ
+aB
+aB
+ai
+jJ
+qq
+ai
+jJ
+sN
+aB
+ai
+qq
+ez
+jJ
+jJ
+aB
+ag
+"}
+(84,1,1) = {"
+ag
+jJ
+jJ
+jJ
+ez
+jJ
+ll
+jJ
+XU
+jJ
+jJ
+ai
+aB
+aB
+Jh
+jJ
+jJ
+jJ
+ez
+xy
+xy
+xy
+ez
+Eg
+ai
+aB
+jJ
+jJ
+ai
+aB
+aB
+Jh
+aB
+aB
+jJ
+ez
+jJ
+ai
+aB
+ag
+"}
+(85,1,1) = {"
+ag
+ag
+ag
+ag
+ag
+al
+al
+al
+ag
+al
+al
+al
+al
+al
+ag
+al
+al
+al
+ag
+ag
+ag
+ag
+ag
+al
+al
+al
+al
+al
+al
+al
+al
+ag
+al
+al
+al
+ag
+ag
+ag
+ag
+ag
+"}
+(86,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
+al
+al
+"}
+(87,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
+al
+al
+"}
+(88,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
+al
+al
+"}
+(89,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
+al
+al
+"}
+(90,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
+al
+al
+"}
+(91,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
+al
+al
+"}
diff --git a/_maps/outpost/hangar/nt_ice_56x40.dmm b/_maps/outpost/hangar/nt_ice_56x40.dmm
new file mode 100644
index 000000000000..07374d3394f8
--- /dev/null
+++ b/_maps/outpost/hangar/nt_ice_56x40.dmm
@@ -0,0 +1,7012 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"ab" = (
+/obj/machinery/telecomms/relay,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/telecomms_floor,
+/area/hangar)
+"ad" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"ai" = (
+/obj/structure/flora/grass/green,
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"aj" = (
+/obj/effect/turf_decal/borderfloor,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"am" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing{
+ layer = 4.1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"ao" = (
+/obj/structure/flora/tree/pine,
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"ar" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"at" = (
+/obj/effect/turf_decal/borderfloor/full,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
+ },
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1;
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"au" = (
+/turf/open/floor/plating/asteroid/icerock/temperate,
+/area/hangar)
+"aw" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"aA" = (
+/obj/effect/decal/fakelattice,
+/obj/effect/decal/cleanable/dirt{
+ color = "#808080"
+ },
+/obj/effect/decal/cleanable/dirt{
+ color = "#808080"
+ },
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"aD" = (
+/obj/effect/turf_decal/borderfloor,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"aE" = (
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"aG" = (
+/obj/machinery/light/floor,
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"aH" = (
+/turf/closed/indestructible/reinforced,
+/area/hangar)
+"aI" = (
+/turf/closed/indestructible/rock/schist,
+/area/hangar)
+"aK" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"aM" = (
+/obj/effect/turf_decal/borderfloor/full,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1;
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"aN" = (
+/obj/effect/turf_decal/borderfloor,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"aO" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing{
+ layer = 4.1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"aP" = (
+/obj/effect/turf_decal/borderfloor/full,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1;
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"aT" = (
+/obj/structure/flora/rock/pile/icy,
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"aV" = (
+/obj/effect/turf_decal/borderfloor/full,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
+ },
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1;
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"aY" = (
+/obj/effect/decal/fakelattice{
+ layer = 2.010
+ },
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"aZ" = (
+/obj/structure/flora/grass/both,
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"ck" = (
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"cm" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"cq" = (
+/obj/machinery/blackbox_recorder,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/telecomms_floor,
+/area/hangar)
+"cX" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 5
+ },
+/obj/effect/turf_decal/siding/white/corner{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"cY" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"ds" = (
+/obj/effect/turf_decal/borderfloor/full,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1;
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"dT" = (
+/obj/effect/turf_decal/industrial/traffic{
+ dir = 1
+ },
+/obj/effect/turf_decal/industrial/traffic,
+/obj/machinery/door/poddoor/ert,
+/turf/open/floor/plasteel/patterned/brushed{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"et" = (
+/obj/effect/decal/fakelattice,
+/obj/effect/decal/cleanable/oil,
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"eM" = (
+/obj/effect/decal/fakelattice,
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"eZ" = (
+/obj/effect/turf_decal/borderfloor/full,
+/obj/effect/turf_decal/industrial/warning,
+/obj/structure/filingcabinet/double/grey,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/plating{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"fr" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"fM" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"gc" = (
+/obj/machinery/light/floor,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"hT" = (
+/obj/machinery/computer/prisoner/management{
+ icon_state = "computer-right";
+ dir = 4;
+ pixel_x = -7
+ },
+/turf/open/floor/plasteel/telecomms_floor,
+/area/hangar)
+"iJ" = (
+/obj/effect/turf_decal/borderfloor/full,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1;
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"iY" = (
+/obj/effect/turf_decal/borderfloor/full,
+/obj/machinery/light/floor,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/cargo_one{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"jS" = (
+/obj/effect/turf_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 5
+ },
+/obj/structure/railing{
+ dir = 5
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"kd" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"kH" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/turf_decal/siding/white/corner,
+/obj/structure/railing/corner{
+ layer = 4.1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"lu" = (
+/obj/effect/decal/fakelattice,
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"md" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/effect/turf_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/white,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/effect/landmark/outpost/elevator_machine{
+ shaft = "1"
+ },
+/obj/machinery/light/small/directional/east{
+ pixel_y = -8
+ },
+/obj/machinery/elevator_call_button{
+ dir = 8;
+ pixel_x = 25;
+ pixel_y = 6
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"mj" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"mP" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 6
+ },
+/obj/effect/turf_decal/corner/opaque/neutral,
+/obj/structure/rack,
+/obj/item/clothing/suit/hooded/wintercoat,
+/obj/item/clothing/suit/hooded/wintercoat,
+/obj/item/clothing/suit/hooded/wintercoat{
+ pixel_y = 3
+ },
+/obj/item/clothing/suit/hooded/wintercoat{
+ pixel_y = 3
+ },
+/obj/item/clothing/suit/hooded/wintercoat{
+ pixel_y = 6
+ },
+/obj/item/clothing/suit/hooded/wintercoat{
+ pixel_y = 6
+ },
+/obj/structure/railing{
+ layer = 4.1;
+ dir = 6
+ },
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1;
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"nC" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white/corner{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing/corner{
+ dir = 8;
+ layer = 4.1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"oc" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/obj/effect/turf_decal/borderfloor{
+ dir = 4
+ },
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"pD" = (
+/obj/effect/turf_decal/borderfloor,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"qx" = (
+/obj/machinery/door/airlock{
+ dir = 4
+ },
+/obj/effect/turf_decal/industrial/warning/fulltile,
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/turf/open/floor/plasteel/tech,
+/area/hangar)
+"qX" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 6
+ },
+/obj/effect/turf_decal/siding/white/corner{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"rD" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/oil,
+/turf/open/floor/plasteel/tech,
+/area/hangar)
+"sw" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"sB" = (
+/obj/machinery/door/airlock/outpost,
+/turf/open/floor/plasteel/tech,
+/area/hangar)
+"sP" = (
+/obj/effect/decal/fakelattice,
+/obj/effect/decal/cleanable/greenglow{
+ color = "#808080"
+ },
+/obj/effect/decal/cleanable/dirt{
+ color = "#808080"
+ },
+/obj/effect/decal/cleanable/dirt{
+ color = "#808080"
+ },
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"tj" = (
+/turf/open/floor/plasteel/tech,
+/area/hangar)
+"tR" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white,
+/obj/structure/railing{
+ layer = 4.1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"ub" = (
+/obj/effect/spawner/structure/window/reinforced/indestructable,
+/turf/open/floor/plating{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"um" = (
+/obj/machinery/computer/security{
+ icon_state = "computer-middle";
+ dir = 4;
+ pixel_x = -7
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/telecomms_floor,
+/area/hangar)
+"uG" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"vc" = (
+/obj/effect/decal/fakelattice,
+/obj/effect/decal/cleanable/dirt{
+ color = "#808080"
+ },
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"vh" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"vL" = (
+/obj/effect/decal/fakelattice,
+/obj/effect/decal/cleanable/sprayweb{
+ color = "#808080";
+ name = "web"
+ },
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"wT" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/tech,
+/area/hangar)
+"yU" = (
+/obj/effect/decal/fakelattice,
+/obj/effect/decal/cleanable/dirt{
+ color = "#808080"
+ },
+/obj/effect/decal/cleanable/greenglow{
+ color = "#808080"
+ },
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Be" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"BN" = (
+/obj/effect/turf_decal/borderfloor,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/machinery/light/small/directional/east{
+ pixel_y = -8
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"BZ" = (
+/obj/effect/decal/fakelattice,
+/obj/machinery/light/small/directional/east,
+/obj/effect/decal/cleanable/dirt{
+ color = "#808080"
+ },
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Cb" = (
+/obj/effect/turf_decal/borderfloor/full,
+/obj/machinery/light/floor,
+/turf/open/floor/plasteel/patterned/cargo_one{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"Cg" = (
+/obj/effect/decal/fakelattice,
+/obj/effect/decal/cleanable/greenglow{
+ color = "#808080"
+ },
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Ck" = (
+/obj/effect/turf_decal/borderfloor,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Dc" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 10
+ },
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Dv" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/tech,
+/area/hangar)
+"DV" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/effect/turf_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/white,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Ei" = (
+/obj/effect/turf_decal/corner/opaque/neutral,
+/obj/effect/turf_decal/siding/white{
+ dir = 10
+ },
+/obj/structure/rack,
+/obj/item/clothing/suit/hooded/wintercoat,
+/obj/item/clothing/suit/hooded/wintercoat,
+/obj/item/clothing/suit/hooded/wintercoat{
+ pixel_y = 3
+ },
+/obj/item/clothing/suit/hooded/wintercoat{
+ pixel_y = 3
+ },
+/obj/item/clothing/suit/hooded/wintercoat{
+ pixel_y = 6
+ },
+/obj/item/clothing/suit/hooded/wintercoat{
+ pixel_y = 6
+ },
+/obj/structure/railing{
+ layer = 4.1;
+ dir = 10
+ },
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1;
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"Fn" = (
+/obj/structure/closet/crate/bin,
+/obj/effect/turf_decal/industrial/outline/yellow,
+/obj/machinery/light/small/directional/east{
+ pixel_y = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/newscaster/security_unit/directional/east{
+ pixel_y = -6
+ },
+/turf/open/floor/plasteel/dark,
+/area/hangar)
+"FS" = (
+/obj/effect/decal/fakelattice,
+/obj/effect/decal/cleanable/dirt{
+ color = "#808080"
+ },
+/obj/effect/decal/cleanable/sprayweb{
+ color = "#808080";
+ name = "web"
+ },
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"HV" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 10
+ },
+/obj/effect/turf_decal/siding/white/corner{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing/corner{
+ dir = 4
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Iz" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Jh" = (
+/obj/effect/turf_decal/borderfloor/corner,
+/obj/effect/turf_decal/siding/white{
+ dir = 9
+ },
+/obj/structure/railing{
+ dir = 9
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Jl" = (
+/obj/effect/decal/fakelattice,
+/obj/effect/decal/cleanable/dirt{
+ color = "#808080"
+ },
+/obj/effect/decal/cleanable/dirt{
+ color = "#808080"
+ },
+/obj/effect/decal/cleanable/oil,
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Jt" = (
+/obj/effect/decal/fakelattice,
+/obj/effect/decal/cleanable/dirt{
+ color = "#808080"
+ },
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Jw" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Jx" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"JR" = (
+/obj/effect/turf_decal/corner/opaque/neutral,
+/obj/effect/turf_decal/siding/white,
+/obj/structure/railing{
+ layer = 4.1
+ },
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1;
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"JY" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 6
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Kd" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/structure/catwalk/over/plated_catwalk,
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Kp" = (
+/obj/effect/turf_decal/borderfloor/full,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/chair/comfy/brown{
+ dir = 8;
+ pixel_x = 6
+ },
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/plating{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Lo" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 9
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"LP" = (
+/obj/machinery/door/airlock/outpost,
+/obj/effect/turf_decal/industrial/warning/fulltile,
+/turf/open/floor/plasteel/tech,
+/area/hangar)
+"Ma" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 5
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Mj" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Mt" = (
+/obj/machinery/computer/secure_data{
+ icon_state = "computer-left";
+ dir = 4;
+ pixel_x = -7
+ },
+/turf/open/floor/plasteel/telecomms_floor,
+/area/hangar)
+"MM" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Nh" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"OW" = (
+/obj/effect/turf_decal/industrial/traffic{
+ dir = 4
+ },
+/obj/effect/turf_decal/industrial/traffic{
+ dir = 8
+ },
+/obj/machinery/door/airlock{
+ dir = 8
+ },
+/obj/effect/landmark/outpost/elevator_machine,
+/turf/open/floor/plasteel/patterned/brushed{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"PJ" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white/corner,
+/obj/structure/railing/corner,
+/obj/machinery/light/small/directional/east{
+ pixel_y = -8
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Qi" = (
+/obj/effect/decal/fakelattice{
+ layer = 2.010
+ },
+/obj/effect/landmark/outpost/elevator{
+ shaft = "1"
+ },
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Qx" = (
+/obj/effect/landmark/outpost/hangar_dock,
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"QG" = (
+/obj/effect/decal/fakelattice,
+/obj/effect/decal/cleanable/dirt{
+ color = "#808080"
+ },
+/obj/effect/decal/cleanable/glass{
+ dir = 8;
+ color = "#808080"
+ },
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Rn" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 10
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Rz" = (
+/obj/effect/turf_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 6
+ },
+/obj/structure/railing{
+ layer = 4.1;
+ dir = 6
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Ts" = (
+/obj/effect/decal/fakelattice,
+/obj/effect/decal/cleanable/dirt{
+ color = "#808080"
+ },
+/obj/effect/decal/cleanable/dirt{
+ color = "#808080"
+ },
+/obj/effect/decal/cleanable/dirt{
+ color = "#808080"
+ },
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"UB" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 10
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/landmark/outpost/hangar_numbers,
+/turf/open/floor/plasteel/patterned{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"UZ" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 10
+ },
+/obj/effect/turf_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/structure/railing{
+ layer = 4.1;
+ dir = 10
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Vu" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/turf_decal/siding/white,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"XG" = (
+/obj/structure/table/reinforced,
+/obj/item/flashlight/lamp{
+ pixel_x = -6;
+ pixel_y = 5
+ },
+/obj/machinery/button/door{
+ req_one_access_txt = "101";
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = 8
+ },
+/obj/machinery/button/door{
+ req_one_access_txt = "101";
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = -4
+ },
+/turf/open/floor/plasteel/telecomms_floor,
+/area/hangar)
+"Yb" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 9
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Yn" = (
+/obj/effect/decal/fakelattice,
+/obj/effect/decal/cleanable/dirt{
+ color = "#808080"
+ },
+/obj/effect/decal/cleanable/dirt{
+ color = "#808080"
+ },
+/obj/effect/decal/cleanable/wrapping{
+ color = "#808080"
+ },
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Yq" = (
+/obj/effect/decal/fakelattice,
+/obj/effect/decal/cleanable/glass{
+ dir = 8;
+ color = "#808080"
+ },
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"Yt" = (
+/obj/effect/decal/fakelattice,
+/obj/effect/decal/cleanable/wrapping{
+ color = "#808080"
+ },
+/obj/effect/decal/cleanable/dirt{
+ color = "#808080"
+ },
+/turf/open/floor/plasteel/elevatorshaft{
+ planetary_atmos = 1
+ },
+/area/hangar)
+"YA" = (
+/obj/effect/turf_decal/borderfloor/full,
+/obj/machinery/light/floor,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/cargo_one{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"YX" = (
+/obj/structure/flora/tree/dead,
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/hangar)
+"ZE" = (
+/obj/effect/turf_decal/industrial/hatch/yellow,
+/obj/machinery/vending/coffee,
+/obj/effect/decal/cleanable/wrapping,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark,
+/area/hangar)
+"ZV" = (
+/obj/effect/turf_decal/borderfloor,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2;
+ planetary_atmos = 1
+ },
+/area/hangar)
+
+(1,1,1) = {"
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+"}
+(2,1,1) = {"
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+"}
+(3,1,1) = {"
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+au
+aI
+aI
+aI
+aI
+aI
+au
+aI
+aI
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aI
+aI
+aI
+au
+aE
+aE
+aE
+aE
+aE
+aI
+aI
+aI
+aI
+aI
+aI
+au
+au
+au
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+"}
+(4,1,1) = {"
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aE
+aE
+aE
+aE
+aE
+aT
+aI
+aI
+aI
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aZ
+aE
+aE
+aZ
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aI
+aI
+aT
+aE
+aE
+aE
+aE
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+"}
+(5,1,1) = {"
+aI
+aI
+aI
+aI
+aI
+aI
+aE
+aE
+aE
+YX
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aZ
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aZ
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aI
+aI
+aI
+aI
+aI
+"}
+(6,1,1) = {"
+aI
+aI
+aI
+aI
+aI
+aE
+aE
+aE
+aE
+aZ
+aE
+aT
+ai
+aE
+aE
+aE
+aE
+ai
+aE
+aE
+aZ
+aE
+aE
+aT
+ai
+aE
+aE
+aE
+aE
+ai
+aE
+aE
+aE
+aZ
+aE
+aE
+aE
+aZ
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+ai
+aE
+aE
+aE
+aE
+ao
+aE
+aE
+aE
+aI
+aI
+aI
+aI
+aI
+"}
+(7,1,1) = {"
+aI
+aI
+aI
+aI
+aE
+aE
+aE
+ao
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aZ
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+ai
+aE
+aE
+aE
+aZ
+aE
+aE
+aT
+aE
+aZ
+aE
+aE
+aE
+aE
+aE
+ao
+aE
+aE
+aI
+aI
+aI
+aI
+"}
+(8,1,1) = {"
+aI
+aI
+aI
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aZ
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aZ
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aT
+aE
+au
+aI
+aI
+aI
+"}
+(9,1,1) = {"
+aI
+aI
+aI
+aE
+aZ
+aE
+aE
+aE
+aE
+aE
+aE
+aZ
+aE
+aE
+aT
+aE
+aE
+aE
+aE
+aE
+aE
+ai
+aE
+aZ
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aZ
+aE
+aE
+ai
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aZ
+aE
+aE
+aE
+aE
+aE
+ao
+aE
+aE
+aE
+aE
+aE
+aI
+aI
+aI
+"}
+(10,1,1) = {"
+aI
+aI
+au
+aE
+aE
+aE
+aE
+aE
+ao
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aT
+aE
+aE
+aE
+aE
+aE
+ai
+aE
+aE
+ai
+aE
+aE
+aE
+aE
+aE
+aT
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aZ
+aE
+ai
+aE
+aE
+aE
+aE
+YX
+aE
+aE
+aE
+aE
+aE
+aE
+ao
+aE
+au
+aI
+aI
+"}
+(11,1,1) = {"
+aI
+aI
+au
+aE
+aE
+ao
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aZ
+aE
+ai
+aE
+aE
+aE
+aE
+aZ
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+ai
+aE
+aE
+aE
+aZ
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aZ
+aE
+aE
+aE
+aZ
+aE
+aE
+aE
+aE
+aZ
+aE
+aE
+au
+aI
+aI
+"}
+(12,1,1) = {"
+aI
+aI
+aI
+aE
+aE
+aE
+aE
+aZ
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aZ
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aZ
+aE
+aI
+aI
+aI
+"}
+(13,1,1) = {"
+aI
+aI
+aI
+aE
+aZ
+aE
+aE
+Jh
+uG
+Dc
+aV
+aV
+aP
+aP
+aP
+aP
+aV
+aP
+aP
+aV
+aV
+aV
+aV
+aP
+aV
+aV
+aV
+aV
+aV
+aP
+aP
+aP
+aV
+aV
+aV
+aP
+aP
+aP
+aP
+aP
+aP
+aP
+ds
+aP
+aP
+aP
+aP
+aV
+aV
+aP
+Yb
+oc
+UZ
+aE
+aE
+aE
+aE
+aI
+aI
+aI
+"}
+(14,1,1) = {"
+aI
+aI
+aI
+aE
+aE
+aE
+aZ
+ZV
+Cb
+ad
+at
+at
+at
+at
+aM
+aM
+aM
+at
+aM
+aM
+at
+at
+at
+at
+aM
+aM
+aM
+aM
+aM
+at
+at
+at
+at
+aM
+aM
+aM
+aM
+aM
+iJ
+aM
+at
+at
+at
+at
+at
+aM
+aM
+aM
+aM
+aM
+Kd
+iY
+tR
+aE
+aE
+ao
+aE
+aI
+aI
+aI
+"}
+(15,1,1) = {"
+aI
+aI
+aI
+aE
+aE
+ao
+aE
+aD
+fM
+Vu
+vh
+vh
+gc
+vh
+ck
+ck
+ck
+aG
+ck
+ck
+ck
+ck
+aG
+ck
+ck
+ck
+ck
+aG
+vh
+vh
+ck
+ck
+aG
+ck
+ck
+ck
+ck
+aG
+ck
+ck
+ck
+ck
+aG
+ck
+ck
+ck
+ck
+aG
+ck
+Qx
+Rn
+fM
+tR
+aE
+ai
+aE
+aZ
+aI
+aI
+aI
+"}
+(16,1,1) = {"
+aI
+aI
+aI
+ai
+aE
+ai
+aE
+aj
+fM
+kd
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+pD
+aw
+am
+ai
+aE
+aE
+aI
+aI
+aI
+aI
+"}
+(17,1,1) = {"
+aI
+aI
+aI
+aE
+aE
+aE
+ao
+aj
+fM
+sw
+aG
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+aG
+pD
+fM
+am
+aE
+ao
+aE
+aI
+aI
+aI
+aI
+"}
+(18,1,1) = {"
+aI
+aI
+aI
+au
+ao
+aE
+aZ
+aj
+fM
+aK
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+aN
+Iz
+am
+aZ
+aE
+aE
+au
+aI
+aI
+aI
+"}
+(19,1,1) = {"
+aI
+aI
+aI
+aI
+aZ
+aE
+aE
+aj
+aw
+aK
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+aN
+fM
+tR
+aE
+aE
+aE
+ao
+aI
+aI
+aI
+"}
+(20,1,1) = {"
+aI
+aI
+aI
+aI
+aE
+aE
+ao
+aj
+aw
+aK
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+pD
+ad
+am
+aZ
+aE
+ai
+aE
+aI
+aI
+aI
+"}
+(21,1,1) = {"
+aI
+aI
+aI
+aI
+aE
+aE
+aE
+aj
+aw
+aK
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+pD
+ad
+am
+aE
+aE
+ao
+aI
+aI
+aI
+aI
+"}
+(22,1,1) = {"
+aI
+aI
+aI
+aI
+aE
+ao
+aZ
+aj
+aw
+aK
+aG
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+aG
+pD
+ad
+am
+aE
+aE
+aE
+aI
+aI
+aI
+aI
+"}
+(23,1,1) = {"
+aI
+aI
+au
+aE
+aZ
+aE
+aE
+aj
+aw
+aK
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+pD
+ad
+am
+aE
+ao
+aZ
+aI
+aI
+aI
+aI
+"}
+(24,1,1) = {"
+aI
+aI
+aI
+ai
+aE
+aZ
+aE
+aD
+aw
+aK
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+pD
+ad
+am
+aZ
+aE
+aE
+aE
+aI
+aI
+aI
+"}
+(25,1,1) = {"
+aI
+aI
+aI
+aE
+ao
+aE
+aE
+aD
+aw
+aK
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+pD
+ad
+am
+aE
+aE
+ao
+aE
+aI
+aI
+aI
+"}
+(26,1,1) = {"
+aI
+aI
+aI
+aT
+aE
+aE
+ao
+aD
+ad
+aK
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+aN
+ad
+am
+ai
+aE
+aE
+aI
+aI
+aI
+aI
+"}
+(27,1,1) = {"
+aI
+aI
+aI
+aE
+ai
+aZ
+aE
+aD
+ad
+aK
+aG
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+aG
+pD
+fM
+am
+aE
+aZ
+aT
+au
+aI
+aI
+aI
+"}
+(28,1,1) = {"
+aI
+aI
+aI
+aE
+aE
+ao
+aZ
+aD
+ad
+aK
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+pD
+aw
+tR
+aE
+aE
+ao
+aI
+aI
+aI
+aI
+"}
+(29,1,1) = {"
+aI
+aI
+aI
+ao
+aE
+ai
+aE
+aj
+ad
+aK
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+pD
+aw
+tR
+aZ
+aE
+aE
+aI
+aI
+aI
+aI
+"}
+(30,1,1) = {"
+aI
+aI
+au
+aE
+aZ
+aE
+ao
+aj
+ad
+aK
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+pD
+aw
+am
+aE
+aE
+aZ
+aE
+aI
+aI
+aI
+"}
+(31,1,1) = {"
+aI
+aI
+au
+aZ
+aE
+aE
+aZ
+aj
+ad
+kd
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+pD
+aw
+tR
+aE
+aE
+ao
+aE
+aI
+aI
+aI
+"}
+(32,1,1) = {"
+aI
+aI
+aI
+aE
+aE
+ao
+aE
+aj
+fM
+kd
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+pD
+aw
+am
+aE
+aE
+aE
+aE
+au
+aI
+aI
+"}
+(33,1,1) = {"
+aI
+aI
+aI
+aI
+aE
+ai
+aE
+aj
+fM
+sw
+aG
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+aG
+pD
+fM
+am
+ai
+aE
+aZ
+aE
+aI
+aI
+aI
+"}
+(34,1,1) = {"
+aI
+aI
+aI
+aI
+aZ
+aE
+ai
+aj
+fM
+aK
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+aN
+Iz
+am
+aE
+ao
+aE
+aE
+aI
+aI
+aI
+"}
+(35,1,1) = {"
+aI
+aI
+aI
+aI
+aE
+aE
+aE
+aj
+aw
+aK
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+aN
+fM
+tR
+aE
+aE
+ai
+aE
+aI
+aI
+aI
+"}
+(36,1,1) = {"
+aI
+aI
+aI
+aI
+aI
+aE
+ai
+aj
+aw
+aK
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+pD
+ad
+am
+aE
+aE
+aE
+aI
+aI
+aI
+aI
+"}
+(37,1,1) = {"
+aI
+aI
+aI
+aI
+au
+ao
+aE
+aj
+aw
+aK
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+pD
+ad
+am
+aE
+aZ
+aE
+aI
+aI
+aI
+aI
+"}
+(38,1,1) = {"
+aI
+aI
+aI
+aI
+aI
+aE
+aZ
+aj
+aw
+aK
+aG
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+aG
+pD
+ad
+am
+aE
+aE
+aI
+aI
+aI
+aI
+aI
+"}
+(39,1,1) = {"
+aI
+aI
+aI
+aI
+aI
+ai
+aE
+aj
+aw
+aK
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+pD
+ad
+am
+aE
+aE
+aI
+aI
+aI
+aI
+aI
+"}
+(40,1,1) = {"
+aI
+aI
+aI
+aI
+aI
+aT
+aE
+aD
+aw
+aK
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+pD
+ad
+am
+aE
+ao
+aI
+aI
+aI
+aI
+aI
+"}
+(41,1,1) = {"
+aI
+aI
+aI
+aI
+aI
+aI
+aE
+aD
+aw
+aK
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+pD
+ad
+am
+aE
+ai
+au
+aI
+aI
+aI
+aI
+"}
+(42,1,1) = {"
+aI
+aI
+aI
+aI
+aI
+aI
+aE
+aD
+ad
+aK
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+aN
+ad
+am
+aZ
+aE
+aI
+aI
+aI
+aI
+aI
+"}
+(43,1,1) = {"
+aI
+aI
+aI
+aI
+aI
+aZ
+aE
+aD
+ad
+aK
+aG
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+aG
+pD
+fM
+am
+aE
+aE
+aI
+aI
+aI
+aI
+aI
+"}
+(44,1,1) = {"
+aI
+aI
+aI
+aI
+aI
+aE
+ai
+aD
+ad
+aK
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+pD
+aw
+tR
+aE
+ao
+aI
+aI
+aI
+aI
+aI
+"}
+(45,1,1) = {"
+aI
+aI
+aI
+aI
+aI
+aE
+ao
+aj
+ad
+aK
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+pD
+aw
+tR
+aE
+aE
+aE
+aI
+aI
+aI
+aI
+"}
+(46,1,1) = {"
+aI
+aI
+aI
+aI
+aI
+aE
+aE
+aj
+ad
+aK
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+pD
+aw
+am
+aE
+aZ
+aE
+aI
+aI
+aI
+aI
+"}
+(47,1,1) = {"
+aI
+aI
+aI
+aI
+aI
+aZ
+aE
+aj
+ad
+kd
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+pD
+aw
+tR
+aE
+aE
+aE
+au
+aI
+aI
+aI
+"}
+(48,1,1) = {"
+aI
+aI
+aI
+aI
+aI
+aE
+aE
+aj
+aw
+kd
+aG
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+aG
+pD
+aw
+tR
+aE
+aE
+ai
+aT
+aH
+aH
+aH
+"}
+(49,1,1) = {"
+aI
+aI
+aI
+aI
+au
+ai
+aE
+aj
+aw
+aK
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+Ck
+fM
+tR
+aE
+aE
+ao
+aE
+aH
+tj
+aH
+"}
+(50,1,1) = {"
+aH
+aH
+aH
+aH
+aE
+aE
+aZ
+pD
+aw
+aK
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+pD
+aw
+aK
+aE
+aE
+aE
+aE
+sB
+tj
+aH
+"}
+(51,1,1) = {"
+aH
+tj
+tj
+aH
+aE
+ao
+aE
+aj
+aw
+aK
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+pD
+aw
+tR
+aZ
+aE
+aE
+aE
+aH
+aH
+aH
+"}
+(52,1,1) = {"
+aH
+tj
+tj
+aH
+aE
+aE
+aE
+aj
+aw
+aK
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+pD
+ad
+tR
+ao
+aE
+aZ
+aI
+aI
+aI
+aI
+"}
+(53,1,1) = {"
+aH
+tj
+tj
+sB
+aE
+aE
+ao
+aD
+ad
+aK
+aG
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+aG
+pD
+aw
+tR
+aE
+aE
+aE
+aI
+aI
+aI
+aI
+"}
+(54,1,1) = {"
+aH
+tj
+tj
+aH
+aZ
+aE
+aE
+aj
+ad
+aK
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+pD
+aw
+am
+aE
+aE
+aI
+aI
+aI
+aI
+aI
+"}
+(55,1,1) = {"
+aH
+aH
+aH
+aH
+aE
+ai
+aE
+aD
+aw
+aK
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+aN
+aw
+tR
+aZ
+aE
+au
+aI
+aI
+aI
+aI
+"}
+(56,1,1) = {"
+aI
+aI
+aI
+aI
+aE
+ao
+ai
+aj
+fM
+aK
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+pD
+aw
+tR
+aE
+ao
+aI
+aI
+aI
+aI
+aI
+"}
+(57,1,1) = {"
+aI
+aI
+aI
+aI
+aE
+aE
+aE
+aj
+Iz
+aK
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+pD
+fM
+tR
+aE
+aE
+aI
+aI
+aI
+aI
+aI
+"}
+(58,1,1) = {"
+aI
+aI
+aI
+aT
+aE
+aZ
+aE
+aj
+Jx
+aK
+aG
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+aG
+pD
+fM
+tR
+aE
+aZ
+aI
+aI
+aI
+aI
+aI
+"}
+(59,1,1) = {"
+aI
+aI
+aI
+aE
+aE
+aE
+aZ
+aj
+fM
+kd
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+pD
+fM
+tR
+aE
+aI
+aI
+aI
+aI
+aI
+aI
+"}
+(60,1,1) = {"
+aI
+aI
+aI
+aE
+ao
+aE
+aE
+aj
+fM
+kd
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+pD
+fM
+am
+ai
+aI
+aI
+aI
+aI
+aI
+aI
+"}
+(61,1,1) = {"
+aI
+aI
+au
+aE
+aE
+aE
+ao
+aD
+aw
+kd
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+pD
+aw
+aO
+aE
+aI
+aI
+aI
+aI
+aI
+aI
+"}
+(62,1,1) = {"
+aI
+aI
+au
+aE
+aZ
+aE
+aE
+aj
+aw
+aK
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+pD
+fM
+aO
+aZ
+aE
+aI
+aI
+aI
+aI
+aI
+"}
+(63,1,1) = {"
+aI
+aI
+au
+aE
+aE
+aE
+aE
+aj
+aw
+aK
+aG
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+aG
+aN
+ad
+tR
+ao
+aE
+au
+aI
+aI
+aI
+aI
+"}
+(64,1,1) = {"
+aI
+aI
+aI
+aE
+aE
+aZ
+aE
+aj
+ad
+aK
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+aN
+aw
+tR
+aE
+aE
+au
+aI
+aI
+aI
+aI
+"}
+(65,1,1) = {"
+aI
+aI
+aI
+aE
+aE
+ao
+aE
+aj
+ad
+aK
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+aN
+aw
+tR
+aE
+aZ
+aI
+aI
+aI
+aI
+aI
+"}
+(66,1,1) = {"
+aI
+aI
+aI
+aE
+aE
+ai
+aE
+aj
+ad
+aK
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+pD
+aw
+tR
+aE
+ao
+aI
+aI
+aI
+aI
+aI
+"}
+(67,1,1) = {"
+aI
+aI
+aI
+aE
+aE
+aE
+ao
+aj
+ad
+aK
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+pD
+fM
+tR
+aE
+aE
+aI
+aI
+aI
+aI
+aI
+"}
+(68,1,1) = {"
+aI
+aI
+aI
+aZ
+aE
+aE
+aE
+aj
+aw
+kd
+aG
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+aG
+pD
+fM
+tR
+aZ
+aT
+aI
+aI
+aI
+aI
+aI
+"}
+(69,1,1) = {"
+aI
+aI
+aE
+aE
+aE
+aZ
+aE
+aD
+aw
+kd
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+ck
+pD
+aw
+tR
+aE
+aI
+aI
+aI
+aI
+aI
+aI
+"}
+(70,1,1) = {"
+aI
+aI
+aE
+aE
+aE
+aE
+aE
+aD
+ad
+kd
+ck
+ck
+aG
+ck
+ck
+ck
+ck
+aG
+ck
+ck
+ck
+ck
+aG
+ck
+ck
+ck
+ck
+aG
+ck
+ck
+ck
+ck
+aG
+ck
+ck
+ck
+ck
+aG
+ck
+ck
+ck
+ck
+aG
+ck
+ck
+ck
+ck
+aG
+ck
+ck
+pD
+ad
+tR
+ai
+aI
+aI
+aI
+aI
+aI
+aI
+"}
+(71,1,1) = {"
+aI
+aI
+aE
+aE
+ao
+aE
+aE
+aj
+ad
+cX
+Mj
+ar
+ar
+ar
+Mj
+Mj
+Mj
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+Mj
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+ar
+qX
+ad
+tR
+aZ
+aI
+aI
+aI
+aI
+aI
+aI
+"}
+(72,1,1) = {"
+aI
+aI
+aE
+aE
+aZ
+aE
+aE
+aj
+Cb
+ad
+ad
+ad
+ad
+ad
+aw
+aw
+aw
+aw
+aw
+ad
+ad
+ad
+ad
+aw
+aw
+fM
+aw
+aw
+aw
+aw
+fM
+YA
+aw
+aw
+ad
+fM
+fM
+aw
+aw
+ad
+ad
+ad
+aw
+ad
+ad
+ad
+fM
+fM
+aw
+ad
+ad
+YA
+am
+aE
+aE
+aI
+aI
+aI
+aI
+aI
+"}
+(73,1,1) = {"
+aI
+aI
+aI
+aE
+aE
+aE
+ao
+jS
+mj
+mj
+Nh
+Nh
+mj
+mj
+mj
+mj
+mj
+mj
+mj
+fr
+Nh
+Nh
+mj
+mj
+mj
+mj
+mj
+mj
+mj
+mj
+HV
+fM
+kH
+mj
+mj
+mj
+mj
+fr
+fr
+mj
+mj
+Be
+Nh
+mj
+mj
+mj
+mj
+mj
+MM
+Be
+fr
+fr
+Rz
+aE
+aZ
+aI
+aI
+aI
+aI
+aI
+"}
+(74,1,1) = {"
+aI
+aI
+aI
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+ai
+aE
+aE
+aE
+aE
+aE
+aE
+ai
+aE
+ao
+aZ
+aj
+aw
+am
+aE
+aE
+aE
+aZ
+aE
+aE
+aE
+ai
+aE
+aE
+aZ
+aE
+aE
+aE
+aE
+aE
+ai
+aE
+aE
+aE
+ao
+aE
+aI
+aI
+aI
+aI
+aI
+"}
+(75,1,1) = {"
+aI
+aI
+aI
+aE
+aE
+aZ
+aE
+ai
+aE
+aZ
+aE
+aZ
+aE
+aE
+ao
+aT
+aE
+aZ
+aE
+aE
+aE
+aE
+aE
+ao
+aZ
+aE
+aE
+aE
+aE
+aE
+aj
+aw
+nC
+Ei
+aZ
+aE
+aE
+aE
+aE
+ao
+aE
+aZ
+aE
+aE
+ao
+aZ
+aE
+aZ
+aE
+aE
+YX
+aE
+aZ
+aE
+aE
+aI
+aI
+aI
+aI
+aI
+"}
+(76,1,1) = {"
+aI
+aI
+aI
+aE
+ao
+aE
+aE
+YX
+aE
+aE
+ao
+aE
+aE
+aE
+aE
+aZ
+aE
+aE
+ao
+aE
+aZ
+aE
+ai
+aE
+aE
+aI
+aI
+au
+aI
+aI
+aj
+fM
+Jw
+JR
+aE
+aE
+ao
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+ao
+aE
+aE
+aE
+aE
+aE
+aE
+aI
+aI
+aI
+aI
+aI
+"}
+(77,1,1) = {"
+aI
+aI
+aI
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+ao
+aE
+aE
+aE
+ai
+aE
+aE
+aH
+ub
+ub
+ub
+ub
+aH
+aI
+aI
+aI
+aI
+BN
+aw
+PJ
+mP
+aE
+aE
+aZ
+aE
+ao
+aZ
+aE
+aE
+ao
+aZ
+aE
+YX
+aE
+aE
+aE
+aZ
+aE
+aZ
+aE
+aE
+ao
+aI
+aI
+aI
+aI
+aI
+"}
+(78,1,1) = {"
+aI
+aI
+aI
+au
+aE
+aE
+ao
+aZ
+aE
+aE
+aZ
+aE
+aE
+aE
+aE
+aZ
+aE
+aE
+aZ
+aE
+aH
+XG
+hT
+um
+Mt
+aH
+aH
+aH
+aH
+aH
+aH
+qx
+aH
+aH
+aH
+aT
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+ao
+aE
+aZ
+aE
+aE
+aE
+ao
+aE
+aE
+aE
+aE
+aI
+aI
+aI
+aI
+aI
+"}
+(79,1,1) = {"
+aI
+aI
+aI
+aI
+aI
+aE
+aE
+aT
+aE
+aE
+ao
+aE
+aE
+aE
+ao
+aE
+aE
+aE
+ao
+aE
+LP
+Dv
+rD
+wT
+Dv
+LP
+lu
+lu
+aH
+ZE
+Lo
+cY
+UB
+DV
+aH
+aI
+aE
+aZ
+aE
+aZ
+aE
+aE
+ao
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aZ
+aE
+au
+aI
+aI
+aI
+aI
+aI
+"}
+(80,1,1) = {"
+aI
+aI
+aI
+aI
+aI
+aI
+aE
+aE
+ai
+aE
+aE
+aE
+aZ
+aE
+aE
+ai
+aE
+aE
+aE
+aE
+aH
+eZ
+ab
+cq
+Kp
+aH
+lu
+lu
+aH
+Fn
+Ma
+cm
+JY
+md
+aH
+aI
+aI
+aE
+aE
+aE
+aE
+aZ
+aE
+au
+aI
+aI
+aE
+aZ
+aE
+aZ
+aE
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+"}
+(81,1,1) = {"
+aH
+aH
+aH
+aH
+aH
+aH
+aH
+ub
+ub
+ub
+ub
+aH
+aH
+ub
+ub
+ub
+ub
+aH
+aH
+aH
+aH
+aH
+aH
+aH
+aH
+aH
+aH
+aH
+aH
+aH
+OW
+OW
+OW
+aH
+aH
+aH
+aH
+aH
+aH
+aH
+ub
+ub
+ub
+aH
+aH
+aH
+aH
+ub
+ub
+ub
+aH
+aH
+aH
+aH
+aH
+aH
+aH
+aH
+aH
+aH
+"}
+(82,1,1) = {"
+aH
+lu
+lu
+lu
+dT
+vL
+aA
+aA
+aA
+yU
+Jt
+Yq
+lu
+Jt
+Jt
+QG
+Jt
+Jt
+lu
+Jt
+Jt
+sP
+Jt
+aA
+FS
+Jt
+lu
+Jt
+Jt
+dT
+aY
+aY
+Qi
+dT
+vL
+aA
+aA
+aA
+yU
+Jt
+Yq
+lu
+Jt
+Jt
+QG
+Jt
+Jt
+lu
+Jt
+Jt
+sP
+Jt
+aA
+FS
+Jt
+dT
+lu
+Jt
+aA
+aH
+"}
+(83,1,1) = {"
+aH
+lu
+lu
+lu
+dT
+lu
+aA
+aA
+Ts
+Yn
+Jl
+lu
+aA
+aA
+aA
+aA
+Jt
+Jt
+lu
+QG
+Jt
+lu
+et
+aA
+Jt
+Jt
+lu
+QG
+Jt
+dT
+aY
+aY
+aY
+dT
+lu
+aA
+aA
+Ts
+Yn
+Jl
+lu
+aA
+aA
+aA
+aA
+Jt
+Jt
+lu
+QG
+Jt
+lu
+et
+aA
+Jt
+QG
+dT
+lu
+lu
+aA
+aH
+"}
+(84,1,1) = {"
+aH
+lu
+lu
+lu
+dT
+lu
+vL
+eM
+Yq
+Jt
+aA
+Jt
+lu
+BZ
+Jt
+Yt
+Cg
+Jt
+Jt
+eM
+lu
+lu
+Jt
+aA
+aA
+vc
+lu
+lu
+lu
+dT
+aY
+aY
+aY
+dT
+Yq
+Jt
+aA
+Jt
+lu
+BZ
+Jt
+Yt
+Cg
+Jt
+Jt
+eM
+lu
+lu
+Jt
+aA
+aA
+vc
+aA
+aA
+lu
+dT
+lu
+Jt
+aA
+aH
+"}
+(85,1,1) = {"
+aH
+aH
+aH
+aH
+aH
+aI
+aI
+aH
+aI
+aI
+aI
+aI
+aI
+aH
+aI
+aI
+aI
+aI
+aI
+aH
+aI
+aI
+aI
+aI
+aI
+aH
+aI
+aI
+aI
+aH
+aH
+aH
+aH
+aH
+aI
+aI
+aI
+aI
+aI
+aH
+aI
+aI
+aI
+aI
+aI
+aH
+aI
+aI
+aI
+aI
+aI
+aH
+aI
+aI
+aI
+aH
+aH
+aH
+aH
+aH
+"}
+(86,1,1) = {"
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+"}
+(87,1,1) = {"
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+"}
+(88,1,1) = {"
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+"}
+(89,1,1) = {"
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+"}
+(90,1,1) = {"
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+"}
+(91,1,1) = {"
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+"}
diff --git a/_maps/outpost/indie_space.dmm b/_maps/outpost/indie_space.dmm
index 5836ab2afcfd..b832b5f5b2f1 100644
--- a/_maps/outpost/indie_space.dmm
+++ b/_maps/outpost/indie_space.dmm
@@ -1,7153 +1,8460 @@
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"ac" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 4
+"ag" = (
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
},
-/obj/structure/disposalpipe/segment{
- dir = 10
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
},
-/obj/structure/cable{
- icon_state = "2-8"
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
},
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"af" = (
-/obj/structure/curtain/cloth/fancy,
-/obj/effect/turf_decal/siding/wood{
+/obj/machinery/door/airlock/public{
dir = 4
},
-/obj/effect/turf_decal/siding/wood{
- dir = 8
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
},
-/turf/open/floor/plasteel/mono,
-/area/outpost/crew)
-"ag" = (
-/obj/machinery/door/airlock{
- id_tag = "ob2";
- name = "Stall 2";
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
},
-/turf/open/floor/plasteel,
-/area/outpost/crew/dorm)
+/turf/open/floor/plasteel/tech,
+/area/outpost/cargo/office)
"ai" = (
-/obj/structure/chair/office{
- dir = 8
- },
-/obj/machinery/light/small/directional/east,
-/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
-"an" = (
+/obj/structure/flora/grass/jungle,
+/turf/open/floor/grass/ship/jungle,
+/area/outpost/hallway/central)
+"aq" = (
/obj/structure/railing{
dir = 1
},
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 1
+/obj/machinery/firealarm/directional/south,
+/obj/effect/turf_decal/corner/opaque/brown{
+ dir = 10
},
-/turf/open/floor/plasteel/patterned/grid,
+/turf/open/floor/plasteel/patterned,
/area/outpost/cargo)
"ar" = (
-/obj/structure/rack,
-/obj/effect/turf_decal/trimline/opaque/green/line,
-/obj/effect/turf_decal/trimline/opaque/green/line{
- dir = 1
- },
-/obj/structure/sign/poster/official/random{
- pixel_y = -32
+/obj/machinery/camera/autoname{
+ dir = 8
},
/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/outpost/crew/library)
+"at" = (
+/obj/effect/turf_decal/corner_techfloor_gray{
+ dir = 9
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/tech/techmaint,
-/area/outpost/vacant_rooms)
-"aC" = (
-/obj/structure/cable{
- icon_state = "1-2"
+/area/outpost/maintenance/fore)
+"au" = (
+/obj/structure/table/wood,
+/obj/item/reagent_containers/food/drinks/modglass{
+ pixel_y = 1;
+ pixel_x = -6
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"aH" = (
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 6
+/obj/item/reagent_containers/food/drinks/modglass{
+ pixel_y = 5;
+ pixel_x = 5
},
-/obj/structure/closet/firecloset/wall{
- dir = 8;
- pixel_x = 28
+/obj/effect/turf_decal/siding/wood,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/outpost/crew/bar)
+"aw" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/corner/opaque/neutral/diagonal,
+/obj/effect/turf_decal/spline/fancy/opaque/lightgrey{
+ dir = 8
},
/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"bg" = (
-/obj/structure/rack,
-/obj/structure/sign/poster/contraband/random{
- pixel_x = -32
+/area/outpost/storage)
+"aB" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 10
},
-/obj/machinery/light/small/broken/directional/north,
/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/tech/techmaint,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"aE" = (
+/obj/machinery/light/small/directional/east,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/corner_techfloor_gray{
+ dir = 6
+ },
+/obj/structure/spider/stickyweb,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"aI" = (
+/turf/closed/indestructible/reinforced,
+/area/outpost/crew/library)
+"aM" = (
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/prison_contraband,
+/turf/open/floor/plasteel/patterned/cargo_one,
/area/outpost/vacant_rooms)
-"bk" = (
-/obj/structure/table,
-/obj/structure/window/reinforced{
- dir = 1
+"aP" = (
+/obj/structure/railing{
+ dir = 8
},
-/obj/item/clipboard,
-/obj/item/hand_labeler,
-/turf/open/floor/plasteel/tech/techmaint,
+/obj/item/radio/intercom/directional/east,
+/obj/effect/turf_decal/corner/opaque/brown{
+ dir = 6
+ },
+/turf/open/floor/plasteel/patterned,
/area/outpost/cargo)
-"bo" = (
-/obj/structure/window/reinforced/tinted{
- dir = 8
+"aS" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
},
-/obj/structure/window/reinforced/tinted{
- dir = 1
+/obj/effect/turf_decal/corner/opaque/neutral{
+ dir = 4
},
-/turf/open/floor/grass,
-/area/outpost/crew)
-"bs" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
},
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 1
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/outpost/hallway/port)
+"aU" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/turf_decal/corner/opaque/black,
/turf/open/floor/plasteel,
/area/outpost/hallway/central)
-"bt" = (
+"aX" = (
/obj/structure/railing/corner{
- dir = 4
+ dir = 1
},
-/obj/effect/turf_decal/spline/fancy/opaque/black/corner{
- dir = 4
+/obj/effect/turf_decal/corner/opaque/brown{
+ dir = 6
},
-/turf/open/floor/plasteel/tech,
-/area/outpost/cargo)
-"bv" = (
-/obj/structure/railing{
+/obj/effect/turf_decal/corner/opaque/brown{
dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/plasteel/tech,
+/turf/open/floor/plasteel/patterned,
/area/outpost/cargo)
-"bE" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
+"aZ" = (
+/obj/structure/chair{
+ dir = 8
},
-/obj/structure/sign/poster/contraband/random{
- pixel_x = 32
+/obj/item/toy/figure/bartender{
+ pixel_x = -4
},
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/outpost/maintenance/central)
+"bc" = (
+/obj/structure/rack,
+/obj/machinery/light/small/directional/west,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/reagent_containers/glass/rag,
+/obj/item/razor,
+/obj/item/plunger,
/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
-"bI" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/effect/turf_decal/spline/fancy/opaque/grey/corner{
+/area/outpost/maintenance/fore)
+"bi" = (
+/obj/machinery/mineral/processing_unit_console{
+ pixel_y = -31;
+ machinedir = 1;
+ output_dir = 1
+ },
+/obj/structure/railing{
dir = 1
},
-/obj/effect/turf_decal/spline/fancy/opaque/grey{
- dir = 4;
- pixel_y = 1
+/obj/effect/turf_decal/corner/opaque/brown{
+ dir = 10
},
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
-"bJ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+/turf/open/floor/plasteel/patterned,
+/area/outpost/cargo)
+"bn" = (
+/obj/structure/closet/crate/trashcart,
+/obj/structure/spider/stickyweb,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"bq" = (
+/obj/structure/chair/pew/left{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
+/obj/effect/turf_decal/corner/opaque/green{
+ dir = 9
},
-/obj/structure/cable{
+/turf/open/floor/plasteel,
+/area/outpost/hallway/central)
+"bs" = (
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/plasteel/patterned,
-/area/outpost/cargo)
-"bL" = (
-/obj/structure/rack,
-/obj/structure/sign/poster/contraband/random{
- pixel_y = 32
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
},
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/tech/techmaint,
-/area/outpost/vacant_rooms)
-"bT" = (
-/obj/structure/chair/wood/wings{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
},
/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/carpet,
-/area/outpost/crew)
-"cc" = (
-/obj/structure/chair/office{
+/turf/open/floor/plating,
+/area/outpost/maintenance/central)
+"bz" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
},
-/obj/item/radio/intercom/directional/west,
-/turf/open/floor/plasteel,
+/obj/structure/sign/poster/random{
+ pixel_y = -30
+ },
+/turf/open/floor/wood,
+/area/outpost/crew/bar)
+"bA" = (
+/obj/structure/table,
+/obj/machinery/paystand{
+ pixel_y = 8
+ },
+/turf/open/floor/plasteel/patterned/cargo_one,
/area/outpost/vacant_rooms)
-"cg" = (
+"bC" = (
+/obj/machinery/light/small/directional/south,
/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/corner/opaque/green{
+/turf/open/floor/plating,
+/area/outpost/maintenance/central)
+"bJ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 10
},
-/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"cl" = (
-/obj/structure/table,
-/obj/effect/turf_decal/corner/opaque/bottlegreen/three_quarters{
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/obj/effect/spawner/lootdrop/salvage/metal,
+/turf/open/floor/plasteel/tech/techmaint,
+/area/outpost/maintenance/central)
+"bL" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
dir = 4
},
-/obj/machinery/newscaster/directional/west,
-/obj/item/radio/intercom/directional/north{
- pixel_y = 32
+/obj/effect/turf_decal/corner/opaque/neutral{
+ dir = 8
+ },
+/obj/structure/sign/poster/random{
+ pixel_x = -28
},
/turf/open/floor/plasteel,
-/area/outpost/crew/dorm)
-"cs" = (
-/obj/structure/table,
-/obj/item/circuitboard/machine/paystand,
+/area/outpost/hallway/port)
+"bS" = (
+/obj/effect/spawner/lootdrop/grille_or_trash,
+/obj/effect/turf_decal/corner_techfloor_grid{
+ dir = 8
+ },
/turf/open/floor/plasteel/tech/techmaint,
-/area/outpost/vacant_rooms)
-"cx" = (
-/obj/item/kirbyplants/random,
+/area/outpost/maintenance/fore)
+"bV" = (
+/obj/machinery/light/small/directional/south,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/foamedmetal,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"bW" = (
+/obj/machinery/light/directional/south,
/turf/open/floor/plasteel,
-/area/outpost/crew)
-"cy" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/effect/turf_decal/spline/fancy/opaque/grey{
- dir = 4;
- pixel_y = 1
- },
-/obj/effect/turf_decal/spline/fancy/opaque/grey{
- dir = 8;
- pixel_y = 1
+/area/outpost/security)
+"bY" = (
+/obj/item/kirbyplants{
+ icon_state = "plant-19"
},
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel,
+/turf/open/floor/plasteel/patterned/cargo_one,
/area/outpost/vacant_rooms)
-"cz" = (
-/obj/structure/barricade/wooden,
-/turf/open/floor/plasteel/elevatorshaft,
-/area/outpost/cargo)
-"cC" = (
-/turf/open/floor/plasteel/tech/techmaint,
+"ca" = (
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "outpost1"
+ },
+/turf/open/floor/plasteel/patterned/cargo_one,
/area/outpost/cargo)
-"cO" = (
-/obj/item/radio/intercom/directional/east,
-/turf/open/floor/wood,
-/area/outpost/crew)
-"cU" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
+"cc" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
},
-/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"cV" = (
-/obj/machinery/door/airlock{
- id_tag = "ob1";
- name = "Stall 1";
- dir = 4
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
},
-/turf/open/floor/plasteel,
-/area/outpost/crew/dorm)
-"cW" = (
-/obj/effect/turf_decal/box/corners{
+/obj/structure/disposalpipe/junction/yjunction{
dir = 4
},
-/obj/structure/closet/crate,
-/turf/open/floor/plasteel/patterned/grid,
-/area/outpost/cargo)
-"cZ" = (
-/obj/machinery/telecomms/allinone/indestructable{
- id = "Outpost"
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/turf_decal/corner/opaque/black{
+ dir = 6
},
/turf/open/floor/plasteel,
/area/outpost/hallway/central)
-"da" = (
-/obj/effect/turf_decal/box/corners{
- dir = 1
- },
-/obj/structure/railing/corner{
- dir = 4
+"cg" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
-/obj/effect/turf_decal/spline/fancy/opaque/black/corner{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/plasteel/patterned/grid,
-/area/outpost/cargo)
-"dh" = (
-/obj/machinery/disposal/bin,
-/obj/effect/turf_decal/box,
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/obj/machinery/firealarm/directional/south,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
/turf/open/floor/plasteel,
-/area/outpost/crew)
-"dq" = (
-/obj/machinery/door/window/brigdoor/westleft,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
+/area/outpost/hallway/central)
+"ci" = (
+/obj/effect/spawner/lootdrop/waste/trash,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"cl" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
},
-/obj/effect/turf_decal/spline/fancy/opaque/grey{
- pixel_x = -1
+/obj/structure/disposalpipe/segment{
+ dir = 10
},
-/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
-"dt" = (
-/obj/effect/turf_decal/box/corners,
-/obj/structure/closet/crate/science,
-/obj/machinery/light/directional/south,
-/turf/open/floor/plasteel/patterned/grid,
-/area/outpost/cargo)
-"du" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/wood,
-/area/outpost/crew)
-"dC" = (
-/obj/machinery/cryopod{
- dir = 4
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
},
-/obj/machinery/light/small/directional/west,
-/turf/open/floor/plasteel/tech/grid,
-/area/outpost/crew/dorm)
-"dD" = (
-/obj/effect/turf_decal/corner/opaque/green{
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
dir = 1
},
/turf/open/floor/plasteel,
/area/outpost/hallway/central)
-"dH" = (
-/obj/effect/turf_decal/siding/wood{
+"cm" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk,
+/obj/effect/turf_decal/box,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/outpost/storage)
+"cq" = (
+/turf/closed/indestructible/reinforced,
+/area/outpost/maintenance/central)
+"cr" = (
+/obj/structure/railing/corner{
dir = 1
},
-/turf/open/floor/wood,
-/area/outpost/crew)
-"dK" = (
-/obj/machinery/firealarm/directional/south,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel,
+/obj/effect/turf_decal/industrial/loading,
+/turf/open/floor/plasteel/patterned,
+/area/outpost/cargo)
+"cs" = (
+/obj/structure/flora/junglebush,
+/turf/open/floor/grass/ship/jungle,
/area/outpost/hallway/central)
-"dS" = (
+"cu" = (
+/obj/item/radio/intercom/directional/north,
/obj/effect/turf_decal/corner/opaque/red{
- dir = 9
+ dir = 8
},
/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"dW" = (
-/obj/machinery/firealarm/directional/north,
-/obj/effect/turf_decal/corner/opaque/black{
- dir = 6
+/area/outpost/security)
+"cG" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
-/obj/effect/turf_decal/corner/opaque/green{
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/effect/turf_decal/industrial/stand_clear{
dir = 1
},
-/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"dY" = (
-/obj/structure/window/reinforced{
- dir = 4
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4,
+/turf/open/floor/plasteel/patterned,
+/area/outpost/cargo)
+"cI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
},
-/obj/machinery/newscaster/directional/north{
- pixel_y = 32
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"cK" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/closed/indestructible/reinforced,
+/area/outpost/maintenance/central)
+"cO" = (
+/obj/structure/table/wood,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/reagent_containers/food/drinks/drinkingglass{
+ pixel_y = 2;
+ pixel_x = 4
+ },
+/turf/open/floor/carpet/green,
+/area/outpost/crew/bar)
+"cR" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
},
-/obj/structure/filingcabinet/double,
-/turf/open/floor/plasteel/tech/techmaint,
-/area/outpost/cargo)
-"ec" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
-/obj/machinery/light/small/directional/north,
-/obj/structure/sign/poster/contraband/random{
- pixel_x = 32
+/obj/effect/turf_decal/corner_techfloor_gray{
+ dir = 6
},
-/turf/open/floor/wood,
-/area/outpost/crew)
-"eg" = (
-/obj/effect/turf_decal/corner/opaque/green{
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/tech/techmaint,
+/area/outpost/maintenance/fore)
+"cS" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/extinguisher_cabinet/directional/north,
+/obj/effect/decal/cleanable/oil,
+/obj/effect/turf_decal/steeldecal/steel_decals6{
dir = 9
},
-/obj/machinery/light/directional/west,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"cV" = (
+/obj/effect/spawner/structure/window/reinforced/indestructable,
+/turf/open/floor/plating,
+/area/outpost/cargo/office)
+"cX" = (
+/turf/open/floor/plasteel,
+/area/outpost/security)
+"dg" = (
+/obj/structure/railing{
dir = 4
},
-/obj/item/kirbyplants/random,
-/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"em" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 8
+/obj/effect/turf_decal/corner/opaque/brown{
+ dir = 9
},
-/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"eq" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
+/obj/machinery/camera/autoname{
+ dir = 5
},
+/turf/open/floor/plasteel/patterned,
+/area/outpost/cargo)
+"di" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
+ dir = 4
},
-/turf/open/floor/wood,
+/obj/effect/turf_decal/corner/opaque/neutral/diagonal,
+/obj/machinery/firealarm/directional/south,
+/turf/open/floor/plasteel,
/area/outpost/vacant_rooms)
-"es" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
+"dl" = (
+/obj/effect/spawner/lootdrop/waste/trash,
+/obj/effect/turf_decal/steeldecal/steel_decals7{
+ dir = 9
+ },
+/obj/effect/turf_decal/steeldecal/steel_decals7{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/outpost/maintenance/central)
+"dn" = (
+/obj/structure/chair/stool/bar{
+ dir = 1;
+ pixel_y = 13
+ },
+/obj/machinery/newscaster/directional/east,
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
},
/turf/open/floor/wood,
-/area/outpost/crew)
-"et" = (
-/obj/effect/turf_decal/corner/opaque/black{
- dir = 5
+/area/outpost/crew/bar)
+"dr" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/decal/cleanable/ash,
+/turf/open/floor/plating/asteroid,
+/area/outpost/external)
+"ds" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/rack,
+/obj/item/storage/bag/trash,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"dw" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/wood,
+/area/outpost/crew/bar)
+"dD" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/light/small/directional/east,
/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
-"ex" = (
-/obj/machinery/vending/snack/random,
-/obj/effect/turf_decal/corner/opaque/green/three_quarters{
- dir = 8
+/area/outpost/crew/janitor)
+"dK" = (
+/obj/item/trash/can/food/beans{
+ pixel_x = -16;
+ pixel_y = 4
},
-/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"ey" = (
-/obj/structure/railing/corner{
- dir = 4
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/trash/can/food/beans{
+ pixel_x = 7;
+ pixel_y = 5
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
+/obj/item/trash/can/food/beans{
+ pixel_y = -2;
+ pixel_x = 2
},
-/obj/structure/cable{
- icon_state = "2-4"
+/obj/item/reagent_containers/food/snacks/canned/beans{
+ pixel_x = -9;
+ pixel_y = 18
},
-/turf/open/floor/plasteel/tech,
-/area/outpost/cargo)
-"ez" = (
-/obj/machinery/door/airlock{
- id_tag = "ob3";
- name = "Bathroom"
+/turf/open/floor/plating/asteroid,
+/area/outpost/maintenance/central)
+"dL" = (
+/obj/structure/closet/secure_closet/armory3,
+/obj/effect/turf_decal/industrial/outline/yellow,
+/turf/open/floor/plasteel,
+/area/outpost/security)
+"dN" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
-/turf/open/floor/plasteel/tech,
-/area/outpost/crew)
-"eL" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"dO" = (
/obj/item/kirbyplants{
- icon_state = "plant-03";
- name = "Dave"
+ icon_state = "plant-22"
},
-/obj/effect/turf_decal/spline/fancy/opaque/grey{
- dir = 8
+/obj/machinery/light/dim/directional/west,
+/obj/machinery/camera/autoname{
+ dir = 6
},
-/obj/structure/sign/poster/contraband/inteq_nt{
- pixel_y = 32
+/obj/effect/turf_decal/spline/fancy/opaque/lightgrey{
+ dir = 6
},
-/obj/effect/decal/cleanable/confetti,
-/turf/open/floor/plasteel,
+/turf/open/floor/plasteel/tech/techmaint,
+/area/outpost/hallway/central)
+"dP" = (
+/obj/structure/chair,
+/obj/item/radio/intercom/directional/north,
+/turf/open/floor/plasteel/patterned/cargo_one,
/area/outpost/vacant_rooms)
-"fc" = (
-/obj/structure/cable{
- icon_state = "2-8"
+"dQ" = (
+/obj/structure/table/wood,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/trash/syndi_cakes{
+ pixel_y = 6;
+ pixel_x = -3
},
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 4
+/turf/open/floor/carpet/green,
+/area/outpost/crew/bar)
+"dR" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/chem_pile,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"dT" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
-/obj/structure/disposalpipe/junction/flip{
- dir = 1
+/turf/closed/indestructible/reinforced,
+/area/outpost/maintenance/fore)
+"dU" = (
+/obj/item/kirbyplants{
+ icon_state = "plant-22"
},
-/obj/structure/cable{
- icon_state = "1-2"
+/obj/machinery/newscaster/directional/north,
+/obj/machinery/light/dim/directional/east,
+/obj/machinery/camera/autoname,
+/obj/effect/turf_decal/spline/fancy/opaque/lightgrey{
+ dir = 10
},
-/obj/effect/landmark/observer_start,
-/turf/open/floor/plasteel,
+/obj/item/reagent_containers/food/drinks/dry_ramen,
+/turf/open/floor/plasteel/tech/techmaint,
/area/outpost/hallway/central)
-"fh" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 8
+"dW" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
+/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/plasteel/tech,
-/area/outpost/cargo)
-"fj" = (
-/obj/structure/railing/corner,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/disposalpipe/junction{
- dir = 1
- },
-/turf/open/floor/plasteel/tech,
-/area/outpost/cargo)
-"fk" = (
-/obj/machinery/camera/autoname{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 10
+/obj/effect/turf_decal/steeldecal/steel_decals9,
+/obj/effect/turf_decal/steeldecal/steel_decals9{
+ dir = 8
},
/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"fv" = (
-/obj/effect/turf_decal/spline/fancy/opaque/grey{
- dir = 1
+/area/outpost/hallway/port)
+"dZ" = (
+/obj/structure/railing,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
},
+/turf/open/floor/plasteel/patterned,
+/area/outpost/cargo)
+"ee" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/garbage,
-/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
-"fC" = (
-/obj/machinery/button/door{
- pixel_y = 36;
- pixel_x = -9;
- id = "outsmall2";
- name = "window shutters"
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 1
},
-/obj/item/radio/intercom/directional/north{
- pixel_y = 32;
- pixel_x = -5
+/turf/open/floor/wood{
+ icon_state = "wood-broken4"
},
-/turf/open/floor/wood,
-/area/outpost/crew)
-"fD" = (
-/obj/machinery/door/airlock/public/glass,
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/door/firedoor/border_only{
- dir = 1
+/area/outpost/crew/bar)
+"ei" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
-/turf/open/floor/plasteel/tech,
-/area/outpost/hallway/central)
-"fI" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
-/obj/effect/turf_decal/spline/fancy/opaque/grey{
- dir = 8;
- pixel_y = 1
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/effect/turf_decal/spline/fancy/opaque/grey{
- dir = 4;
- pixel_y = 1
+/obj/effect/turf_decal/corner/opaque/black{
+ dir = 9
},
-/obj/machinery/camera/autoname,
-/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
-"fM" = (
-/obj/structure/window/reinforced{
+/obj/effect/turf_decal/industrial/stand_clear{
dir = 8
},
-/obj/effect/turf_decal/siding/thinplating{
- dir = 8
+/turf/open/floor/plasteel,
+/area/outpost/hallway/central)
+"em" = (
+/turf/closed/indestructible/reinforced,
+/area/outpost/external)
+"eq" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/effect/turf_decal/corner/opaque/neutral/three_quarters{
+ dir = 4
},
-/obj/effect/turf_decal/spline/fancy/opaque/grey{
- dir = 4;
- pixel_y = 1
+/turf/open/floor/plasteel,
+/area/outpost/hallway/port)
+"et" = (
+/obj/machinery/photocopier{
+ pixel_x = 3;
+ pixel_y = 4
},
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/outpost/crew/library)
+"ev" = (
+/obj/machinery/newscaster/directional/south,
+/obj/effect/turf_decal/corner/opaque/neutral/diagonal,
/turf/open/floor/plasteel,
/area/outpost/vacant_rooms)
-"fQ" = (
+"ey" = (
+/obj/machinery/door/firedoor/closed,
+/obj/structure/barricade/wooden/crude,
+/obj/machinery/door/airlock/mining{
+ req_access = list("106")
+ },
/obj/effect/turf_decal/industrial/warning{
- dir = 8
+ dir = 1
},
-/obj/effect/turf_decal/industrial/stand_clear{
- dir = 4
+/obj/effect/turf_decal/industrial/warning,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/plasteel/tech,
-/area/outpost/cargo)
-"fV" = (
-/obj/structure/rack,
-/obj/effect/turf_decal/box/corners{
- dir = 4
+/area/outpost/hallway/port)
+"eD" = (
+/obj/structure/cable/yellow{
+ icon_state = "6-8"
},
-/obj/effect/turf_decal/box/corners,
/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/corner_techfloor_gray{
+ dir = 5
+ },
/turf/open/floor/plasteel/tech/techmaint,
+/area/outpost/maintenance/fore)
+"eE" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 1
+ },
+/obj/effect/turf_decal/corner/opaque/neutral/diagonal,
+/obj/effect/turf_decal/spline/fancy/opaque/lightgrey{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
/area/outpost/vacant_rooms)
-"fZ" = (
-/obj/structure/table,
-/obj/structure/window/reinforced{
- dir = 8
+"eG" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
},
-/obj/structure/window/reinforced,
-/obj/item/clipboard{
- pixel_y = -3;
- pixel_x = -3
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
},
-/obj/item/pen{
- pixel_y = -4;
- pixel_x = -4
+/obj/effect/turf_decal/corner/opaque/brown/full,
+/turf/open/floor/plasteel/patterned,
+/area/outpost/cargo)
+"eQ" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
-/turf/open/floor/plasteel/tech/techmaint,
+/obj/effect/turf_decal/corner/opaque/brown/full,
+/turf/open/floor/plasteel/patterned,
/area/outpost/cargo)
-"ga" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/effect/turf_decal/spline/fancy/opaque/grey{
- dir = 4;
- pixel_y = 1
+"eU" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
-/obj/effect/turf_decal/spline/fancy/opaque/grey{
- dir = 8;
- pixel_y = 1
+/obj/effect/turf_decal/corner_techfloor_grid/diagonal,
+/turf/open/floor/plasteel/tech/techmaint,
+/area/outpost/maintenance/fore)
+"fd" = (
+/obj/machinery/mineral/processing_unit{
+ input_dir = 8;
+ output_dir = 1
},
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
-"gb" = (
-/obj/effect/turf_decal/siding/thinplating{
+/obj/effect/turf_decal/industrial/outline/yellow,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/outpost/cargo)
+"fh" = (
+/obj/effect/turf_decal/industrial/warning{
dir = 4
},
-/obj/effect/turf_decal/siding/thinplating{
+/obj/effect/turf_decal/industrial/warning{
dir = 8
},
-/obj/machinery/door/firedoor/border_only{
- dir = 8
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
-/obj/machinery/door/firedoor/border_only{
+/obj/machinery/door/poddoor/shutters/indestructible{
dir = 4
},
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+/obj/machinery/door/firedoor/border_only{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+/obj/machinery/door/firedoor/border_only{
dir = 8
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/door/airlock/security/brig{
+ req_access = list("101");
dir = 4
},
-/obj/machinery/door/airlock{
- name = "Cryogenics";
+/turf/open/floor/plasteel/tech,
+/area/outpost/security)
+"fi" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/corner/opaque/neutral/diagonal,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel,
+/area/outpost/storage)
+"fk" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/plasteel/tech,
-/area/outpost/crew/dorm)
-"gf" = (
-/obj/effect/turf_decal/box,
-/obj/structure/closet/crate/engineering,
-/turf/open/floor/plasteel/patterned/grid,
-/area/outpost/cargo)
-"gm" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 1
+/obj/structure/sign/plaques/kiddie/library{
+ pixel_y = 26
},
-/obj/machinery/firealarm/directional/south,
-/turf/open/floor/plasteel/tech,
-/area/outpost/cargo)
-"gr" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
-/turf/open/floor/plasteel/tech,
-/area/outpost/cargo)
-"gs" = (
+/obj/effect/turf_decal/siding/wood,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
+ dir = 6
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/outpost/crew/library)
+"fq" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/foamedmetal,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"fw" = (
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/turf/open/floor/plasteel/tech,
-/area/outpost/cargo)
-"gy" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/disposalpipe/segment{
+/obj/effect/turf_decal/corner_techfloor_gray{
dir = 10
},
-/turf/open/floor/wood,
-/area/outpost/crew)
-"gz" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/corner_steel_grid{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"fE" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
/obj/effect/turf_decal/corner/opaque/black{
dir = 5
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/industrial/stand_clear{
+ dir = 1
+ },
/turf/open/floor/plasteel,
/area/outpost/hallway/central)
-"gF" = (
-/obj/structure/rack,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/tech/techmaint,
-/area/outpost/vacant_rooms)
-"gJ" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+"fG" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/effect/turf_decal/spline/fancy/opaque/lightgrey{
dir = 1
},
-/obj/machinery/newscaster/directional/east,
-/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/corner/opaque/neutral/diagonal,
/turf/open/floor/plasteel,
/area/outpost/vacant_rooms)
-"gK" = (
-/obj/item/kirbyplants/random,
-/obj/structure/cable{
- icon_state = "0-2"
+"fI" = (
+/obj/effect/spawner/structure/window/reinforced/indestructable,
+/turf/open/floor/plating,
+/area/outpost/hallway/central)
+"fK" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood{
+ icon_state = "wood-broken6"
+ },
+/area/outpost/crew/bar)
+"fN" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 1
},
-/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = -32
+/obj/effect/turf_decal/corner/opaque/neutral{
+ dir = 8
},
-/obj/machinery/power/apc/auto_name/directional/north,
/turf/open/floor/plasteel,
-/area/outpost/crew)
-"gN" = (
-/obj/machinery/airalarm/directional/east,
-/turf/open/floor/wood,
-/area/outpost/crew)
-"gP" = (
-/obj/structure/sink{
- dir = 4;
- pixel_x = -13
+/area/outpost/hallway/port)
+"fP" = (
+/obj/structure/sign/poster/random{
+ pixel_x = 28
},
-/obj/structure/mirror{
- pixel_x = -28
+/turf/open/floor/wood{
+ icon_state = "wood-broken4"
},
-/obj/machinery/light/small/directional/north,
+/area/outpost/crew/bar)
+"fR" = (
+/obj/structure/railing,
+/obj/effect/turf_decal/corner/opaque/brown{
+ dir = 5
+ },
+/obj/structure/extinguisher_cabinet/directional/north,
/turf/open/floor/plasteel/patterned,
-/area/outpost/crew/dorm)
-"gU" = (
-/obj/structure/railing/corner{
+/area/outpost/cargo)
+"fZ" = (
+/obj/structure/chair,
+/obj/effect/landmark/ert_outpost_spawn,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/outpost/security)
+"ga" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/corner/opaque/neutral{
dir = 8
},
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+/turf/open/floor/plasteel,
+/area/outpost/hallway/central)
+"gb" = (
+/obj/structure/flora/grass/jungle,
+/obj/structure/flora/grass/jungle,
+/obj/structure/flora/junglebush/large,
+/turf/open/floor/grass/ship/jungle,
+/area/outpost/hallway/port)
+"gf" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/machinery/firealarm/directional/west,
+/obj/item/kirbyplants/random,
+/obj/effect/turf_decal/corner/opaque/neutral{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/outpost/hallway/port)
+"gg" = (
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/effect/turf_decal/corner/opaque/red{
dir = 1
},
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+/obj/effect/turf_decal/steeldecal/steel_decals_central6,
+/turf/open/floor/plasteel,
+/area/outpost/security)
+"go" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
+/obj/effect/turf_decal/corner/opaque/neutral{
dir = 1
},
-/obj/structure/disposalpipe/segment{
- dir = 9
+/turf/open/floor/plasteel,
+/area/outpost/hallway/port)
+"gq" = (
+/turf/closed/indestructible/reinforced,
+/area/outpost/crew/janitor)
+"gr" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
-/obj/structure/cable{
- icon_state = "4-8"
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 4
},
-/turf/open/floor/plasteel/tech,
-/area/outpost/cargo)
-"gX" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/plasteel/tech,
-/area/outpost/cargo)
-"hd" = (
-/obj/effect/turf_decal/siding/wood{
+/turf/open/floor/plasteel,
+/area/outpost/hallway/port)
+"gt" = (
+/obj/structure/rack,
+/obj/item/skub,
+/turf/open/floor/plasteel/mono,
+/area/outpost/vacant_rooms)
+"gz" = (
+/obj/machinery/vending/cola/random,
+/obj/item/radio/intercom/directional/east,
+/obj/effect/turf_decal/spline/fancy/opaque/lightgrey{
dir = 1
},
-/obj/effect/turf_decal/siding/wood/corner,
-/obj/machinery/light/directional/south,
-/turf/open/floor/plasteel/grimy,
-/area/outpost/crew)
-"hv" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/sign/poster/official/random{
- pixel_y = -32;
- pixel_x = 32
- },
-/turf/open/floor/plasteel/tech,
-/area/outpost/cargo)
-"hx" = (
-/obj/effect/turf_decal/box/corners,
-/obj/structure/railing,
-/obj/effect/turf_decal/spline/fancy/opaque/black,
-/turf/open/floor/plasteel/patterned/grid,
-/area/outpost/cargo)
-"hA" = (
-/obj/effect/turf_decal/spline/fancy/wood,
-/turf/open/floor/wood,
-/area/outpost/vacant_rooms)
-"hB" = (
-/obj/structure/rack,
-/obj/machinery/light/small/broken/directional/east,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/plasteel/tech/techmaint,
-/area/outpost/vacant_rooms)
-"hG" = (
-/obj/machinery/light/directional/east,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/area/outpost/hallway/central)
+"gA" = (
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"hI" = (
-/obj/structure/railing{
- dir = 1
+/obj/effect/turf_decal/corner_techfloor_gray{
+ dir = 6
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/tech/techmaint,
+/area/outpost/maintenance/fore)
+"gC" = (
+/obj/effect/decal/cleanable/cobweb,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"gE" = (
+/obj/item/radio/intercom/directional/east,
+/obj/structure/table/wood,
+/turf/open/floor/wood,
+/area/outpost/crew/bar)
+"gO" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "outpost1"
},
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/outpost/cargo)
+"gP" = (
+/obj/structure/filingcabinet/double,
+/turf/open/floor/plasteel/dark,
+/area/outpost/cargo/office)
+"gR" = (
+/obj/effect/decal/cleanable/greenglow,
+/turf/open/floor/plating,
+/area/outpost/maintenance/central)
+"gS" = (
+/obj/effect/spawner/lootdrop/grille_or_trash,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"gT" = (
+/obj/structure/railing,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/tech,
+/turf/open/floor/plasteel/patterned,
/area/outpost/cargo)
-"hU" = (
-/obj/machinery/airalarm/directional/west,
-/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
-"ia" = (
-/obj/effect/turf_decal/siding/thinplating{
- dir = 8
- },
-/obj/effect/turf_decal/siding/thinplating{
- dir = 4
+"gU" = (
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/outpost/security)
+"gW" = (
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
},
-/obj/machinery/door/firedoor/border_only{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
},
-/obj/machinery/door/firedoor/border_only{
- dir = 8
+/obj/effect/turf_decal/steeldecal/steel_decals_central6,
+/turf/open/floor/plasteel/patterned,
+/area/outpost/cargo)
+"gZ" = (
+/obj/effect/turf_decal/industrial/caution,
+/obj/machinery/light/dim/directional/south,
+/obj/effect/turf_decal/corner/opaque/brown{
+ dir = 10
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
+/turf/open/floor/plasteel/patterned,
+/area/outpost/cargo)
+"hb" = (
+/obj/effect/turf_decal/industrial/caution,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/disposalpipe/segment{
+/turf/open/floor/plasteel/patterned,
+/area/outpost/cargo)
+"hg" = (
+/obj/structure/disposalpipe/trunk{
dir = 4
},
-/obj/structure/cable{
- icon_state = "4-8"
+/obj/structure/disposaloutlet{
+ dir = 1
},
-/obj/machinery/door/airlock/public/glass{
- dir = 4
+/obj/machinery/conveyor/auto{
+ dir = 1;
+ id = "outpost3"
},
-/obj/machinery/door/poddoor/preopen{
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"hj" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/techfloor{
dir = 8
},
-/turf/open/floor/plasteel/tech,
-/area/outpost/hallway/central)
-"im" = (
-/obj/effect/turf_decal/corner/opaque/green/three_quarters{
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/plating,
+/area/outpost/maintenance/central)
+"hk" = (
+/obj/structure/frame,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"hq" = (
+/turf/open/floor/plating/asteroid,
+/area/outpost/external)
+"hs" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
dir = 8
},
-/obj/item/kirbyplants/random,
-/obj/structure/cable{
- icon_state = "0-8"
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/outpost/maintenance/central)
+"hz" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
},
-/obj/machinery/power/apc/auto_name/directional/north,
-/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"iw" = (
+/obj/structure/grille/indestructable,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"hA" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/structure/cable/yellow,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
+/obj/machinery/camera/autoname{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
/obj/effect/turf_decal/corner/opaque/black{
dir = 5
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/camera/autoname{
- dir = 5
+/obj/effect/turf_decal/corner/opaque/neutral{
+ dir = 10
},
/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
-"iB" = (
-/obj/effect/turf_decal/corner/opaque/black{
- dir = 5
+/area/outpost/hallway/port)
+"hD" = (
+/obj/structure/disposalpipe/trunk/multiz{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/firealarm/directional/east,
+/turf/open/floor/plasteel/tech/techmaint,
+/area/outpost/maintenance/fore)
+"hJ" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
-"iF" = (
-/obj/structure/railing,
-/turf/open/floor/plasteel/tech,
-/area/outpost/cargo)
-"iG" = (
-/turf/open/floor/plasteel/elevatorshaft,
-/area/outpost/cargo)
-"iI" = (
-/obj/effect/turf_decal/spline/fancy/wood{
+/area/outpost/hallway/port)
+"hK" = (
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/salvage_laser,
+/obj/effect/spawner/lootdrop/salvage_capacitor,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"hM" = (
+/obj/structure/railing/corner{
dir = 8
},
-/turf/open/floor/wood,
-/area/outpost/vacant_rooms)
-"iL" = (
-/obj/effect/turf_decal/box/corners{
- dir = 1
+/obj/machinery/light/dim/directional/north,
+/obj/effect/turf_decal/corner/opaque/brown{
+ dir = 6
},
-/obj/structure/closet/crate,
-/obj/machinery/light/directional/north,
-/turf/open/floor/plasteel/patterned/grid,
+/obj/machinery/camera/autoname{
+ dir = 9
+ },
+/turf/open/floor/plasteel/patterned,
/area/outpost/cargo)
-"iQ" = (
-/obj/machinery/light/directional/north,
+"hO" = (
+/obj/structure/flora/grass/jungle/b,
+/turf/open/floor/grass/ship/jungle,
+/area/outpost/hallway/central)
+"hS" = (
+/obj/item/radio/intercom/directional/east,
+/obj/structure/table/wood,
+/obj/item/toy/cards/deck/tarot{
+ pixel_x = 5;
+ pixel_y = -2
+ },
+/obj/item/reagent_containers/food/drinks/mug/tea{
+ pixel_x = -7;
+ pixel_y = -2
+ },
+/turf/open/floor/wood,
+/area/outpost/crew/bar)
+"hW" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
+/obj/effect/turf_decal/corner/opaque/neutral{
+ dir = 8
},
+/obj/effect/turf_decal/floordetail/tiled,
/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"iV" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+/area/outpost/hallway/port)
+"hX" = (
+/obj/effect/turf_decal/corner/opaque/neutral/diagonal,
+/obj/effect/turf_decal/spline/fancy/opaque/lightgrey/corner{
dir = 4
},
-/obj/machinery/camera/autoname{
+/obj/machinery/light/dim/directional/east,
+/turf/open/floor/plasteel,
+/area/outpost/vacant_rooms)
+"hY" = (
+/obj/structure/closet/crate/trashcart,
+/turf/open/floor/plating,
+/area/outpost/maintenance/central)
+"hZ" = (
+/obj/structure/table/wood,
+/obj/effect/spawner/lootdrop/donut,
+/turf/open/floor/wood,
+/area/outpost/crew/bar)
+"ib" = (
+/obj/structure/reagent_dispensers/beerkeg,
+/obj/effect/turf_decal/corner/transparent/brown/full,
+/turf/open/floor/plasteel,
+/area/outpost/crew/bar)
+"ic" = (
+/obj/structure/flora/grass/jungle,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 5
},
-/turf/open/floor/plasteel/tech,
-/area/outpost/cargo)
-"iY" = (
-/obj/structure/window/reinforced/tinted{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 6
},
-/obj/structure/window/reinforced/tinted{
+/turf/open/floor/grass/ship/jungle,
+/area/outpost/hallway/port)
+"id" = (
+/obj/machinery/holopad/emergency/bar,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/carpet/green,
+/area/outpost/crew/bar)
+"ie" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/grass,
-/area/outpost/crew)
-"jd" = (
-/obj/effect/turf_decal/corner/opaque/green/three_quarters{
- dir = 8
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 4
},
-/obj/machinery/vending/sovietsoda,
-/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"je" = (
-/obj/effect/turf_decal/siding/wood,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
},
+/obj/structure/extinguisher_cabinet/directional/south,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark,
+/area/outpost/cargo/office)
+"ii" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/outpost/crew/bar)
+"ip" = (
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"iq" = (
+/obj/machinery/light/small/directional/east,
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
+/turf/open/floor/wood,
+/area/outpost/crew/bar)
+"ir" = (
+/obj/machinery/light/small/directional/east,
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/siding/wood,
+/turf/open/floor/wood,
+/area/outpost/crew/bar)
+"it" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
- icon_state = "4-8"
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"iw" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
},
+/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/wood,
-/area/outpost/crew)
-"jk" = (
-/obj/effect/turf_decal/box,
-/obj/machinery/light/directional/east,
-/turf/open/floor/plasteel/patterned/grid,
-/area/outpost/cargo)
-"jl" = (
+/area/outpost/crew/library)
+"iD" = (
+/obj/effect/spawner/lootdrop/waste/trash,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"iG" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/turf_decal/corner/opaque/neutral,
+/turf/open/floor/plasteel,
+/area/outpost/hallway/port)
+"iH" = (
+/obj/machinery/light/dim/directional/east,
/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/stairs{
- dir = 1
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/outpost/storage)
+"iI" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
},
-/area/outpost/hallway/central)
-"jn" = (
-/obj/effect/turf_decal/box/corners{
+/obj/effect/turf_decal/industrial/warning{
dir = 8
},
-/obj/structure/closet/cardboard,
-/turf/open/floor/plasteel/patterned/grid,
-/area/outpost/cargo)
-"jp" = (
-/obj/effect/landmark{
- name = "Primary Cargo Shaft"
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
-/turf/open/floor/plasteel/elevatorshaft,
-/area/outpost/cargo)
-"jx" = (
-/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"jC" = (
-/turf/open/floor/plasteel/patterned,
-/area/outpost/cargo)
-"jD" = (
-/obj/machinery/newscaster/directional/south,
-/turf/open/floor/wood,
-/area/outpost/crew)
-"jH" = (
-/obj/structure/rack,
-/obj/effect/turf_decal/box/corners,
-/turf/open/floor/plasteel/tech/techmaint,
-/area/outpost/vacant_rooms)
-"jI" = (
-/obj/machinery/newscaster/directional/east,
-/turf/open/floor/wood,
-/area/outpost/crew)
-"jM" = (
-/obj/effect/turf_decal/corner/opaque/black{
- dir = 6
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/machinery/light/directional/east,
-/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"jN" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 8
+/turf/open/floor/plasteel/tech,
+/area/outpost/hallway/port)
+"iQ" = (
+/obj/item/trash/can/food/beans{
+ pixel_x = 5;
+ pixel_y = 5
},
-/obj/effect/turf_decal/siding/thinplating{
- dir = 4
+/obj/effect/decal/cleanable/cobweb,
+/obj/machinery/light/small/directional/north,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/trash/can/food/beans{
+ pixel_x = 9;
+ pixel_y = 8
},
-/obj/machinery/door/firedoor/border_only{
- dir = 8
+/obj/item/trash/can/food/beans{
+ pixel_y = 1
},
-/obj/machinery/door/firedoor/border_only{
- dir = 4
+/obj/item/reagent_containers/food/snacks/canned/beans{
+ pixel_x = 13;
+ pixel_y = -9
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
+/turf/open/floor/plating/asteroid,
+/area/outpost/maintenance/central)
+"iV" = (
+/obj/effect/spawner/structure/window/reinforced/indestructable,
+/turf/open/floor/plating,
+/area/outpost/vacant_rooms/office)
+"iY" = (
+/obj/effect/turf_decal/siding/wood,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/outpost/crew/bar)
+"jd" = (
+/obj/effect/turf_decal/ihejirika_small/right,
+/turf/open/floor/plating,
+/area/outpost/maintenance/central)
+"je" = (
+/obj/effect/spawner/structure/window/reinforced/indestructable,
+/turf/open/floor/plating,
+/area/outpost/crew/bar)
+"jg" = (
+/obj/structure/rack,
+/obj/machinery/light/dim/directional/west,
+/obj/item/reagent_containers/food/drinks/waterbottle,
+/turf/open/floor/plasteel/mono,
+/area/outpost/storage)
+"jj" = (
+/obj/machinery/light/dim/directional/east,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/carpet/green,
+/area/outpost/crew/bar)
+"jn" = (
+/obj/structure/table,
+/obj/effect/spawner/lootdrop/maintenance/two,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/outpost/maintenance/central)
+"jo" = (
+/obj/structure/railing,
+/obj/effect/turf_decal/corner/opaque/brown{
+ dir = 5
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
+/turf/open/floor/plasteel/patterned,
+/area/outpost/cargo)
+"js" = (
+/obj/effect/turf_decal/box/corners,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/crate,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/outpost/cargo)
+"jx" = (
+/obj/item/trash/can/food/beans{
+ pixel_x = -5
},
+/obj/effect/decal/cleanable/generic,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating/asteroid,
+/area/outpost/maintenance/central)
+"jC" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/tech/techmaint,
+/area/outpost/maintenance/central)
+"jH" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/machinery/door/airlock/public/glass{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/door/poddoor/preopen{
- dir = 4
+/obj/effect/turf_decal/corner/opaque/black{
+ dir = 6
},
-/turf/open/floor/plasteel/tech,
+/turf/open/floor/plasteel,
/area/outpost/hallway/central)
-"jS" = (
-/obj/effect/turf_decal/spline/fancy/opaque/grey{
- pixel_x = -1
+"jI" = (
+/obj/machinery/door/airlock{
+ dir = 1;
+ name = "Lounge"
},
-/obj/effect/turf_decal/spline/fancy/opaque/grey/corner{
+/obj/effect/turf_decal/industrial/warning,
+/obj/effect/turf_decal/industrial/warning{
dir = 1
},
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
-"jU" = (
-/obj/structure/table,
-/obj/machinery/door/window{
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/plasteel/tech,
+/area/outpost/crew/bar)
+"jK" = (
+/obj/structure/railing{
dir = 8
},
-/obj/effect/turf_decal/siding/thinplating{
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned,
+/area/outpost/cargo)
+"jL" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/turf_decal/industrial/warning{
dir = 8
},
-/obj/machinery/firealarm/directional/north,
-/turf/open/floor/plasteel/patterned/cargo_one,
-/area/outpost/vacant_rooms)
-"jW" = (
-/obj/machinery/airalarm/directional/east,
-/obj/item/radio/intercom/directional/north{
- pixel_y = 32
+/turf/open/floor/plasteel/tech,
+/area/outpost/hallway/central)
+"jM" = (
+/obj/effect/spawner/lootdrop/chicken,
+/turf/open/floor/ship/dirt,
+/area/outpost/hallway/port)
+"jO" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/corner/opaque/neutral{
+ dir = 8
},
/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
+/area/outpost/hallway/port)
+"jR" = (
+/obj/structure/chair/stool/bar{
+ dir = 1;
+ pixel_y = 13
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/turf/open/floor/wood,
+/area/outpost/crew/bar)
+"jU" = (
+/obj/structure/table/wood,
+/obj/machinery/computer/bookmanagement,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/outpost/crew/library)
"kb" = (
-/obj/structure/closet/crate,
-/turf/open/floor/plasteel/patterned/grid,
-/area/outpost/cargo)
-"kg" = (
-/obj/machinery/computer/cryopod/directional/west,
-/obj/structure/table,
-/obj/effect/turf_decal/corner/opaque/bottlegreen/border{
- dir = 9
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/machinery/camera/autoname{
+ dir = 8
},
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+/obj/effect/turf_decal/corner/opaque/neutral{
dir = 4
},
-/obj/machinery/newscaster/directional/north{
- pixel_y = 32
+/turf/open/floor/plasteel,
+/area/outpost/hallway/port)
+"kd" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"kh" = (
+/obj/effect/turf_decal/corner/opaque/neutral/diagonal,
/turf/open/floor/plasteel,
-/area/outpost/crew/dorm)
-"ki" = (
-/obj/structure/chair/office,
-/obj/machinery/light/small/directional/west,
-/turf/open/floor/plasteel/grimy,
-/area/outpost/crew/dorm)
+/area/outpost/vacant_rooms)
+"km" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/confetti,
+/turf/open/floor/wood,
+/area/outpost/crew/library)
"ks" = (
/turf/open/floor/plasteel/elevatorshaft,
/area/outpost/hallway/central)
-"kA" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/obj/effect/turf_decal/corner/opaque/green/three_quarters{
+"kx" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/on/layer4{
dir = 1
},
-/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"kF" = (
-/obj/effect/turf_decal/corner/opaque/black{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/disposalpipe/junction/flip{
- dir = 1
+/turf/open/floor/plating,
+/area/outpost/maintenance/central)
+"ky" = (
+/obj/structure/sign/painting/library{
+ pixel_y = -26
},
-/obj/structure/cable{
- icon_state = "2-4"
+/obj/effect/decal/cleanable/glass,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/outpost/crew/library)
+"kA" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
},
-/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"kH" = (
-/obj/effect/turf_decal/siding/thinplating,
-/turf/open/floor/plasteel/tech,
-/area/outpost/hallway/central)
-"kI" = (
-/obj/structure/curtain/cloth/fancy,
-/obj/effect/turf_decal/siding/wood,
-/obj/effect/turf_decal/siding/wood{
- dir = 1
+/obj/structure/disposalpipe/segment{
+ dir = 10
},
-/turf/open/floor/plasteel/mono,
-/area/outpost/crew)
-"kJ" = (
-/obj/structure/table/wood,
-/obj/machinery/light/floor{
- bulb_colour = "#FFDDBB";
- bulb_power = 0.3
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
},
-/turf/open/floor/carpet,
-/area/outpost/crew)
-"kP" = (
-/obj/effect/turf_decal/spline/fancy/opaque/grey{
- dir = 1;
- pixel_x = -1
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
},
/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
-"kQ" = (
-/obj/effect/turf_decal/siding/thinplating{
- dir = 1
+/turf/open/floor/plating,
+/area/outpost/maintenance/central)
+"kE" = (
+/obj/machinery/light/small/directional/south,
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/effect/turf_decal/siding/thinplating,
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/door/firedoor/border_only{
- dir = 1
+/obj/structure/barricade/wooden,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"kH" = (
+/obj/item/shovel/spoon,
+/turf/open/floor/plating/asteroid,
+/area/outpost/external)
+"kM" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
},
-/obj/machinery/door/airlock/public/glass,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/plasteel/tech,
-/area/outpost/vacant_rooms)
-"kR" = (
-/obj/structure/rack,
-/obj/effect/turf_decal/box/corners{
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"kQ" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/machinery/light/small/directional/south,
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/effect/turf_decal/box/corners,
-/turf/open/floor/plasteel/tech/techmaint,
-/area/outpost/vacant_rooms)
-"kW" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 6
- },
-/turf/open/floor/plasteel/grimy,
-/area/outpost/crew)
-"kY" = (
-/obj/effect/turf_decal/siding/wood/corner{
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
},
-/turf/open/floor/plasteel/grimy,
-/area/outpost/crew)
-"lb" = (
-/obj/machinery/door/poddoor/ert,
-/obj/machinery/door/airlock/grunge,
-/turf/open/floor/plasteel/tech/grid,
-/area/outpost/operations)
-"lj" = (
-/obj/structure/table/wood,
-/obj/structure/sign/poster/contraband/random{
- pixel_y = -32
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
},
-/turf/open/floor/plasteel/grimy,
-/area/outpost/crew)
-"lk" = (
-/obj/item/kirbyplants/random,
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 10
+/obj/effect/turf_decal/corner/opaque/neutral{
+ dir = 8
},
/turf/open/floor/plasteel,
/area/outpost/hallway/central)
-"lp" = (
-/obj/effect/turf_decal/siding/wood/corner{
+"kR" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/effect/turf_decal/corner/opaque/neutral{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/wood,
-/area/outpost/crew)
-"ls" = (
-/obj/effect/turf_decal/corner/opaque/black{
- dir = 6
- },
/turf/open/floor/plasteel,
/area/outpost/hallway/central)
-"lx" = (
-/obj/structure/sign/poster/contraband/random{
- pixel_y = -32
+"kT" = (
+/obj/machinery/mineral/processing_unit_console{
+ pixel_y = 20;
+ machinedir = 2;
+ output_dir = 4
},
-/obj/item/kirbyplants/random,
-/obj/effect/turf_decal/corner/opaque/green/three_quarters,
-/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"lz" = (
-/obj/effect/turf_decal/box/corners{
- dir = 4
+/obj/structure/railing,
+/obj/effect/turf_decal/corner/opaque/brown{
+ dir = 5
},
-/obj/structure/railing{
- dir = 1
+/turf/open/floor/plasteel/patterned,
+/area/outpost/cargo)
+"kU" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 1
- },
-/turf/open/floor/plasteel/patterned/grid,
-/area/outpost/cargo)
-"lC" = (
-/obj/structure/table,
-/obj/structure/window/reinforced{
- dir = 8
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/open/floor/plasteel/tech/techmaint,
-/area/outpost/cargo)
-"lH" = (
-/obj/machinery/door/window/brigdoor/southleft,
-/obj/effect/turf_decal/siding/thinplating,
-/turf/open/floor/plasteel/patterned/cargo_one,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"la" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/machinery/holopad/emergency/janitor,
+/obj/effect/turf_decal/trimline/opaque/purple/filled,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel,
+/area/outpost/crew/janitor)
+"lb" = (
+/obj/effect/turf_decal/corner/opaque/neutral/diagonal,
+/obj/structure/extinguisher_cabinet/directional/east,
+/turf/open/floor/plasteel,
/area/outpost/vacant_rooms)
-"lK" = (
-/obj/structure/railing{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "2-8"
+"lh" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 4
},
-/turf/open/floor/plasteel/tech,
-/area/outpost/cargo)
-"lP" = (
-/obj/structure/railing/corner{
+/obj/effect/turf_decal/corner/opaque/neutral{
dir = 8
},
-/obj/effect/turf_decal/industrial/stand_clear{
- dir = 1
+/obj/effect/turf_decal/floordetail/tiled,
+/turf/open/floor/plasteel,
+/area/outpost/hallway/central)
+"lk" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/effect/turf_decal/spline/fancy/opaque/black/corner{
- dir = 8
+/obj/effect/turf_decal/siding/wood,
+/obj/machinery/light/small/directional/north,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 4
},
-/obj/machinery/camera/autoname{
- dir = 8
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/outpost/crew/library)
+"lo" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
},
-/turf/open/floor/plasteel/tech,
-/area/outpost/cargo)
-"lS" = (
-/obj/effect/turf_decal/corner/opaque/bottlegreen{
- dir = 10
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"lq" = (
+/obj/machinery/door/airlock/maintenance{
+ req_access = list("101")
},
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+/obj/effect/turf_decal/industrial/warning,
+/obj/effect/turf_decal/industrial/warning{
dir = 1
},
-/obj/machinery/light/small/directional/south,
-/turf/open/floor/plasteel,
-/area/outpost/crew/dorm)
-"lW" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
-/obj/machinery/airalarm/directional/north,
-/obj/effect/turf_decal/spline/fancy/opaque/grey{
- dir = 4;
- pixel_y = 1
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/firedoor/border_only{
+ dir = 1
},
-/obj/effect/turf_decal/spline/fancy/opaque/grey{
- dir = 8;
- pixel_y = 1
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/oil/slippery,
+/obj/effect/mapping_helpers/airlock/locked,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/plasteel/tech,
+/area/outpost/maintenance/fore)
+"ls" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
-"lX" = (
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
/turf/open/floor/plasteel,
/area/outpost/hallway/central)
-"lZ" = (
-/obj/effect/turf_decal/siding/wood{
+"lt" = (
+/obj/effect/turf_decal/industrial/warning,
+/obj/effect/turf_decal/industrial/warning{
dir = 1
},
-/obj/structure/cable{
- icon_state = "1-2"
+/obj/machinery/door/window{
+ req_access = list("101")
},
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 8
+/obj/machinery/door/window{
+ req_access = list("101");
+ dir = 1
},
-/turf/open/floor/plasteel/grimy,
-/area/outpost/crew)
-"mg" = (
-/obj/effect/turf_decal/box,
-/obj/structure/closet/crate,
-/obj/machinery/light/directional/west,
-/turf/open/floor/plasteel/patterned/grid,
-/area/outpost/cargo)
-"ml" = (
-/obj/structure/table/wood,
-/turf/open/floor/carpet,
-/area/outpost/crew)
-"mn" = (
-/obj/structure/window/reinforced{
- dir = 4
+/obj/effect/turf_decal/floordetail/tiled,
+/obj/machinery/door/firedoor/border_only{
+ dir = 1
},
-/obj/structure/window/reinforced,
-/obj/structure/table/wood,
-/obj/machinery/vending/boozeomat,
-/turf/open/floor/carpet,
-/area/outpost/crew)
-"mp" = (
+/obj/machinery/door/firedoor/border_only,
+/turf/open/floor/plasteel/tech,
+/area/outpost/security)
+"lw" = (
/obj/machinery/light/small/directional/south,
-/obj/effect/decal/cleanable/confetti,
-/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
-"ms" = (
-/obj/effect/turf_decal/corner/opaque/black{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+/obj/effect/turf_decal/siding/wood/corner{
dir = 4
},
-/turf/open/floor/plasteel,
+/obj/effect/turf_decal/siding/wood/corner,
+/turf/open/floor/wood,
+/area/outpost/crew/bar)
+"lx" = (
+/obj/machinery/light/small/directional/north,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/steeldecal/steel_decals_central2,
+/turf/open/floor/plating,
+/area/outpost/maintenance/central)
+"lA" = (
+/obj/structure/flora/grass/jungle,
+/obj/effect/spawner/lootdrop/chicken,
+/turf/open/floor/grass/ship/jungle,
/area/outpost/hallway/central)
-"mt" = (
+"lB" = (
+/obj/machinery/light/small/directional/west,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/outpost/maintenance/central)
+"lE" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/effect/decal/cleanable/insectguts,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"lG" = (
+/obj/machinery/door/airlock/public,
+/obj/effect/turf_decal/industrial/warning,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/firedoor/border_only{
+ dir = 1
+ },
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/cable{
+/turf/open/floor/plasteel/tech,
+/area/outpost/vacant_rooms)
+"lH" = (
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment{
- dir = 9
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+/obj/structure/extinguisher_cabinet/directional/east,
+/obj/effect/decal/cleanable/wrapping{
+ pixel_y = 11;
+ pixel_x = 3
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/outpost/crew/library)
+"lM" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/steeldecal/steel_decals9,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"lX" = (
+/obj/structure/rack,
+/obj/effect/turf_decal/steeldecal/steel_decals_central2{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/outpost/maintenance/central)
+"lY" = (
+/obj/machinery/cryopod{
+ dir = 4
+ },
+/obj/machinery/camera/autoname,
+/obj/effect/turf_decal/corner_steel_grid{
dir = 5
},
-/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"mz" = (
-/obj/machinery/firealarm/directional/north,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/outpost/security)
+"mb" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
-"mA" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/corner/opaque/black{
- dir = 6
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
-"mB" = (
-/obj/structure/railing{
- dir = 1
+ dir = 4
},
-/obj/structure/cable{
+/turf/open/floor/wood,
+/area/outpost/crew/bar)
+"md" = (
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/turf/open/floor/plasteel/tech,
-/area/outpost/cargo)
-"mC" = (
-/turf/open/space/basic,
-/area/space)
-"mF" = (
-/obj/structure/window/reinforced{
- dir = 8
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/effect/turf_decal/siding/thinplating{
- dir = 8
+/turf/open/floor/plasteel/patterned,
+/area/outpost/cargo)
+"mf" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
},
-/obj/effect/turf_decal/spline/fancy/opaque/grey{
- dir = 4;
- pixel_y = 1
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"mk" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
},
-/obj/machinery/newscaster/directional/north{
- pixel_y = 32
+/obj/structure/disposalpipe/segment{
+ dir = 6
},
-/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
-"mG" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 8
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"mm" = (
+/obj/machinery/light/dim/directional/east,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/outpost/storage)
+"mp" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/machinery/camera/autoname{
- dir = 9
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
},
-/turf/open/floor/plasteel/tech,
-/area/outpost/cargo)
-"mL" = (
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 9
+/obj/structure/disposalpipe/junction{
+ dir = 1
},
-/obj/structure/closet/emcloset/wall{
- dir = 4;
- pixel_x = -28
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 8
},
/turf/open/floor/plasteel,
/area/outpost/hallway/central)
-"mO" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+"mr" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/industrial/warning,
+/obj/effect/turf_decal/industrial/warning{
dir = 1
},
/turf/open/floor/plasteel/tech,
-/area/outpost/cargo)
-"mQ" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/door/poddoor/ert,
-/turf/closed/indestructible/reinforced,
-/area/outpost/operations)
-"mT" = (
-/obj/machinery/light/directional/south,
-/turf/open/floor/plasteel/patterned/grid,
-/area/outpost/cargo)
-"nc" = (
-/obj/effect/turf_decal/spline/fancy/opaque/grey{
- dir = 1
+/area/outpost/maintenance/fore)
+"ms" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/structure/sign/directions/supply{
+ pixel_y = 21;
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
+/obj/effect/turf_decal/corner/opaque/black{
+ dir = 10
},
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/plasteel,
+/area/outpost/hallway/central)
+"mv" = (
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/minor/kittyears_or_rabbitears,
+/obj/effect/decal/cleanable/wrapping,
+/turf/open/floor/plasteel/mono,
/area/outpost/vacant_rooms)
-"nd" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
+"mA" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
-/turf/open/floor/plasteel/patterned,
-/area/outpost/crew/dorm)
-"nf" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/sign/number/random,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/outpost/hallway/central)
+"mB" = (
+/obj/machinery/door/firedoor/closed,
+/obj/structure/barricade/wooden/crude,
+/obj/effect/turf_decal/industrial/warning{
dir = 1
},
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/wood,
-/area/outpost/crew)
-"ng" = (
-/obj/effect/turf_decal/siding/wood/corner,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
+/obj/effect/turf_decal/industrial/warning,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/door/airlock/mining{
+ req_access = list("106")
},
-/obj/structure/cable{
+/turf/open/floor/plasteel/tech,
+/area/outpost/hallway/port)
+"mC" = (
+/turf/open/space/basic,
+/area/space)
+"mJ" = (
+/obj/structure/chair/wood,
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
/turf/open/floor/wood,
-/area/outpost/crew)
-"np" = (
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 6
+/area/outpost/crew/bar)
+"mM" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
},
-/obj/structure/chair{
+/obj/effect/turf_decal/siding/wood{
dir = 1
},
-/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"ns" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4,
/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/turf/open/floor/wood,
+/area/outpost/crew/bar)
+"mN" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
+/obj/effect/turf_decal/corner/opaque/brown/full,
+/turf/open/floor/plasteel/patterned,
+/area/outpost/cargo)
+"mP" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/steeldecal/steel_decals3,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"mT" = (
+/obj/structure/table,
+/obj/item/trash/can/food/beans{
+ pixel_x = -4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/outpost/maintenance/central)
+"mU" = (
+/obj/structure/closet/crate/trashcart,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"mV" = (
+/obj/machinery/conveyor/auto{
+ dir = 5;
+ id = "outpost3"
+ },
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"mW" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/effect/turf_decal/corner/opaque/red{
dir = 4
},
-/obj/structure/cable{
+/turf/open/floor/plasteel,
+/area/outpost/security)
+"nb" = (
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"nc" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/machinery/airalarm/directional/east,
+/obj/effect/turf_decal/corner/opaque/neutral,
/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"nw" = (
-/obj/effect/turf_decal/siding/wood/corner{
+/area/outpost/hallway/port)
+"nd" = (
+/obj/structure/chair/office{
dir = 1
},
-/obj/machinery/light/directional/east,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark,
+/area/outpost/cargo/office)
+"nn" = (
+/obj/effect/decal/cleanable/food/tomato_smudge,
+/obj/machinery/airalarm/directional/north,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood/mahogany,
+/area/outpost/crew/bar)
+"no" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
/turf/open/floor/wood,
-/area/outpost/crew)
-"nz" = (
-/turf/open/floor/plasteel,
+/area/outpost/crew/bar)
+"np" = (
+/obj/structure/grille/indestructable,
+/turf/open/floor/plating,
+/area/outpost/maintenance/central)
+"nq" = (
+/obj/effect/spawner/structure/window/reinforced/indestructable,
+/turf/open/floor/plating,
/area/outpost/vacant_rooms)
-"nE" = (
-/obj/structure/chair/wood/wings{
- dir = 8
+"nt" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/open/floor/carpet,
-/area/outpost/crew)
-"nI" = (
-/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/effect/turf_decal/corner/opaque/black{
dir = 5
},
+/obj/effect/turf_decal/corner/opaque/black,
/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"nK" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+/area/outpost/hallway/port)
+"ny" = (
+/obj/structure/railing{
dir = 4
},
-/obj/effect/turf_decal/spline/fancy/opaque/grey{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
-"nM" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/corner/opaque/black{
- dir = 6
+/obj/machinery/firealarm/directional/west,
+/obj/effect/turf_decal/corner/opaque/brown{
+ dir = 9
},
-/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"nO" = (
-/obj/structure/rack,
-/obj/effect/turf_decal/trimline/opaque/green/end{
+/turf/open/floor/plasteel/patterned,
+/area/outpost/cargo)
+"nz" = (
+/obj/effect/turf_decal/corner/opaque/neutral/diagonal,
+/obj/structure/chair{
dir = 1
},
-/turf/open/floor/plasteel/tech/techmaint,
-/area/outpost/vacant_rooms)
-"nT" = (
-/obj/machinery/door/window/brigdoor/westright,
/turf/open/floor/plasteel,
/area/outpost/vacant_rooms)
-"nU" = (
-/turf/closed/indestructible/reinforced,
-/area/outpost/crew/dorm)
-"nZ" = (
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/components/unary/tank/air{
- volume = 10000000;
- piping_layer = 2
+"nK" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 1
},
-/turf/open/floor/plasteel/dark,
-/area/outpost/operations)
-"ob" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/wood,
-/area/outpost/crew)
-"oe" = (
-/obj/machinery/firealarm/directional/south,
+/obj/effect/turf_decal/industrial/warning,
/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
-"oi" = (
-/obj/machinery/disposal/bin,
-/obj/effect/turf_decal/box,
-/obj/structure/disposalpipe/trunk,
-/obj/machinery/firealarm/directional/north,
/turf/open/floor/plasteel/tech,
-/area/outpost/cargo)
-"oq" = (
-/obj/effect/turf_decal/siding/wood/corner{
- dir = 4
+/area/outpost/hallway/central)
+"nL" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
},
-/obj/structure/sign/poster/contraband/random{
- pixel_y = -32
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
},
-/turf/open/floor/plasteel/grimy,
-/area/outpost/crew)
-"or" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
+/obj/effect/turf_decal/corner_techfloor_gray{
+ dir = 10
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/corner_steel_grid{
+ dir = 5
},
-/obj/structure/disposalpipe/junction/flip{
- dir = 4
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"nM" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/outpost/maintenance/central)
+"nR" = (
+/obj/structure/table/wood,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/reagent_containers/food/drinks/drinkingglass{
+ pixel_y = 5
},
-/obj/structure/cable{
+/turf/open/floor/carpet/green,
+/area/outpost/crew/bar)
+"nT" = (
+/obj/item/radio/intercom/directional/south,
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"ov" = (
-/obj/structure/chair/wood/wings,
-/turf/open/floor/carpet,
-/area/outpost/crew)
-"oz" = (
-/obj/structure/cable{
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/libraryscanner,
+/turf/open/floor/wood,
+/area/outpost/crew/library)
+"nU" = (
+/obj/structure/flora/grass/jungle/b,
+/turf/open/floor/grass/ship/jungle,
+/area/outpost/hallway/port)
+"nY" = (
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/machinery/atmospherics/components/binary/pump/on/layer2,
-/turf/open/floor/plasteel/dark,
-/area/outpost/operations)
-"oC" = (
-/obj/item/kirbyplants/random,
-/obj/machinery/light/small/directional/west,
-/obj/effect/turf_decal/spline/fancy/wood{
- dir = 9
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"nZ" = (
+/obj/effect/decal/cleanable/food/egg_smudge,
+/obj/effect/turf_decal/steeldecal/steel_decals10,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"oa" = (
+/obj/machinery/light/small/directional/north,
+/obj/effect/turf_decal/siding/wood/corner,
+/obj/item/kirbyplants{
+ icon_state = "plant-02";
+ pixel_y = 18;
+ pixel_x = -11
},
/turf/open/floor/wood,
-/area/outpost/vacant_rooms)
-"oF" = (
-/obj/structure/chair/office{
+/area/outpost/crew/bar)
+"ob" = (
+/obj/effect/turf_decal/corner/opaque/red{
dir = 4
},
-/obj/item/radio/intercom/directional/west,
-/obj/machinery/camera/autoname{
- dir = 6
- },
+/obj/effect/turf_decal/spline/fancy/opaque/grey,
/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
-"oR" = (
-/obj/structure/toilet{
- pixel_y = 13
+/area/outpost/security)
+"od" = (
+/obj/machinery/shower{
+ pixel_y = 17
},
-/obj/machinery/newscaster/directional/east,
-/obj/machinery/light/small/directional/west,
+/obj/effect/decal/cleanable/food/pie_smudge,
+/obj/effect/turf_decal/borderfloor/full,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/floordetail/pryhole,
/turf/open/floor/plasteel,
-/area/outpost/cargo)
-"oV" = (
-/obj/structure/disposalpipe/segment{
- dir = 6
+/area/outpost/maintenance/fore)
+"og" = (
+/obj/machinery/atmospherics/pipe/simple/multiz{
+ pixel_y = 1;
+ pixel_x = -9
},
-/turf/open/floor/plasteel/tech,
-/area/outpost/cargo)
-"pe" = (
-/obj/structure/railing{
- dir = 10
+/obj/machinery/power/deck_relay,
+/obj/machinery/atmospherics/pipe/simple/multiz{
+ pixel_y = 1;
+ pixel_x = 8
},
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 4
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
-/turf/open/floor/plasteel/tech,
-/area/outpost/cargo)
-"pl" = (
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 10
+/turf/open/floor/plasteel/tech/techmaint,
+/area/outpost/maintenance/fore)
+"om" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
},
-/obj/structure/table,
+/turf/open/floor/plating,
+/area/outpost/maintenance/central)
+"on" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/effect/turf_decal/corner/opaque/neutral{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/plasteel,
/area/outpost/hallway/central)
-"pm" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
-/obj/effect/turf_decal/spline/fancy/opaque/grey{
- dir = 8;
- pixel_y = 1
- },
-/obj/effect/turf_decal/spline/fancy/opaque/grey{
- dir = 4;
- pixel_y = 1
+"op" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
-/obj/structure/sign/poster/contraband/random{
- pixel_y = 32
+/obj/effect/turf_decal/industrial/warning{
+ dir = 1
},
-/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
-"pt" = (
-/obj/effect/turf_decal/siding/thinplating,
-/obj/effect/turf_decal/siding/thinplating{
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/plasteel/patterned,
+/area/outpost/cargo)
+"or" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel,
+/area/outpost/hallway/central)
+"ow" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/corner_techfloor_gray{
+ dir = 5
+ },
+/turf/open/floor/plasteel/tech/techmaint,
+/area/outpost/maintenance/fore)
+"oK" = (
+/obj/machinery/door/airlock/public{
+ id_tag = "out1"
+ },
+/obj/effect/turf_decal/industrial/warning,
+/obj/effect/turf_decal/industrial/warning{
dir = 1
},
-/obj/machinery/door/firedoor/border_only,
/obj/machinery/door/firedoor/border_only{
dir = 1
},
-/obj/machinery/door/airlock/public/glass,
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/plasteel/tech,
-/area/outpost/vacant_rooms)
-"pw" = (
-/obj/structure/table,
-/obj/item/radio/intercom/directional/south,
-/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"py" = (
-/obj/structure/railing{
+/area/outpost/storage)
+"oN" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
dir = 8
},
-/obj/structure/railing{
- dir = 4
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"oQ" = (
+/obj/effect/turf_decal/corner/opaque/red{
+ dir = 8
},
-/obj/effect/turf_decal/spline/fancy/opaque/black{
+/obj/machinery/firealarm/directional/north,
+/turf/open/floor/plasteel,
+/area/outpost/security)
+"oS" = (
+/obj/effect/turf_decal/industrial/hatch/yellow,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/outpost/cargo)
+"oT" = (
+/obj/structure/chair/pew/right{
dir = 4
},
-/turf/open/floor/plasteel/stairs{
- dir = 1
+/obj/effect/turf_decal/corner/opaque/green{
+ dir = 9
},
-/area/outpost/cargo)
-"pA" = (
-/turf/open/floor/plasteel/tech,
-/area/outpost/cargo)
-"pD" = (
-/obj/structure/grille,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "outsmall2";
- dir = 4
+/turf/open/floor/plasteel,
+/area/outpost/hallway/central)
+"oU" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
},
-/obj/structure/window/reinforced/fulltile/indestructable,
+/obj/effect/decal/cleanable/dirt,
+/mob/living/simple_animal/mouse/brown,
/turf/open/floor/plating,
-/area/outpost/crew)
-"pF" = (
-/obj/effect/turf_decal/box/corners{
+/area/outpost/maintenance/fore)
+"oW" = (
+/obj/effect/turf_decal/industrial/warning,
+/obj/effect/turf_decal/industrial/warning{
dir = 1
},
-/obj/structure/closet/crate/engineering,
-/turf/open/floor/plasteel/patterned/grid,
-/area/outpost/cargo)
-"pG" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/firedoor/border_only{
dir = 1
},
-/obj/structure/reagent_dispensers/water_cooler,
-/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
-"pO" = (
+/obj/machinery/door/airlock/security/brig{
+ req_access = list("101")
+ },
+/turf/open/floor/plasteel/tech,
+/area/outpost/security)
+"pb" = (
+/obj/structure/chair/stool/bar{
+ dir = 1;
+ pixel_y = 13
+ },
/obj/effect/turf_decal/siding/wood{
dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/outpost/crew/bar)
+"pg" = (
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/outpost/vacant_rooms)
+"ph" = (
+/turf/open/floor/ship/dirt/dark,
+/area/outpost/hallway/port)
+"pj" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 8
},
-/obj/structure/disposalpipe/segment{
- dir = 6
+/obj/effect/turf_decal/corner/opaque/neutral/diagonal,
+/obj/effect/turf_decal/spline/fancy/opaque/lightgrey{
+ dir = 4
},
-/turf/open/floor/wood,
-/area/outpost/crew)
-"pP" = (
-/obj/machinery/vending/coffee,
-/obj/machinery/light/directional/north,
/turf/open/floor/plasteel,
-/area/outpost/crew)
-"pV" = (
-/obj/structure/chair/greyscale{
- dir = 1
+/area/outpost/storage)
+"pk" = (
+/obj/structure/grille,
+/obj/structure/grille,
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space)
+"pl" = (
+/obj/effect/turf_decal/corner/opaque/neutral/diagonal,
+/obj/effect/turf_decal/spline/fancy/opaque/lightgrey{
+ dir = 5
},
-/obj/effect/turf_decal/corner/opaque/bottlegreen/three_quarters{
- dir = 1
+/turf/open/floor/plasteel,
+/area/outpost/storage)
+"pm" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/effect/turf_decal/corner/opaque/neutral{
+ dir = 8
},
-/obj/machinery/light/small/directional/west,
-/obj/structure/extinguisher_cabinet/directional/south,
/turf/open/floor/plasteel,
-/area/outpost/crew/dorm)
-"pY" = (
-/obj/structure/railing/corner{
- dir = 1
+/area/outpost/hallway/central)
+"pn" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
-/obj/effect/turf_decal/industrial/stand_clear,
-/obj/effect/turf_decal/spline/fancy/opaque/black/corner{
- dir = 1
+/obj/structure/holosign/barrier/infinite{
+ max_integrity = 500
},
-/turf/open/floor/plasteel/tech,
-/area/outpost/cargo)
-"qc" = (
-/obj/structure/table,
-/obj/structure/window/reinforced{
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/turf_decal/corner/opaque/neutral{
dir = 4
},
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/open/floor/plasteel/tech/techmaint,
-/area/outpost/cargo)
-"qi" = (
-/obj/effect/turf_decal/box/corners,
-/obj/structure/closet/crate,
-/turf/open/floor/plasteel/patterned/grid,
-/area/outpost/cargo)
-"qs" = (
-/obj/effect/turf_decal/spline/fancy/opaque/grey,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/door/window,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/plasteel/grimy,
-/area/outpost/crew/dorm)
-"qt" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
+/turf/open/floor/plasteel,
+/area/outpost/hallway/port)
+"pp" = (
+/obj/item/reagent_containers/pill/floorpill,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"pr" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/machinery/newscaster/directional/east,
+/obj/effect/turf_decal/corner/opaque/neutral{
+ dir = 4
},
/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/stairs{
- dir = 1
- },
-/area/outpost/hallway/central)
-"qH" = (
-/obj/structure/sink{
- dir = 4;
- pixel_x = -13
+/turf/open/floor/plasteel,
+/area/outpost/hallway/port)
+"pt" = (
+/obj/structure/table/wood,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/paper_bin{
+ pixel_x = 4;
+ pixel_y = -4
},
-/obj/structure/mirror{
- pixel_x = -28
+/obj/item/pen/fourcolor{
+ pixel_x = 3;
+ pixel_y = -2
},
-/turf/open/floor/plasteel/patterned,
-/area/outpost/crew/dorm)
-"qP" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
-/turf/open/floor/plasteel/tech,
-/area/outpost/cargo)
-"qQ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+/turf/open/floor/wood,
+/area/outpost/crew/library)
+"pA" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/effect/decal/cleanable/glass,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/turf/open/floor/plating,
+/area/outpost/maintenance/central)
+"pC" = (
+/obj/effect/turf_decal/industrial/warning{
+ dir = 1
},
-/obj/structure/cable{
- icon_state = "4-8"
+/obj/effect/turf_decal/industrial/warning,
+/obj/machinery/door/firedoor/border_only{
+ dir = 1
},
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/corner/opaque/black{
- dir = 9
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/locked,
+/obj/machinery/door/airlock/maintenance{
+ req_access = list("101")
},
-/turf/open/floor/plasteel,
+/turf/open/floor/plasteel/tech,
/area/outpost/hallway/central)
-"qT" = (
-/obj/machinery/airalarm/directional/south,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
-"qZ" = (
-/obj/effect/turf_decal/siding/thinplating{
- dir = 8
+"pF" = (
+/obj/effect/turf_decal/spline/fancy/opaque/lightgrey{
+ dir = 1
},
-/obj/machinery/door/firedoor/border_only{
- dir = 8
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel,
+/area/outpost/vacant_rooms/office)
+"pG" = (
+/obj/structure/easel,
+/obj/machinery/light/small/directional/north,
+/obj/effect/decal/cleanable/glass,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/canvas/twentythreeXtwentythree,
+/turf/open/floor/wood,
+/area/outpost/crew/library)
+"pQ" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
},
-/obj/effect/turf_decal/siding/wood{
- dir = 4
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
},
-/obj/machinery/door/firedoor/border_only{
- dir = 4
+/turf/open/floor/plating/asteroid,
+/area/outpost/external)
+"pS" = (
+/obj/item/kirbyplants{
+ icon_state = "plant-22"
},
-/obj/machinery/door/airlock/wood{
+/obj/effect/turf_decal/spline/fancy/opaque/lightgrey{
dir = 8
},
-/turf/open/floor/plasteel/tech,
-/area/outpost/vacant_rooms)
-"re" = (
-/obj/effect/turf_decal/box/corners{
- dir = 8
+/turf/open/floor/plasteel/tech/techmaint,
+/area/outpost/hallway/port)
+"qb" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
-/obj/machinery/light/directional/south,
-/turf/open/floor/plasteel/patterned/grid,
-/area/outpost/cargo)
-"ri" = (
-/obj/structure/table,
-/obj/effect/turf_decal/spline/fancy/opaque/grey,
-/turf/open/floor/plasteel/grimy,
-/area/outpost/crew/dorm)
-"rj" = (
-/obj/structure/sign/poster/contraband/random{
- pixel_x = -32
+/obj/effect/decal/cleanable/crayon{
+ icon_state = "electricdanger";
+ pixel_y = 26
},
-/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
-"rn" = (
-/obj/effect/turf_decal/corner/opaque/bottlegreen{
- dir = 5
+/obj/effect/turf_decal/corner_techfloor_gray{
+ dir = 10
},
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 8
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/corner_steel_grid{
+ dir = 5
},
-/turf/open/floor/plasteel,
-/area/outpost/crew/dorm)
-"rt" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 8
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"qg" = (
+/obj/structure/chair/sofa/left{
+ dir = 4
},
/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/wood,
-/area/outpost/crew)
-"ry" = (
-/obj/effect/turf_decal/siding/thinplating{
- dir = 1
- },
-/obj/effect/turf_decal/siding/thinplating,
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/door/firedoor/border_only{
+/turf/open/floor/carpet/royalblack,
+/area/outpost/crew/bar)
+"qp" = (
+/obj/structure/flora/rock,
+/turf/open/floor/plating/asteroid,
+/area/outpost/external)
+"qq" = (
+/obj/structure/railing/corner{
dir = 1
},
-/obj/machinery/door/airlock/public/glass,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/tech,
-/area/outpost/vacant_rooms)
-"rB" = (
-/obj/structure/railing{
- dir = 4
- },
-/turf/open/floor/grass,
-/area/outpost/crew)
-"rD" = (
-/obj/machinery/door/firedoor/border_only{
+/obj/effect/turf_decal/industrial/loading{
dir = 8
},
-/obj/machinery/door/firedoor/border_only{
- dir = 4
- },
-/obj/effect/turf_decal/siding/thinplating{
- dir = 4
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned,
+/area/outpost/cargo)
+"qv" = (
+/obj/structure/table/wood,
+/obj/machinery/newscaster/directional/east,
+/turf/open/floor/carpet/green,
+/area/outpost/crew/bar)
+"qx" = (
+/obj/structure/spider/stickyweb,
+/obj/effect/decal/cleanable/generic,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"qA" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 8
},
-/obj/effect/turf_decal/siding/thinplating{
+/obj/effect/turf_decal/corner/opaque/neutral,
+/obj/effect/turf_decal/industrial/caution,
+/turf/open/floor/plasteel,
+/area/outpost/hallway/port)
+"qD" = (
+/obj/structure/chair/pew{
dir = 8
},
-/obj/machinery/door/airlock/public/glass{
- dir = 4
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/corner/opaque/green{
+ dir = 6
},
-/turf/open/floor/plasteel/tech,
+/turf/open/floor/plasteel,
/area/outpost/hallway/central)
-"rE" = (
-/obj/machinery/light/small/directional/south,
-/turf/open/floor/plasteel/dark,
-/area/outpost/operations)
-"rF" = (
-/obj/structure/railing{
- dir = 8
+"qG" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
-/obj/structure/railing{
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/wood,
+/area/outpost/crew/bar)
+"qH" = (
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/plasteel/dark,
+/area/outpost/cargo/office)
+"qN" = (
+/obj/effect/turf_decal/box/corners{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/crate,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/outpost/cargo)
+"qR" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/effect/turf_decal/spline/fancy/opaque/black{
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel,
+/area/outpost/hallway/port)
+"qT" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/industrial/warning{
dir = 4
},
-/turf/open/floor/plasteel/stairs,
-/area/outpost/cargo)
-"rG" = (
-/obj/structure/rack,
-/obj/machinery/firealarm/directional/north,
-/turf/open/floor/plasteel/tech/techmaint,
-/area/outpost/vacant_rooms)
-"rK" = (
-/obj/effect/turf_decal/corner/opaque/black{
- dir = 10
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
-"rM" = (
-/obj/structure/rack,
/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/greenglow,
-/turf/open/floor/plasteel/tech/techmaint,
-/area/outpost/vacant_rooms)
-"rS" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/sign/poster/official/random{
- pixel_x = -32
- },
-/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
-"rV" = (
-/obj/structure/table,
-/obj/machinery/newscaster/directional/north{
- pixel_y = 32
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
},
-/turf/open/floor/plasteel/tech/techmaint,
-/area/outpost/vacant_rooms)
-"rZ" = (
-/obj/effect/turf_decal/corner/opaque/black,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
- },
-/obj/effect/turf_decal/spline/fancy/opaque/grey{
- dir = 8;
- pixel_y = 1
+ dir = 4
},
-/obj/effect/turf_decal/spline/fancy/opaque/grey/corner{
+/obj/effect/turf_decal/corner/opaque/neutral{
dir = 4
},
-/obj/machinery/newscaster/directional/south,
-/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
-"sa" = (
-/obj/effect/turf_decal/siding/wood,
-/obj/effect/turf_decal/siding/wood{
- dir = 1
+/area/outpost/hallway/central)
+"qW" = (
+/obj/effect/spawner/structure/window/reinforced/indestructable,
+/turf/open/floor/plating,
+/area/outpost/security)
+"qX" = (
+/obj/structure/grille/indestructable,
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
},
-/turf/open/floor/plasteel/grimy,
-/area/outpost/crew)
-"sd" = (
-/obj/structure/railing/corner{
+/obj/structure/cable/yellow,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"rb" = (
+/obj/machinery/newscaster/directional/west,
+/obj/structure/disposalpipe/segment{
dir = 1
},
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 8
- },
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/plasteel/tech,
-/area/outpost/cargo)
-"sk" = (
-/obj/effect/turf_decal/siding/thinplating{
- dir = 1
- },
-/obj/effect/turf_decal/siding/thinplating,
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/door/firedoor/border_only{
- dir = 1
+/obj/effect/turf_decal/corner/opaque/neutral/diagonal,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
-/obj/machinery/door/airlock/public/glass,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/plasteel/tech,
+/turf/open/floor/plasteel,
/area/outpost/vacant_rooms)
-"sm" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-8"
+"rg" = (
+/obj/structure/table/wood,
+/obj/effect/decal/cleanable/wrapping,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/outpost/crew/library)
+"rj" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
+/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/plasteel,
/area/outpost/hallway/central)
-"sn" = (
-/obj/effect/turf_decal/corner/opaque/green/three_quarters,
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 8
+"rm" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/effect/turf_decal/corner/opaque/neutral{
+ dir = 1
},
+/obj/structure/extinguisher_cabinet/directional/north,
+/obj/effect/turf_decal/floordetail/tiled,
/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"sr" = (
-/obj/effect/landmark/outpost/elevator{
- shaft = "main"
+/area/outpost/hallway/port)
+"ro" = (
+/obj/machinery/power/terminal{
+ dir = 4
},
-/turf/open/floor/plasteel/elevatorshaft,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"rp" = (
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/donkpockets,
+/obj/effect/spawner/lootdrop/maintenance/seven,
+/turf/open/floor/plasteel/mono,
+/area/outpost/vacant_rooms)
+"rr" = (
+/obj/structure/flora/grass/jungle,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/grass/ship/jungle,
/area/outpost/hallway/central)
-"su" = (
-/obj/structure/railing,
-/obj/effect/turf_decal/spline/fancy/opaque/black,
-/turf/open/floor/plasteel/patterned/grid,
-/area/outpost/cargo)
-"sv" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 8
+"rs" = (
+/obj/structure/table/wood,
+/obj/item/radio/old,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/spacecash/bundle/c1{
+ pixel_y = 9;
+ pixel_x = -6
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/wood,
-/area/outpost/crew)
-"sB" = (
-/obj/effect/turf_decal/siding/thinplating,
-/obj/effect/turf_decal/siding/thinplating{
- dir = 1
+/turf/open/floor/carpet/royalblack,
+/area/outpost/crew/bar)
+"rt" = (
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space)
+"rv" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
},
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/door/firedoor/border_only{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 6
},
-/obj/machinery/door/airlock/public/glass,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/tech,
-/area/outpost/vacant_rooms)
-"sC" = (
-/obj/structure/sign/poster/contraband/random{
- pixel_y = 32
+/obj/effect/turf_decal/spline/fancy/opaque/lightgrey/corner{
+ dir = 4
},
-/obj/item/kirbyplants/random,
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 5
+/obj/effect/turf_decal/corner/opaque/neutral/diagonal,
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
},
+/obj/effect/turf_decal/steeldecal/steel_decals_central6,
/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"sG" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+/area/outpost/vacant_rooms)
+"ry" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/industrial/warning{
dir = 8
},
-/turf/open/floor/plasteel/grimy,
-/area/outpost/crew/dorm)
-"sH" = (
-/obj/effect/turf_decal/spline/fancy/wood{
- dir = 8
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
},
+/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/turf/open/floor/wood,
-/area/outpost/vacant_rooms)
-"sI" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 1
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4,
+/turf/open/floor/plasteel/tech,
+/area/outpost/hallway/central)
+"rz" = (
+/obj/structure/flora/rock,
+/obj/structure/flora/rock,
+/turf/open/floor/plating/asteroid,
+/area/outpost/external)
+"rC" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"rD" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/effect/spawner/lootdrop/maintenance/two,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/outpost/maintenance/central)
+"rG" = (
+/obj/item/kirbyplants{
+ icon_state = "plant-22"
+ },
+/obj/machinery/light/dim/directional/west,
+/obj/effect/turf_decal/spline/fancy/opaque/lightgrey{
+ dir = 5
+ },
+/obj/item/radio/intercom/directional/south,
+/turf/open/floor/plasteel/tech/techmaint,
+/area/outpost/hallway/central)
+"rK" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
+/obj/effect/turf_decal/corner/opaque/neutral{
+ dir = 1
+ },
/turf/open/floor/plasteel,
/area/outpost/hallway/central)
-"sL" = (
-/obj/structure/rack,
-/obj/effect/turf_decal/box/corners{
- dir = 8
+"rM" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/machinery/light/dim/directional/east,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/corner/opaque/neutral,
+/turf/open/floor/plasteel,
+/area/outpost/hallway/port)
+"rN" = (
+/obj/machinery/mineral/unloading_machine{
+ input_dir = 2;
+ output_dir = 1
},
-/obj/effect/turf_decal/box/corners{
+/obj/effect/turf_decal/industrial/outline/yellow,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/outpost/cargo)
+"rP" = (
+/obj/structure/railing{
dir = 1
},
-/obj/structure/sign/poster/contraband/inteq_gec{
- pixel_x = -32
- },
-/turf/open/floor/plasteel/tech/techmaint,
-/area/outpost/vacant_rooms)
-"sO" = (
-/obj/effect/turf_decal/corner/opaque/green{
+/obj/item/radio/intercom/directional/south,
+/obj/effect/turf_decal/corner/opaque/brown{
dir = 10
},
-/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"sX" = (
-/obj/effect/turf_decal/corner/opaque/black{
- dir = 10
+/turf/open/floor/plasteel/patterned,
+/area/outpost/cargo)
+"rQ" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
-/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"te" = (
-/obj/machinery/door/poddoor/ert,
-/turf/closed/indestructible/reinforced,
-/area/outpost/operations)
-"tg" = (
-/obj/effect/turf_decal/siding/wood,
-/obj/effect/turf_decal/siding/wood/corner{
- dir = 1
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
},
-/turf/open/floor/plasteel/grimy,
-/area/outpost/crew)
-"ti" = (
-/obj/structure/table/wood,
-/obj/structure/window/reinforced{
+/obj/effect/decal/cleanable/crayon{
+ icon_state = "guy";
+ pixel_y = 20
+ },
+/obj/effect/decal/cleanable/cobweb,
+/obj/effect/turf_decal/steeldecal/steel_decals6{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"rR" = (
+/obj/structure/table,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/item/reagent_containers/food/drinks/mug{
+ pixel_x = -12;
+ pixel_y = 9
+ },
+/turf/open/floor/plasteel/dark,
+/area/outpost/cargo/office)
+"rS" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/siding/wood{
dir = 4
},
-/turf/open/floor/carpet,
-/area/outpost/crew)
-"tr" = (
-/obj/structure/table/wood,
+/obj/machinery/light/small/directional/west,
+/obj/effect/decal/cleanable/wrapping,
/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/carpet,
-/area/outpost/crew)
-"tv" = (
-/obj/structure/chair,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
+/turf/open/floor/wood,
+/area/outpost/crew/library)
+"rT" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
},
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"tB" = (
-/obj/effect/turf_decal/siding/thinplating,
-/obj/effect/turf_decal/siding/thinplating{
+/obj/effect/turf_decal/steeldecal/steel_decals3{
dir = 1
},
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/door/firedoor/border_only{
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"rU" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
dir = 1
},
-/obj/machinery/door/airlock/public/glass,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/plasteel/tech,
-/area/outpost/vacant_rooms)
-"tC" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/door/airlock{
- name = "Cryogenics"
+/obj/effect/turf_decal/box,
+/turf/open/floor/plasteel/dark,
+/area/outpost/cargo/office)
+"rW" = (
+/obj/effect/turf_decal/corner_techfloor_gray{
+ dir = 6
},
-/turf/open/floor/plasteel,
-/area/outpost/crew/dorm)
-"tH" = (
-/obj/structure/cable{
- icon_state = "1-2"
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/door/poddoor/ert,
-/obj/machinery/door/airlock/grunge{
- req_access_txt = "109"
+/obj/effect/spawner/lootdrop/waste/trash,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 5
},
-/turf/closed/indestructible/reinforced,
-/area/outpost/operations)
-"tK" = (
-/obj/machinery/disposal/bin,
-/obj/effect/turf_decal/box,
-/obj/structure/disposalpipe/trunk{
- dir = 8
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/tech/techmaint,
+/area/outpost/maintenance/fore)
+"rZ" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/machinery/firealarm/directional/west,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
},
-/turf/open/floor/plasteel/tech,
-/area/outpost/cargo)
-"tL" = (
-/obj/effect/turf_decal/siding/wood{
+/obj/effect/turf_decal/corner/opaque/neutral{
dir = 8
},
-/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/outpost/hallway/central)
+"sb" = (
+/obj/item/kirbyplants{
+ icon_state = "plant-06";
+ pixel_y = 17;
+ pixel_x = -9
+ },
+/obj/item/kirbyplants{
+ icon_state = "plant-12";
+ pixel_y = 14;
+ pixel_x = 3
+ },
+/obj/item/kirbyplants{
+ icon_state = "plant-11";
+ pixel_y = 4;
+ pixel_x = -6
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 4
+ },
+/obj/structure/sign/poster/random{
+ pixel_y = 0;
+ pixel_x = -28
+ },
/turf/open/floor/wood,
-/area/outpost/crew)
-"tU" = (
-/obj/machinery/light/directional/north,
+/area/outpost/crew/bar)
+"sf" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/structure/foamedmetal,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"sj" = (
+/obj/structure/reagent_dispensers/beerkeg,
+/obj/machinery/light/small/directional/west,
+/obj/effect/turf_decal/corner/transparent/brown/full,
+/turf/open/floor/plasteel,
+/area/outpost/crew/bar)
+"sk" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
+ dir = 5
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
+ dir = 5
},
+/obj/structure/extinguisher_cabinet/directional/south,
/turf/open/floor/plasteel,
/area/outpost/hallway/central)
-"tZ" = (
-/obj/effect/turf_decal/corner/opaque/black{
- dir = 10
+"sl" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/corner/opaque/brown/full,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 6
},
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/effect/turf_decal/spline/fancy/opaque/grey{
- dir = 1;
- pixel_x = -1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
-"uc" = (
-/obj/effect/turf_decal/spline/fancy/opaque/grey/corner{
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
dir = 8
},
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+/turf/open/floor/plasteel/patterned,
+/area/outpost/cargo)
+"sm" = (
+/obj/structure/flippedtable{
dir = 4
},
-/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
-"uv" = (
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+/obj/effect/turf_decal/box,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
},
-/obj/structure/disposalpipe/junction/flip{
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/techfloor{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
},
-/obj/structure/cable{
- icon_state = "4-8"
+/turf/open/floor/plating,
+/area/outpost/maintenance/central)
+"sn" = (
+/turf/open/floor/plating,
+/area/outpost/maintenance/central)
+"sz" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
-/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"uy" = (
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 6
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/closet/emcloset/wall{
+ dir = 4;
+ pixel_x = -28
},
-/obj/item/kirbyplants/random,
-/obj/machinery/light/directional/east,
/turf/open/floor/plasteel,
/area/outpost/hallway/central)
-"uF" = (
-/turf/open/floor/wood,
-/area/outpost/crew)
-"uG" = (
+"sB" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/chair/office{
+ dir = 4
+ },
/obj/effect/turf_decal/siding/wood{
- dir = 8
+ dir = 4
},
/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/confetti,
/turf/open/floor/wood,
-/area/outpost/crew)
-"uL" = (
-/obj/structure/rack,
-/obj/effect/turf_decal/box/corners{
+/area/outpost/crew/library)
+"sF" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/turf/open/floor/wood,
+/area/outpost/crew/bar)
+"sG" = (
+/obj/structure/toilet{
+ dir = 8;
+ pixel_y = 0;
+ pixel_x = 8
+ },
+/obj/effect/turf_decal/borderfloor/full,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/steeldecal/steel_decals9{
+ dir = 1
+ },
+/obj/effect/turf_decal/floordetail/pryhole,
+/turf/open/floor/plasteel,
+/area/outpost/maintenance/fore)
+"sH" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/turf_decal/industrial/warning{
dir = 8
},
-/turf/open/floor/plasteel/tech/techmaint,
-/area/outpost/vacant_rooms)
-"uQ" = (
-/obj/structure/urinal{
- pixel_y = 32
+/turf/open/floor/plasteel/tech,
+/area/outpost/hallway/port)
+"sO" = (
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
- dir = 10
+ dir = 4
},
-/turf/open/floor/plasteel/patterned,
-/area/outpost/crew/dorm)
-"uW" = (
-/obj/effect/turf_decal/corner/opaque/black{
- dir = 10
+/obj/machinery/door/airlock{
+ dir = 4;
+ name = "Library"
},
-/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = -32
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
},
-/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
-"uX" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
-/obj/structure/closet/firecloset/wall{
- pixel_y = 28
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
},
+/turf/open/floor/plasteel/tech,
+/area/outpost/crew/library)
+"sP" = (
/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 5
+/turf/closed/indestructible/reinforced,
+/area/outpost/maintenance/central)
+"sR" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/plating,
+/area/outpost/maintenance/central)
+"sV" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
},
-/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"ve" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/outpost/crew/library)
+"ta" = (
/obj/structure/rack,
-/obj/effect/turf_decal/box/corners{
+/obj/effect/spawner/lootdrop/minor/twentyfive_percent_cyborg_mask,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/spawner/lootdrop/gloves,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/mono,
+/area/outpost/storage)
+"th" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
dir = 1
},
-/obj/effect/turf_decal/box/corners{
- dir = 8
- },
-/turf/open/floor/plasteel/tech/techmaint,
-/area/outpost/vacant_rooms)
-"vf" = (
-/obj/structure/chair/wood/wings{
+/obj/machinery/light/dim/directional/south,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/outpost/crew/bar)
+"tj" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/newscaster/directional/west,
-/obj/machinery/camera/autoname{
- dir = 1
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/outpost/vacant_rooms/office)
+"tk" = (
+/obj/effect/decal/cleanable/glass,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/outpost/maintenance/central)
+"tl" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
-/turf/open/floor/plasteel/grimy,
-/area/outpost/crew)
-"vn" = (
-/obj/structure/rack,
-/obj/effect/turf_decal/trimline/opaque/green/end{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/light/directional/south,
-/turf/open/floor/plasteel/tech/techmaint,
-/area/outpost/vacant_rooms)
-"vr" = (
-/obj/machinery/light/directional/north,
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 5
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 1
},
-/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"vu" = (
-/obj/structure/table,
-/obj/structure/window/reinforced{
+/obj/effect/turf_decal/corner/opaque/neutral{
dir = 8
},
-/obj/structure/window/reinforced{
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
dir = 1
},
-/obj/item/paper_bin,
-/obj/item/pen,
+/obj/effect/decal/cleanable/insectguts,
+/turf/open/floor/plasteel,
+/area/outpost/hallway/central)
+"tm" = (
+/obj/effect/decal/cleanable/glass/strange,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/plasteel/tech/techmaint,
-/area/outpost/cargo)
-"vv" = (
-/obj/machinery/firealarm/directional/south,
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 10
+/area/outpost/maintenance/central)
+"to" = (
+/obj/structure/flora/junglebush/large,
+/turf/open/floor/grass/ship/jungle,
+/area/outpost/hallway/central)
+"tr" = (
+/obj/structure/bookcase/random,
+/obj/machinery/light/small/directional/south,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/outpost/crew/library)
+"tt" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/effect/turf_decal/corner/opaque/neutral{
+ dir = 1
},
+/obj/effect/turf_decal/steeldecal/steel_decals_central6,
+/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/plasteel,
/area/outpost/hallway/central)
-"vL" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+"tu" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
dir = 4
},
-/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"vT" = (
-/obj/effect/turf_decal/corner/opaque/green/three_quarters,
-/obj/structure/chair{
- dir = 8
- },
-/obj/item/radio/intercom/directional/south,
-/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"vV" = (
-/obj/structure/noticeboard{
- dir = 8;
- pixel_x = 28
+/turf/open/floor/wood{
+ icon_state = "wood-broken3"
},
-/obj/effect/turf_decal/corner/opaque/bottlegreen/border{
+/area/outpost/crew/bar)
+"tv" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/techfloor{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/plasteel,
-/area/outpost/crew/dorm)
-"vX" = (
-/obj/structure/rack,
-/turf/open/floor/plasteel/tech/techmaint,
-/area/outpost/vacant_rooms)
-"vZ" = (
-/obj/structure/toilet{
- dir = 8
- },
-/obj/machinery/light/small/directional/east,
-/obj/machinery/newscaster/directional/south,
-/obj/machinery/button/door{
- id = "ob1";
- name = "door lock";
- pixel_x = -22;
- pixel_y = 23;
- specialfunctions = 4;
- normaldoorcontrol = 1
- },
-/turf/open/floor/plasteel/patterned,
-/area/outpost/crew/dorm)
-"wa" = (
-/obj/effect/turf_decal/corner/opaque/black{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"wm" = (
-/obj/effect/turf_decal/corner/opaque/bottlegreen/border{
- dir = 8
- },
-/obj/effect/turf_decal/industrial/caution{
- dir = 4
+/turf/open/floor/plating,
+/area/outpost/maintenance/central)
+"tw" = (
+/obj/structure/table/wood,
+/obj/item/newspaper{
+ pixel_x = 1;
+ pixel_y = 7
},
-/obj/item/radio/intercom/directional/south,
-/turf/open/floor/plasteel,
-/area/outpost/crew/dorm)
-"wn" = (
-/obj/structure/cable{
+/turf/open/floor/carpet/royalblack,
+/area/outpost/crew/bar)
+"tA" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
dir = 4
},
-/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel,
/area/outpost/hallway/central)
-"wr" = (
-/obj/structure/table,
-/obj/item/paper_bin{
- pixel_y = 6;
- pixel_x = 6
- },
-/obj/item/paper_bin/carbon{
- pixel_y = 1;
- pixel_x = -8
- },
-/turf/open/floor/plasteel/tech/techmaint,
-/area/outpost/cargo)
-"wx" = (
-/obj/machinery/power/smes/magical{
- output_level = 200000
- },
-/obj/structure/cable,
+"tC" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel,
-/area/outpost/operations)
-"wB" = (
-/obj/effect/turf_decal/siding/thinplating,
-/obj/effect/turf_decal/siding/thinplating{
- dir = 1
+/area/outpost/hallway/central)
+"tE" = (
+/obj/structure/railing{
+ dir = 4
},
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/door/firedoor/border_only{
- dir = 1
+/obj/machinery/light/dim/directional/west,
+/obj/effect/turf_decal/corner/opaque/brown{
+ dir = 9
},
-/obj/machinery/door/airlock/public/glass{
- name = "Restroom"
+/turf/open/floor/plasteel/patterned,
+/area/outpost/cargo)
+"tG" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-9"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/tech,
-/area/outpost/crew/dorm)
-"wF" = (
-/obj/structure/window/reinforced/tinted{
- dir = 8
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"tH" = (
+/obj/structure/sink/greyscale{
+ dir = 8;
+ pixel_x = 13
},
-/obj/structure/flora/ausbushes/ppflowers,
-/turf/open/floor/grass,
-/area/outpost/crew)
-"wH" = (
-/obj/structure/rack,
-/obj/effect/turf_decal/trimline/opaque/green/end{
- dir = 1
+/obj/structure/mirror{
+ pixel_x = 26;
+ pixel_y = -4
},
-/obj/structure/sign/poster/official/random{
- pixel_y = 32
+/obj/machinery/light/small/directional/north,
+/obj/effect/turf_decal/borderfloor/full,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/steeldecal/steel_decals9{
+ dir = 8
},
-/turf/open/floor/plasteel/tech/techmaint,
-/area/outpost/vacant_rooms)
-"wL" = (
-/turf/closed/indestructible/reinforced,
-/area/outpost/vacant_rooms)
-"wR" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/floordetail/pryhole,
/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
-"xa" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/wood,
-/area/outpost/crew)
-"xc" = (
+/area/outpost/maintenance/fore)
+"tI" = (
/obj/structure/railing{
- dir = 9
+ dir = 4
},
-/obj/effect/turf_decal/industrial/warning/corner,
-/turf/open/floor/plasteel/tech,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned,
/area/outpost/cargo)
-"xi" = (
-/obj/effect/turf_decal/spline/fancy/opaque/grey,
+"tN" = (
+/obj/structure/railing/corner,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
+ dir = 4
},
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/glass,
-/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
-"xm" = (
-/obj/effect/turf_decal/box,
-/obj/machinery/light/directional/west,
-/turf/open/floor/plasteel/patterned/grid,
+/turf/open/floor/plasteel/patterned,
/area/outpost/cargo)
-"xn" = (
+"tS" = (
/obj/structure/rack,
-/obj/structure/sign/poster/contraband/random{
- pixel_y = -32
- },
-/turf/open/floor/plasteel/tech/techmaint,
-/area/outpost/vacant_rooms)
-"xo" = (
-/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = 32
- },
-/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
-"xr" = (
-/obj/machinery/light/directional/west,
-/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/outpost/hallway/central)
-"xs" = (
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"xy" = (
-/obj/structure/table,
-/obj/machinery/newscaster/directional/north{
- pixel_y = 32
- },
-/obj/effect/turf_decal/corner/opaque/green/three_quarters{
+/obj/effect/spawner/lootdrop/maintenance/four,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"tT" = (
+/obj/structure/railing{
dir = 8
},
-/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"xQ" = (
-/obj/structure/table,
-/obj/item/circuitboard/machine/paystand,
-/obj/structure/sign/poster/contraband/random{
- pixel_y = 32
+/turf/open/floor/plasteel/patterned,
+/area/outpost/cargo)
+"tU" = (
+/obj/machinery/light/small/directional/north,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 6
},
-/turf/open/floor/plasteel/tech/techmaint,
-/area/outpost/vacant_rooms)
-"xW" = (
-/obj/structure/chair/wood/wings{
- dir = 4
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/techfloor{
+ dir = 9
},
-/obj/machinery/button/door{
- dir = 4;
- pixel_y = 7;
- pixel_x = -38;
- id = "outsmall1";
- name = "window shutters"
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
},
-/obj/item/radio/intercom/directional/west,
-/turf/open/floor/carpet,
-/area/outpost/crew)
-"ya" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
+/turf/open/floor/plating,
+/area/outpost/maintenance/central)
+"tZ" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+/obj/effect/turf_decal/industrial/warning{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel/tech,
-/area/outpost/cargo)
-"yg" = (
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 10
- },
+/area/outpost/hallway/central)
+"ua" = (
+/obj/item/radio/intercom/directional/east,
/obj/structure/chair{
dir = 8
},
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/structure/extinguisher_cabinet/directional/south,
-/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"yh" = (
-/obj/structure/table/wood,
-/obj/effect/turf_decal/siding/wood{
- dir = 1
- },
/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/wood,
-/area/outpost/crew)
-"yj" = (
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/outpost/storage)
+"ue" = (
+/obj/structure/table/wood,
/obj/machinery/light/small/directional/east,
-/obj/effect/turf_decal/spline/fancy/wood{
- dir = 6
- },
-/turf/open/floor/carpet/royalblack,
-/area/outpost/vacant_rooms)
-"yl" = (
-/obj/effect/turf_decal/corner/opaque/bottlegreen{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
+/obj/effect/decal/cleanable/dirt,
+/obj/item/reagent_containers/pill/epinephrine,
+/obj/item/paper_bin/bundlenatural{
+ pixel_x = 9;
+ pixel_y = 13
},
-/turf/open/floor/plasteel,
-/area/outpost/crew/dorm)
-"yp" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/cable{
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"uf" = (
+/obj/machinery/light/dim/directional/west,
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"ys" = (
-/obj/structure/curtain/cloth/fancy,
-/obj/effect/turf_decal/siding/wood{
- dir = 4
- },
/obj/effect/turf_decal/siding/wood{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
},
-/turf/open/floor/plasteel/mono,
-/area/outpost/crew)
-"yu" = (
-/obj/effect/turf_decal/corner/opaque/black{
- dir = 9
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/outpost/crew/bar)
+"ug" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
+/obj/effect/turf_decal/corner/opaque/neutral,
/turf/open/floor/plasteel,
/area/outpost/hallway/central)
-"yy" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+"uj" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/industrial/warning,
+/obj/effect/turf_decal/industrial/warning{
dir = 1
},
/turf/open/floor/plasteel/tech,
+/area/outpost/hallway/port)
+"uk" = (
+/obj/structure/railing,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned,
/area/outpost/cargo)
-"yK" = (
-/obj/structure/rack,
-/obj/effect/turf_decal/box,
+"um" = (
+/obj/effect/turf_decal/corner/opaque/neutral/diagonal,
/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/tech/techmaint,
-/area/outpost/vacant_rooms)
-"yM" = (
-/obj/effect/turf_decal/corner/opaque/black{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"yV" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+/area/outpost/storage)
+"un" = (
+/obj/structure/chair/wood{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/outpost/crew/bar)
+"ur" = (
+/obj/structure/chair/sofa/corner{
+ dir = 8
+ },
+/turf/open/floor/carpet/royalblack,
+/area/outpost/crew/bar)
+"uu" = (
+/obj/machinery/light/small/directional/north,
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/camera/autoname{
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"uv" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/bookbinder,
+/turf/open/floor/wood,
+/area/outpost/crew/library)
+"uw" = (
+/obj/effect/turf_decal/box/corners{
dir = 1
},
-/turf/open/floor/plasteel/tech,
+/obj/machinery/light/dim/directional/north,
+/obj/structure/closet/crate,
+/turf/open/floor/plasteel/patterned/cargo_one,
/area/outpost/cargo)
-"zn" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
+"uy" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/machinery/newscaster/directional/south,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/effect/turf_decal/corner/opaque/neutral{
+ dir = 8
},
-/obj/structure/cable{
- icon_state = "4-8"
+/turf/open/floor/plasteel,
+/area/outpost/hallway/central)
+"uz" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 4
},
-/turf/open/floor/wood,
-/area/outpost/crew)
-"zp" = (
-/obj/effect/turf_decal/box,
-/obj/structure/closet/cardboard,
-/turf/open/floor/plasteel/patterned/grid,
+/obj/effect/turf_decal/corner/opaque/brown/full,
+/turf/open/floor/plasteel/patterned,
/area/outpost/cargo)
-"zq" = (
-/obj/structure/grille,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "outsmall1"
+"uA" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/effect/turf_decal/corner/opaque/neutral{
+ dir = 8
},
-/obj/structure/window/reinforced/fulltile/indestructable,
-/turf/open/floor/plating,
-/area/outpost/crew)
-"zv" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/corner/opaque/black{
- dir = 6
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
+ dir = 4
},
/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
-"zG" = (
+/area/outpost/hallway/port)
+"uD" = (
+/turf/open/floor/ship/dirt,
+/area/outpost/hallway/central)
+"uE" = (
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"uI" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
/obj/effect/turf_decal/corner/opaque/red{
- dir = 6
+ dir = 4
},
+/obj/machinery/newscaster/directional/west,
/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"zL" = (
-/obj/effect/turf_decal/corner/opaque/black{
- dir = 10
+/area/outpost/security)
+"uJ" = (
+/obj/machinery/cryopod{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
+/obj/item/radio/intercom/directional/south,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/outpost/security)
+"uL" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
-/obj/effect/turf_decal/spline/fancy/opaque/grey{
- dir = 1;
- pixel_x = -1
+/obj/effect/turf_decal/industrial/stand_clear{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
-"zS" = (
-/obj/effect/turf_decal/siding/thinplating{
- dir = 8
- },
-/turf/open/floor/plasteel/tech,
/area/outpost/hallway/central)
-"zW" = (
-/obj/machinery/computer/cargo/express{
- dir = 4
+"uN" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
-/turf/open/floor/plasteel/tech/techmaint,
-/area/outpost/cargo)
-"zX" = (
-/obj/structure/rack,
-/obj/effect/turf_decal/trimline/opaque/green/line{
- dir = 4
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/decal/cleanable/insectguts,
+/turf/open/floor/plasteel,
+/area/outpost/hallway/central)
+"uQ" = (
+/obj/structure/table,
+/obj/item/clipboard{
+ pixel_y = -5;
+ pixel_x = 5
},
-/obj/effect/turf_decal/trimline/opaque/green/line{
- dir = 8
+/obj/item/radio/intercom/directional/north,
+/turf/open/floor/plasteel/dark,
+/area/outpost/cargo/office)
+"uU" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/effect/turf_decal/corner/opaque/neutral,
+/obj/structure/sign/poster/random{
+ pixel_x = 28
},
-/obj/machinery/light/directional/east,
-/turf/open/floor/plasteel/tech/techmaint,
-/area/outpost/vacant_rooms)
-"Ac" = (
-/obj/structure/cable{
- icon_state = "1-4"
+/turf/open/floor/plasteel,
+/area/outpost/hallway/port)
+"uV" = (
+/obj/structure/dresser{
+ dir = 1
},
-/turf/open/floor/plasteel/tech,
-/area/outpost/cargo)
-"Am" = (
-/obj/effect/turf_decal/box/corners{
- dir = 4
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating/asteroid,
+/area/outpost/maintenance/central)
+"uW" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/machinery/firealarm/directional/north,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
-/obj/structure/closet/crate/science,
-/obj/machinery/light/directional/north,
-/turf/open/floor/plasteel/patterned/grid,
-/area/outpost/cargo)
-"Ao" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+/obj/effect/turf_decal/corner/opaque/neutral{
dir = 1
},
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+/turf/open/floor/plasteel,
+/area/outpost/hallway/central)
+"uX" = (
+/obj/machinery/disposal/bin,
+/obj/machinery/newscaster/directional/west,
+/obj/structure/disposalpipe/trunk{
dir = 1
},
-/obj/structure/disposalpipe/segment{
- dir = 10
+/obj/effect/turf_decal/spline/fancy/opaque/lightgrey{
+ dir = 1
},
-/obj/structure/cable{
+/obj/effect/turf_decal/box,
+/turf/open/floor/plasteel/tech/techmaint,
+/area/outpost/hallway/central)
+"va" = (
+/obj/machinery/light/small/directional/south,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/outpost/maintenance/central)
+"vc" = (
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
+/turf/open/floor/plating/asteroid,
+/area/outpost/external)
+"vd" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/turf_decal/corner/opaque/neutral/diagonal,
/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"Ap" = (
-/obj/machinery/firealarm/directional/north,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 5
- },
+/area/outpost/vacant_rooms)
+"vp" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"Au" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/area/outpost/hallway/port)
+"vr" = (
+/obj/effect/turf_decal/industrial/warning,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
/obj/structure/disposalpipe/segment,
-/turf/open/floor/wood,
-/area/outpost/crew)
-"AC" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/plasteel/tech,
+/area/outpost/hallway/central)
+"vB" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
},
/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
+ dir = 6
},
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/corner/opaque/black{
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 6
},
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 8
+ },
/turf/open/floor/plasteel,
/area/outpost/hallway/central)
-"AI" = (
-/obj/structure/chair/comfy/brown{
- dir = 8
+"vH" = (
+/obj/machinery/conveyor/auto{
+ dir = 6;
+ id = "outpost3"
},
-/obj/machinery/newscaster/directional/south,
-/obj/machinery/camera/autoname{
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"vI" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/effect/turf_decal/corner/opaque/brown{
dir = 9
},
-/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
-"AK" = (
-/obj/machinery/door/airlock/public/glass,
-/obj/structure/cable{
- icon_state = "1-2"
+/turf/open/floor/plasteel/patterned,
+/area/outpost/cargo)
+"vR" = (
+/obj/structure/flora/grass/jungle,
+/obj/machinery/light/dim/directional/north,
+/turf/open/floor/grass/ship/jungle,
+/area/outpost/hallway/port)
+"vT" = (
+/obj/structure/rack,
+/mob/living/simple_animal/pet/mothroach{
+ name = "beanroach"
+ },
+/obj/item/reagent_containers/food/snacks/canned/beans,
+/obj/item/reagent_containers/food/snacks/canned/beans,
+/obj/item/reagent_containers/food/snacks/canned/beans,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating/asteroid,
+/area/outpost/maintenance/central)
+"vV" = (
+/obj/machinery/door/airlock/public{
+ id_tag = "out2"
+ },
+/obj/effect/turf_decal/industrial/warning,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 1
},
-/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/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/border_only,
/turf/open/floor/plasteel/tech,
/area/outpost/hallway/central)
-"AL" = (
-/obj/structure/chair/comfy/brown{
- dir = 4
+"vX" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
-/turf/open/floor/wood,
-/area/outpost/vacant_rooms)
-"AM" = (
-/obj/effect/turf_decal/corner/opaque/black{
- dir = 10
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/structure/disposalpipe/segment,
-/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
/turf/open/floor/plasteel,
/area/outpost/hallway/central)
-"AR" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 4
+"vZ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 5
},
-/obj/machinery/light/directional/north,
-/obj/effect/turf_decal/corner/opaque/red{
- dir = 9
+/turf/open/floor/plasteel/patterned,
+/area/outpost/cargo)
+"wa" = (
+/obj/structure/sign/painting/library{
+ pixel_y = 0;
+ pixel_x = -26
},
-/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"AU" = (
-/obj/effect/turf_decal/corner/opaque/black{
- dir = 6
+/obj/effect/decal/cleanable/wrapping,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/confetti,
+/turf/open/floor/wood,
+/area/outpost/crew/library)
+"we" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/machinery/light/dim/directional/south,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+/obj/structure/disposalpipe/junction/flip{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
+/obj/effect/turf_decal/corner/opaque/neutral{
dir = 8
},
/turf/open/floor/plasteel,
/area/outpost/hallway/central)
-"AY" = (
-/obj/effect/turf_decal/corner/opaque/green{
+"wi" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 9
},
-/obj/item/radio/intercom/directional/west,
-/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"Ba" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 8
- },
-/obj/effect/turf_decal/siding/thinplating{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
},
-/obj/machinery/door/firedoor/border_only{
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/tech/techmaint,
+/area/outpost/maintenance/central)
+"wk" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/corner_techfloor_gray{
dir = 8
},
-/obj/machinery/door/firedoor/border_only{
- dir = 4
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"wn" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
-/obj/machinery/door/airlock/public/glass{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/door/poddoor/preopen{
- dir = 4
+/obj/effect/turf_decal/corner/opaque/black{
+ dir = 9
},
-/turf/open/floor/plasteel/tech,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
/area/outpost/hallway/central)
-"Bh" = (
-/obj/structure/table,
-/obj/structure/window/reinforced,
-/obj/item/hand_labeler,
-/turf/open/floor/plasteel/tech/techmaint,
-/area/outpost/cargo)
-"Bj" = (
-/obj/effect/turf_decal/spline/fancy/opaque/grey{
- dir = 8;
- pixel_y = 1
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+"wq" = (
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"wu" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
},
-/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
-"Bp" = (
-/obj/effect/turf_decal/siding/thinplating{
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
},
-/obj/effect/turf_decal/siding/thinplating{
- dir = 8
- },
-/obj/machinery/door/firedoor/border_only{
+/obj/effect/turf_decal/corner/opaque/neutral{
dir = 8
},
-/obj/machinery/door/firedoor/border_only{
- dir = 4
+/turf/open/floor/plasteel,
+/area/outpost/hallway/port)
+"wv" = (
+/obj/machinery/light/dim/directional/east,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned,
+/area/outpost/cargo)
+"wA" = (
+/obj/effect/decal/cleanable/food/tomato_smudge,
+/turf/open/floor/wood/mahogany,
+/area/outpost/crew/bar)
+"wC" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/effect/turf_decal/industrial/stand_clear,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
+/obj/structure/disposalpipe/junction/flip{
+ dir = 1
},
-/obj/machinery/door/airlock/public/glass{
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
dir = 4
},
-/turf/open/floor/plasteel/tech,
+/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4,
+/turf/open/floor/plasteel,
+/area/outpost/hallway/port)
+"wE" = (
+/obj/structure/closet/secure_closet/armory1,
+/obj/effect/turf_decal/industrial/outline/yellow,
+/turf/open/floor/plasteel,
+/area/outpost/security)
+"wF" = (
+/obj/structure/flora/grass/jungle,
+/obj/structure/flora/junglebush/c,
+/turf/open/floor/grass/ship/jungle,
+/area/outpost/hallway/central)
+"wK" = (
+/turf/closed/indestructible/reinforced,
+/area/outpost/vacant_rooms/office)
+"wL" = (
+/turf/closed/indestructible/reinforced,
/area/outpost/vacant_rooms)
-"Bs" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 8
+"wN" = (
+/obj/machinery/vending/coffee,
+/obj/machinery/light/dim/directional/south,
+/turf/open/floor/plasteel/tech/techmaint,
+/area/outpost/hallway/central)
+"wR" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/foamedmetal,
+/turf/open/floor/plating,
+/area/outpost/maintenance/central)
+"wT" = (
+/obj/machinery/jukebox{
+ pixel_y = 16;
+ density = 0;
+ can_be_unanchored = 1
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/carpet/green,
+/area/outpost/crew/bar)
+"wU" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment{
- dir = 5
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
},
-/obj/structure/cable{
- icon_state = "1-4"
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"wW" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"Bu" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/turf/open/floor/wood,
-/area/outpost/crew)
-"Bx" = (
-/obj/structure/chair{
- dir = 4
- },
+/area/outpost/security)
+"wX" = (
/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/corner/opaque/green{
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 6
},
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/corner/opaque/neutral/diagonal,
+/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"BE" = (
-/obj/structure/disposalpipe/segment{
- dir = 5
+/area/outpost/storage)
+"xc" = (
+/obj/effect/turf_decal/corner/opaque/red{
+ dir = 4
},
-/obj/effect/turf_decal/spline/fancy/opaque/grey{
- dir = 1;
- pixel_x = -1
+/turf/open/floor/plasteel,
+/area/outpost/security)
+"xf" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
-/obj/effect/turf_decal/spline/fancy/opaque/grey{
- pixel_x = -1
+/obj/effect/turf_decal/corner/opaque/brown/full,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/plasteel/patterned,
+/area/outpost/cargo)
+"xk" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 8
},
+/obj/effect/turf_decal/corner/opaque/neutral/diagonal,
/turf/open/floor/plasteel,
/area/outpost/vacant_rooms)
-"BF" = (
-/obj/machinery/disposal/bin,
-/obj/effect/turf_decal/box,
-/obj/effect/turf_decal/siding/wood{
- dir = 4
+"xm" = (
+/obj/machinery/light/small/directional/south,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/oil,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"xo" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/machinery/light/dim/directional/north,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
-/obj/structure/disposalpipe/trunk{
- dir = 4
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
+/obj/effect/turf_decal/corner/opaque/neutral{
+ dir = 1
},
+/turf/open/floor/plasteel,
+/area/outpost/hallway/central)
+"xr" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
/obj/machinery/camera/autoname{
- dir = 6
+ dir = 5
},
-/turf/open/floor/plasteel,
-/area/outpost/crew)
-"BJ" = (
-/obj/structure/rack,
-/obj/effect/turf_decal/box/corners{
+/obj/effect/turf_decal/corner/opaque/neutral{
dir = 8
},
-/obj/effect/turf_decal/box/corners{
- dir = 1
- },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel,
+/area/outpost/hallway/port)
+"xu" = (
+/obj/effect/spawner/lootdrop/grille_or_trash,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/tech/techmaint,
-/area/outpost/vacant_rooms)
-"BQ" = (
-/obj/structure/railing/corner{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/obj/structure/disposalpipe/segment{
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"xy" = (
+/obj/effect/decal/cleanable/glass/strange,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
},
-/turf/open/floor/plasteel/tech,
-/area/outpost/cargo)
-"Cc" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
},
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/tech/techmaint,
+/area/outpost/maintenance/central)
+"xI" = (
+/obj/machinery/camera/autoname,
+/obj/effect/turf_decal/corner/opaque/neutral/diagonal,
+/turf/open/floor/plasteel,
+/area/outpost/vacant_rooms)
+"xJ" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
/obj/structure/disposalpipe/segment{
- dir = 4
+ dir = 6
},
-/obj/structure/cable{
- 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/wood,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/wood,
-/area/outpost/crew)
-"Cd" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/plasteel/tech,
-/area/outpost/cargo)
-"Cj" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+/obj/effect/turf_decal/corner/opaque/neutral{
dir = 8
},
-/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel,
/area/outpost/hallway/central)
-"Ck" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/effect/turf_decal/spline/fancy/opaque/grey{
- dir = 8;
- pixel_y = 1
+"xK" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
-/obj/effect/turf_decal/spline/fancy/opaque/grey/corner{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/effect/turf_decal/spline/fancy/opaque/grey/corner,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
-"Ct" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 8
+/obj/effect/turf_decal/techfloor{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 8
+/obj/effect/turf_decal/techfloor,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"xM" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
},
/obj/structure/disposalpipe/segment{
- dir = 5
+ dir = 9
},
-/obj/structure/cable{
- icon_state = "2-4"
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 4
},
-/obj/structure/cable{
- icon_state = "1-4"
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 4
},
/turf/open/floor/plasteel,
/area/outpost/hallway/central)
-"CI" = (
-/obj/effect/turf_decal/spline/fancy/opaque/grey{
- dir = 1
+"xQ" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
-/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
-"CL" = (
-/obj/structure/cable{
- icon_state = "1-2"
+/obj/effect/decal/cleanable/oil,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"xW" = (
+/obj/effect/turf_decal/industrial/warning{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 4
+/obj/effect/turf_decal/industrial/warning,
+/obj/machinery/door/airlock{
+ name = "Restroom";
+ id_tag = "out3"
},
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/tech,
+/area/outpost/crew/bar)
+"xX" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/spawner/lootdrop/waste/trash,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"xZ" = (
+/obj/structure/chair/pew/left{
dir = 8
},
-/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/corner/opaque/green{
+ dir = 6
+ },
/turf/open/floor/plasteel,
/area/outpost/hallway/central)
-"CR" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
+"yc" = (
+/obj/structure/foamedmetal,
+/turf/open/floor/plating,
+/area/outpost/maintenance/central)
+"yh" = (
+/obj/structure/chair/sofa/corner{
+ dir = 4
},
-/turf/open/floor/plasteel/stairs{
- dir = 1
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/carpet/green,
+/area/outpost/crew/bar)
+"yj" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
},
-/area/outpost/hallway/central)
-"CT" = (
-/obj/structure/rack,
-/obj/effect/turf_decal/box/corners,
-/obj/effect/turf_decal/box/corners{
+/obj/effect/turf_decal/industrial/warning{
dir = 4
},
-/turf/open/floor/plasteel/tech/techmaint,
-/area/outpost/vacant_rooms)
-"De" = (
-/obj/structure/rack,
-/obj/effect/turf_decal/trimline/opaque/green/line{
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
},
-/obj/effect/turf_decal/trimline/opaque/green/line{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
},
-/obj/machinery/camera/autoname{
- dir = 8
+/turf/open/floor/plasteel/tech,
+/area/outpost/hallway/port)
+"yk" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
-/turf/open/floor/plasteel/tech/techmaint,
-/area/outpost/vacant_rooms)
-"Df" = (
-/obj/effect/turf_decal/corner/opaque/bottlegreen{
- dir = 10
+/obj/structure/disposalpipe/junction/flip{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 4
},
+/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4,
/turf/open/floor/plasteel,
-/area/outpost/crew/dorm)
-"Dg" = (
+/area/outpost/hallway/central)
+"yq" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
+ },
+/obj/effect/turf_decal/steeldecal/steel_decals6{
dir = 5
},
-/obj/structure/cable{
- icon_state = "1-2"
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"yv" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
+ },
+/obj/effect/turf_decal/corner/opaque/brown/full,
+/turf/open/floor/plasteel/patterned,
+/area/outpost/cargo)
+"yB" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 5
+ },
+/obj/effect/turf_decal/corner/opaque/neutral{
+ dir = 1
},
/turf/open/floor/plasteel,
/area/outpost/hallway/central)
-"Do" = (
-/obj/structure/table,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
+"yE" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
+/turf/open/floor/wood,
+/area/outpost/crew/bar)
+"yN" = (
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/donkpockets,
+/turf/open/floor/plasteel/mono,
+/area/outpost/vacant_rooms)
+"yQ" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/blood/gibs{
+ name = "old bloody vomit"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/outpost/maintenance/central)
+"yR" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/machinery/camera/autoname{
+ dir = 8
+ },
+/obj/effect/turf_decal/corner/opaque/neutral{
dir = 4
},
-/obj/item/paper_bin,
-/turf/open/floor/plasteel/tech/techmaint,
+/turf/open/floor/plasteel,
+/area/outpost/hallway/central)
+"yS" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/patterned,
/area/outpost/cargo)
-"Dz" = (
+"yV" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/effect/turf_decal/corner/opaque/neutral,
+/obj/structure/closet/firecloset/wall{
+ dir = 8;
+ pixel_x = 28
+ },
+/turf/open/floor/plasteel,
+/area/outpost/hallway/port)
+"za" = (
+/obj/structure/falsewall/reinforced,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/falsewall/reinforced,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"zb" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/airalarm/directional/south,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
+ dir = 4
},
-/obj/effect/turf_decal/spline/fancy/opaque/grey/corner{
+/obj/effect/turf_decal/corner/opaque/neutral{
dir = 8
},
-/obj/effect/turf_decal/spline/fancy/opaque/grey{
- dir = 4;
- pixel_y = 1
- },
-/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/floordetail/tiled,
/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
-"DA" = (
-/obj/structure/railing/corner{
- dir = 4
+/area/outpost/hallway/central)
+"zg" = (
+/obj/effect/landmark/outpost/elevator_machine{
+ shaft = "1"
},
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/obj/structure/disposalpipe/junction{
+/obj/effect/turf_decal/industrial/warning,
+/obj/effect/turf_decal/industrial/warning{
dir = 1
},
+/obj/machinery/door/airlock/hatch,
/turf/open/floor/plasteel/tech,
+/area/outpost/hallway/central)
+"zo" = (
+/obj/machinery/mineral/processing_unit{
+ output_dir = 4;
+ input_dir = 2
+ },
+/obj/effect/turf_decal/industrial/outline/yellow,
+/turf/open/floor/plasteel/patterned/cargo_one,
/area/outpost/cargo)
-"DB" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 8
+"zq" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 5
},
/turf/open/floor/wood,
-/area/outpost/crew)
-"DJ" = (
-/obj/structure/chair/comfy/brown{
- dir = 4
- },
-/obj/effect/turf_decal/spline/fancy/wood{
+/area/outpost/crew/bar)
+"zr" = (
+/obj/machinery/camera/autoname{
dir = 1
},
-/turf/open/floor/wood,
-/area/outpost/vacant_rooms)
-"DQ" = (
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 10
- },
-/obj/structure/table,
-/obj/machinery/newscaster/directional/south,
-/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"DU" = (
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 5
+/obj/effect/turf_decal/corner/opaque/neutral/diagonal,
+/obj/effect/turf_decal/spline/fancy/opaque/lightgrey{
+ dir = 8
},
-/obj/machinery/vending/cola/random,
/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"DV" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
+/area/outpost/storage)
+"zv" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/structure/sign/directions/service{
+ pixel_y = 22;
+ dir = 8
},
-/obj/structure/cable{
- icon_state = "4-8"
+/obj/effect/turf_decal/corner/opaque/black{
+ dir = 10
},
+/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel,
/area/outpost/hallway/central)
-"DX" = (
-/obj/structure/sink{
+"zC" = (
+/obj/machinery/conveyor{
dir = 4;
- pixel_x = -13
+ id = "outpost2"
},
-/obj/structure/mirror{
- pixel_x = -28
+/obj/effect/turf_decal/industrial/warning/fulltile,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/outpost/cargo)
+"zD" = (
+/obj/machinery/camera/autoname{
+ dir = 4
},
-/obj/machinery/light/small/directional/south,
+/obj/machinery/light/directional/north,
/turf/open/floor/plasteel,
-/area/outpost/crew)
-"DY" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/obj/structure/disposalpipe/junction/yjunction{
- dir = 1
- },
-/obj/structure/cable{
+/area/outpost/security)
+"zE" = (
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable{
+/turf/open/floor/plating/asteroid,
+/area/outpost/external)
+"zI" = (
+/obj/machinery/light/small/directional/east,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/outpost/maintenance/central)
+"zL" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"Eg" = (
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 9
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 4
},
/turf/open/floor/plasteel,
/area/outpost/hallway/central)
-"Eh" = (
-/obj/structure/railing{
- dir = 1
+"zM" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
+/obj/effect/decal/cleanable/generic,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"zO" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
},
-/obj/structure/disposalpipe/segment{
+/obj/effect/turf_decal/siding/wood{
dir = 4
},
-/turf/open/floor/plasteel/tech,
-/area/outpost/cargo)
-"En" = (
-/obj/effect/turf_decal/corner/opaque/green/three_quarters{
- dir = 4
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
},
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 4
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/outpost/crew/bar)
+"zR" = (
+/obj/effect/mob_spawn/human/corpse/charredskeleton{
+ name = "Marv"
+ },
+/obj/item/stack/cable_coil/cut/yellow,
+/obj/effect/decal/cleanable/ash/large,
+/turf/open/floor/plating/asteroid,
+/area/outpost/external)
+"zS" = (
+/obj/effect/spawner/lootdrop/waste/trash,
+/turf/open/floor/plating,
+/area/outpost/maintenance/central)
+"zY" = (
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
},
-/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"Eo" = (
-/obj/structure/rack,
-/obj/effect/turf_decal/box/corners{
- dir = 4
+/obj/effect/turf_decal/corner_techfloor_gray{
+ dir = 5
},
+/obj/effect/decal/cleanable/generic,
/turf/open/floor/plasteel/tech/techmaint,
-/area/outpost/vacant_rooms)
-"Ep" = (
-/obj/structure/window/reinforced/tinted{
- dir = 8
- },
-/obj/structure/flora/ausbushes/ppflowers,
-/obj/structure/flora/ausbushes/sparsegrass,
-/turf/open/floor/grass,
-/area/outpost/crew)
-"Eq" = (
-/obj/structure/railing{
- dir = 4
+/area/outpost/maintenance/fore)
+"Ab" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
},
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 4
+/obj/structure/foamedmetal,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"Ai" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
-/turf/open/floor/plasteel/tech,
-/area/outpost/cargo)
-"Ev" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/effect/turf_decal/spline/fancy/opaque/grey{
- dir = 8;
- pixel_y = 1
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 1
},
-/obj/effect/turf_decal/corner/opaque/black{
+/obj/machinery/camera/autoname{
dir = 5
},
-/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
-"Ez" = (
-/obj/machinery/airalarm/directional/north,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+/obj/effect/turf_decal/trimline/opaque/purple/filled/line{
dir = 4
},
/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
-"EB" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
- },
-/turf/open/floor/wood,
-/area/outpost/crew)
-"ED" = (
-/obj/structure/table/wood,
-/obj/structure/window/reinforced{
+/area/outpost/crew/janitor)
+"Ak" = (
+/obj/machinery/door/airlock/maintenance{
dir = 4
},
-/obj/machinery/microwave{
- pixel_y = 5
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
-/turf/open/floor/carpet,
-/area/outpost/crew)
-"EG" = (
-/obj/effect/turf_decal/corner/opaque/black{
- dir = 9
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
},
-/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"EH" = (
-/obj/structure/railing/corner,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+/obj/effect/turf_decal/industrial/warning{
dir = 8
},
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 1
+/turf/open/floor/plasteel/tech,
+/area/outpost/maintenance/fore)
+"Am" = (
+/obj/machinery/vending/cola/random,
+/obj/effect/turf_decal/spline/fancy/opaque/lightgrey{
+ dir = 8
},
-/obj/structure/disposalpipe/segment{
- dir = 6
+/turf/open/floor/plasteel/tech/techmaint,
+/area/outpost/hallway/port)
+"Ao" = (
+/obj/item/radio/intercom/directional/north,
+/obj/item/trash/can/food/beans{
+ pixel_y = -1
},
-/obj/structure/cable{
- icon_state = "2-4"
+/obj/effect/decal/cleanable/generic,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/trash/can/food/beans{
+ pixel_x = 9;
+ pixel_y = 10
},
-/turf/open/floor/plasteel/tech,
-/area/outpost/cargo)
-"EI" = (
-/obj/effect/turf_decal/corner/opaque/green/three_quarters{
- dir = 1
+/obj/item/reagent_containers/food/snacks/canned/beans{
+ pixel_x = -14;
+ pixel_y = -7
},
-/obj/structure/chair{
- dir = 4
+/obj/item/reagent_containers/food/snacks/grown/soybeans{
+ pixel_x = -12;
+ pixel_y = 8
},
-/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"EK" = (
-/obj/structure/railing/corner{
- dir = 8
+/turf/open/floor/plating/asteroid,
+/area/outpost/maintenance/central)
+"Ap" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/outpost/maintenance/central)
+"Au" = (
+/obj/effect/turf_decal/steeldecal/steel_decals3{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"Aw" = (
+/obj/machinery/vending/coffee,
+/turf/open/floor/plasteel/tech/techmaint,
+/area/outpost/hallway/port)
+"Ay" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/structure/sign/poster/official/miners{
+ pixel_x = 26
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/turf_decal/corner/opaque/neutral,
+/turf/open/floor/plasteel,
+/area/outpost/hallway/port)
+"AH" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
+/turf/open/floor/plating/asteroid,
+/area/outpost/external)
+"AI" = (
/obj/effect/turf_decal/industrial/warning{
dir = 4
},
-/turf/open/floor/plasteel/tech,
-/area/outpost/cargo)
-"EM" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/border_only{
dir = 4
},
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/plasteel/tech,
-/area/outpost/cargo)
-"EU" = (
-/obj/structure/curtain/cloth/fancy,
-/obj/effect/turf_decal/siding/wood,
-/obj/effect/turf_decal/siding/wood{
- dir = 1
+/obj/effect/mapping_helpers/airlock/locked,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/plasteel/mono,
-/area/outpost/crew)
-"EW" = (
-/obj/structure/sign/poster/official/random{
- pixel_y = 32
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance{
+ dir = 4;
+ req_access = list("101")
},
/turf/open/floor/plasteel/tech,
-/area/outpost/cargo)
-"EY" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
-/obj/structure/closet/emcloset/wall{
- pixel_y = 28
+/area/outpost/maintenance/central)
+"AL" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
-/obj/effect/turf_decal/corner/opaque/green{
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/turf_decal/corner/opaque/black{
+ dir = 10
+ },
+/obj/effect/turf_decal/corner/opaque/neutral{
dir = 5
},
/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"Fa" = (
-/obj/effect/turf_decal/box/corners{
- dir = 8
- },
-/turf/open/floor/plasteel/patterned/grid,
-/area/outpost/cargo)
-"Ff" = (
-/obj/structure/rack,
-/obj/effect/turf_decal/trimline/opaque/green/end,
-/obj/structure/sign/poster/contraband/random{
- pixel_x = -32
- },
-/turf/open/floor/plasteel/tech/techmaint,
-/area/outpost/vacant_rooms)
-"Fu" = (
+/area/outpost/hallway/port)
+"AM" = (
/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"FB" = (
-/obj/structure/railing{
dir = 6
},
-/turf/open/floor/grass,
-/area/outpost/crew)
-"FF" = (
-/obj/machinery/vending/games,
-/obj/effect/turf_decal/corner/opaque/green/three_quarters{
- dir = 4
+/obj/effect/turf_decal/siding/wood/corner,
+/obj/machinery/airalarm/directional/north,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/confetti,
+/turf/open/floor/wood,
+/area/outpost/crew/library)
+"AN" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/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/steeldecal/steel_decals4,
/turf/open/floor/plasteel,
/area/outpost/hallway/central)
-"FM" = (
-/obj/machinery/power/floodlight,
-/obj/structure/cable,
-/turf/open/floor/plasteel/tech/techmaint,
-/area/outpost/cargo)
-"FN" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable{
+"AO" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/door/firedoor/border_only{
- dir = 8
- },
-/obj/machinery/door/firedoor/border_only{
+/obj/machinery/airalarm/directional/south,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
},
-/obj/effect/turf_decal/siding/thinplating{
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
},
-/obj/effect/turf_decal/siding/thinplating{
+/obj/effect/turf_decal/corner/opaque/neutral{
dir = 8
},
-/obj/machinery/door/airlock/public/glass{
- dir = 4
- },
-/turf/open/floor/plasteel/tech,
+/turf/open/floor/plasteel,
/area/outpost/hallway/central)
-"FQ" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 1
+"AP" = (
+/obj/structure/table/wood,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/storage/box/pillbottles,
+/obj/projectile/bullet/dart/syringe,
+/obj/projectile/bullet/dart/syringe{
+ pixel_x = -6
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
+/obj/projectile/bullet/dart/syringe{
+ pixel_y = 4;
+ pixel_x = 8
},
-/turf/open/floor/wood,
-/area/outpost/crew)
-"FU" = (
-/obj/effect/turf_decal/spline/fancy/opaque/grey{
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"AS" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/turf_decal/corner/opaque/neutral{
dir = 1
},
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 8
- },
-/obj/structure/sign/poster/contraband/random{
- pixel_x = 32
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/garbage,
/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
-"Gc" = (
-/obj/effect/turf_decal/spline/fancy/opaque/grey/corner{
- dir = 4
+/area/outpost/hallway/central)
+"AT" = (
+/obj/structure/railing/wood{
+ dir = 2;
+ color = "#792f27"
},
/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
-"Gp" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/spline/fancy/opaque/grey{
- dir = 8;
- pixel_y = 1
- },
-/obj/effect/turf_decal/spline/fancy/opaque/grey{
+/turf/open/floor/plasteel/stairs/wood{
dir = 4;
- pixel_y = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
-"Gq" = (
-/obj/effect/turf_decal/corner/opaque/bottlegreen/three_quarters{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-4"
+ color = "#792f27"
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
+/area/outpost/crew/bar)
+"AU" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/effect/turf_decal/corner/opaque/neutral{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
+/turf/open/floor/plasteel,
+/area/outpost/hallway/central)
+"AW" = (
/obj/structure/disposalpipe/segment{
- dir = 6
+ dir = 10
},
-/turf/open/floor/plasteel,
-/area/outpost/crew/dorm)
-"Gu" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/outpost/vacant_rooms/office)
+"Bc" = (
+/obj/item/radio/intercom/directional/west,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/corner/opaque/red{
dir = 4
},
+/obj/effect/landmark/ert_outpost_spawn,
/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"GA" = (
-/obj/item/kirbyplants/random,
-/obj/machinery/computer/security/telescreen/entertainment{
- pixel_y = -32
+/area/outpost/security)
+"Bd" = (
+/obj/machinery/computer/cryopod/directional/north,
+/obj/effect/turf_decal/corner_steel_grid{
+ dir = 5
},
-/turf/open/floor/plasteel/grimy,
-/area/outpost/crew)
-"GB" = (
-/obj/structure/rack,
-/obj/structure/sign/poster/contraband/random{
- pixel_y = -32
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/outpost/security)
+"Bf" = (
+/obj/structure/table/wood,
+/obj/machinery/camera/autoname{
+ dir = 9
},
-/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/glass,
-/turf/open/floor/plasteel/tech/techmaint,
-/area/outpost/vacant_rooms)
-"GG" = (
-/obj/effect/turf_decal/spline/fancy/opaque/grey,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+/obj/item/reagent_containers/food/drinks/mug{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/turf/open/floor/carpet/green,
+/area/outpost/crew/bar)
+"Bj" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/turf_decal/industrial/warning{
dir = 8
},
/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/greenglow,
-/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
-"GJ" = (
-/obj/effect/turf_decal/siding/wood/corner{
- 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{
+/turf/open/floor/plasteel/tech,
+/area/outpost/hallway/central)
+"Bo" = (
+/obj/item/bedsheet,
+/obj/structure/bed/pod,
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/outpost/security)
+"Bp" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/turf/open/floor/wood,
-/area/outpost/crew)
-"GK" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/effect/turf_decal/spline/fancy/opaque/grey{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
+/obj/structure/sign/number/random,
/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
-"GL" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
+/area/outpost/hallway/central)
+"Bq" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/disposalpipe/junction/flip{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
dir = 8
},
-/obj/structure/disposalpipe/junction{
- dir = 4
+/turf/open/floor/wood{
+ icon_state = "wood-broken6"
},
-/obj/structure/cable{
- icon_state = "2-4"
+/area/outpost/crew/bar)
+"Br" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/grille/indestructable,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"Bt" = (
+/obj/machinery/light/dim/directional/west,
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/effect/turf_decal/corner/opaque/neutral/diagonal,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"GM" = (
-/turf/closed/indestructible/reinforced,
-/area/outpost/operations)
-"GQ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
+/area/outpost/vacant_rooms)
+"Bu" = (
+/obj/structure/table/wood,
+/obj/item/reagent_containers/food/drinks/beer/light{
+ pixel_x = -8
},
-/obj/structure/sign/poster/official/random{
- pixel_y = 32;
- pixel_x = -33
+/obj/item/newspaper{
+ pixel_x = 7;
+ pixel_y = 7
},
-/turf/open/floor/plasteel/tech,
-/area/outpost/cargo)
-"GS" = (
-/obj/structure/urinal{
- pixel_y = 32
+/turf/open/floor/carpet/green,
+/area/outpost/crew/bar)
+"By" = (
+/obj/structure/closet/secure_closet/contraband,
+/obj/effect/turf_decal/industrial/outline/yellow,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/outpost/security)
+"Bz" = (
+/obj/machinery/power/floodlight,
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
},
-/turf/open/floor/plasteel/patterned,
-/area/outpost/crew/dorm)
-"GT" = (
-/obj/effect/turf_decal/corner/opaque/black{
+/turf/open/floor/plating/asteroid,
+/area/outpost/external)
+"BA" = (
+/obj/structure/railing{
dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
- },
/obj/structure/disposalpipe/segment{
- dir = 9
+ dir = 10
},
-/obj/effect/turf_decal/spline/fancy/opaque/grey/corner{
- dir = 1
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"BE" = (
+/obj/item/kirbyplants{
+ icon_state = "plant-22"
},
-/obj/effect/turf_decal/spline/fancy/opaque/grey/corner{
- dir = 4
+/obj/machinery/light/dim/directional/east,
+/obj/effect/turf_decal/spline/fancy/opaque/lightgrey{
+ dir = 9
},
-/obj/machinery/firealarm/directional/south,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
-"GU" = (
-/obj/machinery/light/directional/south,
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 10
+/obj/item/radio/intercom/directional/south,
+/turf/open/floor/plasteel/tech/techmaint,
+/area/outpost/hallway/central)
+"BJ" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/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/outpost/hallway/central)
-"Hb" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/obj/structure/disposalpipe/segment{
+"BM" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/turf_decal/industrial/warning{
dir = 4
},
-/obj/structure/cable{
- icon_state = "4-8"
+/turf/open/floor/plasteel/tech,
+/area/outpost/hallway/port)
+"BN" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"He" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 1
+/obj/effect/turf_decal/steeldecal/steel_decals6{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"BO" = (
+/obj/structure/table,
+/obj/item/radio/intercom/table{
+ dir = 8;
+ layer = 2.99;
+ pixel_x = -6
+ },
+/obj/machinery/light/small/directional/north,
+/obj/machinery/firealarm/directional/west,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/outpost/security)
+"BR" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
},
-/obj/effect/turf_decal/spline/fancy/wood,
+/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/wood,
-/area/outpost/vacant_rooms)
-"Hg" = (
-/obj/effect/turf_decal/corner/opaque/black{
- dir = 5
+/area/outpost/crew/bar)
+"BX" = (
+/obj/structure/table/wood,
+/obj/item/reagent_containers/food/drinks/mug{
+ pixel_x = -2;
+ pixel_y = 5
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"Hi" = (
-/obj/effect/turf_decal/spline/fancy/opaque/grey{
- dir = 1;
- pixel_x = -1
+/turf/open/floor/carpet/royalblack,
+/area/outpost/crew/bar)
+"BY" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
},
-/obj/effect/turf_decal/spline/fancy/opaque/grey{
- pixel_x = -1
+/turf/closed/indestructible/reinforced,
+/area/outpost/maintenance/fore)
+"BZ" = (
+/obj/structure/railing{
+ dir = 1
},
-/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
-"Hl" = (
-/obj/machinery/light/directional/west,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/effect/turf_decal/corner/opaque/brown{
+ dir = 10
+ },
+/obj/structure/extinguisher_cabinet/directional/south,
+/turf/open/floor/plasteel/patterned,
+/area/outpost/cargo)
+"Ca" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/machinery/light/dim/directional/east,
+/obj/effect/turf_decal/corner/opaque/brown{
+ dir = 6
+ },
+/turf/open/floor/plasteel/patterned,
+/area/outpost/cargo)
+"Cc" = (
+/turf/closed/indestructible/reinforced,
+/area/outpost/crew/bar)
+"Cf" = (
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"Hm" = (
-/obj/structure/table/wood,
-/obj/structure/window/reinforced,
-/obj/item/storage/fancy/donut_box{
- pixel_y = -3
+/obj/structure/disposalpipe/segment{
+ dir = 9
},
-/turf/open/floor/carpet,
-/area/outpost/crew)
-"Hp" = (
-/obj/structure/rack,
-/obj/effect/turf_decal/trimline/opaque/green/end,
-/obj/structure/sign/poster/official/random{
- pixel_x = 32
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"Cg" = (
+/obj/structure/table/wood,
+/obj/machinery/chem_dispenser/drinks{
+ pixel_y = 13;
+ layer = 3
},
/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/tech/techmaint,
-/area/outpost/vacant_rooms)
-"Hx" = (
-/obj/effect/turf_decal/box,
-/obj/structure/closet/crate,
-/turf/open/floor/plasteel/patterned/grid,
-/area/outpost/cargo)
-"HB" = (
-/obj/structure/rack,
-/obj/effect/turf_decal/trimline/opaque/green/line{
- dir = 8
+/obj/item/reagent_containers/food/drinks/shaker{
+ pixel_x = 15;
+ layer = 4.26
+ },
+/obj/item/pen/fourcolor{
+ pixel_x = 4;
+ pixel_y = -1
+ },
+/turf/open/floor/carpet/green,
+/area/outpost/crew/bar)
+"Ch" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/machinery/firealarm/directional/north,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
+/obj/effect/turf_decal/corner/opaque/neutral{
+ dir = 1
},
-/obj/effect/turf_decal/trimline/opaque/green/line{
- dir = 4
+/turf/open/floor/plasteel,
+/area/outpost/hallway/central)
+"Ci" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/effect/landmark/outpost/elevator_machine{
+ shaft = "1"
},
-/turf/open/floor/plasteel/tech/techmaint,
-/area/outpost/vacant_rooms)
-"HC" = (
-/obj/effect/turf_decal/corner/opaque/bottlegreen{
- dir = 5
+/obj/machinery/elevator_call_button{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/effect/turf_decal/corner/opaque/black{
+ dir = 4
},
+/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/outpost/crew/dorm)
-"HG" = (
-/obj/effect/turf_decal/spline/fancy/opaque/grey{
- dir = 8;
- pixel_y = 1
+ dir = 4
},
/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
-"HH" = (
-/obj/effect/turf_decal/siding/wood/corner{
- dir = 1
- },
+/area/outpost/hallway/central)
+"Cl" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/machinery/light/small/directional/south,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
},
-/turf/open/floor/wood,
-/area/outpost/crew)
-"HL" = (
-/obj/structure/rack,
-/obj/structure/window/reinforced{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
},
-/obj/effect/turf_decal/trimline/opaque/green/end{
+/obj/effect/turf_decal/corner/opaque/neutral{
dir = 8
},
-/obj/effect/turf_decal/siding/thinplating{
+/turf/open/floor/plasteel,
+/area/outpost/hallway/central)
+"Cm" = (
+/obj/item/toy/sprayoncan,
+/turf/open/floor/plating/asteroid,
+/area/outpost/external)
+"Cn" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/industrial/warning{
dir = 8
},
-/obj/machinery/camera/autoname{
- dir = 1
- },
-/turf/open/floor/plasteel/tech/techmaint,
-/area/outpost/vacant_rooms)
-"HP" = (
-/obj/effect/turf_decal/corner/opaque/green/three_quarters{
+/obj/effect/turf_decal/industrial/warning{
dir = 4
},
-/obj/machinery/vending/coffee,
-/obj/structure/sign/poster/contraband/random{
- pixel_x = -32
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
-/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"HR" = (
-/obj/machinery/disposal/bin,
-/obj/effect/turf_decal/box,
-/obj/structure/disposalpipe/trunk{
- dir = 2
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 5
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
},
-/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"HU" = (
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 9
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
},
-/obj/machinery/light/directional/west,
-/obj/item/kirbyplants/random,
-/turf/open/floor/plasteel,
+/turf/open/floor/plasteel/tech,
/area/outpost/hallway/central)
-"HZ" = (
-/obj/structure/table/wood,
-/obj/structure/displaycase/forsale,
-/obj/effect/turf_decal/siding/wood/end,
-/turf/open/floor/wood,
+"Cp" = (
+/obj/machinery/camera/autoname,
+/turf/open/floor/plasteel/patterned/cargo_one,
/area/outpost/vacant_rooms)
-"Ij" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
+"Ct" = (
+/obj/structure/grille/indestructable,
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
},
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"Ik" = (
-/obj/structure/table/wood,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/light/floor{
- bulb_colour = "#FFDDBB";
- bulb_power = 0.3
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
},
-/turf/open/floor/carpet,
-/area/outpost/crew)
-"Ip" = (
-/obj/structure/toilet{
- dir = 8
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/machinery/light/small/directional/east,
-/obj/machinery/newscaster/directional/south,
-/obj/machinery/button/door{
- id = "ob2";
- name = "door lock";
- pixel_x = -22;
- pixel_y = 23;
- specialfunctions = 4;
- normaldoorcontrol = 1
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
},
-/turf/open/floor/plasteel/patterned,
-/area/outpost/crew/dorm)
-"It" = (
-/obj/structure/cable{
- icon_state = "1-2"
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
},
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+/turf/open/floor/plating,
+/area/outpost/maintenance/central)
+"CI" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/machinery/light/dim/directional/west,
+/obj/effect/turf_decal/corner/opaque/neutral{
dir = 8
},
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2,
-/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"Ix" = (
-/obj/structure/sign/directions/command{
- dir = 4;
- pixel_y = -24
- },
-/obj/effect/turf_decal/corner/opaque/black{
- dir = 6
- },
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 8
- },
+/area/outpost/hallway/port)
+"CK" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/structure/cable/yellow,
+/obj/structure/reagent_dispensers/watertank,
+/obj/machinery/light/small/directional/west,
/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"IA" = (
-/obj/structure/cable{
- icon_state = "1-2"
+/area/outpost/crew/janitor)
+"CL" = (
+/obj/structure/flora/junglebush,
+/turf/open/floor/grass/ship/jungle,
+/area/outpost/hallway/port)
+"CU" = (
+/obj/machinery/button/door{
+ id = "out2";
+ normaldoorcontrol = 1;
+ specialfunctions = 4;
+ dir = 1;
+ pixel_y = -22;
+ pixel_x = -9
},
-/turf/open/floor/plasteel,
-/area/outpost/operations)
-"IB" = (
/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/floordetail/tiled,
/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
-"ID" = (
-/obj/structure/railing,
-/obj/effect/turf_decal/spline/fancy/opaque/black,
-/turf/open/floor/plasteel/tech,
+/area/outpost/maintenance/fore)
+"CV" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned,
/area/outpost/cargo)
-"IU" = (
+"CX" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/effect/turf_decal/corner/opaque/brown{
+ dir = 6
+ },
+/turf/open/floor/plasteel/patterned,
+/area/outpost/cargo)
+"Df" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/corner/opaque/black{
- dir = 9
+/obj/structure/sign/poster/random{
+ pixel_x = 28
},
+/obj/item/kirbyplants/random,
+/obj/effect/turf_decal/corner/opaque/neutral,
/turf/open/floor/plasteel,
/area/outpost/hallway/central)
-"IY" = (
-/obj/structure/chair/greyscale{
+"Di" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
dir = 8
},
-/obj/effect/turf_decal/corner/opaque/bottlegreen/border{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
+/obj/effect/turf_decal/corner/opaque/brown/full,
+/turf/open/floor/plasteel/patterned,
+/area/outpost/cargo)
+"Dm" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/patterned,
+/area/outpost/cargo)
+"Do" = (
+/obj/effect/turf_decal/corner/opaque/red{
+ dir = 1
},
-/obj/machinery/light/small/directional/east,
/turf/open/floor/plasteel,
-/area/outpost/crew/dorm)
-"Jh" = (
-/obj/effect/turf_decal/corner/opaque/black{
- dir = 9
+/area/outpost/security)
+"Dp" = (
+/obj/structure/railing/corner,
+/obj/effect/turf_decal/industrial/loading{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+/turf/open/floor/plasteel/patterned,
+/area/outpost/cargo)
+"Dq" = (
+/obj/structure/falsewall/reinforced,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"DA" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/turf_decal/corner/opaque/neutral{
dir = 8
},
/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"Jl" = (
-/obj/structure/rack,
-/obj/machinery/light/small/broken/directional/south,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/garbage,
-/obj/effect/decal/cleanable/glass,
-/turf/open/floor/plasteel/tech/techmaint,
-/area/outpost/vacant_rooms)
-"Jo" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+/area/outpost/hallway/port)
+"DF" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/turf_decal/corner/opaque/black{
+ dir = 4
},
-/obj/structure/disposalpipe/junction/yjunction{
+/turf/open/floor/plasteel,
+/area/outpost/hallway/port)
+"DH" = (
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/minor/bowler_or_that,
+/obj/effect/spawner/lootdrop/maintenance/two,
+/turf/open/floor/plasteel/mono,
+/area/outpost/storage)
+"DI" = (
+/obj/structure/railing{
dir = 8
},
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel/tech,
-/area/outpost/cargo)
-"Jr" = (
-/obj/structure/cable{
- icon_state = "1-2"
+/obj/effect/decal/fakelattice,
+/turf/open/floor/plasteel/elevatorshaft,
+/area/outpost/security)
+"DL" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
},
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"Ju" = (
-/obj/structure/railing,
-/obj/structure/disposalpipe/segment{
+/turf/open/floor/plating,
+/area/outpost/maintenance/central)
+"DP" = (
+/obj/structure/railing/corner,
+/obj/machinery/light/dim/directional/north,
+/obj/effect/turf_decal/corner/opaque/brown{
dir = 9
},
-/turf/open/floor/plasteel/tech,
+/obj/effect/turf_decal/corner/opaque/brown{
+ dir = 4
+ },
+/turf/open/floor/plasteel/patterned,
/area/outpost/cargo)
-"Jw" = (
-/obj/structure/chair/comfy/brown{
- dir = 8
+"DS" = (
+/obj/machinery/power/smes/magical{
+ name = "power relay"
},
-/obj/machinery/light/small/directional/east,
-/obj/effect/turf_decal/spline/fancy/wood{
- dir = 5
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
},
-/obj/item/radio/intercom/directional/north{
- pixel_y = 32
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"DV" = (
+/obj/structure/falsewall/reinforced,
+/turf/open/floor/plating,
+/area/outpost/maintenance/central)
+"DW" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/corner_techfloor_gray{
+ dir = 10
},
-/turf/open/floor/carpet/royalblack,
-/area/outpost/vacant_rooms)
-"Jz" = (
-/obj/machinery/light/directional/east,
-/turf/open/floor/wood,
-/area/outpost/crew)
-"JB" = (
-/obj/effect/turf_decal/corner/opaque/black{
- dir = 6
+/obj/effect/decal/cleanable/generic,
+/turf/open/floor/plasteel/tech/techmaint,
+/area/outpost/maintenance/fore)
+"Ef" = (
+/obj/effect/turf_decal/corner_techfloor_gray{
+ dir = 9
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+/obj/effect/spawner/lootdrop/salvage/metal,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/tech/techmaint,
+/area/outpost/maintenance/fore)
+"Eg" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/item/radio/intercom/directional/east,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/trimline/opaque/purple/filled/line{
dir = 8
},
/turf/open/floor/plasteel,
+/area/outpost/crew/janitor)
+"Ei" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/spider/stickyweb,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"Eo" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/effect/turf_decal/corner/opaque/black,
+/turf/open/floor/plasteel,
/area/outpost/hallway/central)
-"JC" = (
-/obj/effect/turf_decal/siding/wood/corner{
- dir = 1
+"Et" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
+/obj/effect/turf_decal/box,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/outpost/vacant_rooms)
+"Ez" = (
+/obj/effect/spawner/structure/window/reinforced/indestructable,
+/turf/open/floor/plating,
+/area/outpost/hallway/port)
+"EC" = (
+/obj/machinery/light/directional/south,
+/turf/open/floor/ship/dirt,
+/area/outpost/hallway/port)
+"ED" = (
+/obj/structure/table/wood,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/table_bell{
+ pixel_x = 6;
+ pixel_y = -3
},
+/turf/open/floor/carpet/green,
+/area/outpost/crew/bar)
+"EG" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
/obj/structure/disposalpipe/segment{
- dir = 9
+ dir = 10
},
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
+/obj/structure/closet/l3closet/janitor,
+/obj/effect/turf_decal/steeldecal/steel_decals3,
+/turf/open/floor/plasteel,
+/area/outpost/crew/janitor)
+"EH" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/plasteel,
+/area/outpost/hallway/port)
+"EP" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"ER" = (
+/obj/effect/spawner/lootdrop/grille_or_trash,
+/turf/open/floor/plating,
+/area/outpost/maintenance/central)
+"EV" = (
+/obj/structure/chair/comfy/brown,
+/obj/machinery/firealarm/directional/north,
+/obj/effect/turf_decal/siding/wood,
/turf/open/floor/wood,
-/area/outpost/crew)
-"JL" = (
-/obj/structure/table,
-/obj/structure/window/reinforced{
- dir = 4
+/area/outpost/crew/bar)
+"EX" = (
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"Fa" = (
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
},
-/turf/open/floor/plasteel/tech/techmaint,
-/area/outpost/cargo)
-"JM" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+/obj/effect/turf_decal/steeldecal/steel_decals_central6,
+/turf/open/floor/plasteel,
+/area/outpost/vacant_rooms/office)
+"Ff" = (
+/obj/effect/turf_decal/corner/opaque/red{
dir = 4
},
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/wood,
-/area/outpost/crew)
-"JU" = (
-/turf/open/floor/plasteel/patterned,
-/area/outpost/crew/dorm)
-"JX" = (
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 6
+/obj/machinery/newscaster/directional/west,
+/turf/open/floor/plasteel,
+/area/outpost/security)
+"Fi" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/effect/turf_decal/corner/opaque/neutral{
+ dir = 1
},
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 8
+/obj/structure/sign/poster/random{
+ pixel_y = 30
},
-/obj/machinery/light/directional/east,
/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"Ka" = (
-/obj/structure/chair/comfy/brown{
- dir = 8
+/area/outpost/hallway/port)
+"Fl" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/greenglow,
-/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
-"Kn" = (
+/obj/effect/turf_decal/industrial/warning/dust,
+/obj/effect/turf_decal/industrial/warning/dust{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"Fn" = (
/obj/effect/turf_decal/industrial/warning{
dir = 4
},
-/obj/effect/turf_decal/industrial/stand_clear{
+/obj/effect/turf_decal/industrial/warning{
dir = 8
},
-/turf/open/floor/plasteel/tech,
-/area/outpost/cargo)
-"Ko" = (
-/obj/effect/turf_decal/box/corners{
+/obj/machinery/door/window{
+ req_access = list("101");
+ dir = 8
+ },
+/obj/machinery/door/window{
+ req_access = list("101");
dir = 4
},
-/turf/open/floor/plasteel/patterned/grid,
-/area/outpost/cargo)
-"Kt" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+/obj/effect/turf_decal/floordetail/tiled,
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/border_only{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+/turf/open/floor/plasteel/tech,
+/area/outpost/security)
+"Fq" = (
+/obj/effect/spawner/structure/window/reinforced/indestructable,
+/turf/open/floor/plating,
+/area/outpost/crew/library)
+"Fr" = (
+/obj/machinery/vending/boozeomat{
+ pixel_y = 32;
+ density = 0
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/carpet/green,
+/area/outpost/crew/bar)
+"Fs" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
},
-/obj/structure/disposalpipe/junction/flip{
- dir = 1
+/turf/open/floor/wood{
+ icon_state = "wood-broken4"
},
-/obj/structure/cable{
- icon_state = "1-8"
+/area/outpost/crew/bar)
+"Fv" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
},
-/obj/structure/cable{
- icon_state = "2-8"
+/obj/machinery/firealarm/directional/west,
+/turf/open/floor/plasteel/dark,
+/area/outpost/cargo/office)
+"Fx" = (
+/obj/structure/table,
+/obj/effect/turf_decal/spline/fancy/opaque/lightgrey{
+ dir = 1
},
+/obj/item/radio/intercom/directional/west,
+/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"Ku" = (
-/obj/machinery/disposal/bin,
-/obj/effect/turf_decal/box,
-/obj/structure/disposalpipe/trunk{
+/area/outpost/vacant_rooms/office)
+"FB" = (
+/turf/open/floor/carpet/green,
+/area/outpost/crew/bar)
+"FD" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/turf/open/floor/wood{
+ icon_state = "wood-broken7"
+ },
+/area/outpost/crew/bar)
+"FE" = (
+/obj/machinery/mineral/unloading_machine{
dir = 1
},
-/obj/machinery/newscaster/directional/south,
-/turf/open/floor/plasteel/tech,
+/obj/effect/turf_decal/industrial/outline/yellow,
+/turf/open/floor/plasteel/patterned/cargo_one,
/area/outpost/cargo)
-"Kw" = (
-/obj/structure/rack,
-/obj/effect/turf_decal/trimline/opaque/green/line{
- dir = 8
- },
-/obj/effect/turf_decal/trimline/opaque/green/line{
+"FF" = (
+/obj/effect/turf_decal/ihejirika_small/left,
+/turf/open/floor/plating,
+/area/outpost/maintenance/central)
+"FH" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
},
-/obj/machinery/light/small/directional/west,
-/turf/open/floor/plasteel/tech/techmaint,
-/area/outpost/vacant_rooms)
-"Ky" = (
-/obj/effect/turf_decal/spline/fancy/wood{
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
},
-/turf/open/floor/carpet/royalblack,
-/area/outpost/vacant_rooms)
-"Kz" = (
-/obj/machinery/light/directional/south,
-/turf/open/floor/plasteel/patterned,
-/area/outpost/cargo)
-"KA" = (
-/obj/item/kirbyplants/random,
-/obj/effect/turf_decal/spline/fancy/opaque/grey{
- dir = 4;
- pixel_y = 1
- },
-/obj/structure/sign/poster/contraband/random{
- pixel_x = -32
+/obj/effect/turf_decal/corner/opaque/neutral{
+ dir = 8
},
/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
-"KD" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 8
+/area/outpost/hallway/central)
+"FI" = (
+/obj/structure/railing,
+/obj/item/radio/intercom/directional/north,
+/obj/effect/turf_decal/corner/opaque/brown{
+ dir = 5
},
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/obj/machinery/newscaster/directional/east,
-/turf/open/floor/plasteel/tech,
+/turf/open/floor/plasteel/patterned,
/area/outpost/cargo)
-"KH" = (
+"FJ" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/outpost/crew/library)
+"FN" = (
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/steeldecal/steel_decals_central7,
+/turf/open/floor/plasteel/tech/techmaint,
+/area/outpost/maintenance/central)
+"FQ" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/plasteel,
+/area/outpost/hallway/central)
+"FS" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"FY" = (
+/obj/effect/decal/cleanable/crayon{
+ icon_state = "electricdanger";
+ pixel_y = 0;
+ pixel_x = 30
+ },
+/obj/effect/turf_decal/steeldecal/steel_decals10,
+/turf/open/floor/plating,
+/area/outpost/maintenance/central)
+"Gb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/obj/structure/foamedmetal,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"Gi" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/outpost/vacant_rooms/office)
+"Gj" = (
+/obj/effect/spawner/lootdrop/grille_or_trash,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/corner_techfloor_gray,
+/obj/effect/turf_decal/corner_steel_grid{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"Gk" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"Gl" = (
+/obj/structure/bed/pod,
+/obj/item/bedsheet,
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/outpost/security)
+"Gm" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/open/floor/plating/asteroid,
+/area/outpost/external)
+"Gn" = (
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/minor/bowler_or_that,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"Gu" = (
/obj/machinery/disposal/bin,
-/obj/effect/turf_decal/box,
/obj/structure/disposalpipe/trunk{
dir = 1
},
-/obj/machinery/firealarm/directional/west,
+/obj/effect/turf_decal/corner/opaque/grey/full,
/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
-"KJ" = (
+/area/outpost/crew/janitor)
+"Gv" = (
+/obj/structure/table,
+/obj/effect/turf_decal/floordetail/tiled,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/outpost/security)
+"GB" = (
/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/disposalpipe/segment{
- dir = 4
+/obj/effect/mapping_helpers/airlock/locked,
+/obj/machinery/door/airlock/maintenance{
+ dir = 4;
+ req_access = list("101")
},
/turf/open/floor/plasteel/tech,
-/area/outpost/cargo)
-"KK" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
-/obj/machinery/light/small/directional/west,
-/turf/open/floor/wood,
-/area/outpost/crew)
-"KQ" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
-/obj/effect/decal/cleanable/dirt/dust,
+/area/outpost/hallway/port)
+"GE" = (
+/obj/structure/chair/comfy/brown,
+/obj/effect/turf_decal/siding/wood,
+/obj/structure/sign/poster/random{
+ pixel_y = 30
+ },
/turf/open/floor/wood,
-/area/outpost/crew)
-"KU" = (
-/obj/machinery/power/terminal{
- dir = 8
+/area/outpost/crew/bar)
+"GK" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 1
+ },
+/obj/effect/turf_decal/industrial/warning,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/plasteel/tech,
+/area/outpost/hallway/central)
+"GL" = (
+/obj/effect/landmark/outpost/elevator{
+ shaft = "1"
+ },
+/turf/open/floor/plasteel/elevatorshaft,
+/area/outpost/hallway/central)
+"GM" = (
+/obj/structure/sign/poster/official/no_erp{
+ pixel_y = 30
},
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/floordetail/tiled,
/turf/open/floor/plasteel,
-/area/outpost/operations)
-"KV" = (
-/obj/machinery/light/small/directional/south,
-/turf/open/floor/plasteel/patterned,
-/area/outpost/crew/dorm)
-"KW" = (
-/obj/effect/turf_decal/siding/thinplating{
+/area/outpost/maintenance/fore)
+"GQ" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/effect/turf_decal/corner/opaque/neutral{
dir = 8
},
-/obj/machinery/elevator_call_button{
- pixel_y = 25
+/turf/open/floor/plasteel,
+/area/outpost/hallway/port)
+"GS" = (
+/obj/machinery/modular_computer/console/preset/civilian,
+/turf/open/floor/plasteel/dark,
+/area/outpost/cargo/office)
+"GT" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
-/obj/effect/landmark/outpost/elevator_machine{
- shaft = "main"
+/obj/machinery/airalarm/directional/north,
+/obj/effect/turf_decal/corner/opaque/neutral{
+ dir = 1
},
-/turf/open/floor/plasteel/tech,
+/turf/open/floor/plasteel,
/area/outpost/hallway/central)
-"KZ" = (
-/obj/structure/disposalpipe/trunk{
- dir = 8
+"GU" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
},
-/obj/effect/turf_decal/techfloor{
- dir = 4
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
},
-/turf/open/floor/plasteel/dark,
-/area/outpost/operations)
-"Ld" = (
-/obj/effect/turf_decal/siding/wood{
+/obj/structure/disposalpipe/junction/yjunction{
dir = 1
},
-/obj/effect/turf_decal/siding/wood,
-/turf/open/floor/plasteel/grimy,
-/area/outpost/crew)
-"Lj" = (
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 6
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 9
},
-/obj/structure/extinguisher_cabinet/directional/east,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
/turf/open/floor/plasteel,
/area/outpost/hallway/central)
-"Lr" = (
-/obj/structure/railing/corner,
-/obj/effect/turf_decal/spline/fancy/opaque/black/corner,
-/turf/open/floor/plasteel/tech,
-/area/outpost/cargo)
-"Lu" = (
-/turf/open/floor/wood,
-/area/outpost/vacant_rooms)
-"Lx" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
+"GW" = (
+/obj/structure/table/wood,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/flashlight/lamp/green{
+ pixel_y = 24;
+ pixel_x = -16
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
+/turf/open/floor/carpet/royalblack,
+/area/outpost/crew/bar)
+"GX" = (
+/obj/structure/chair/wood{
+ dir = 4
},
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/patterned,
-/area/outpost/crew/dorm)
-"Lz" = (
-/obj/structure/window/reinforced{
- dir = 8
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/wood,
+/area/outpost/crew/bar)
+"GY" = (
+/obj/structure/table/wood,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/spacecash/bundle/c1{
+ pixel_y = 4;
+ pixel_x = 3
},
-/turf/open/floor/plasteel/tech/techmaint,
-/area/outpost/cargo)
-"LD" = (
+/turf/open/floor/carpet/royalblack,
+/area/outpost/crew/bar)
+"Ha" = (
+/obj/structure/flora/rock/pile,
+/turf/open/floor/plating/asteroid,
+/area/outpost/external)
+"He" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/machinery/light/dim/directional/south,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/effect/turf_decal/corner/opaque/neutral/three_quarters{
+ dir = 1
},
-/obj/structure/cable{
- icon_state = "4-8"
+/turf/open/floor/plasteel,
+/area/outpost/hallway/port)
+"Hh" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/siding/wood,
+/turf/open/floor/wood,
+/area/outpost/crew/bar)
+"Hi" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/plasteel,
/area/outpost/hallway/central)
-"LG" = (
-/obj/structure/railing/corner{
- dir = 1
+"Hk" = (
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/minor/beret_or_rabbitears,
+/obj/machinery/light/dim/directional/west,
+/turf/open/floor/plasteel/mono,
+/area/outpost/storage)
+"Hl" = (
+/mob/living/simple_animal/mouse/brown,
+/obj/effect/turf_decal/steeldecal/steel_decals6,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"Ht" = (
+/obj/machinery/door/airlock/maintenance{
+ dir = 4
},
/obj/effect/turf_decal/industrial/warning{
- dir = 4
+ dir = 8
},
-/turf/open/floor/plasteel/tech,
-/area/outpost/cargo)
-"LI" = (
-/obj/machinery/power/apc/auto_name/directional/north,
-/obj/structure/cable{
- icon_state = "0-8"
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
},
-/obj/machinery/firealarm/directional/east,
-/turf/open/floor/plasteel/tech,
-/area/outpost/cargo)
-"LK" = (
-/obj/effect/turf_decal/corner/opaque/bottlegreen/three_quarters,
-/obj/machinery/disposal/bin,
-/obj/machinery/light/small/directional/south,
-/obj/structure/disposalpipe/trunk{
- dir = 1
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
},
-/turf/open/floor/plasteel,
-/area/outpost/crew/dorm)
-"LL" = (
-/turf/open/floor/plasteel/patterned/grid,
-/area/outpost/cargo)
-"LO" = (
-/turf/open/floor/plasteel,
-/area/outpost/operations)
-"LP" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+/obj/machinery/door/firedoor/border_only{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
-/obj/effect/turf_decal/spline/fancy/opaque/grey{
- pixel_x = -1
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel,
+/turf/open/floor/plasteel/tech,
+/area/outpost/vacant_rooms/office)
+"Hv" = (
+/obj/structure/grille/indestructable,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"HB" = (
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/glowstick,
+/obj/effect/spawner/lootdrop/glowstick,
+/obj/effect/spawner/lootdrop/glowstick,
+/obj/effect/spawner/lootdrop/glowstick,
+/obj/effect/spawner/lootdrop/glowstick,
+/obj/machinery/firealarm/directional/east,
+/turf/open/floor/plasteel/patterned/cargo_one,
/area/outpost/vacant_rooms)
-"LZ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
+"HD" = (
+/turf/closed/indestructible/rock,
+/area/outpost/external)
+"HF" = (
+/obj/structure/table/wood,
+/obj/item/reagent_containers/food/drinks/beer/light{
+ pixel_y = -2;
+ pixel_x = 5
},
-/turf/open/floor/wood,
-/area/outpost/crew)
-"Md" = (
-/obj/structure/disposalpipe/segment{
- dir = 6
+/turf/open/floor/carpet/green,
+/area/outpost/crew/bar)
+"HG" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
},
-/turf/open/floor/plasteel/dark,
-/area/outpost/operations)
-"Mk" = (
-/obj/effect/turf_decal/corner/opaque/black{
- dir = 5
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"Mr" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
-/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"Mt" = (
-/obj/effect/turf_decal/siding/thinplating{
+/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/tech,
/area/outpost/hallway/central)
-"Mz" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 1
- },
-/obj/effect/turf_decal/spline/fancy/opaque/grey{
- dir = 8;
- pixel_y = 1
- },
-/obj/effect/turf_decal/spline/fancy/opaque/grey{
- dir = 4;
- pixel_y = 1
+"HJ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
},
+/turf/open/floor/wood,
+/area/outpost/crew/bar)
+"HL" = (
+/obj/structure/easel,
/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
-"MA" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
+/obj/item/canvas/nineteenXnineteen,
+/turf/open/floor/wood,
+/area/outpost/crew/library)
+"HQ" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/machinery/firealarm/directional/east,
+/obj/structure/holosign/barrier/infinite{
+ max_integrity = 500
},
/turf/open/floor/plasteel,
/area/outpost/hallway/central)
-"MB" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 4
- },
-/obj/structure/sign/poster/contraband/random{
- pixel_x = -32;
- pixel_y = -32
- },
-/turf/open/floor/plasteel/patterned,
-/area/outpost/crew/dorm)
-"ME" = (
-/obj/structure/railing{
- dir = 1
- },
-/obj/effect/turf_decal/spline/fancy/opaque/black{
+"HR" = (
+/obj/effect/turf_decal/industrial/warning,
+/obj/effect/turf_decal/industrial/warning{
dir = 1
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/tech,
-/area/outpost/cargo)
-"MF" = (
-/obj/structure/table,
-/obj/structure/window/reinforced{
- dir = 8
+/area/outpost/hallway/central)
+"HX" = (
+/obj/machinery/door/airlock{
+ dir = 4
},
-/obj/structure/window/reinforced,
-/obj/effect/turf_decal/siding/thinplating{
- dir = 10
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
},
-/obj/item/circuitboard/machine/paystand,
-/turf/open/floor/plasteel/patterned/cargo_one,
-/area/outpost/vacant_rooms)
-"MN" = (
-/obj/structure/railing/corner{
+/obj/effect/turf_decal/industrial/warning{
dir = 8
},
-/obj/effect/turf_decal/industrial/warning/corner{
- dir = 1
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/plasteel/tech,
-/area/outpost/cargo)
-"MO" = (
-/obj/effect/turf_decal/box/corners,
-/obj/effect/turf_decal/box/corners{
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
},
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 2
+/turf/open/floor/plating,
+/area/outpost/crew/bar)
+"HZ" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/machinery/light/small/directional/north,
-/turf/open/floor/plasteel/tech/techmaint,
-/area/outpost/vacant_rooms)
-"Nc" = (
-/obj/structure/rack,
-/obj/effect/turf_decal/trimline/opaque/green/end,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/tech/techmaint,
-/area/outpost/vacant_rooms)
-"Ne" = (
/obj/effect/turf_decal/corner/opaque/black{
- dir = 10
+ dir = 9
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"Ni" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+/obj/effect/turf_decal/corner/opaque/neutral{
+ dir = 6
+ },
+/obj/effect/turf_decal/industrial/stand_clear{
dir = 8
},
-/turf/open/floor/plasteel/patterned,
-/area/outpost/crew/dorm)
-"Nl" = (
-/obj/effect/turf_decal/siding/wood/corner{
- dir = 4
+/turf/open/floor/plasteel,
+/area/outpost/hallway/port)
+"Ia" = (
+/obj/item/radio/intercom/wideband/table{
+ dir = 8;
+ pixel_y = 19;
+ pixel_x = -6
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
+/obj/machinery/computer/security{
+ dir = 4;
+ layer = 3.1;
+ pixel_y = 5;
+ pixel_x = -5
},
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/outpost/security)
+"Ic" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood,
-/area/outpost/crew)
-"Nv" = (
-/obj/effect/turf_decal/siding/wood,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/wood,
-/area/outpost/crew)
-"Nx" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/outpost/storage)
+"If" = (
+/obj/effect/turf_decal/corner_techfloor_gray{
dir = 9
},
-/turf/open/floor/wood,
-/area/outpost/crew)
-"NH" = (
-/obj/structure/window/reinforced/tinted{
- dir = 8
- },
-/obj/structure/window/reinforced/tinted,
-/turf/open/floor/grass,
-/area/outpost/crew)
-"NT" = (
-/obj/structure/rack,
-/obj/effect/turf_decal/trimline/opaque/green/end{
- dir = 1
- },
-/obj/machinery/light/directional/north,
-/turf/open/floor/plasteel/tech/techmaint,
-/area/outpost/vacant_rooms)
-"NX" = (
-/obj/machinery/light/directional/east,
+/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/tech/techmaint,
-/area/outpost/cargo)
-"Oa" = (
-/obj/effect/turf_decal/corner/opaque/bottlegreen{
- dir = 5
+/area/outpost/maintenance/fore)
+"Ip" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/corner/opaque/neutral{
dir = 8
},
+/obj/effect/turf_decal/industrial/caution,
/turf/open/floor/plasteel,
-/area/outpost/crew/dorm)
-"Ob" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 4
- },
-/obj/effect/turf_decal/spline/fancy/opaque/grey{
+/area/outpost/hallway/port)
+"Is" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/corner/opaque/neutral/diagonal,
+/obj/effect/turf_decal/spline/fancy/opaque/lightgrey{
dir = 1
},
-/obj/machinery/light/small/directional/west,
-/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
-"Od" = (
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 6
+/area/outpost/storage)
+"It" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/effect/turf_decal/corner/opaque/black{
+ dir = 8
},
-/obj/machinery/newscaster/directional/east,
+/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel,
/area/outpost/hallway/central)
-"Of" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 1
+"Iu" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/chem_pile,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"Iv" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/outpost/maintenance/central)
+"Ix" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/wood,
-/area/outpost/crew)
-"Oj" = (
-/obj/effect/turf_decal/box/corners,
-/obj/structure/closet/crate/science,
-/turf/open/floor/plasteel/patterned/grid,
-/area/outpost/cargo)
-"Oq" = (
-/obj/effect/turf_decal/spline/fancy/opaque/grey/corner,
-/obj/machinery/light/directional/west,
-/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
-"Or" = (
-/turf/closed/indestructible/reinforced,
-/area/outpost/crew)
-"Ou" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/wood,
-/area/outpost/crew)
-"Ov" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 1
- },
-/obj/machinery/light/directional/west,
-/turf/open/floor/plasteel/grimy,
-/area/outpost/crew)
-"Oz" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood,
-/area/outpost/crew)
-"OC" = (
-/obj/machinery/light/directional/north,
-/obj/effect/turf_decal/corner/opaque/red{
- dir = 6
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
},
/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"OH" = (
-/obj/item/kirbyplants/random,
-/obj/machinery/light/small/directional/west,
-/obj/effect/turf_decal/spline/fancy/wood{
- dir = 10
+/area/outpost/crew/janitor)
+"Iz" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
-/turf/open/floor/wood,
-/area/outpost/vacant_rooms)
-"OY" = (
-/obj/machinery/light/directional/south,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
+/turf/open/floor/wood,
+/area/outpost/crew/bar)
+"IB" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/machinery/firealarm/directional/east,
+/obj/effect/turf_decal/corner/opaque/neutral,
/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"Pa" = (
-/obj/machinery/light/directional/south,
+/area/outpost/hallway/port)
+"IE" = (
+/obj/structure/chair/wood,
+/turf/open/floor/wood,
+/area/outpost/crew/bar)
+"IH" = (
/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/corner/opaque/green{
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 10
},
-/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"Pj" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/plasteel/tech/techmaint,
-/area/outpost/cargo)
-"Ps" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/effect/turf_decal/spline/fancy/opaque/grey{
- dir = 8;
- pixel_y = 1
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
-"Pu" = (
+/turf/open/floor/plating,
+/area/outpost/maintenance/central)
+"IJ" = (
/obj/structure/table,
-/obj/structure/window/reinforced{
+/obj/item/trash/can/food/beans,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/outpost/maintenance/central)
+"IM" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/machinery/firealarm/directional/west,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/corner/opaque/neutral{
dir = 8
},
-/obj/item/paper_bin{
- pixel_y = 3;
- pixel_x = 2
+/turf/open/floor/plasteel,
+/area/outpost/hallway/port)
+"IN" = (
+/obj/effect/decal/cleanable/crayon{
+ icon_state = "!";
+ pixel_x = 9
},
-/obj/structure/noticeboard{
- pixel_y = 28
+/obj/effect/decal/cleanable/crayon{
+ icon_state = "f";
+ pixel_y = 0;
+ pixel_x = -19
},
-/obj/item/pen{
- pixel_y = 4;
- pixel_x = 2
+/obj/effect/decal/cleanable/crayon{
+ icon_state = "u";
+ pixel_y = -5;
+ pixel_x = -10
},
-/turf/open/floor/plasteel/tech/techmaint,
-/area/outpost/cargo)
-"Pz" = (
-/obj/item/kirbyplants/random,
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 5
+/obj/effect/decal/cleanable/crayon{
+ icon_state = "n"
},
-/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"PA" = (
-/obj/effect/turf_decal/spline/fancy/opaque/grey{
- dir = 1
+/obj/effect/decal/cleanable/crayon{
+ icon_state = "arrow";
+ pixel_y = -19;
+ pixel_x = 2
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
+/obj/effect/decal/cleanable/crayon{
+ icon_state = "arrow";
+ pixel_y = -25;
+ pixel_x = -7
},
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/glass,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"IS" = (
+/obj/machinery/light/dim/directional/east,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
+/obj/effect/turf_decal/corner/opaque/neutral/diagonal,
/turf/open/floor/plasteel,
/area/outpost/vacant_rooms)
-"PE" = (
+"IT" = (
+/obj/machinery/camera/autoname,
+/obj/effect/turf_decal/corner/opaque/red{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/outpost/security)
+"IU" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/turf/open/floor/plating,
+/area/outpost/maintenance/central)
+"IW" = (
+/turf/closed/indestructible/rock,
+/area/outpost/maintenance/central)
+"IY" = (
+/obj/effect/decal/cleanable/crayon{
+ icon_state = "antilizard";
+ pixel_x = -30
},
-/obj/structure/cable{
- icon_state = "4-8"
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/outpost/maintenance/fore)
+"Ji" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/effect/turf_decal/corner/opaque/neutral{
+ dir = 1
},
-/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/steeldecal/steel_decals9,
/turf/open/floor/plasteel,
/area/outpost/hallway/central)
-"PG" = (
-/obj/structure/railing{
- dir = 4
+"Jo" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
+/obj/effect/turf_decal/corner/opaque/neutral{
+ dir = 8
},
-/turf/open/floor/plasteel/tech,
-/area/outpost/cargo)
-"PH" = (
-/obj/structure/railing{
- dir = 10
+/turf/open/floor/plasteel,
+/area/outpost/hallway/port)
+"Jp" = (
+/obj/machinery/door/airlock/public,
+/obj/effect/turf_decal/industrial/warning,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 1
},
-/turf/open/floor/grass,
-/area/outpost/crew)
-"PR" = (
-/obj/structure/railing{
- dir = 5
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/firedoor/border_only{
+ dir = 1
},
-/turf/open/floor/grass,
-/area/outpost/crew)
-"PV" = (
-/obj/structure/railing,
-/turf/open/floor/grass,
-/area/outpost/crew)
-"Qc" = (
-/obj/structure/table/wood,
-/obj/effect/turf_decal/siding/wood{
- dir = 8
+/obj/structure/disposalpipe/segment{
+ dir = 1
},
-/obj/effect/turf_decal/siding/wood{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
-/turf/open/floor/wood,
+/turf/open/floor/plasteel/tech,
/area/outpost/vacant_rooms)
-"Qe" = (
-/obj/structure/table,
-/obj/item/clipboard,
-/obj/item/pen,
-/turf/open/floor/plasteel/tech/techmaint,
-/area/outpost/cargo)
-"Qf" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/disposalpipe/segment{
- dir = 10
+"Jq" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
},
-/obj/effect/turf_decal/spline/fancy/opaque/grey/corner{
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"Jr" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/machinery/light/dim/directional/south,
+/obj/effect/turf_decal/corner/opaque/black{
dir = 1
},
-/obj/effect/turf_decal/spline/fancy/opaque/grey/corner{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
},
-/obj/effect/turf_decal/spline/fancy/opaque/grey{
- dir = 4;
- pixel_y = 1
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
},
-/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
-"Qh" = (
+/area/outpost/hallway/central)
+"JA" = (
+/obj/machinery/firealarm/directional/north,
+/obj/machinery/disposal/bin,
/obj/effect/turf_decal/siding/wood{
dir = 4
},
-/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/disposalpipe/trunk,
/turf/open/floor/wood,
-/area/outpost/crew)
-"Qj" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
+/area/outpost/crew/bar)
+"JE" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/machinery/light/small/directional/north,
+/obj/effect/turf_decal/corner/opaque/neutral{
+ dir = 1
},
/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
-"Qk" = (
-/turf/open/floor/carpet,
-/area/outpost/crew)
-"Qn" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
+/area/outpost/hallway/central)
+"JF" = (
+/obj/effect/decal/cleanable/crayon{
+ icon_state = "electricdanger";
+ pixel_y = -28
},
-/obj/structure/sign/poster/contraband/random{
- pixel_y = -32
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"JM" = (
+/obj/structure/chair/sofa/right{
+ dir = 4
},
-/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
-"Qt" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 1
+/turf/open/floor/carpet/green,
+/area/outpost/crew/bar)
+"JS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 10
},
-/obj/effect/turf_decal/spline/fancy/opaque/grey{
- dir = 8;
- pixel_y = 1
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"JU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
-"Qw" = (
-/obj/structure/railing{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
},
-/obj/effect/turf_decal/industrial/warning,
-/turf/open/floor/plasteel/tech,
-/area/outpost/cargo)
-"QA" = (
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 9
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
},
-/obj/structure/chair{
- dir = 1
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark,
+/area/outpost/cargo/office)
+"JV" = (
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/minor/pirate_or_bandana,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/mono,
+/area/outpost/storage)
+"JW" = (
+/obj/machinery/vending/games,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/outpost/crew/library)
+"JX" = (
+/obj/structure/flora/grass/jungle,
+/obj/structure/flora/junglebush/b,
+/turf/open/floor/grass/ship/jungle,
+/area/outpost/hallway/port)
+"Kd" = (
+/obj/machinery/light/small/directional/north,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
+/turf/open/floor/plating,
+/area/outpost/maintenance/central)
+"Ke" = (
+/obj/structure/table,
+/obj/item/trash/can/food/beans{
+ pixel_x = 5;
+ pixel_y = 5
},
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/outpost/maintenance/central)
+"Kh" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/machinery/newscaster/directional/east,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/corner/opaque/neutral,
/turf/open/floor/plasteel,
/area/outpost/hallway/central)
-"QD" = (
-/obj/effect/turf_decal/box/corners,
-/turf/open/floor/plasteel/patterned/grid,
-/area/outpost/cargo)
-"QK" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+"Ki" = (
+/obj/machinery/door/poddoor/shutters/indestructible{
dir = 4
},
-/obj/structure/cable{
+/turf/closed/indestructible/rock,
+/area/outpost/external)
+"Kl" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/sign/poster/official/random{
- pixel_x = 32;
- pixel_y = 32
- },
-/turf/open/floor/plasteel/tech,
-/area/outpost/cargo)
-"QL" = (
-/obj/machinery/recycler,
-/turf/open/floor/plasteel/tech/grid,
-/area/outpost/operations)
-"QP" = (
-/obj/structure/chair/office{
- dir = 1
+/obj/effect/turf_decal/industrial/stand_clear{
+ dir = 4
},
-/turf/open/floor/plasteel/tech/techmaint,
-/area/outpost/cargo)
-"QR" = (
/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/turf/open/floor/plasteel/patterned,
-/area/outpost/crew/dorm)
-"QT" = (
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 9
+ dir = 4
},
-/obj/machinery/light/directional/west,
/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"QY" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/plasteel/tech,
-/area/outpost/cargo)
-"Rb" = (
-/obj/machinery/door/airlock{
- id_tag = "ob4";
- name = "Bathroom"
- },
-/turf/open/floor/plasteel/tech,
-/area/outpost/cargo)
-"Rd" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 9
- },
-/turf/open/floor/plasteel/grimy,
-/area/outpost/crew)
-"Re" = (
-/obj/structure/railing{
- dir = 1
- },
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 1
- },
-/turf/open/floor/plasteel/stairs{
- dir = 8
- },
-/area/outpost/cargo)
-"Rk" = (
-/obj/effect/turf_decal/siding/wood{
+/area/outpost/hallway/port)
+"Ko" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/machinery/camera/autoname{
dir = 5
},
-/turf/open/floor/plasteel/grimy,
-/area/outpost/crew)
-"Rt" = (
-/obj/structure/table,
-/obj/structure/extinguisher_cabinet/directional/north,
-/obj/effect/turf_decal/corner/opaque/green/three_quarters{
- dir = 4
+/obj/effect/turf_decal/corner/opaque/neutral{
+ dir = 8
},
-/obj/item/radio/intercom/directional/west,
/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"Ru" = (
-/obj/structure/chair/office{
- dir = 8
+/area/outpost/hallway/port)
+"Kr" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/spider/stickyweb,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"Ks" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
},
-/obj/item/radio/intercom/directional/north{
- pixel_y = 32
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 5
},
-/turf/open/floor/plasteel/patterned/cargo_one,
-/area/outpost/vacant_rooms)
-"Rv" = (
-/obj/structure/table,
-/obj/structure/extinguisher_cabinet/directional/south,
-/turf/open/floor/plasteel/tech/techmaint,
-/area/outpost/vacant_rooms)
-"Ry" = (
-/obj/item/kirbyplants/random,
-/obj/effect/turf_decal/box/corners{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 5
},
-/obj/effect/turf_decal/box/corners{
+/turf/open/floor/plating,
+/area/outpost/maintenance/central)
+"Kx" = (
+/turf/closed/indestructible/reinforced,
+/area/outpost/storage)
+"Ky" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/industrial/warning{
dir = 8
},
-/turf/open/floor/plasteel/tech/techmaint,
-/area/outpost/vacant_rooms)
-"RC" = (
-/obj/effect/turf_decal/spline/fancy/opaque/grey{
- dir = 1;
- pixel_x = -1
- },
-/obj/effect/turf_decal/spline/fancy/opaque/grey{
- pixel_x = -1
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
-"RF" = (
-/obj/effect/turf_decal/industrial/stand_clear{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
},
-/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"RG" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/tech,
-/area/outpost/cargo)
-"RN" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
-/obj/effect/turf_decal/corner/opaque/green{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"RV" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+/turf/open/floor/plasteel/tech,
+/area/outpost/hallway/port)
+"Kz" = (
+/obj/structure/falsewall/reinforced,
+/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
},
+/turf/open/floor/plating,
+/area/outpost/maintenance/central)
+"KC" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"RY" = (
-/obj/machinery/disposal/bin,
-/obj/effect/turf_decal/box,
-/obj/structure/disposalpipe/trunk,
-/obj/effect/landmark/observer_start,
-/turf/open/floor/plasteel/tech/techmaint,
-/area/outpost/cargo)
-"Sa" = (
-/obj/machinery/porta_turret/ship,
-/obj/structure/sign/warning/securearea{
- pixel_x = -26;
- pixel_y = -5
- },
-/obj/effect/turf_decal/corner/opaque/red{
+/obj/effect/decal/cleanable/greenglow,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 9
},
-/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"Sc" = (
-/obj/structure/sign/poster/contraband/random{
- pixel_x = 32
+/turf/open/floor/plating,
+/area/outpost/maintenance/central)
+"KF" = (
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
},
-/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
-"Si" = (
-/obj/structure/filingcabinet/double,
-/turf/open/floor/plasteel/grimy,
-/area/outpost/crew/dorm)
-"Sn" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+/obj/effect/turf_decal/industrial/warning{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+/obj/machinery/door/firedoor/border_only{
dir = 4
},
-/obj/structure/disposalpipe/junction/flip{
+/obj/machinery/door/firedoor/border_only{
dir = 8
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/effect/turf_decal/corner/opaque/black{
- dir = 6
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"Sp" = (
-/obj/machinery/vending/snack/random,
-/obj/machinery/firealarm/directional/north,
-/turf/open/floor/plasteel,
-/area/outpost/crew)
-"St" = (
-/obj/effect/turf_decal/corner/opaque/black{
- dir = 10
+/obj/machinery/door/airlock{
+ dir = 4;
+ name = "Janitor Closet"
},
-/obj/structure/cable{
- icon_state = "1-2"
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"SC" = (
-/obj/structure/rack,
-/obj/effect/turf_decal/box/corners{
- dir = 1
+/turf/open/floor/plasteel/tech,
+/area/outpost/crew/janitor)
+"KI" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
-/turf/open/floor/plasteel/tech/techmaint,
-/area/outpost/vacant_rooms)
-"ST" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
-/obj/effect/turf_decal/spline/fancy/wood{
+/obj/structure/disposalpipe/trunk{
dir = 1
},
-/turf/open/floor/wood,
-/area/outpost/vacant_rooms)
-"SV" = (
-/obj/effect/turf_decal/siding/thinplating{
- dir = 4
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"KJ" = (
+/obj/effect/decal/cleanable/crayon{
+ icon_state = "Donk";
+ pixel_y = 32
},
-/obj/effect/turf_decal/siding/thinplating{
- dir = 8
+/obj/effect/decal/cleanable/cobweb,
+/turf/open/floor/plating,
+/area/outpost/maintenance/central)
+"KK" = (
+/obj/structure/toilet{
+ dir = 4;
+ pixel_y = 0;
+ pixel_x = -6
},
-/obj/machinery/door/firedoor/border_only{
- dir = 8
+/obj/structure/mirror{
+ pixel_y = 30
},
-/obj/machinery/door/firedoor/border_only{
- dir = 4
+/obj/structure/sink{
+ pixel_y = 24
},
-/obj/structure/barricade/wooden/crude,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
+/obj/effect/turf_decal/corner/transparent/brown/full,
+/turf/open/floor/plasteel,
+/area/outpost/crew/bar)
+"KS" = (
+/obj/structure/railing{
+ dir = 1
},
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/oil/slippery,
-/obj/machinery/door/airlock/public/glass{
+/turf/open/floor/plasteel/patterned,
+/area/outpost/cargo)
+"KV" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/plasteel/tech,
-/area/outpost/vacant_rooms)
-"Td" = (
-/obj/effect/turf_decal/siding/thinplating,
-/obj/effect/turf_decal/siding/thinplating{
- dir = 1
+/obj/effect/turf_decal/corner/opaque/orange{
+ dir = 5
},
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/door/firedoor/border_only{
- dir = 1
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark,
+/area/outpost/cargo/office)
+"KW" = (
+/obj/structure/cable/yellow{
+ icon_state = "6-8"
},
-/obj/machinery/door/airlock/public/glass,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/plasteel/tech,
-/area/outpost/vacant_rooms)
-"Th" = (
-/obj/structure/cable{
- icon_state = "2-8"
+/obj/structure/disposalpipe/segment{
+ dir = 10
},
+/obj/effect/decal/cleanable/dirt/dust,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 10
},
-/obj/machinery/light/small/directional/east,
-/turf/open/floor/plasteel/grimy,
-/area/outpost/crew/dorm)
-"Tk" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 8
- },
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
-"Tt" = (
-/obj/machinery/camera/autoname{
dir = 10
},
-/obj/structure/filingcabinet/double,
-/turf/open/floor/plasteel/tech/techmaint,
-/area/outpost/cargo)
-"Ty" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 8
+/turf/open/floor/plating,
+/area/outpost/maintenance/central)
+"KY" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/machinery/light/small/directional/north,
+/obj/effect/turf_decal/steeldecal/steel_decals9{
+ dir = 4
},
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/plasteel,
/area/outpost/hallway/central)
-"TA" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/wood,
-/area/outpost/vacant_rooms)
-"TB" = (
-/obj/effect/turf_decal/siding/wood,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+"KZ" = (
+/obj/machinery/door/airlock/maintenance{
+ dir = 4;
+ req_access = list("101")
+ },
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/turf_decal/industrial/warning{
dir = 4
},
-/obj/structure/cable{
- icon_state = "1-4"
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
-/turf/open/floor/wood,
-/area/outpost/crew)
-"TW" = (
-/obj/effect/turf_decal/corner/opaque/bottlegreen{
- dir = 10
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
},
-/obj/machinery/airalarm/directional/south,
-/turf/open/floor/plasteel,
-/area/outpost/crew/dorm)
-"TY" = (
-/obj/structure/window/reinforced{
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/filingcabinet/double,
-/turf/open/floor/plasteel/tech/techmaint,
-/area/outpost/cargo)
-"Ud" = (
-/obj/structure/filingcabinet/chestdrawer,
-/turf/open/floor/plasteel/tech/techmaint,
+/obj/effect/mapping_helpers/airlock/locked,
+/turf/open/floor/plasteel/tech,
/area/outpost/cargo)
-"Uo" = (
-/obj/structure/rack,
-/obj/effect/turf_decal/trimline/opaque/green/line{
+"Le" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/effect/turf_decal/corner/opaque/red{
+ dir = 4
+ },
+/obj/machinery/firealarm/directional/north,
+/turf/open/floor/plasteel,
+/area/outpost/security)
+"Lg" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/machinery/airalarm/directional/south,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
},
-/obj/effect/turf_decal/trimline/opaque/green/line{
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
+/obj/effect/turf_decal/corner/opaque/neutral{
dir = 8
},
-/turf/open/floor/plasteel/tech/techmaint,
-/area/outpost/vacant_rooms)
-"Up" = (
-/obj/structure/table/wood,
-/obj/structure/window/reinforced,
-/turf/open/floor/carpet,
-/area/outpost/crew)
-"Uw" = (
+/turf/open/floor/plasteel,
+/area/outpost/hallway/port)
+"Lh" = (
/turf/closed/indestructible/reinforced,
-/area/outpost/cargo)
-"Uy" = (
-/obj/structure/rack,
-/obj/effect/turf_decal/trimline/opaque/green/line,
-/obj/effect/turf_decal/trimline/opaque/green/line{
- dir = 1
+/area/outpost/security)
+"Li" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/carpet/green,
+/area/outpost/crew/bar)
+"Ls" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
},
-/turf/open/floor/plasteel/tech/techmaint,
-/area/outpost/vacant_rooms)
-"Uz" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 4
+/obj/structure/disposalpipe/segment{
+ dir = 5
},
-/obj/machinery/camera/autoname{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 5
},
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/wood,
-/area/outpost/crew)
-"UE" = (
-/obj/machinery/light/directional/north,
-/turf/open/floor/plasteel/patterned/grid,
-/area/outpost/cargo)
-"UM" = (
-/obj/machinery/holopad/emergency/bar,
-/obj/effect/landmark/observer_start,
-/turf/open/floor/carpet,
-/area/outpost/crew)
-"UU" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
-"Vg" = (
-/obj/machinery/modular_computer/console/preset/civilian,
-/obj/machinery/camera/autoname{
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 5
+ },
+/obj/effect/turf_decal/steeldecal/steel_decals7{
+ dir = 9
+ },
+/obj/effect/turf_decal/steeldecal/steel_decals7{
dir = 6
},
-/turf/open/floor/plasteel/tech/techmaint,
-/area/outpost/cargo)
-"Vh" = (
-/obj/structure/railing,
-/obj/effect/turf_decal/industrial/warning{
+/turf/open/floor/plating,
+/area/outpost/maintenance/central)
+"Lu" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/junction/yjunction{
dir = 1
},
-/turf/open/floor/plasteel/tech,
-/area/outpost/cargo)
-"Vq" = (
+/obj/effect/decal/cleanable/dirt/dust,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/effect/turf_decal/corner/opaque/black/full,
+/turf/open/floor/plasteel,
+/area/outpost/hallway/port)
+"LB" = (
+/obj/structure/table,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/outpost/storage)
+"LD" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/plasteel,
/area/outpost/hallway/central)
-"Vy" = (
-/obj/effect/turf_decal/siding/wood{
+"LE" = (
+/obj/item/radio/intercom/directional/west,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood/mahogany,
+/area/outpost/crew/bar)
+"LH" = (
+/obj/structure/spider/stickyweb,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"LJ" = (
+/obj/machinery/computer/helm/viewscreen/directional/north,
+/obj/structure/chair/comfy{
dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/disposalpipe/segment,
-/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/outpost/security)
+"LK" = (
+/obj/structure/flora/junglebush/c,
+/turf/open/floor/grass/ship/jungle,
+/area/outpost/hallway/port)
+"LL" = (
+/turf/closed/indestructible/reinforced,
+/area/outpost/hallway/port)
+"LP" = (
+/obj/machinery/door/airlock,
/turf/open/floor/wood,
-/area/outpost/crew)
-"VE" = (
-/obj/structure/railing,
-/obj/effect/turf_decal/spline/fancy/opaque/black,
-/turf/open/floor/plasteel/stairs{
- dir = 8
+/area/outpost/crew/library)
+"LR" = (
+/obj/effect/spawner/lootdrop/tool_engie_common,
+/obj/effect/spawner/lootdrop/tool_engie_common,
+/obj/structure/rack,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"LS" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/turf_decal/corner/opaque/neutral{
+ dir = 1
},
-/area/outpost/cargo)
-"VG" = (
-/obj/effect/turf_decal/siding/thinplating{
- dir = 4
- },
-/obj/effect/turf_decal/siding/thinplating{
- dir = 8
- },
-/obj/machinery/door/firedoor/border_only{
- dir = 8
+/turf/open/floor/plasteel,
+/area/outpost/hallway/port)
+"LU" = (
+/obj/structure/falsewall/reinforced,
+/turf/open/floor/plating,
+/area/outpost/storage)
+"LX" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
-/obj/machinery/door/firedoor/border_only{
+/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
},
-/obj/machinery/door/airlock/public/glass{
- dir = 4
- },
-/turf/open/floor/plasteel/tech,
-/area/outpost/vacant_rooms)
-"VR" = (
-/obj/structure/railing{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/tech,
-/area/outpost/cargo)
-"VV" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
+/obj/effect/turf_decal/corner/opaque/neutral{
+ dir = 8
},
-/obj/structure/cable{
+/obj/item/radio/intercom/directional/south,
+/turf/open/floor/plasteel,
+/area/outpost/hallway/central)
+"LY" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/turf/open/floor/plasteel/tech,
-/area/outpost/cargo)
-"VW" = (
-/obj/structure/chair/wood/wings{
- dir = 8
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/effect/turf_decal/siding/wood{
- dir = 1
+/turf/open/floor/plasteel,
+/area/outpost/hallway/port)
+"Md" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
},
-/turf/open/floor/wood,
-/area/outpost/crew)
-"VX" = (
-/obj/machinery/button/door{
- id = "ob3";
- name = "door lock";
- pixel_x = -8;
- pixel_y = 24;
- specialfunctions = 4;
- normaldoorcontrol = 1
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/structure/toilet{
- dir = 8
+/obj/effect/decal/cleanable/crayon{
+ icon_state = "firedanger";
+ pixel_y = -28
},
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"Me" = (
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/outpost/security)
+"Mk" = (
/obj/machinery/newscaster/directional/south,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/outpost/security)
+"Ml" = (
+/obj/effect/turf_decal/corner/opaque/neutral/diagonal,
+/obj/effect/turf_decal/spline/fancy/opaque/lightgrey{
+ dir = 9
+ },
/turf/open/floor/plasteel,
-/area/outpost/crew)
-"Wd" = (
-/obj/machinery/light/small/directional/east,
-/turf/open/floor/wood,
-/area/outpost/crew)
-"Wt" = (
-/obj/structure/railing{
- dir = 1
+/area/outpost/storage)
+"Mm" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/outpost/maintenance/central)
+"Mq" = (
+/obj/machinery/light/small/directional/south,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/corner_techfloor_gray{
+ dir = 10
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
+/turf/open/floor/plasteel/tech/techmaint,
+/area/outpost/maintenance/fore)
+"Ms" = (
+/obj/structure/railing/corner{
+ dir = 8
+ },
+/obj/machinery/light/dim/directional/north,
+/turf/open/floor/plasteel/patterned,
+/area/outpost/cargo)
+"Mt" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/outpost/maintenance/central)
+"Mu" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/plasteel/tech,
-/area/outpost/cargo)
-"Ww" = (
-/turf/open/floor/plasteel,
-/area/outpost/crew)
-"Wz" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
},
-/obj/structure/sign/poster/official/random{
- pixel_x = -32;
- pixel_y = -32
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
},
-/turf/open/floor/plasteel/tech,
-/area/outpost/cargo)
-"WI" = (
-/obj/structure/closet/cardboard,
-/obj/item/picket_sign,
-/obj/item/picket_sign,
-/turf/open/floor/plasteel/patterned/grid,
-/area/outpost/cargo)
-"WM" = (
-/obj/structure/chair/greyscale{
- dir = 8
+/obj/effect/turf_decal/steeldecal/steel_decals7{
+ dir = 9
},
-/obj/effect/turf_decal/corner/opaque/bottlegreen{
- dir = 5
+/obj/effect/turf_decal/steeldecal/steel_decals7{
+ dir = 6
},
-/turf/open/floor/plasteel,
-/area/outpost/crew/dorm)
-"WT" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 1
+/turf/open/floor/plating,
+/area/outpost/maintenance/central)
+"Mw" = (
+/obj/structure/closet/crate/trashcart,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"MB" = (
+/obj/effect/turf_decal/corner/opaque/orange{
+ dir = 10
},
-/obj/effect/turf_decal/siding/wood,
-/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plasteel/grimy,
-/area/outpost/crew)
-"WV" = (
-/obj/structure/sign/poster/contraband/inteq{
- pixel_y = 32
+/turf/open/floor/plasteel/dark,
+/area/outpost/cargo/office)
+"MD" = (
+/obj/structure/table/wood,
+/obj/machinery/chem_dispenser/drinks/beer{
+ pixel_y = 13;
+ layer = 3
},
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 5
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/paper_bin{
+ pixel_x = 6;
+ pixel_y = -4
},
-/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"WW" = (
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 5
+/turf/open/floor/carpet/green,
+/area/outpost/crew/bar)
+"MF" = (
+/obj/structure/chair/office{
+ dir = 1
},
-/obj/structure/sign/poster/contraband/random{
- pixel_y = 32
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/outpost/crew/library)
+"MI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/machinery/vending/cigarette,
-/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"Xc" = (
-/obj/effect/turf_decal/corner/opaque/black{
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 10
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"Xk" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
+/obj/effect/turf_decal/spline/fancy/opaque/lightgrey/corner{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+/obj/effect/turf_decal/corner/opaque/neutral/diagonal,
+/obj/effect/turf_decal/spline/fancy/opaque/lightgrey{
dir = 4
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/turf/open/floor/plasteel,
+/area/outpost/vacant_rooms)
+"MK" = (
+/obj/structure/table/wood,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/reagent_containers/glass/mortar,
+/obj/item/pestle,
+/obj/item/reagent_containers/food/drinks/mug/coco{
+ pixel_y = 12;
+ pixel_x = 15
},
-/obj/structure/cable{
- icon_state = "4-8"
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"MM" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-9"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/effect/decal/cleanable/crayon{
+ icon_state = "danger";
+ pixel_x = 30
},
-/turf/open/floor/plasteel/patterned,
-/area/outpost/cargo)
-"Xl" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"MO" = (
+/obj/structure/chair/pew/right{
+ dir = 8
},
-/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
-"Xm" = (
-/obj/effect/turf_decal/industrial/stand_clear{
- dir = 1
+/obj/effect/turf_decal/corner/opaque/green{
+ dir = 6
},
/turf/open/floor/plasteel,
/area/outpost/hallway/central)
-"Xn" = (
-/obj/effect/turf_decal/box/corners,
-/obj/structure/closet/cardboard,
-/turf/open/floor/plasteel/patterned/grid,
-/area/outpost/cargo)
-"Xp" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
+"Nc" = (
+/turf/closed/indestructible/rock,
+/area/outpost/hallway/central)
+"Nd" = (
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/outpost/security)
+"Ne" = (
+/obj/item/radio/intercom/directional/north,
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
+/obj/effect/turf_decal/siding/wood,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/outpost/crew/library)
+"Ng" = (
+/obj/structure/table/wood,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/reagent_containers/pill/happy,
+/obj/item/pen{
+ pixel_y = 3;
+ pixel_x = 5
},
-/obj/effect/turf_decal/spline/fancy/opaque/grey{
- dir = 1
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"Ni" = (
+/obj/structure/table,
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/plasteel/dark,
+/area/outpost/cargo/office)
+"No" = (
+/obj/structure/table,
+/obj/effect/spawner/lootdrop/donut/jelly,
+/obj/effect/turf_decal/floordetail/tiled,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/outpost/security)
+"Nu" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/confetti,
-/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
-"Xr" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/patterned,
-/area/outpost/crew/dorm)
-"Xx" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 8
},
-/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/corner/opaque/black{
- dir = 5
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
},
/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"XB" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
- },
-/obj/effect/turf_decal/spline/fancy/opaque/grey/corner{
+/area/outpost/hallway/port)
+"Nv" = (
+/obj/effect/turf_decal/corner/opaque/neutral/diagonal,
+/obj/effect/turf_decal/spline/fancy/opaque/lightgrey{
dir = 1
},
-/obj/item/radio/intercom/directional/east,
+/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
-"XI" = (
-/obj/effect/turf_decal/siding/thinplating{
- dir = 8
+/area/outpost/storage)
+"NF" = (
+/obj/structure/cable/yellow{
+ icon_state = "6-8"
},
-/obj/effect/turf_decal/siding/thinplating{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/door/firedoor/border_only{
- dir = 4
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"NH" = (
+/obj/structure/grille,
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space)
+"NI" = (
+/obj/machinery/firealarm/directional/north,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned,
+/area/outpost/cargo)
+"NK" = (
+/turf/closed/indestructible/reinforced,
+/area/outpost/maintenance/fore)
+"NN" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
},
-/obj/machinery/door/firedoor/border_only{
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"NQ" = (
+/obj/structure/disposalpipe/trunk/multiz/down{
dir = 8
},
-/obj/machinery/door/airlock/public/glass{
- dir = 4
- },
-/obj/machinery/door/poddoor/preopen{
- dir = 8
+/turf/open/floor/plasteel/tech/techmaint,
+/area/outpost/maintenance/fore)
+"NT" = (
+/obj/effect/turf_decal/industrial/warning,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 1
},
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/hatch,
+/obj/structure/barricade/wooden/crude,
/turf/open/floor/plasteel/tech,
/area/outpost/hallway/central)
-"XM" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/carpet,
-/area/outpost/crew)
-"XS" = (
-/obj/structure/disposalpipe/segment,
+"NU" = (
+/obj/structure/table/wood,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"Yb" = (
+/obj/item/reagent_containers/food/snacks/grown/citrus/orange,
+/obj/effect/spawner/lootdrop/salvage_capacitor,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"NV" = (
/obj/structure/table,
-/obj/effect/turf_decal/spline/fancy/opaque/grey,
-/obj/item/paper_bin,
-/obj/item/pen,
-/obj/item/radio/intercom/directional/west,
-/turf/open/floor/plasteel/grimy,
-/area/outpost/crew/dorm)
-"Yd" = (
-/turf/closed/indestructible/reinforced,
-/area/outpost/hallway/central)
-"Yo" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/wood,
-/area/outpost/crew)
-"Yr" = (
-/turf/open/floor/plasteel/stairs{
+/obj/item/stack/wrapping_paper,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/outpost/vacant_rooms)
+"Oa" = (
+/obj/structure/flora/grass/jungle,
+/obj/structure/flora/junglebush/c,
+/turf/open/floor/grass/ship/jungle,
+/area/outpost/hallway/port)
+"Oh" = (
+/obj/structure/chair/sofa{
dir = 1
},
-/area/outpost/hallway/central)
-"Yv" = (
-/obj/effect/turf_decal/box/corners{
+/turf/open/floor/carpet/royalblack,
+/area/outpost/crew/bar)
+"Oi" = (
+/obj/structure/railing/corner,
+/turf/open/floor/plasteel/patterned,
+/area/outpost/cargo)
+"Om" = (
+/obj/structure/flora/junglebush/b,
+/turf/open/floor/grass/ship/jungle,
+/area/outpost/hallway/port)
+"On" = (
+/obj/machinery/conveyor/auto{
+ id = "outpost3";
dir = 1
},
-/turf/open/floor/plasteel/patterned/grid,
-/area/outpost/cargo)
-"YB" = (
-/obj/machinery/button/door{
- id = "ob4";
- name = "door lock";
- pixel_x = 25;
- pixel_y = -6;
- dir = 8;
- specialfunctions = 4;
- normaldoorcontrol = 1
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"Or" = (
+/obj/structure/chair/sofa/corner{
+ dir = 1
},
-/obj/structure/sink{
- dir = 4;
- pixel_x = -13
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/carpet/royalblack,
+/area/outpost/crew/bar)
+"Oy" = (
+/obj/structure/table/wood,
+/obj/item/reagent_containers/food/drinks/bottle/wine{
+ pixel_y = 5;
+ pixel_x = -8
},
-/obj/structure/mirror{
- pixel_x = -28
+/obj/item/reagent_containers/food/drinks/bottle/wine{
+ pixel_y = 5;
+ pixel_x = 7
},
-/turf/open/floor/plasteel,
-/area/outpost/cargo)
-"YC" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/corner/opaque/green{
- dir = 6
+/obj/item/reagent_containers/food/drinks/bottle/wine,
+/obj/machinery/light/small/directional/east,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/outpost/crew/bar)
+"OC" = (
+/obj/machinery/atmospherics/components/unary/tank/air{
+ dir = 1;
+ piping_layer = 2
},
-/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"YE" = (
-/obj/item/kirbyplants/random,
-/obj/machinery/newscaster/directional/south,
-/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
-"YI" = (
-/obj/machinery/power/apc/auto_name/directional/north,
-/obj/structure/cable{
- icon_state = "0-4"
+/turf/open/floor/plating,
+/area/outpost/maintenance/central)
+"OG" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
},
-/turf/open/floor/plasteel/dark,
-/area/outpost/operations)
-"YK" = (
-/obj/effect/turf_decal/siding/wood,
-/obj/effect/turf_decal/siding/wood{
- dir = 1
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
},
-/obj/structure/cable{
- icon_state = "1-2"
+/turf/open/floor/plasteel/tech,
+/area/outpost/hallway/central)
+"OH" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
},
-/obj/machinery/light/directional/west,
-/turf/open/floor/plasteel/grimy,
-/area/outpost/crew)
-"YQ" = (
-/obj/effect/turf_decal/box/corners{
+/obj/effect/turf_decal/industrial/warning{
dir = 8
},
-/obj/structure/railing/corner,
-/obj/effect/turf_decal/spline/fancy/opaque/black/corner,
-/turf/open/floor/plasteel/patterned/grid,
-/area/outpost/cargo)
-"YR" = (
-/obj/effect/turf_decal/siding/thinplating{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
},
-/obj/effect/turf_decal/siding/thinplating,
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/door/firedoor/border_only{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
},
-/obj/machinery/door/airlock/public/glass,
/turf/open/floor/plasteel/tech,
-/area/outpost/vacant_rooms)
-"YV" = (
-/obj/effect/turf_decal/siding/thinplating{
- dir = 8
+/area/outpost/hallway/port)
+"OI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
},
-/obj/machinery/door/firedoor/border_only{
+/obj/structure/extinguisher_cabinet/directional/west,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/outpost/crew/bar)
+"OK" = (
+/obj/structure/falsewall/wood,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/plating,
+/area/outpost/crew/bar)
+"OM" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/machinery/firealarm/directional/east,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/corner/opaque/neutral,
+/turf/open/floor/plasteel,
+/area/outpost/hallway/central)
+"OO" = (
+/obj/structure/railing,
+/turf/open/floor/plasteel/patterned,
+/area/outpost/cargo)
+"OP" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
dir = 8
},
-/obj/effect/turf_decal/siding/wood{
+/obj/effect/turf_decal/corner/opaque/black{
dir = 4
},
-/obj/machinery/door/firedoor/border_only{
+/turf/open/floor/plasteel,
+/area/outpost/hallway/port)
+"OY" = (
+/obj/structure/grille/indestructable,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/outpost/maintenance/central)
+"Pe" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"Ph" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/corner/opaque/neutral{
dir = 8
},
-/obj/machinery/door/airlock/wood{
+/obj/structure/extinguisher_cabinet/directional/south,
+/turf/open/floor/plasteel,
+/area/outpost/hallway/central)
+"Pm" = (
+/obj/structure/chair{
dir = 8
},
-/turf/open/floor/plasteel/tech,
-/area/outpost/vacant_rooms)
-"YX" = (
-/obj/machinery/door/window{
+/obj/item/toy/figure/captain,
+/turf/open/floor/plating,
+/area/outpost/maintenance/central)
+"Po" = (
+/obj/structure/chair/pew{
dir = 8
},
-/obj/effect/turf_decal/siding/wood{
+/obj/effect/turf_decal/corner/opaque/green{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/outpost/hallway/central)
+"Pw" = (
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/maintenance/four,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/outpost/vacant_rooms/office)
+"Px" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/extinguisher_cabinet/directional/east,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"PD" = (
+/obj/structure/chair/sofa/right{
dir = 8
},
-/obj/effect/turf_decal/spline/fancy/wood,
/turf/open/floor/carpet/royalblack,
-/area/outpost/vacant_rooms)
-"Za" = (
-/obj/effect/turf_decal/siding/wood/corner{
- dir = 8
+/area/outpost/crew/bar)
+"PF" = (
+/obj/structure/grille/indestructable,
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
},
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 8
+/obj/structure/cable/yellow,
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
},
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+/obj/effect/turf_decal/industrial/warning/dust{
dir = 1
},
-/obj/structure/disposalpipe/junction{
- dir = 4
+/obj/effect/turf_decal/industrial/warning/dust,
+/obj/effect/turf_decal/steeldecal/steel_decals_central7,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"PG" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
},
-/obj/structure/cable{
- icon_state = "4-8"
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
},
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/wood,
-/area/outpost/crew)
-"Ze" = (
-/obj/structure/railing,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
+/obj/structure/disposalpipe/segment{
+ dir = 9
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
+/obj/structure/holosign/barrier/infinite{
+ max_integrity = 500
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel,
+/area/outpost/hallway/port)
+"PI" = (
+/obj/effect/turf_decal/box/corners{
dir = 4
},
-/obj/structure/cable{
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/crate,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/outpost/cargo)
+"PO" = (
+/obj/structure/chair/wood{
+ dir = 1
+ },
+/turf/open/floor/wood,
+/area/outpost/crew/bar)
+"PS" = (
+/obj/structure/falsewall/reinforced,
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/turf/open/floor/plasteel/tech,
-/area/outpost/cargo)
-"Zg" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/airlock/maintenance_hatch{
- req_access_txt = "109"
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"PT" = (
+/obj/structure/grille/indestructable,
+/obj/structure/cable/yellow,
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
},
-/obj/effect/mapping_helpers/airlock/unres{
- dir = 1
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"PV" = (
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/carpet/green,
+/area/outpost/crew/bar)
+"PY" = (
+/obj/machinery/door/airlock/security/brig{
+ req_access = list("101")
},
-/turf/open/floor/plasteel/tech/grid,
-/area/outpost/operations)
-"Zi" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+/obj/effect/turf_decal/industrial/warning,
+/obj/effect/turf_decal/industrial/warning{
dir = 1
},
-/obj/machinery/light/small/directional/south,
-/turf/open/floor/wood,
-/area/outpost/crew)
-"Zm" = (
-/obj/structure/table/wood,
-/obj/effect/turf_decal/siding/wood/end{
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/firedoor/border_only{
dir = 1
},
-/turf/open/floor/wood,
-/area/outpost/vacant_rooms)
-"Zr" = (
-/obj/machinery/porta_turret/ship,
-/obj/structure/sign/warning/securearea{
- pixel_x = 26;
- pixel_y = -5
- },
-/obj/effect/turf_decal/corner/opaque/red{
- dir = 6
+/turf/open/floor/plasteel/tech,
+/area/outpost/security)
+"Qa" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/machinery/newscaster/directional/north,
+/obj/effect/turf_decal/corner/opaque/neutral{
+ dir = 1
},
-/turf/open/floor/plasteel,
-/area/outpost/hallway/central)
-"Zt" = (
-/obj/structure/window/reinforced/tinted{
+/obj/effect/turf_decal/corner/opaque/neutral{
dir = 1
},
-/obj/structure/flora/ausbushes/ppflowers,
-/obj/structure/flora/ausbushes/sparsegrass,
-/turf/open/floor/grass,
-/area/outpost/crew)
-"Zu" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/newscaster/directional/west,
-/obj/machinery/newscaster/directional/west,
/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
-"Zx" = (
-/obj/item/kirbyplants/random,
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+/area/outpost/hallway/port)
+"Qc" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/effect/turf_decal/corner/opaque/neutral/three_quarters{
dir = 8
},
-/turf/open/floor/plasteel/grimy,
-/area/outpost/crew/dorm)
-"ZE" = (
-/obj/structure/table,
-/turf/open/floor/plasteel/tech/techmaint,
-/area/outpost/vacant_rooms)
-"ZM" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 4
+/turf/open/floor/plasteel,
+/area/outpost/hallway/port)
+"Qg" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-9"
},
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/wood,
-/area/outpost/crew)
-"ZO" = (
-/obj/effect/turf_decal/spline/fancy/opaque/grey{
- pixel_x = -1
+/obj/structure/cable/yellow{
+ icon_state = "1-9"
},
-/obj/machinery/light/directional/east,
-/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/corner_techfloor_gray{
+ dir = 10
+ },
+/turf/open/floor/plasteel/tech/techmaint,
+/area/outpost/maintenance/fore)
+"Qk" = (
+/obj/machinery/button/door{
+ dir = 8;
+ pixel_x = 22;
+ pixel_y = 9;
+ id = "out3";
+ normaldoorcontrol = 1;
+ specialfunctions = 4
+ },
+/obj/effect/turf_decal/corner/transparent/brown/full,
/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
-"ZS" = (
-/obj/structure/cable{
- icon_state = "1-4"
+/area/outpost/crew/bar)
+"Qn" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/effect/turf_decal/corner/opaque/black{
+ dir = 5
},
+/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
+ dir = 4
},
-/turf/open/floor/plasteel/grimy,
-/area/outpost/crew/dorm)
-"ZV" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
},
-/obj/structure/disposalpipe/junction{
+/turf/open/floor/plasteel,
+/area/outpost/hallway/central)
+"Qp" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/item/trash/semki,
+/turf/open/floor/plating/asteroid,
+/area/outpost/external)
+"Qr" = (
+/obj/effect/turf_decal/corner/opaque/red{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/outpost/security)
+"Qv" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"Qx" = (
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/minor/bowler_or_that,
+/obj/effect/spawner/lootdrop/maintenance/three,
+/turf/open/floor/plasteel/mono,
+/area/outpost/storage)
+"QA" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/machinery/firealarm/directional/south,
+/obj/structure/janitorialcart,
+/obj/item/mop,
+/obj/item/clothing/gloves/color/purple,
+/obj/item/clothing/head/beanie/purple,
+/obj/item/clothing/neck/tie/purple,
+/turf/open/floor/plasteel,
+/area/outpost/crew/janitor)
+"QL" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/corner/opaque/brown{
+ dir = 9
+ },
+/turf/open/floor/plasteel/patterned,
+/area/outpost/cargo)
+"QR" = (
+/obj/machinery/newscaster/directional/north,
+/obj/structure/filingcabinet/double,
+/turf/open/floor/plasteel/dark,
+/area/outpost/cargo/office)
+"QT" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/effect/turf_decal/corner/opaque/black{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/outpost/hallway/central)
+"QY" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/plasteel,
+/area/outpost/hallway/port)
+"QZ" = (
+/obj/effect/decal/cleanable/crayon{
+ icon_state = "arrow";
+ pixel_y = 11;
+ pixel_x = -14
+ },
+/turf/closed/indestructible/reinforced,
+/area/outpost/maintenance/fore)
+"Ra" = (
+/obj/machinery/door/airlock{
+ dir = 4;
+ name = "Lounge"
+ },
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/turf/open/floor/plasteel/tech,
+/area/outpost/crew/bar)
+"Rb" = (
+/obj/structure/falsewall/reinforced,
+/turf/open/floor/plating,
+/area/outpost/vacant_rooms/office)
+"Rc" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
dir = 4
},
-/obj/structure/cable{
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/corner/opaque/black{
+ dir = 6
+ },
+/obj/effect/turf_decal/corner/opaque/black{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/outpost/hallway/port)
+"Rf" = (
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 5
+ },
+/turf/open/floor/wood,
+/area/outpost/crew/bar)
+"Rg" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"Rh" = (
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
+/turf/open/floor/plating,
+/area/outpost/maintenance/central)
+"Ri" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/item/trash/semki,
+/turf/open/floor/plating/asteroid,
+/area/outpost/external)
+"Ro" = (
+/obj/structure/falsewall/reinforced,
+/turf/closed/indestructible/reinforced,
+/area/outpost/maintenance/fore)
+"Rr" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 6
+ },
+/obj/effect/turf_decal/corner/opaque/neutral/diagonal,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel,
+/area/outpost/storage)
+"Rs" = (
+/obj/structure/cable/yellow{
+ icon_state = "6-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-6"
+ },
+/obj/effect/spawner/lootdrop/waste/trash,
+/obj/effect/turf_decal/corner_techfloor_gray{
+ dir = 10
+ },
+/obj/effect/turf_decal/corner_steel_grid{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"Rt" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/effect/turf_decal/trimline/opaque/purple/filled/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/outpost/crew/janitor)
+"Ru" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/light/small/directional/east,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/outpost/crew/library)
+"Rv" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/corner/opaque/black{
+ dir = 1
+ },
/turf/open/floor/plasteel,
/area/outpost/hallway/central)
-"ZY" = (
-/obj/effect/turf_decal/spline/fancy/opaque/grey{
+"Rx" = (
+/obj/structure/falsewall/reinforced,
+/turf/open/floor/plating,
+/area/outpost/vacant_rooms)
+"RA" = (
+/obj/structure/railing/wood{
+ dir = 10;
+ color = "#792f27"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 5
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/outpost/crew/bar)
+"RG" = (
+/obj/structure/barricade/wooden/crude,
+/obj/machinery/door/firedoor/closed,
+/obj/effect/turf_decal/industrial/warning,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/door/airlock/mining{
+ req_access = list("106")
+ },
+/turf/open/floor/plasteel/tech,
+/area/outpost/hallway/port)
+"RH" = (
+/obj/structure/chair/stool/bar{
dir = 1;
- pixel_x = -1
+ pixel_y = 13
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/wood,
+/area/outpost/crew/bar)
+"RI" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
+/obj/structure/disposalpipe/segment,
+/obj/effect/spawner/lootdrop/waste/trash,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"RJ" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/corner/opaque/neutral/diagonal,
+/obj/effect/turf_decal/spline/fancy/opaque/lightgrey{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/plasteel,
-/area/outpost/vacant_rooms)
-
-(1,1,1) = {"
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-"}
-(2,1,1) = {"
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-"}
-(3,1,1) = {"
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-"}
-(4,1,1) = {"
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-"}
-(5,1,1) = {"
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-"}
-(6,1,1) = {"
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-"}
-(7,1,1) = {"
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-"}
-(8,1,1) = {"
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-"}
-(9,1,1) = {"
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-"}
-(10,1,1) = {"
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-"}
-(11,1,1) = {"
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-"}
-(12,1,1) = {"
+/area/outpost/storage)
+"RM" = (
+/obj/effect/turf_decal/corner/opaque/red{
+ dir = 1
+ },
+/obj/effect/landmark/ert_outpost_spawn,
+/turf/open/floor/plasteel,
+/area/outpost/security)
+"RO" = (
+/obj/structure/railing{
+ dir = 6
+ },
+/obj/machinery/conveyor_switch{
+ id = "outpost1";
+ layer = 3.11;
+ pixel_y = 4;
+ pixel_x = 5
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned,
+/area/outpost/cargo)
+"RU" = (
+/obj/item/kirbyplants/random,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/outpost/storage)
+"RV" = (
+/obj/effect/decal/cleanable/crayon{
+ icon_state = "safe";
+ pixel_y = 29
+ },
+/obj/effect/decal/cleanable/garbage{
+ pixel_y = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/item/trash/can/food/beans{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/trash/can/food/beans{
+ pixel_x = -6;
+ pixel_y = 3
+ },
+/turf/open/floor/plating/asteroid,
+/area/outpost/maintenance/central)
+"RW" = (
+/obj/machinery/light/small/directional/north,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/effect/decal/cleanable/garbage{
+ pixel_y = 6;
+ pixel_x = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/outpost/maintenance/central)
+"RY" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/turf_decal/corner/opaque/neutral,
+/turf/open/floor/plasteel,
+/area/outpost/hallway/port)
+"Sd" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"Si" = (
+/obj/effect/turf_decal/borderfloor/full,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/floordetail/pryhole,
+/turf/open/floor/plasteel,
+/area/outpost/maintenance/fore)
+"Sk" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/industrial/stand_clear{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/outpost/hallway/central)
+"Sl" = (
+/obj/structure/railing,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
+ },
+/turf/open/floor/plasteel/patterned,
+/area/outpost/cargo)
+"Sn" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/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/tech/techmaint,
+/area/outpost/maintenance/central)
+"So" = (
+/obj/structure/closet/crate/trashcart,
+/obj/effect/turf_decal/steeldecal/steel_decals1,
+/turf/open/floor/plating,
+/area/outpost/maintenance/central)
+"Sq" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/turf_decal/corner/opaque/neutral{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/outpost/hallway/port)
+"Sr" = (
+/obj/structure/sign/painting/library_private{
+ pixel_y = -26
+ },
+/obj/structure/chair/comfy/brown{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/outpost/crew/library)
+"Ss" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/effect/turf_decal/corner/opaque/neutral{
+ dir = 1
+ },
+/obj/structure/closet/emcloset/wall{
+ pixel_y = 28
+ },
+/turf/open/floor/plasteel,
+/area/outpost/hallway/central)
+"SC" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/corner/opaque/neutral{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/insectguts,
+/obj/effect/turf_decal/floordetail/tiled,
+/turf/open/floor/plasteel,
+/area/outpost/hallway/central)
+"SE" = (
+/turf/open/floor/ship/dirt,
+/area/outpost/hallway/port)
+"SG" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/chair/office{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/camera/autoname{
+ dir = 9
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/outpost/crew/library)
+"SL" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating/asteroid,
+/area/outpost/external)
+"SM" = (
+/obj/machinery/light/dim/directional/west,
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/outpost/crew/bar)
+"SO" = (
+/obj/machinery/light/directional/north,
+/obj/effect/turf_decal/spline/fancy/opaque/grey{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/outpost/security)
+"SS" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/effect/landmark/ert_outpost_spawn,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/outpost/security)
+"SV" = (
+/obj/structure/flora/grass/jungle,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
+/turf/open/floor/grass/ship/jungle,
+/area/outpost/hallway/port)
+"SW" = (
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/donkpockets,
+/obj/effect/spawner/lootdrop/maintenance/two,
+/turf/open/floor/plasteel/mono,
+/area/outpost/vacant_rooms)
+"SY" = (
+/obj/machinery/light/small/directional/east,
+/obj/structure/spider/stickyweb,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"Ta" = (
+/obj/effect/spawner/lootdrop/grille_or_trash,
+/obj/effect/decal/cleanable/oil,
+/obj/effect/turf_decal/steeldecal/steel_decals9,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"Tb" = (
+/obj/structure/flora/junglebush,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/grass/ship/jungle,
+/area/outpost/hallway/central)
+"Td" = (
+/obj/structure/bookcase/random,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/outpost/crew/library)
+"Te" = (
+/obj/effect/turf_decal/spline/fancy/opaque/grey,
+/obj/effect/turf_decal/spline/fancy/opaque/grey{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/outpost/security)
+"Tg" = (
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/donut,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/outpost/vacant_rooms)
+"Th" = (
+/turf/closed/indestructible/reinforced,
+/area/outpost/cargo/office)
+"Tr" = (
+/obj/structure/railing{
+ dir = 9
+ },
+/obj/machinery/conveyor_switch{
+ id = "outpost2";
+ layer = 3.11;
+ pixel_y = 9;
+ pixel_x = -2
+ },
+/turf/open/floor/plasteel/patterned,
+/area/outpost/cargo)
+"Ts" = (
+/obj/structure/chair/pew{
+ dir = 4
+ },
+/obj/effect/turf_decal/corner/opaque/green{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/outpost/hallway/central)
+"Tx" = (
+/obj/machinery/button/door{
+ specialfunctions = 4;
+ normaldoorcontrol = 1;
+ id = "out1";
+ dir = 1;
+ pixel_y = -21;
+ pixel_x = -8
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/corner/opaque/neutral/diagonal,
+/obj/effect/turf_decal/spline/fancy/opaque/lightgrey{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel,
+/area/outpost/storage)
+"TA" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/corner/opaque/black{
+ dir = 6
+ },
+/obj/effect/turf_decal/corner/opaque/neutral{
+ dir = 9
+ },
+/obj/effect/turf_decal/industrial/stand_clear{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/outpost/hallway/port)
+"TD" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
+/turf/open/floor/wood,
+/area/outpost/crew/bar)
+"TE" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/camera/autoname,
+/obj/effect/turf_decal/corner/opaque/neutral{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/outpost/hallway/central)
+"TG" = (
+/obj/effect/turf_decal/corner_techfloor_gray{
+ dir = 6
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/tech/techmaint,
+/area/outpost/maintenance/fore)
+"TM" = (
+/obj/effect/turf_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
+/turf/open/floor/plasteel/patterned,
+/area/outpost/cargo)
+"TT" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"TU" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/outpost/maintenance/central)
+"TZ" = (
+/obj/effect/turf_decal/corner_techfloor_gray{
+ dir = 9
+ },
+/obj/effect/spawner/lootdrop/waste/trash,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/tech/techmaint,
+/area/outpost/maintenance/fore)
+"Ua" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/machinery/light/small/directional/east,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 8
+ },
+/obj/effect/turf_decal/corner/opaque/neutral{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/outpost/hallway/central)
+"Uf" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/machinery/light/small/directional/north,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
+/obj/effect/turf_decal/corner/opaque/neutral{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/outpost/hallway/central)
+"Ui" = (
+/obj/machinery/disposal/deliveryChute{
+ name = "fun chute";
+ desc = "If it's so fun, what's the harm in it?"
+ },
+/obj/effect/decal/cleanable/crayon{
+ icon_state = "arrow";
+ pixel_y = -19;
+ pixel_x = 2
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/effect/turf_decal/corner_techfloor_gray{
+ dir = 5
+ },
+/obj/effect/turf_decal/steeldecal/steel_decals_central2,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"Um" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/item/toy/figure/head_of_personnel{
+ layer = 2.9;
+ pixel_y = 4
+ },
+/turf/open/floor/plating,
+/area/outpost/maintenance/central)
+"Uq" = (
+/obj/machinery/vending/snack/random,
+/turf/open/floor/plasteel/tech/techmaint,
+/area/outpost/hallway/port)
+"Us" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-9"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/spawner/lootdrop/waste/trash,
+/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/plating,
+/area/outpost/maintenance/central)
+"Ut" = (
+/obj/machinery/door/airlock{
+ dir = 4;
+ name = "Bar"
+ },
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/turf/open/floor/plasteel/tech,
+/area/outpost/crew/bar)
+"Uv" = (
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"Uw" = (
+/turf/closed/indestructible/reinforced,
+/area/outpost/cargo)
+"UB" = (
+/obj/effect/turf_decal/corner/opaque/brown/full,
+/turf/open/floor/plasteel/patterned,
+/area/outpost/cargo)
+"UC" = (
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "outpost2"
+ },
+/obj/effect/turf_decal/industrial/warning/fulltile,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/outpost/cargo)
+"UE" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/spline/fancy/opaque/lightgrey{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/outpost/vacant_rooms/office)
+"UG" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/corner_techfloor_gray{
+ dir = 8
+ },
+/obj/effect/turf_decal/corner_steel_grid{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"UI" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/effect/turf_decal/corner/opaque/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/floordetail/tiled,
+/turf/open/floor/plasteel,
+/area/outpost/hallway/central)
+"UO" = (
+/obj/machinery/firealarm/directional/south,
+/obj/item/kirbyplants{
+ icon_state = "plant-21";
+ pixel_y = 1;
+ pixel_x = -11
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/outpost/crew/bar)
+"UP" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"UT" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned,
+/area/outpost/cargo)
+"UU" = (
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/structure/fluff/hedge,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/outpost/crew/library)
+"UZ" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/outpost/vacant_rooms/office)
+"Vc" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"Vf" = (
+/obj/structure/cable/yellow{
+ icon_state = "6-9"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"Vg" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/effect/turf_decal/corner/opaque/neutral{
+ dir = 4
+ },
+/obj/item/radio/intercom/directional/east,
+/turf/open/floor/plasteel,
+/area/outpost/hallway/central)
+"Vp" = (
+/obj/structure/flora/grass/jungle,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/grass/ship/jungle,
+/area/outpost/hallway/port)
+"Vq" = (
+/obj/structure/bed/double/maint{
+ dir = 4
+ },
+/obj/item/bedsheet/double/captain,
+/obj/effect/decal/cleanable/greenglow,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/clothing/head/papersack/smiley{
+ pixel_x = 7
+ },
+/turf/open/floor/plating/asteroid,
+/area/outpost/maintenance/central)
+"Vr" = (
+/obj/effect/decal/cleanable/oil,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"Vv" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/plasteel/patterned,
+/area/outpost/cargo)
+"Vx" = (
+/obj/structure/railing{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"VG" = (
+/obj/structure/noticeboard{
+ pixel_y = 26
+ },
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/effect/turf_decal/corner/opaque/black{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/outpost/hallway/central)
+"VM" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/machinery/newscaster/directional/south,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/corner/opaque/neutral{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/outpost/hallway/central)
+"VN" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/effect/turf_decal/corner/opaque/brown{
+ dir = 10
+ },
+/obj/machinery/camera/autoname{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned,
+/area/outpost/cargo)
+"VO" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/structure/holosign/barrier/infinite{
+ max_integrity = 500
+ },
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/plasteel,
+/area/outpost/hallway/central)
+"VP" = (
+/obj/structure/grille/indestructable,
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"VQ" = (
+/obj/effect/turf_decal/industrial/loading{
+ dir = 4
+ },
+/turf/open/floor/plasteel/patterned,
+/area/outpost/cargo)
+"VT" = (
+/obj/effect/decal/cleanable/crayon{
+ icon_state = "med";
+ pixel_y = -28
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/chem_pile,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"VW" = (
+/obj/structure/chair/sofa,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/carpet/green,
+/area/outpost/crew/bar)
+"Wa" = (
+/obj/effect/spawner/lootdrop/waste/trash,
+/obj/effect/decal/cleanable/dirt,
+/mob/living/simple_animal/mouse/brown,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"Wc" = (
+/obj/machinery/recycler,
+/obj/machinery/conveyor/auto{
+ dir = 4;
+ id = "outpost3"
+ },
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"Wd" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/outpost/crew/bar)
+"Wf" = (
+/obj/machinery/light/dim/directional/north,
+/turf/open/floor/ship/dirt/dark,
+/area/outpost/hallway/port)
+"Wl" = (
+/obj/structure/grille/indestructable,
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/effect/turf_decal/industrial/warning/dust{
+ dir = 1
+ },
+/obj/effect/turf_decal/industrial/warning/dust,
+/obj/effect/turf_decal/steeldecal/steel_decals_central7,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"Wm" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/effect/turf_decal/industrial/stand_clear,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/plasteel,
+/area/outpost/hallway/central)
+"Wt" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/machinery/light/small/directional/east,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/turf_decal/corner/opaque/neutral,
+/turf/open/floor/plasteel,
+/area/outpost/hallway/port)
+"Wv" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/effect/turf_decal/corner/opaque/neutral{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/outpost/hallway/port)
+"Wz" = (
+/obj/structure/barricade/wooden/crude,
+/obj/effect/spawner/structure/window/reinforced/indestructable,
+/turf/open/floor/plating,
+/area/outpost/maintenance/central)
+"WC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/outpost/vacant_rooms/office)
+"WH" = (
+/obj/structure/cable/yellow,
+/obj/machinery/power/apc/auto_name/directional/west,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"WJ" = (
+/obj/effect/turf_decal/industrial/warning,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 1
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/security/brig{
+ req_access = list("101")
+ },
+/turf/open/floor/plasteel/tech,
+/area/outpost/security)
+"WM" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
+ },
+/obj/effect/turf_decal/corner/opaque/neutral,
+/turf/open/floor/plasteel,
+/area/outpost/hallway/central)
+"WO" = (
+/obj/effect/spawner/lootdrop/maintenance/two,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"WR" = (
+/obj/structure/noticeboard{
+ name = "refinery notice board";
+ dir = 8;
+ pixel_y = 0;
+ pixel_x = 26
+ },
+/obj/effect/turf_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
+/turf/open/floor/plasteel/patterned,
+/area/outpost/cargo)
+"WS" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/foamedmetal,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"WV" = (
+/obj/machinery/vending/snack/random,
+/obj/effect/turf_decal/spline/fancy/opaque/lightgrey{
+ dir = 1
+ },
+/turf/open/floor/plasteel/tech/techmaint,
+/area/outpost/hallway/central)
+"WW" = (
+/obj/effect/turf_decal/ihejirika_small,
+/turf/open/floor/plating,
+/area/outpost/maintenance/central)
+"WZ" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/industrial/stand_clear{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/outpost/hallway/central)
+"Xd" = (
+/obj/effect/decal/cleanable/ash,
+/turf/open/floor/plating/asteroid,
+/area/outpost/external)
+"Xe" = (
+/obj/structure/table/wood,
+/obj/item/radio/intercom/table{
+ dir = 4
+ },
+/turf/open/floor/wood/mahogany,
+/area/outpost/crew/bar)
+"Xg" = (
+/obj/structure/spider/stickyweb,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"Xl" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/corner/opaque/neutral,
+/obj/effect/turf_decal/floordetail/tiled,
+/turf/open/floor/plasteel,
+/area/outpost/hallway/central)
+"Xm" = (
+/turf/open/floor/grass/ship/jungle,
+/area/outpost/hallway/central)
+"Xn" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/corner/opaque/neutral{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/outpost/hallway/port)
+"Xq" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plating/asteroid,
+/area/outpost/external)
+"Xr" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/corner/opaque/orange{
+ dir = 5
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 4
+ },
+/obj/machinery/light/small/directional/south,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/dark,
+/area/outpost/cargo/office)
+"Xv" = (
+/obj/structure/railing/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/corner/opaque/brown{
+ dir = 9
+ },
+/turf/open/floor/plasteel/patterned,
+/area/outpost/cargo)
+"Xy" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
+ },
+/obj/effect/turf_decal/corner/opaque/neutral/diagonal,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/outpost/vacant_rooms)
+"Xz" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/industrial/warning,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/plasteel/tech,
+/area/outpost/hallway/port)
+"XA" = (
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/maintenance/five,
+/turf/open/floor/plasteel/mono,
+/area/outpost/vacant_rooms)
+"XD" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 8
+ },
+/obj/effect/turf_decal/corner/opaque/neutral{
+ dir = 4
+ },
+/obj/structure/sign/poster/random{
+ pixel_x = 28
+ },
+/turf/open/floor/plasteel,
+/area/outpost/hallway/port)
+"XE" = (
+/obj/structure/flora/grass/jungle,
+/turf/open/floor/grass/ship/jungle,
+/area/outpost/hallway/port)
+"XF" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"XI" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/opaque/purple/filled/line,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel,
+/area/outpost/crew/janitor)
+"XP" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ 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/plating,
+/area/outpost/maintenance/central)
+"XQ" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/plasteel,
+/area/outpost/hallway/central)
+"XS" = (
+/obj/structure/falsewall/reinforced,
+/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/outpost/maintenance/central)
+"XV" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/effect/decal/fakelattice,
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/plasteel/elevatorshaft,
+/area/outpost/security)
+"XW" = (
+/obj/structure/chair/comfy/brown{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/outpost/crew/bar)
+"XZ" = (
+/obj/structure/sign/painting/library{
+ pixel_y = -26
+ },
+/obj/machinery/light/small/directional/east,
+/obj/effect/decal/cleanable/glass,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/outpost/crew/library)
+"Yd" = (
+/turf/closed/indestructible/reinforced,
+/area/outpost/hallway/central)
+"Yj" = (
+/obj/machinery/vending/cigarette,
+/obj/machinery/firealarm/directional/south,
+/turf/open/floor/plasteel/tech/techmaint,
+/area/outpost/hallway/central)
+"Yl" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"Yn" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 5
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/outpost/crew/bar)
+"Yq" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/junction/yjunction{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/turf_decal/corner/opaque/black/three_quarters{
+ dir = 8
+ },
+/obj/effect/turf_decal/corner/opaque/black{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel,
+/area/outpost/hallway/port)
+"Yt" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/item/radio/intercom/directional/west,
+/obj/effect/turf_decal/corner/opaque/brown{
+ dir = 9
+ },
+/turf/open/floor/plasteel/patterned,
+/area/outpost/cargo)
+"Yu" = (
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/effect/turf_decal/steeldecal/steel_decals_central6,
+/turf/open/floor/plasteel/patterned,
+/area/outpost/cargo)
+"Yv" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 1
+ },
+/obj/effect/turf_decal/corner/opaque/neutral,
+/turf/open/floor/plasteel,
+/area/outpost/hallway/port)
+"Yw" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/corner/opaque/brown/full,
+/turf/open/floor/plasteel/patterned,
+/area/outpost/cargo)
+"YC" = (
+/obj/effect/spawner/lootdrop/waste/trash,
+/obj/structure/rack,
+/obj/effect/turf_decal/steeldecal/steel_decals_central2{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/outpost/maintenance/central)
+"YD" = (
+/obj/structure/chair/sofa/left,
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/carpet/green,
+/area/outpost/crew/bar)
+"YE" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/effect/turf_decal/corner/opaque/black{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/outpost/hallway/central)
+"YF" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"YI" = (
+/obj/structure/spider/stickyweb,
+/obj/effect/decal/cleanable/insectguts,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"YL" = (
+/obj/structure/falsewall/reinforced,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"YN" = (
+/obj/structure/flora/grass/jungle,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 5
+ },
+/turf/open/floor/grass/ship/jungle,
+/area/outpost/hallway/central)
+"YX" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/machinery/light/dim/directional/south,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/corner/opaque/neutral/three_quarters,
+/turf/open/floor/plasteel,
+/area/outpost/hallway/port)
+"Ze" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/machinery/light/dim/directional/east,
+/obj/effect/turf_decal/corner/opaque/neutral{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/outpost/hallway/port)
+"Zh" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/corner/opaque/neutral{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/outpost/hallway/central)
+"Zk" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/outpost/vacant_rooms/office)
+"Zl" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/light/directional/north,
+/turf/open/floor/plasteel,
+/area/outpost/security)
+"Zm" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/effect/turf_decal/corner/opaque/neutral,
+/turf/open/floor/plasteel,
+/area/outpost/hallway/port)
+"Zo" = (
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/obj/effect/decal/cleanable/insectguts,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"Zs" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"Zu" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/outpost/crew/library)
+"Zv" = (
+/obj/machinery/paystand{
+ pixel_y = 8
+ },
+/obj/structure/table,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/outpost/storage)
+"Zx" = (
+/obj/structure/falsewall/reinforced,
+/turf/open/floor/plating,
+/area/outpost/cargo/office)
+"ZE" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/effect/turf_decal/corner/opaque/black{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/outpost/hallway/central)
+"ZG" = (
+/obj/structure/cable/yellow{
+ icon_state = "6-9"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/oil,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"ZJ" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/effect/turf_decal/corner_techfloor_grid{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel/tech/techmaint,
+/area/outpost/maintenance/fore)
+"ZK" = (
+/obj/item/radio/intercom/directional/north,
+/obj/item/kirbyplants{
+ icon_state = "plant-16";
+ pixel_x = -13
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/carpet/green,
+/area/outpost/crew/bar)
+"ZM" = (
+/turf/closed/indestructible/wood,
+/area/outpost/crew/bar)
+"ZN" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/machinery/light/small/directional/west,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 1
+ },
+/obj/item/kirbyplants/random,
+/obj/effect/turf_decal/corner/opaque/neutral{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/outpost/hallway/central)
+"ZP" = (
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/tool_surgery_common,
+/obj/effect/spawner/lootdrop/maintenance/four,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/outpost/vacant_rooms/office)
+"ZU" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"ZY" = (
+/obj/effect/turf_decal/corner/opaque/grey/full,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/sign/poster/random{
+ pixel_y = 30
+ },
+/obj/effect/turf_decal/corner/opaque/neutral{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/outpost/hallway/central)
+
+(1,1,1) = {"
mC
mC
mC
@@ -7270,7 +8577,7 @@ mC
mC
mC
"}
-(13,1,1) = {"
+(2,1,1) = {"
mC
mC
mC
@@ -7393,7 +8700,7 @@ mC
mC
mC
"}
-(14,1,1) = {"
+(3,1,1) = {"
mC
mC
mC
@@ -7516,7 +8823,7 @@ mC
mC
mC
"}
-(15,1,1) = {"
+(4,1,1) = {"
mC
mC
mC
@@ -7639,7 +8946,7 @@ mC
mC
mC
"}
-(16,1,1) = {"
+(5,1,1) = {"
mC
mC
mC
@@ -7762,7 +9069,7 @@ mC
mC
mC
"}
-(17,1,1) = {"
+(6,1,1) = {"
mC
mC
mC
@@ -7885,7 +9192,7 @@ mC
mC
mC
"}
-(18,1,1) = {"
+(7,1,1) = {"
mC
mC
mC
@@ -8008,7 +9315,7 @@ mC
mC
mC
"}
-(19,1,1) = {"
+(8,1,1) = {"
mC
mC
mC
@@ -8131,7 +9438,7 @@ mC
mC
mC
"}
-(20,1,1) = {"
+(9,1,1) = {"
mC
mC
mC
@@ -8254,7 +9561,7 @@ mC
mC
mC
"}
-(21,1,1) = {"
+(10,1,1) = {"
mC
mC
mC
@@ -8377,7 +9684,7 @@ mC
mC
mC
"}
-(22,1,1) = {"
+(11,1,1) = {"
mC
mC
mC
@@ -8500,7 +9807,7 @@ mC
mC
mC
"}
-(23,1,1) = {"
+(12,1,1) = {"
mC
mC
mC
@@ -8623,7 +9930,7 @@ mC
mC
mC
"}
-(24,1,1) = {"
+(13,1,1) = {"
mC
mC
mC
@@ -8746,7 +10053,7 @@ mC
mC
mC
"}
-(25,1,1) = {"
+(14,1,1) = {"
mC
mC
mC
@@ -8869,7 +10176,7 @@ mC
mC
mC
"}
-(26,1,1) = {"
+(15,1,1) = {"
mC
mC
mC
@@ -8992,7 +10299,7 @@ mC
mC
mC
"}
-(27,1,1) = {"
+(16,1,1) = {"
mC
mC
mC
@@ -9115,7 +10422,7 @@ mC
mC
mC
"}
-(28,1,1) = {"
+(17,1,1) = {"
mC
mC
mC
@@ -9238,7 +10545,7 @@ mC
mC
mC
"}
-(29,1,1) = {"
+(18,1,1) = {"
mC
mC
mC
@@ -9361,47 +10668,7 @@ mC
mC
mC
"}
-(30,1,1) = {"
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
+(19,1,1) = {"
mC
mC
mC
@@ -9427,14 +10694,6 @@ mC
mC
mC
mC
-Or
-pD
-pD
-pD
-pD
-pD
-pD
-Or
mC
mC
mC
@@ -9483,8 +10742,6 @@ mC
mC
mC
mC
-"}
-(31,1,1) = {"
mC
mC
mC
@@ -9533,6 +10790,8 @@ mC
mC
mC
mC
+"}
+(20,1,1) = {"
mC
mC
mC
@@ -9549,16 +10808,6 @@ mC
mC
mC
mC
-Or
-Or
-fC
-ov
-Ik
-Ik
-bT
-jD
-Or
-Or
mC
mC
mC
@@ -9606,8 +10855,6 @@ mC
mC
mC
mC
-"}
-(32,1,1) = {"
mC
mC
mC
@@ -9666,22 +10913,14 @@ mC
mC
mC
mC
+"}
+(21,1,1) = {"
mC
mC
mC
mC
mC
mC
-Or
-ec
-es
-Qk
-nE
-nE
-XM
-EB
-Zi
-Or
mC
mC
mC
@@ -9729,8 +10968,6 @@ mC
mC
mC
mC
-"}
-(33,1,1) = {"
mC
mC
mC
@@ -9794,23 +11031,13 @@ mC
mC
mC
mC
-Or
-Or
-Or
-ys
-bo
-wF
-Ep
-NH
-af
-Or
-Or
-Or
mC
mC
mC
mC
mC
+"}
+(22,1,1) = {"
mC
mC
mC
@@ -9852,8 +11079,6 @@ mC
mC
mC
mC
-"}
-(34,1,1) = {"
mC
mC
mC
@@ -9916,19 +11141,6 @@ mC
mC
mC
mC
-Or
-Or
-gK
-YK
-TB
-PR
-rB
-rB
-FB
-FQ
-Ov
-vf
-Or
mC
mC
mC
@@ -9947,6 +11159,8 @@ mC
mC
mC
mC
+"}
+(23,1,1) = {"
mC
mC
mC
@@ -9975,8 +11189,6 @@ mC
mC
mC
mC
-"}
-(35,1,1) = {"
mC
mC
mC
@@ -10039,20 +11251,6 @@ mC
mC
mC
mC
-Or
-Sp
-Ww
-sa
-GJ
-uG
-rt
-rt
-tL
-HH
-lZ
-lj
-Or
-Or
mC
mC
mC
@@ -10084,6 +11282,8 @@ mC
mC
mC
mC
+"}
+(24,1,1) = {"
mC
mC
mC
@@ -10098,8 +11298,6 @@ mC
mC
mC
mC
-"}
-(36,1,1) = {"
mC
mC
mC
@@ -10162,20 +11360,6 @@ mC
mC
mC
mC
-Or
-pP
-Rd
-tg
-xa
-nf
-du
-KQ
-Ou
-Oz
-Rk
-kY
-GA
-Or
mC
mC
mC
@@ -10222,17 +11406,7 @@ mC
mC
mC
"}
-(37,1,1) = {"
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
+(25,1,1) = {"
mC
mC
mC
@@ -10283,22 +11457,6 @@ mC
mC
mC
mC
-Or
-Or
-Or
-BF
-Rk
-kW
-ng
-Qh
-Qh
-Qh
-Qh
-Yo
-Nl
-Rk
-oq
-Or
mC
mC
mC
@@ -10344,8 +11502,6 @@ mC
mC
mC
mC
-"}
-(38,1,1) = {"
mC
mC
mC
@@ -10372,6 +11528,8 @@ mC
mC
mC
mC
+"}
+(26,1,1) = {"
mC
mC
mC
@@ -10405,24 +11563,6 @@ mC
mC
mC
mC
-Or
-Or
-KK
-EU
-gy
-lp
-Au
-Nv
-ml
-ml
-ml
-ml
-Hm
-FQ
-uF
-hd
-Or
-Or
mC
mC
mC
@@ -10467,8 +11607,6 @@ mC
mC
mC
mC
-"}
-(39,1,1) = {"
mC
mC
mC
@@ -10513,6 +11651,8 @@ mC
mC
mC
mC
+"}
+(27,1,1) = {"
mC
mC
mC
@@ -10528,24 +11668,6 @@ mC
mC
mC
mC
-zq
-xW
-Qk
-bo
-PH
-dH
-ZM
-Cc
-Qk
-Qk
-UM
-Qk
-Up
-pO
-ob
-WT
-dh
-Or
mC
mC
mC
@@ -10583,15 +11705,21 @@ mC
mC
mC
mC
+NH
+pk
+NH
+NH
mC
mC
mC
mC
mC
mC
+NH
+NH
+NH
+NH
mC
-"}
-(40,1,1) = {"
mC
mC
mC
@@ -10646,29 +11774,13 @@ mC
mC
mC
mC
+"}
+(28,1,1) = {"
mC
mC
mC
mC
mC
-zq
-kJ
-Qk
-Zt
-PV
-yh
-JM
-je
-tr
-ti
-ti
-ED
-mn
-Of
-du
-Ld
-cx
-Or
mC
mC
mC
@@ -10713,13 +11825,12 @@ mC
mC
mC
mC
-"}
-(41,1,1) = {"
mC
mC
mC
mC
mC
+rt
mC
mC
mC
@@ -10728,6 +11839,7 @@ mC
mC
mC
mC
+rt
mC
mC
mC
@@ -10774,24 +11886,6 @@ mC
mC
mC
mC
-zq
-nE
-Qk
-iY
-FB
-VW
-Bu
-Za
-Vy
-sv
-sv
-sv
-sv
-JC
-Uz
-Or
-Or
-Or
mC
mC
mC
@@ -10803,6 +11897,8 @@ mC
mC
mC
mC
+"}
+(29,1,1) = {"
mC
mC
mC
@@ -10836,8 +11932,6 @@ mC
mC
mC
mC
-"}
-(42,1,1) = {"
mC
mC
mC
@@ -10848,6 +11942,8 @@ mC
mC
mC
mC
+HD
+HD
mC
mC
mC
@@ -10857,6 +11953,7 @@ mC
mC
mC
mC
+rt
mC
mC
mC
@@ -10865,6 +11962,7 @@ mC
mC
mC
mC
+rt
mC
mC
mC
@@ -10897,24 +11995,6 @@ mC
mC
mC
mC
-zq
-jI
-Wd
-kI
-DB
-nw
-uF
-zn
-uF
-Jz
-cO
-gN
-jI
-LZ
-Nx
-ez
-DX
-Or
mC
mC
mC
@@ -10940,6 +12020,8 @@ mC
mC
mC
mC
+"}
+(30,1,1) = {"
mC
mC
mC
@@ -10959,8 +12041,6 @@ mC
mC
mC
mC
-"}
-(43,1,1) = {"
mC
mC
mC
@@ -10978,16 +12058,25 @@ mC
mC
mC
mC
+HD
+HD
+HD
mC
mC
mC
mC
+HD
+HD
+HD
mC
mC
mC
mC
+HD
+HD
mC
mC
+rt
mC
mC
mC
@@ -10996,6 +12085,7 @@ mC
mC
mC
mC
+rt
mC
mC
mC
@@ -11020,24 +12110,6 @@ mC
mC
mC
mC
-wL
-wL
-wL
-wL
-wL
-wL
-Ba
-jN
-Ba
-wL
-wL
-wL
-wL
-wL
-wL
-wL
-VX
-Or
mC
mC
mC
@@ -11071,6 +12143,8 @@ mC
mC
mC
mC
+"}
+(31,1,1) = {"
mC
mC
mC
@@ -11082,8 +12156,6 @@ mC
mC
mC
mC
-"}
-(44,1,1) = {"
mC
mC
mC
@@ -11107,13 +12179,27 @@ mC
mC
mC
mC
+HD
+HD
+HD
+HD
+HD
+HD
mC
mC
mC
mC
+HD
+HD
+HD
+HD
mC
+HD
+HD
+HD
mC
mC
+rt
mC
mC
mC
@@ -11122,6 +12208,7 @@ mC
mC
mC
mC
+rt
mC
mC
mC
@@ -11143,24 +12230,6 @@ mC
mC
mC
mC
-wL
-nO
-HB
-Kw
-Ff
-wL
-sC
-RV
-vv
-wL
-oF
-hU
-nz
-Oq
-KA
-wL
-Or
-Or
mC
mC
mC
@@ -11197,6 +12266,8 @@ mC
mC
mC
mC
+"}
+(32,1,1) = {"
mC
mC
mC
@@ -11205,8 +12276,6 @@ mC
mC
mC
mC
-"}
-(45,1,1) = {"
mC
mC
mC
@@ -11231,10 +12300,38 @@ mC
mC
mC
mC
+HD
mC
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+HD
mC
mC
mC
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+em
+HD
+Cc
+je
+je
+je
+je
+Cc
+HD
+em
mC
mC
mC
@@ -11266,22 +12363,6 @@ mC
mC
mC
mC
-wL
-pm
-Ck
-ga
-rZ
-wL
-xs
-RV
-sO
-wL
-xQ
-ZE
-yK
-RC
-ve
-wL
mC
mC
mC
@@ -11308,6 +12389,8 @@ mC
mC
mC
mC
+"}
+(33,1,1) = {"
mC
mC
mC
@@ -11328,8 +12411,6 @@ mC
mC
mC
mC
-"}
-(46,1,1) = {"
mC
mC
mC
@@ -11341,12 +12422,46 @@ mC
mC
mC
mC
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+HD
mC
+HD
+HD
+HD
+HD
+ZM
+ZM
+ZM
+ZM
+HD
+HD
+HD
+ZM
+oa
+XW
+XW
+lw
+ZM
+ZM
+ZM
+HD
mC
mC
mC
mC
mC
+NH
mC
mC
mC
@@ -11389,22 +12504,6 @@ mC
mC
mC
mC
-wL
-Ry
-Hi
-BJ
-zL
-sk
-Mk
-ns
-Xc
-tB
-Ev
-Ps
-Qt
-jS
-xn
-wL
mC
mC
mC
@@ -11413,6 +12512,8 @@ mC
mC
mC
mC
+"}
+(34,1,1) = {"
mC
mC
mC
@@ -11444,15 +12545,49 @@ mC
mC
mC
mC
+HD
+HD
+HD
+HD
+hq
+hq
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+ZM
+ib
+sj
+ZM
+ZM
+HD
+HD
+ZM
+GE
+tw
+BX
+Hh
+qg
+Or
+ZM
+HD
+HD
mC
mC
mC
mC
+NH
mC
mC
mC
-"}
-(47,1,1) = {"
mC
mC
mC
@@ -11500,6 +12635,8 @@ mC
mC
mC
mC
+"}
+(35,1,1) = {"
mC
mC
mC
@@ -11512,22 +12649,6 @@ mC
mC
mC
mC
-wL
-MO
-BE
-fV
-tZ
-ry
-Hg
-uv
-wa
-Td
-iB
-wR
-gJ
-ZO
-CT
-wL
mC
mC
mC
@@ -11546,6 +12667,47 @@ mC
mC
mC
mC
+HD
+HD
+HD
+HD
+hq
+hq
+hq
+hq
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+yq
+OK
+FD
+HJ
+Rf
+ZM
+ZM
+ZM
+ZM
+EV
+GY
+GW
+Hh
+rs
+Oh
+ZM
+HD
+HD
+em
+rt
+rt
+rt
+NH
mC
mC
mC
@@ -11574,8 +12736,6 @@ mC
mC
mC
mC
-"}
-(48,1,1) = {"
mC
mC
mC
@@ -11598,6 +12758,8 @@ mC
mC
mC
mC
+"}
+(36,1,1) = {"
mC
mC
mC
@@ -11626,31 +12788,55 @@ mC
mC
mC
mC
+HD
+HD
+HD
+HD
+HD
+hq
+hq
+hq
+hq
+hq
+Ha
+hq
+hq
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+Jq
+ZM
+ZM
+gE
+Fs
+ZM
+nn
+LE
+ZM
+iq
+Yn
+BR
+ir
+PD
+ur
+ZM
+HD
+HD
+HD
mC
mC
mC
+NH
mC
mC
mC
mC
mC
mC
-wL
-fI
-Qf
-Gp
-GT
-wL
-vr
-RV
-Pa
-wL
-wL
-wL
-wL
-wL
-wL
-wL
mC
mC
mC
@@ -11695,10 +12881,10 @@ mC
mC
mC
mC
+"}
+(37,1,1) = {"
mC
mC
-"}
-(49,1,1) = {"
mC
mC
mC
@@ -11725,10 +12911,49 @@ mC
mC
mC
mC
+HD
+HD
+HD
+HD
+Xd
+hq
+kH
+hq
+Bz
+Qp
+hq
+hq
+hq
+HD
+HD
+EP
+EP
+mP
+Zs
+Iu
+NN
+lM
+ZM
+ZM
+HX
+ZM
+Xe
+wA
+ZM
+ZM
+Ra
+ZM
+ZM
+ZM
+ZM
+ZM
+HD
+HD
mC
mC
mC
mC
+NH
mC
mC
mC
@@ -11758,22 +12983,6 @@ mC
mC
mC
mC
-wL
-rV
-cs
-ZE
-ZY
-wL
-EY
-ZV
-AM
-sB
-iw
-rS
-Zu
-rS
-KH
-wL
mC
mC
mC
@@ -11795,6 +13004,8 @@ mC
mC
mC
mC
+"}
+(38,1,1) = {"
mC
mC
mC
@@ -11820,10 +13031,47 @@ mC
mC
mC
mC
-"}
-(50,1,1) = {"
mC
mC
+HD
+HD
+HD
+HD
+Cm
+zR
+Xd
+Gm
+SL
+SL
+pQ
+SL
+Xq
+HD
+NK
+NK
+YL
+NK
+NK
+NK
+cS
+EP
+VT
+ZM
+JA
+zO
+uf
+RA
+AT
+OI
+SM
+no
+th
+ZM
+KK
+ZM
+HD
+HD
+HD
mC
mC
mC
@@ -11879,24 +13127,10 @@ mC
mC
mC
mC
+"}
+(39,1,1) = {"
mC
mC
-wL
-jW
-ai
-Sc
-xo
-wL
-uX
-sI
-Ne
-pt
-et
-UU
-UU
-Tk
-pG
-wL
mC
mC
mC
@@ -11921,6 +13155,47 @@ mC
mC
mC
mC
+HD
+HD
+HD
+HD
+HD
+hq
+dr
+rz
+AH
+hq
+hq
+HD
+NK
+PS
+NK
+NK
+fq
+fq
+NK
+ro
+NK
+MK
+dR
+Ng
+ZM
+ZK
+Li
+ED
+mM
+qG
+Bq
+GX
+tu
+zq
+xW
+Qk
+ZM
+ZM
+ZM
+ZM
+Cc
mC
mC
mC
@@ -11943,8 +13218,6 @@ mC
mC
mC
mC
-"}
-(51,1,1) = {"
mC
mC
mC
@@ -11977,6 +13250,8 @@ mC
mC
mC
mC
+"}
+(40,1,1) = {"
mC
mC
mC
@@ -12003,23 +13278,48 @@ mC
mC
mC
mC
+HD
+HD
+HD
+HD
+hq
+Ha
+vc
+SL
+Ri
+Ha
+hq
+HD
+NK
+rQ
+kd
+Fl
+Ab
+bV
+NK
+DS
+NK
+NU
+ue
+AP
+ZM
+wT
+Li
+cO
+RH
+ii
+mJ
+hZ
+PO
+UO
+ZM
+ZM
+ZM
+PV
+yh
+JM
+je
mC
-wL
-wL
-wL
-wL
-wL
-wL
-WV
-LD
-lk
-wL
-jU
-MF
-nT
-dq
-HL
-wL
mC
mC
mC
@@ -12066,8 +13366,6 @@ mC
mC
mC
mC
-"}
-(52,1,1) = {"
mC
mC
mC
@@ -12075,6 +13373,8 @@ mC
mC
mC
mC
+"}
+(41,1,1) = {"
mC
mC
mC
@@ -12100,6 +13400,48 @@ mC
mC
mC
mC
+HD
+HD
+HD
+HD
+HD
+hq
+hq
+AH
+hq
+hq
+hq
+hq
+HD
+NK
+xX
+gS
+NK
+YF
+hK
+NK
+dT
+NK
+NK
+NK
+NK
+Cc
+Fr
+id
+dQ
+pb
+fK
+Iz
+un
+ii
+bz
+ZM
+sb
+iY
+Li
+VW
+Bu
+je
mC
mC
mC
@@ -12128,21 +13470,6 @@ mC
mC
mC
mC
-wL
-sL
-Ob
-uW
-YR
-gz
-LD
-fk
-wL
-Ru
-lH
-nz
-LP
-ar
-wL
mC
mC
mC
@@ -12169,6 +13496,8 @@ mC
mC
mC
mC
+"}
+(42,1,1) = {"
mC
mC
mC
@@ -12189,13 +13518,53 @@ mC
mC
mC
mC
-"}
-(53,1,1) = {"
mC
mC
mC
mC
mC
+HD
+HD
+HD
+HD
+HD
+hq
+Bz
+zE
+hq
+HD
+HD
+hq
+HD
+NK
+YF
+NK
+NK
+Gj
+NK
+NK
+BY
+og
+ZJ
+PT
+hD
+Cc
+Cg
+Li
+nR
+jR
+yE
+TD
+ee
+dw
+sF
+jI
+Wd
+iY
+Li
+VW
+HF
+je
mC
mC
mC
@@ -12241,31 +13610,6 @@ mC
mC
mC
mC
-nU
-nU
-nU
-nU
-nU
-wL
-wL
-wL
-wL
-wL
-wL
-rG
-Xp
-rK
-kQ
-yM
-Hb
-sO
-wL
-mF
-fM
-Gc
-LP
-Uy
-wL
mC
mC
mC
@@ -12275,6 +13619,8 @@ mC
mC
mC
mC
+"}
+(43,1,1) = {"
mC
mC
mC
@@ -12300,6 +13646,48 @@ mC
mC
mC
mC
+HD
+HD
+HD
+HD
+hq
+hq
+hq
+hq
+HD
+HD
+NK
+YL
+NK
+NK
+ow
+DW
+NK
+Rs
+LH
+bn
+NK
+bS
+eU
+VP
+NQ
+Cc
+MD
+jj
+Bf
+dn
+fP
+mb
+IE
+hS
+PO
+ZM
+Oy
+au
+FB
+YD
+qv
+je
mC
mC
mC
@@ -12312,8 +13700,6 @@ mC
mC
mC
mC
-"}
-(54,1,1) = {"
mC
mC
mC
@@ -12356,6 +13742,8 @@ mC
mC
mC
mC
+"}
+(44,1,1) = {"
mC
mC
mC
@@ -12363,32 +13751,6 @@ mC
mC
mC
mC
-nU
-nU
-dC
-nU
-cl
-pV
-wL
-rj
-nz
-cc
-YE
-wL
-vX
-GK
-mp
-wL
-vr
-LD
-GU
-wL
-NT
-Nc
-kP
-LP
-vn
-wL
mC
mC
mC
@@ -12407,6 +13769,48 @@ mC
mC
mC
mC
+HD
+HD
+HD
+HD
+HD
+hq
+hq
+hq
+HD
+NK
+NK
+gC
+wq
+NK
+eD
+Mq
+NK
+fw
+ZG
+Xg
+NK
+NK
+Ak
+NK
+NK
+Cc
+ZM
+ZM
+ZM
+ZM
+ZM
+Ut
+ZM
+ZM
+ZM
+ZM
+ZM
+ZM
+Cc
+Cc
+Cc
+Cc
mC
mC
mC
@@ -12435,8 +13839,6 @@ mC
mC
mC
mC
-"}
-(55,1,1) = {"
mC
mC
mC
@@ -12463,6 +13865,8 @@ mC
mC
mC
mC
+"}
+(45,1,1) = {"
mC
mC
mC
@@ -12486,34 +13890,54 @@ mC
mC
mC
mC
-nU
-kg
-wm
-nU
-WM
-Df
-wL
-nz
-ZE
-cs
-Rv
-wL
-kR
-nK
-qT
-wL
-HR
-or
-cg
-wL
-lW
-cy
-bI
-Dz
-Mz
-wL
mC
mC
+HD
+HD
+HD
+HD
+HD
+NK
+YL
+NK
+NK
+NK
+Ui
+IN
+mf
+NK
+zY
+Qg
+NK
+qb
+Qv
+tG
+aE
+gA
+cR
+TG
+rW
+NK
+Uf
+yB
+Ji
+AU
+UI
+WZ
+lh
+pm
+pm
+pm
+ga
+ga
+rZ
+ZN
+Yd
+HD
+HD
+HD
+HD
+HD
mC
mC
mC
@@ -12558,14 +13982,14 @@ mC
mC
mC
mC
-"}
-(56,1,1) = {"
mC
mC
mC
mC
mC
mC
+"}
+(46,1,1) = {"
mC
mC
mC
@@ -12592,6 +14016,52 @@ mC
mC
mC
mC
+HD
+HD
+HD
+HD
+NK
+LR
+LR
+LR
+NK
+NK
+QZ
+kE
+NK
+NK
+YF
+hz
+nL
+oN
+xu
+NK
+Ef
+TZ
+If
+at
+lq
+Wm
+tA
+vB
+rj
+rj
+xM
+XQ
+Hi
+BJ
+AN
+Hi
+BJ
+zL
+sk
+Yd
+aI
+aI
+aI
+aI
+HD
+HD
mC
mC
mC
@@ -12601,6 +14071,8 @@ mC
mC
mC
mC
+HD
+HD
mC
mC
mC
@@ -12609,32 +14081,6 @@ mC
mC
mC
mC
-nU
-IY
-vV
-tC
-rn
-lS
-wL
-uc
-HG
-HG
-Bj
-wL
-eL
-XB
-AI
-wL
-Pz
-PE
-cg
-wL
-wH
-Uo
-zX
-De
-Hp
-wL
mC
mC
mC
@@ -12665,6 +14111,8 @@ mC
mC
mC
mC
+"}
+(47,1,1) = {"
mC
mC
mC
@@ -12681,8 +14129,6 @@ mC
mC
mC
mC
-"}
-(57,1,1) = {"
mC
mC
mC
@@ -12693,6 +14139,53 @@ mC
mC
mC
mC
+HD
+HD
+HD
+HD
+NK
+EP
+mk
+Vc
+qX
+RI
+qX
+Cf
+Sd
+BN
+kM
+NK
+UG
+NK
+NK
+NK
+Kx
+Kx
+Kx
+Kx
+Kx
+Kx
+OG
+Cn
+Yd
+dU
+xZ
+qD
+qD
+Po
+MO
+BE
+Yd
+tZ
+ry
+Yd
+uv
+wa
+tr
+aI
+HD
+HD
+HD
mC
mC
mC
@@ -12700,6 +14193,10 @@ mC
mC
mC
mC
+HD
+HD
+HD
+HD
mC
mC
mC
@@ -12729,35 +14226,6 @@ mC
mC
mC
mC
-GM
-GM
-GM
-GM
-nU
-nU
-nU
-yl
-Df
-wL
-Ez
-SC
-uL
-Xl
-wL
-wL
-wL
-wL
-wL
-dW
-AC
-Ix
-wL
-wL
-wL
-wL
-wL
-wL
-wL
mC
mC
mC
@@ -12766,6 +14234,8 @@ mC
mC
mC
mC
+"}
+(48,1,1) = {"
mC
mC
mC
@@ -12793,10 +14263,63 @@ mC
mC
mC
mC
+HD
+HD
+HD
+NK
+qx
+zM
+xm
+NK
+NK
+NK
+NK
+Yl
+Hv
+FS
+NK
+ZU
+Sd
+oU
+Hv
+Kx
+jg
+DH
+Qx
+Hk
+Kx
+JE
+AO
+Yd
+Yd
+fI
+fI
+fI
+fI
+fI
+Yd
+Yd
+GT
+Cl
+Yd
+JW
+km
+Td
+aI
+aI
+aI
+em
mC
mC
mC
+HD
+HD
mC
+HD
+HD
+HD
+HD
+HD
mC
mC
mC
@@ -12804,8 +14327,6 @@ mC
mC
mC
mC
-"}
-(58,1,1) = {"
mC
mC
mC
@@ -12836,6 +14357,8 @@ mC
mC
mC
mC
+"}
+(49,1,1) = {"
mC
mC
mC
@@ -12852,33 +14375,6 @@ mC
mC
mC
mC
-GM
-YI
-rE
-GM
-Si
-ki
-Yb
-Oa
-TW
-wL
-Qj
-vX
-vX
-Xl
-wL
-HP
-AY
-kA
-Yd
-XI
-ia
-XI
-Yd
-Rt
-QA
-EI
-Yd
mC
mC
mC
@@ -12890,6 +14386,63 @@ mC
mC
mC
mC
+HD
+HD
+HD
+NK
+iD
+kU
+uE
+NK
+EX
+tS
+NK
+NK
+NK
+NK
+NK
+ip
+xu
+Rg
+Kx
+Kx
+Ml
+aw
+aw
+zr
+Kx
+Ch
+VM
+Yd
+rr
+lA
+wF
+ai
+hO
+uD
+cs
+Yd
+ZY
+FH
+Yd
+aI
+AM
+sB
+iw
+rS
+Zu
+aI
+Fq
+Fq
+aI
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+HD
mC
mC
mC
@@ -12928,8 +14481,7 @@ mC
mC
mC
"}
-(59,1,1) = {"
-mC
+(50,1,1) = {"
mC
mC
mC
@@ -12957,6 +14509,60 @@ mC
mC
mC
mC
+HD
+HD
+HD
+NK
+NK
+nb
+NK
+NK
+rT
+kd
+wk
+dN
+xQ
+lE
+NK
+Ta
+fq
+WS
+LU
+RU
+Nv
+ta
+JV
+um
+Kx
+Ss
+tl
+pC
+YN
+uD
+hO
+to
+ai
+uD
+uD
+Yd
+xo
+xJ
+uX
+aI
+Ne
+pt
+et
+FJ
+UU
+aI
+pG
+ky
+aI
+HD
+HD
+HD
+HD
+HD
mC
mC
mC
@@ -12975,33 +14581,6 @@ mC
mC
mC
mC
-GM
-nZ
-oz
-tH
-sG
-ZS
-ri
-HC
-Df
-wL
-mz
-Eo
-jH
-Xl
-wL
-DU
-vL
-Fu
-Eg
-IU
-qQ
-EG
-Eg
-dD
-Gu
-DQ
-Yd
mC
mC
mC
@@ -13024,6 +14603,8 @@ mC
mC
mC
mC
+"}
+(51,1,1) = {"
mC
mC
mC
@@ -13050,10 +14631,60 @@ mC
mC
mC
mC
-"}
-(60,1,1) = {"
mC
mC
+HD
+HD
+HD
+NK
+it
+JF
+NK
+Rg
+NK
+NK
+NK
+Ro
+za
+NK
+NK
+NK
+WS
+Kx
+cm
+Is
+Rr
+wX
+fi
+oK
+AS
+we
+Yd
+Tb
+uD
+uD
+ai
+ai
+Xm
+lA
+Yd
+TE
+Zh
+WV
+aI
+lk
+rg
+jU
+MF
+nT
+aI
+HL
+Sr
+aI
+HD
+HD
+HD
+HD
mC
mC
mC
@@ -13095,36 +14726,11 @@ mC
mC
mC
mC
+"}
+(52,1,1) = {"
mC
mC
mC
-GM
-GM
-GM
-GM
-Zx
-Th
-qs
-Gq
-LK
-wL
-bE
-zv
-mA
-Qn
-wL
-ex
-RN
-GL
-hG
-cU
-Kt
-Ij
-hG
-Bs
-MA
-pl
-Yd
mC
mC
mC
@@ -13150,6 +14756,57 @@ mC
mC
mC
mC
+HD
+HD
+HD
+NK
+aB
+KI
+PF
+TT
+NK
+mU
+Gn
+NK
+Rg
+Hv
+hk
+NK
+Rg
+Kx
+Kx
+pl
+pj
+RJ
+Tx
+Kx
+on
+LX
+Yd
+Yd
+fI
+fI
+fI
+fI
+fI
+Yd
+Yd
+uW
+Zh
+gz
+aI
+fk
+SG
+Ru
+lH
+sV
+LP
+ar
+XZ
+aI
+HD
+HD
+HD
mC
mC
mC
@@ -13173,8 +14830,6 @@ mC
mC
mC
mC
-"}
-(61,1,1) = {"
mC
mC
mC
@@ -13194,6 +14849,8 @@ mC
mC
mC
mC
+"}
+(53,1,1) = {"
mC
mC
mC
@@ -13219,40 +14876,59 @@ mC
mC
mC
mC
-GM
-GM
-GM
-gP
-qH
-nU
-nU
-nU
-nU
-gb
-nU
-wL
-wL
-VG
-Bp
-wL
-wL
-Yd
-xs
-OY
-Yd
-KW
-zS
-zS
-Yd
-iQ
-jx
-vT
-Yd
-Yd
+mC
+mC
+mC
+HD
+HD
+HD
+NK
+Zo
+EP
+Wl
+Hl
+NK
+LH
+LH
+NK
+Rg
+Br
+lo
+Dq
+kM
+LH
+Kx
+Ic
+Zv
+LB
+LB
+Kx
+tt
+Ph
Yd
+dO
+oT
+Ts
+Ts
+Ts
+bq
+rG
Yd
+rK
+kQ
Yd
-mC
+aI
+sO
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+HD
+HD
mC
mC
mC
@@ -13297,7 +14973,7 @@ mC
mC
mC
"}
-(62,1,1) = {"
+(54,1,1) = {"
mC
mC
mC
@@ -13326,6 +15002,56 @@ mC
mC
mC
mC
+HD
+HD
+HD
+NK
+NK
+YL
+NK
+NK
+NK
+Ei
+Kr
+SY
+wU
+Sd
+kM
+NK
+wq
+LH
+Kx
+mm
+Ic
+ua
+iH
+Kx
+KY
+cl
+LD
+LD
+rj
+aU
+cc
+YE
+uN
+LD
+GK
+mp
+yk
+vr
+sz
+GU
+VO
+NT
+Nc
+HD
+HD
+HD
+HD
+HD
+HD
+HD
mC
mC
mC
@@ -13342,42 +15068,6 @@ mC
mC
mC
mC
-GM
-Md
-Zg
-QR
-MB
-KV
-nU
-En
-HU
-yu
-mL
-eg
-Eg
-ms
-Jh
-QT
-sX
-fD
-nI
-RV
-Yd
-ks
-ks
-sr
-kH
-RV
-dK
-Yd
-Yd
-AR
-dS
-Sa
-GM
-GM
-GM
-GM
mC
mC
mC
@@ -13405,6 +15095,8 @@ mC
mC
mC
mC
+"}
+(55,1,1) = {"
mC
mC
mC
@@ -13419,8 +15111,6 @@ mC
mC
mC
mC
-"}
-(63,1,1) = {"
mC
mC
mC
@@ -13434,6 +15124,58 @@ mC
mC
mC
mC
+HD
+HD
+HD
+HD
+HD
+hq
+hq
+hq
+HD
+NK
+ds
+ci
+NK
+PS
+NK
+NK
+NK
+NK
+NK
+Kx
+Kx
+Kx
+Kx
+Kx
+Kx
+or
+WM
+Df
+Kh
+OM
+ZE
+ei
+Rv
+yR
+Vg
+nK
+qT
+Ua
+HR
+FQ
+cg
+HQ
+NT
+Nc
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+HD
mC
mC
mC
@@ -13465,42 +15207,6 @@ mC
mC
mC
mC
-lb
-KZ
-GM
-uQ
-Lx
-Xr
-wB
-kF
-Mr
-fc
-aC
-CL
-Jr
-It
-wn
-Jr
-St
-AK
-Xx
-DY
-Yd
-ks
-ks
-ks
-kH
-Ao
-Vq
-qt
-CR
-mt
-Dg
-RF
-mQ
-IA
-wx
-GM
mC
mC
mC
@@ -13512,6 +15218,8 @@ mC
mC
mC
mC
+"}
+(56,1,1) = {"
mC
mC
mC
@@ -13539,11 +15247,62 @@ mC
mC
mC
mC
+HD
+HD
+HD
+HD
+HD
+hq
+qp
+hq
+NK
+NK
+NK
+NK
+NK
+Gk
+UP
+nY
+WH
+EP
+Mw
+NK
+Yl
+NK
+bc
+IY
+vV
+tC
+LL
+LL
+LL
+LL
+jL
+HG
+Bj
+Yd
+cq
+cq
+AI
+cq
+cq
+cq
+KF
+gq
+gq
+gq
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+HD
mC
mC
mC
-"}
-(64,1,1) = {"
mC
mC
mC
@@ -13582,48 +15341,19 @@ mC
mC
mC
mC
+"}
+(57,1,1) = {"
+mC
+mC
+mC
+mC
+mC
mC
mC
mC
mC
mC
mC
-GM
-QL
-GM
-GS
-nd
-KV
-nU
-im
-jM
-JB
-aH
-JX
-Lj
-AU
-ls
-uy
-sX
-fD
-nI
-LD
-Yd
-ks
-ks
-ks
-kH
-DV
-jx
-Yr
-jl
-Ty
-em
-Xm
-te
-LO
-KU
-GM
mC
mC
mC
@@ -13639,6 +15369,65 @@ mC
mC
mC
mC
+HD
+HD
+HD
+HD
+HD
+HD
+hq
+hq
+hq
+NK
+mV
+On
+hg
+NK
+uu
+NK
+nb
+Vr
+XF
+rC
+NK
+Au
+NK
+GM
+CU
+LL
+LL
+LL
+XE
+XE
+Ez
+SC
+uL
+Xl
+wN
+cq
+yc
+bs
+cq
+dl
+cq
+Ix
+Ai
+CK
+gq
+gq
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+mC
+mC
+mC
mC
mC
mC
@@ -13665,8 +15454,6 @@ mC
mC
mC
mC
-"}
-(65,1,1) = {"
mC
mC
mC
@@ -13677,6 +15464,8 @@ mC
mC
mC
mC
+"}
+(58,1,1) = {"
mC
mC
mC
@@ -13702,6 +15491,63 @@ mC
mC
mC
mC
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+Ha
+hq
+hq
+NK
+Wc
+Vx
+BA
+mr
+cI
+NK
+xK
+NK
+LH
+LH
+LH
+YI
+NK
+od
+Si
+LL
+XE
+Oa
+XE
+Om
+Ez
+kR
+vX
+ug
+Yj
+cq
+zS
+kA
+zI
+Ls
+cq
+XI
+la
+Rt
+QA
+gq
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+HD
mC
mC
mC
@@ -13711,42 +15557,6 @@ mC
mC
mC
mC
-GM
-GM
-GM
-GS
-Ni
-JU
-wL
-wL
-wL
-SV
-wL
-wL
-wL
-YV
-qZ
-wL
-wL
-Yd
-Ap
-OY
-Yd
-Mt
-Mt
-Mt
-Yd
-tU
-Yd
-Yd
-Yd
-OC
-zG
-Zr
-GM
-GM
-GM
-GM
mC
mC
mC
@@ -13777,6 +15587,9 @@ mC
mC
mC
mC
+"}
+(59,1,1) = {"
+mC
mC
mC
mC
@@ -13788,8 +15601,6 @@ mC
mC
mC
mC
-"}
-(66,1,1) = {"
mC
mC
mC
@@ -13803,6 +15614,63 @@ mC
mC
mC
mC
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+hq
+hq
+hq
+NK
+vH
+pp
+Uv
+NK
+NK
+NK
+xK
+NK
+NK
+LH
+NK
+nZ
+NK
+tH
+sG
+LL
+vR
+SE
+XE
+XE
+Ez
+Eo
+jH
+Ci
+Yd
+cq
+cq
+cq
+sP
+Mu
+DV
+EG
+Eg
+dD
+Gu
+gq
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+HD
mC
mC
mC
@@ -13836,43 +15704,14 @@ mC
mC
mC
mC
-nU
-cV
-nU
-ag
-wL
-bg
-fv
-GG
-GB
-wL
-oC
-sH
-iI
-OH
-wL
-FF
-bs
-ac
-Hl
-cU
-Ct
-yp
-xr
-sm
-tv
-pw
-Yd
-Yd
-Yd
-Yd
-Yd
mC
mC
mC
mC
mC
mC
+"}
+(60,1,1) = {"
mC
mC
mC
@@ -13897,8 +15736,64 @@ mC
mC
mC
mC
+HD
+HD
+HD
+HD
mC
mC
+HD
+HD
+HD
+hq
+qp
+NK
+NK
+NK
+NK
+NK
+Hv
+Hv
+NF
+WO
+NK
+NK
+Th
+Th
+Th
+Th
+Zx
+Th
+CL
+XE
+LK
+SE
+LL
+zv
+mA
+Qn
+zg
+ks
+ks
+GL
+cq
+IU
+cq
+cq
+cq
+cq
+cq
+cq
+IW
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+HD
mC
mC
mC
@@ -13911,8 +15806,6 @@ mC
mC
mC
mC
-"}
-(67,1,1) = {"
mC
mC
mC
@@ -13940,6 +15833,8 @@ mC
mC
mC
mC
+"}
+(61,1,1) = {"
mC
mC
mC
@@ -13959,42 +15854,69 @@ mC
mC
mC
mC
-nU
-vZ
-nU
-Ip
-wL
-bL
-CI
-xi
-Jl
-wL
-ST
-eq
-TA
-He
-wL
-WW
-Ty
-lX
-YC
-ls
-Sn
-nM
-Bx
-XS
-Cj
-yg
-Yd
-cZ
-Yd
mC
mC
mC
mC
+HD
+HD
+HD
+HD
mC
mC
mC
+HD
+HD
+HD
+hq
+hq
+hq
+hq
+hq
+hq
+NK
+Pe
+Hv
+JS
+Vf
+Gb
+sf
+Th
+gP
+qH
+Fv
+rU
+Th
+XE
+gb
+nU
+EC
+LL
+VG
+Bp
+fE
+zg
+ks
+ks
+ks
+cq
+KW
+Ks
+zS
+cq
+iQ
+jx
+vT
+IW
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+HD
mC
mC
mC
@@ -14035,13 +15957,7 @@ mC
mC
mC
"}
-(68,1,1) = {"
-mC
-mC
-mC
-mC
-mC
-mC
+(62,1,1) = {"
mC
mC
mC
@@ -14064,10 +15980,65 @@ mC
mC
mC
mC
+HD
+HD
+HD
+HD
mC
mC
mC
mC
+HD
+HD
+HD
+HD
+hq
+hq
+hq
+Ha
+hq
+YL
+FS
+Hv
+Wa
+Px
+MM
+Md
+Th
+QR
+MB
+KV
+Th
+Th
+XE
+CL
+XE
+XE
+LL
+ms
+Bp
+QT
+zg
+ks
+ks
+ks
+cq
+Mt
+Us
+So
+cq
+RV
+dK
+uV
+IW
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+HD
mC
mC
mC
@@ -14082,35 +16053,6 @@ mC
mC
mC
mC
-nU
-nU
-nU
-nU
-wL
-wL
-gF
-PA
-oe
-wL
-DJ
-AL
-Lu
-hA
-wL
-jd
-Od
-lx
-Yd
-rD
-FN
-rD
-Yd
-xy
-np
-sn
-Yd
-Yd
-Yd
mC
mC
mC
@@ -14137,6 +16079,8 @@ mC
mC
mC
mC
+"}
+(63,1,1) = {"
mC
mC
mC
@@ -14157,18 +16101,66 @@ mC
mC
mC
mC
-"}
-(69,1,1) = {"
mC
mC
+HD
+HD
mC
mC
mC
mC
mC
mC
+HD
+HD
+HD
+HD
+HD
+HD
+hq
+Uw
+Uw
+Uw
+Uw
+Uw
+Uw
+Uw
+Uw
+KZ
+Th
+uQ
+MB
+Xr
+Th
+SE
+SE
+XE
+SE
+CL
+Ez
+It
+wn
+Jr
+cq
+cq
+cq
+cq
+cq
+ER
+XP
+cq
+cq
+Ao
+Vq
+IW
+IW
+HD
+HD
+HD
mC
mC
+HD
+HD
mC
mC
mC
@@ -14210,28 +16202,8 @@ mC
mC
mC
mC
-wL
-rM
-nc
-IB
-wL
-Zm
-Qc
-HZ
-YX
-wL
-Yd
-Yd
-Yd
-Uw
-jC
-bJ
-jC
-Uw
-Yd
-Yd
-Yd
-Yd
+"}
+(64,1,1) = {"
mC
mC
mC
@@ -14263,6 +16235,52 @@ mC
mC
mC
mC
+HD
+HD
+HD
+HD
+HD
+HD
+Uw
+DP
+dg
+ny
+tE
+Yt
+vI
+Xv
+QL
+cV
+GS
+nd
+ie
+Th
+Wf
+jM
+JX
+nU
+JX
+Ez
+AU
+ls
+uy
+cq
+gR
+sn
+lB
+om
+sR
+Rh
+gR
+cq
+DV
+IW
+IW
+cq
+cq
+cq
+HD
+HD
mC
mC
mC
@@ -14280,8 +16298,6 @@ mC
mC
mC
mC
-"}
-(70,1,1) = {"
mC
mC
mC
@@ -14309,6 +16325,8 @@ mC
mC
mC
mC
+"}
+(65,1,1) = {"
mC
mC
mC
@@ -14333,24 +16351,6 @@ mC
mC
mC
mC
-wL
-hB
-FU
-Ka
-wL
-Jw
-Ky
-Ky
-yj
-wL
-Uw
-oR
-YB
-Rb
-jC
-Xk
-Kz
-Uw
mC
mC
mC
@@ -14359,6 +16359,51 @@ mC
mC
mC
mC
+HD
+HD
+HD
+HD
+HD
+Uw
+kT
+zo
+UC
+UC
+UC
+rN
+oS
+hb
+cV
+rR
+Ni
+JU
+Th
+ph
+SE
+SV
+ic
+Vp
+Ez
+UI
+Sk
+zb
+cq
+sn
+wR
+OY
+hs
+FY
+XP
+Mt
+cq
+tU
+hj
+cK
+TU
+OC
+cq
+HD
+HD
mC
mC
mC
@@ -14404,16 +16449,7 @@ mC
mC
mC
"}
-(71,1,1) = {"
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
-mC
+(66,1,1) = {"
mC
mC
mC
@@ -14444,6 +16480,54 @@ mC
mC
mC
mC
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+Uw
+FI
+zC
+Tr
+tT
+tT
+jK
+qq
+md
+cV
+cV
+Th
+ag
+Th
+LL
+LL
+LL
+GB
+LL
+LL
+sH
+iI
+OH
+cq
+FF
+cq
+cq
+cq
+cq
+Ct
+cq
+cq
+sm
+tv
+cq
+IH
+kx
+cq
+HD
+HD
+HD
mC
mC
mC
@@ -14456,26 +16540,6 @@ mC
mC
mC
mC
-wL
-wL
-wL
-wL
-wL
-wL
-wL
-wL
-wL
-wL
-Uw
-Uw
-Uw
-Uw
-pA
-KJ
-pA
-Uw
-Uw
-Uw
mC
mC
mC
@@ -14507,6 +16571,8 @@ mC
mC
mC
mC
+"}
+(67,1,1) = {"
mC
mC
mC
@@ -14526,8 +16592,6 @@ mC
mC
mC
mC
-"}
-(72,1,1) = {"
mC
mC
mC
@@ -14540,6 +16604,53 @@ mC
mC
mC
mC
+HD
+HD
+HD
+HD
+HD
+HD
+Uw
+fR
+zC
+KS
+uz
+UB
+Yw
+Yw
+UT
+TM
+vZ
+uj
+Ip
+IM
+bL
+CI
+xr
+uA
+GQ
+GQ
+eq
+TA
+He
+cq
+WW
+cq
+lX
+YC
+cq
+Sn
+nM
+cq
+XS
+cq
+cq
+cq
+cq
+cq
+HD
+HD
+HD
mC
mC
mC
@@ -14583,6 +16694,8 @@ mC
mC
mC
mC
+"}
+(68,1,1) = {"
mC
mC
mC
@@ -14590,15 +16703,6 @@ mC
mC
mC
mC
-Uw
-pF
-Fa
-pA
-KJ
-pA
-Yv
-jn
-Uw
mC
mC
mC
@@ -14622,6 +16726,54 @@ mC
mC
mC
mC
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+Uw
+jo
+zC
+KS
+eG
+sl
+xf
+xf
+Vv
+op
+cG
+Xz
+wC
+dW
+hJ
+QY
+EH
+gr
+QY
+QY
+AL
+Lu
+hA
+cq
+jd
+cq
+lx
+Mt
+cq
+FN
+rD
+Mm
+xy
+np
+sn
+cq
+HD
+HD
+HD
+HD
+HD
mC
mC
mC
@@ -14649,8 +16801,6 @@ mC
mC
mC
mC
-"}
-(73,1,1) = {"
mC
mC
mC
@@ -14667,6 +16817,8 @@ mC
mC
mC
mC
+"}
+(69,1,1) = {"
mC
mC
mC
@@ -14697,6 +16849,54 @@ mC
mC
mC
mC
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+Uw
+Ms
+oS
+cr
+yS
+tN
+VQ
+CV
+wv
+WR
+gW
+uj
+qA
+Zm
+yV
+rM
+nc
+IB
+uU
+Zm
+Qc
+HZ
+YX
+cq
+sn
+ER
+zS
+Mt
+cq
+bJ
+jC
+tm
+wi
+np
+hY
+cq
+HD
+HD
+HD
+HD
+HD
mC
mC
mC
@@ -14712,17 +16912,6 @@ mC
mC
mC
mC
-Uw
-Uw
-UE
-LL
-pA
-KJ
-pA
-LL
-mT
-Uw
-Uw
mC
mC
mC
@@ -14751,6 +16940,8 @@ mC
mC
mC
mC
+"}
+(70,1,1) = {"
mC
mC
mC
@@ -14772,8 +16963,6 @@ mC
mC
mC
mC
-"}
-(74,1,1) = {"
mC
mC
mC
@@ -14784,6 +16973,53 @@ mC
mC
mC
mC
+HD
+HD
+HD
+HD
+HD
+HD
+Uw
+Yu
+Dm
+eQ
+mN
+dZ
+oS
+gZ
+Uw
+Uw
+Uw
+LL
+Uq
+Aw
+LL
+wL
+wL
+wL
+wL
+wL
+BM
+Ky
+yj
+wK
+wK
+wK
+wK
+Rb
+cq
+cq
+Kz
+cq
+cq
+cq
+cq
+cq
+HD
+HD
+HD
+HD
+HD
mC
mC
mC
@@ -14827,27 +17063,14 @@ mC
mC
mC
mC
+"}
+(71,1,1) = {"
mC
mC
mC
mC
mC
mC
-Uw
-Uw
-Uw
-iV
-LL
-LL
-pA
-KJ
-pA
-LL
-LL
-yV
-Uw
-Uw
-Uw
mC
mC
mC
@@ -14874,6 +17097,51 @@ mC
mC
mC
mC
+HD
+HD
+HD
+HD
+HD
+Uw
+uw
+qN
+UB
+UB
+gT
+FE
+VN
+Uw
+HD
+HD
+LL
+LL
+LL
+LL
+wL
+aM
+Tg
+aM
+wL
+rm
+Kl
+hW
+iV
+Gi
+WC
+Fx
+Zk
+cq
+KJ
+pA
+Mt
+Mt
+tk
+Ap
+cq
+HD
+HD
+HD
+HD
mC
mC
mC
@@ -14895,8 +17163,6 @@ mC
mC
mC
mC
-"}
-(75,1,1) = {"
mC
mC
mC
@@ -14920,6 +17186,8 @@ mC
mC
mC
mC
+"}
+(72,1,1) = {"
mC
mC
mC
@@ -14952,26 +17220,53 @@ mC
mC
mC
mC
+HD
+HD
+HD
+HD
+HD
+Uw
+PI
+js
+UB
+yv
+Sl
+gO
+aq
+Uw
+HD
+HD
+HD
+HD
+HD
+HD
+wL
+xI
+kh
+ev
+wL
+Qa
+LY
+wu
+iV
+ZP
+tj
+pF
+Fa
+wK
+Kd
+KC
+IJ
+jn
+yQ
+bC
+cq
+HD
+HD
+HD
mC
mC
mC
-Uw
-Uw
-gf
-mg
-GQ
-Ko
-Xn
-pA
-gs
-pA
-Ko
-QD
-Wz
-xm
-Hx
-Uw
-Uw
mC
mC
mC
@@ -15014,12 +17309,12 @@ mC
mC
mC
mC
+"}
+(73,1,1) = {"
mC
mC
mC
mC
-"}
-(76,1,1) = {"
mC
mC
mC
@@ -15049,6 +17344,50 @@ mC
mC
mC
mC
+HD
+HD
+HD
+HD
+Uw
+NI
+CV
+Yw
+Di
+uk
+gO
+rP
+Uw
+HD
+HD
+HD
+HD
+HD
+HD
+wL
+aM
+kh
+nz
+wL
+Fi
+qR
+wu
+iV
+Pw
+AW
+UE
+UZ
+wK
+RW
+Iv
+Ke
+mT
+Um
+va
+cq
+HD
+HD
+HD
+HD
mC
mC
mC
@@ -15077,25 +17416,6 @@ mC
mC
mC
mC
-Uw
-Uw
-gr
-QY
-QY
-EH
-PG
-PG
-ey
-Jo
-fj
-VR
-VR
-DA
-RG
-RG
-Ku
-Uw
-Uw
mC
mC
mC
@@ -15112,6 +17432,8 @@ mC
mC
mC
mC
+"}
+(74,1,1) = {"
mC
mC
mC
@@ -15141,13 +17463,54 @@ mC
mC
mC
mC
-"}
-(77,1,1) = {"
mC
mC
mC
mC
mC
+HD
+HD
+HD
+Uw
+Oi
+Dp
+tI
+tI
+RO
+gO
+BZ
+Uw
+HD
+HD
+HD
+HD
+HD
+HD
+wL
+HB
+IS
+vd
+lG
+LS
+DF
+Lg
+wK
+iV
+iV
+wK
+Ht
+wK
+DL
+sn
+aZ
+Pm
+sn
+tk
+cq
+HD
+HD
+HD
+HD
mC
mC
mC
@@ -15192,6 +17555,8 @@ mC
mC
mC
mC
+"}
+(75,1,1) = {"
mC
mC
mC
@@ -15200,25 +17565,6 @@ mC
mC
mC
mC
-Uw
-Yv
-kb
-LL
-Fa
-Ze
-iG
-iG
-mB
-RY
-Ju
-iG
-iG
-Wt
-Yv
-kb
-LL
-Fa
-Uw
mC
mC
mC
@@ -15246,6 +17592,48 @@ mC
mC
mC
mC
+HD
+HD
+Uw
+OO
+oS
+ca
+ca
+ca
+fd
+bi
+Uw
+HD
+HD
+HD
+HD
+HD
+wL
+wL
+wL
+wL
+wL
+wL
+go
+nt
+jO
+gf
+GQ
+GQ
+Ko
+Xn
+cq
+cq
+Wz
+Wz
+Wz
+Wz
+cq
+cq
+HD
+HD
+HD
+HD
mC
mC
mC
@@ -15264,8 +17652,6 @@ mC
mC
mC
mC
-"}
-(78,1,1) = {"
mC
mC
mC
@@ -15292,6 +17678,8 @@ mC
mC
mC
mC
+"}
+(76,1,1) = {"
mC
mC
mC
@@ -15323,25 +17711,53 @@ mC
mC
mC
mC
+HD
+HD
+HD
+HD
+HD
+HD
Uw
-Am
-LL
-LL
-QD
-Ze
-iG
-iG
-lK
-FM
-iF
-iG
-iG
-Wt
-cW
-LL
-LL
-dt
+hM
+CX
+CX
+Ca
+aP
+CX
+aX
Uw
+HD
+HD
+HD
+wL
+wL
+wL
+rv
+rb
+Bt
+Xy
+Jp
+Sq
+Yq
+Rc
+OP
+QY
+EH
+Nu
+PG
+ey
+Jo
+DA
+DA
+DA
+DA
+fN
+RG
+HD
+HD
+HD
+HD
+HD
mC
mC
mC
@@ -15385,10 +17801,10 @@ mC
mC
mC
mC
+"}
+(77,1,1) = {"
mC
mC
-"}
-(79,1,1) = {"
mC
mC
mC
@@ -15417,6 +17833,54 @@ mC
mC
mC
mC
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+Uw
+Uw
+Uw
+Uw
+Uw
+Uw
+Uw
+Uw
+Uw
+HD
+HD
+HD
+wL
+dP
+bA
+fG
+yN
+XA
+di
+wL
+Wv
+vp
+kb
+XD
+pr
+Ze
+aS
+pn
+mB
+RY
+Wt
+Ay
+iG
+Wt
+Yv
+RG
+HD
+HD
+HD
+HD
+HD
mC
mC
mC
@@ -15446,25 +17910,6 @@ mC
mC
mC
mC
-Uw
-EW
-pA
-pA
-pA
-Ze
-iG
-xc
-LG
-Kn
-EK
-pe
-iG
-Eh
-Cd
-Cd
-Cd
-gm
-Uw
mC
mC
mC
@@ -15479,6 +17924,8 @@ mC
mC
mC
mC
+"}
+(78,1,1) = {"
mC
mC
mC
@@ -15510,9 +17957,54 @@ mC
mC
mC
mC
-"}
-(80,1,1) = {"
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+HD
mC
+nq
+Cp
+NV
+fG
+mv
+SW
+xk
+wL
+pS
+Am
+Lh
+Lh
+Lh
+Lh
+fh
+Lh
+Lh
+Lh
+Lh
+Lh
+Lh
+Lh
+Lh
+Lh
+HD
+HD
+HD
+HD
+HD
+HD
mC
mC
mC
@@ -15555,6 +18047,8 @@ mC
mC
mC
mC
+"}
+(79,1,1) = {"
mC
mC
mC
@@ -15569,25 +18063,6 @@ mC
mC
mC
mC
-Uw
-Pu
-Lz
-cC
-fZ
-Ze
-iG
-Qw
-cz
-cz
-cz
-Vh
-iG
-hI
-vu
-lC
-cC
-lC
-Uw
mC
mC
mC
@@ -15607,7 +18082,52 @@ mC
mC
mC
mC
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+HD
mC
+nq
+pg
+pg
+fG
+rp
+gt
+ev
+wL
+Lh
+Lh
+Lh
+Le
+uI
+Bc
+mW
+xc
+Lh
+BO
+Ia
+Lh
+zD
+Ff
+By
+Lh
+HD
+HD
+HD
+HD
+HD
+HD
mC
mC
mC
@@ -15633,8 +18153,6 @@ mC
mC
mC
mC
-"}
-(81,1,1) = {"
mC
mC
mC
@@ -15652,6 +18170,8 @@ mC
mC
mC
mC
+"}
+(80,1,1) = {"
mC
mC
mC
@@ -15685,32 +18205,55 @@ mC
mC
mC
mC
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+em
+HD
+HD
+HD
+HD
mC
mC
mC
+nq
+nq
+wL
+MI
+eE
+hX
+lb
+Rx
+lY
+uJ
+Lh
+Zl
+fZ
+Gv
+SS
+bW
+Lh
+LJ
+Mk
+Lh
+cu
+xc
+By
+Lh
+HD
+HD
+HD
+HD
+HD
mC
mC
mC
mC
-Uw
-Vg
-QP
-cC
-Bh
-Ze
-iG
-Qw
-cz
-jp
-cz
-Vh
-iG
-hI
-bk
-QP
-cC
-Tt
-Uw
mC
mC
mC
@@ -15750,14 +18293,14 @@ mC
mC
mC
mC
+"}
+(81,1,1) = {"
mC
mC
mC
mC
mC
mC
-"}
-(82,1,1) = {"
mC
mC
mC
@@ -15785,19 +18328,51 @@ mC
mC
mC
mC
+HD
+HD
mC
+HD
mC
mC
mC
mC
+rt
mC
mC
mC
mC
mC
+NH
mC
mC
mC
+wL
+Et
+bY
+wL
+wL
+wL
+Bd
+Me
+PY
+wW
+fZ
+No
+SS
+cX
+WJ
+cX
+cX
+oW
+Qr
+xc
+Lh
+Lh
+em
+HD
+HD
+HD
+HD
mC
mC
mC
@@ -15815,25 +18390,6 @@ mC
mC
mC
mC
-Uw
-dY
-Pj
-cC
-Do
-Ze
-iG
-Qw
-cz
-cz
-cz
-Vh
-iG
-hI
-qc
-JL
-cC
-TY
-Uw
mC
mC
mC
@@ -15860,6 +18416,8 @@ mC
mC
mC
mC
+"}
+(82,1,1) = {"
mC
mC
mC
@@ -15879,8 +18437,6 @@ mC
mC
mC
mC
-"}
-(83,1,1) = {"
mC
mC
mC
@@ -15894,16 +18450,53 @@ mC
mC
mC
mC
+HD
+HD
mC
mC
mC
mC
mC
+NH
+NH
+NH
+NH
+NH
mC
mC
mC
+NH
mC
mC
+HD
+wL
+wL
+wL
+wL
+HD
+wL
+DI
+XV
+Lh
+gg
+Do
+RM
+Do
+Do
+Lh
+dL
+wE
+Lh
+oQ
+ob
+qW
+Bo
+Lh
+HD
+HD
+HD
+HD
+HD
mC
mC
mC
@@ -15938,25 +18531,6 @@ mC
mC
mC
mC
-Uw
-oi
-RG
-RG
-RG
-gU
-bv
-sd
-fh
-fQ
-fh
-MN
-bv
-BQ
-QY
-QY
-QY
-mO
-Uw
mC
mC
mC
@@ -15965,6 +18539,8 @@ mC
mC
mC
mC
+"}
+(83,1,1) = {"
mC
mC
mC
@@ -15996,14 +18572,14 @@ mC
mC
mC
mC
+HD
+HD
mC
mC
mC
mC
mC
mC
-"}
-(84,1,1) = {"
mC
mC
mC
@@ -16012,9 +18588,38 @@ mC
mC
mC
mC
+NH
+rt
+em
+HD
+HD
+HD
+HD
+HD
+HD
+wL
+Lh
+Lh
+Lh
+Lh
+qW
+qW
+qW
+Lh
+Lh
+Lh
+Lh
+Lh
+IT
+ob
+qW
+Me
+qW
mC
mC
mC
+HD
+HD
mC
mC
mC
@@ -16057,29 +18662,12 @@ mC
mC
mC
mC
+"}
+(84,1,1) = {"
mC
mC
mC
mC
-Uw
-iL
-LL
-LL
-Fa
-ya
-Yv
-YQ
-Lr
-Eq
-bt
-da
-Fa
-EM
-Yv
-LL
-LL
-re
-Uw
mC
mC
mC
@@ -16123,16 +18711,39 @@ mC
mC
mC
mC
+NH
mC
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+HD
mC
-"}
-(85,1,1) = {"
mC
mC
+HD
+HD
+HD
+HD
+Lh
+SO
+Te
+lt
+Nd
+qW
mC
mC
mC
mC
+HD
+HD
mC
mC
mC
@@ -16174,6 +18785,8 @@ mC
mC
mC
mC
+"}
+(85,1,1) = {"
mC
mC
mC
@@ -16184,25 +18797,6 @@ mC
mC
mC
mC
-Uw
-Ko
-WI
-LL
-qi
-ya
-LL
-su
-VE
-zW
-Re
-an
-LL
-EM
-Ko
-kb
-kb
-QD
-Uw
mC
mC
mC
@@ -16242,16 +18836,37 @@ mC
mC
mC
mC
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+HD
mC
mC
mC
mC
mC
+HD
+HD
+HD
+Lh
+Fn
+qW
+Lh
+Lh
+Lh
+HD
mC
-"}
-(86,1,1) = {"
mC
mC
+HD
+HD
mC
mC
mC
@@ -16293,6 +18908,8 @@ mC
mC
mC
mC
+"}
+(86,1,1) = {"
mC
mC
mC
@@ -16307,25 +18924,6 @@ mC
mC
mC
mC
-Uw
-Uw
-qP
-Cd
-Cd
-VV
-LL
-su
-cC
-cC
-cC
-an
-LL
-gX
-Cd
-hv
-yy
-Uw
-Uw
mC
mC
mC
@@ -16359,20 +18957,42 @@ mC
mC
mC
mC
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+HD
mC
mC
mC
mC
mC
+HD
+HD
+HD
+Lh
+gU
+Gl
+Lh
+HD
+HD
+HD
mC
mC
mC
mC
+HD
mC
mC
mC
-"}
-(87,1,1) = {"
mC
mC
mC
@@ -16411,6 +19031,8 @@ mC
mC
mC
mC
+"}
+(87,1,1) = {"
mC
mC
mC
@@ -16431,23 +19053,6 @@ mC
mC
mC
mC
-Uw
-Uw
-Hx
-jk
-QK
-Ko
-hx
-Qe
-cC
-cC
-lz
-Oj
-EM
-jk
-zp
-Uw
-Uw
mC
mC
mC
@@ -16474,13 +19079,36 @@ mC
mC
mC
mC
+HD
+HD
+HD
+HD
+HD
mC
mC
mC
+HD
+HD
+HD
+HD
+HD
+HD
+HD
mC
mC
mC
mC
+HD
+HD
+HD
+Lh
+qW
+qW
+Lh
+HD
+HD
+HD
+HD
mC
mC
mC
@@ -16494,8 +19122,6 @@ mC
mC
mC
mC
-"}
-(88,1,1) = {"
mC
mC
mC
@@ -16528,6 +19154,8 @@ mC
mC
mC
mC
+"}
+(88,1,1) = {"
mC
mC
mC
@@ -16555,21 +19183,6 @@ mC
mC
mC
mC
-Uw
-Uw
-Uw
-mG
-Ac
-ID
-wr
-cC
-Ud
-ME
-oV
-KD
-Uw
-Uw
-Uw
mC
mC
mC
@@ -16588,18 +19201,37 @@ mC
mC
mC
mC
+HD
+HD
+HD
+HD
+HD
+HD
mC
mC
mC
mC
mC
+HD
+HD
+HD
+HD
+HD
mC
mC
mC
mC
+HD
+HD
+HD
mC
mC
mC
+HD
+HD
+HD
+HD
+HD
mC
mC
mC
@@ -16617,8 +19249,6 @@ mC
mC
mC
mC
-"}
-(89,1,1) = {"
mC
mC
mC
@@ -16647,6 +19277,8 @@ mC
mC
mC
mC
+"}
+(89,1,1) = {"
mC
mC
mC
@@ -16680,17 +19312,6 @@ mC
mC
mC
mC
-Uw
-Uw
-LI
-lP
-py
-NX
-rF
-pY
-tK
-Uw
-Uw
mC
mC
mC
@@ -16705,18 +19326,35 @@ mC
mC
mC
mC
+HD
+HD
+HD
mC
mC
mC
mC
mC
+HD
+HD
+HD
+HD
+HD
+HD
mC
mC
mC
+HD
+HD
+Ki
+HD
mC
mC
mC
mC
+HD
+HD
+HD
+HD
mC
mC
mC
@@ -16740,8 +19378,6 @@ mC
mC
mC
mC
-"}
-(90,1,1) = {"
mC
mC
mC
@@ -16764,6 +19400,8 @@ mC
mC
mC
mC
+"}
+(90,1,1) = {"
mC
mC
mC
@@ -16804,15 +19442,6 @@ mC
mC
mC
mC
-Uw
-Uw
-Uw
-Uw
-Uw
-Uw
-Uw
-Uw
-Uw
mC
mC
mC
@@ -16821,14 +19450,27 @@ mC
mC
mC
mC
+HD
+HD
mC
mC
mC
mC
+HD
+HD
+HD
+HD
+HD
+HD
+HD
+HD
mC
mC
mC
mC
+HD
+HD
+HD
mC
mC
mC
@@ -16863,8 +19505,6 @@ mC
mC
mC
mC
-"}
-(91,1,1) = {"
mC
mC
mC
@@ -16883,6 +19523,8 @@ mC
mC
mC
mC
+"}
+(91,1,1) = {"
mC
mC
mC
@@ -16937,6 +19579,11 @@ mC
mC
mC
mC
+HD
+HD
+HD
+HD
+HD
mC
mC
mC
@@ -16945,6 +19592,9 @@ mC
mC
mC
mC
+HD
+HD
+HD
mC
mC
mC
@@ -16986,8 +19636,6 @@ mC
mC
mC
mC
-"}
-(92,1,1) = {"
mC
mC
mC
@@ -16998,6 +19646,8 @@ mC
mC
mC
mC
+"}
+(92,1,1) = {"
mC
mC
mC
@@ -17052,6 +19702,10 @@ mC
mC
mC
mC
+HD
+HD
+HD
+HD
mC
mC
mC
@@ -17062,6 +19716,8 @@ mC
mC
mC
mC
+HD
+HD
mC
mC
mC
@@ -17109,12 +19765,12 @@ mC
mC
mC
mC
-"}
-(93,1,1) = {"
mC
mC
mC
mC
+"}
+(93,1,1) = {"
mC
mC
mC
@@ -17169,6 +19825,10 @@ mC
mC
mC
mC
+HD
+HD
+HD
+HD
mC
mC
mC
@@ -17288,9 +19948,9 @@ mC
mC
mC
mC
-mC
-mC
-mC
+HD
+HD
+HD
mC
mC
mC
@@ -17410,10 +20070,10 @@ mC
mC
mC
mC
-mC
-mC
-mC
-mC
+HD
+HD
+HD
+HD
mC
mC
mC
@@ -17533,10 +20193,10 @@ mC
mC
mC
mC
-mC
-mC
-mC
-mC
+HD
+HD
+HD
+HD
mC
mC
mC
@@ -17656,9 +20316,9 @@ mC
mC
mC
mC
-mC
-mC
-mC
+HD
+HD
+HD
mC
mC
mC
@@ -17779,9 +20439,9 @@ mC
mC
mC
mC
-mC
-mC
-mC
+HD
+HD
+HD
mC
mC
mC
@@ -17902,7 +20562,7 @@ mC
mC
mC
mC
-mC
+HD
mC
mC
mC
diff --git a/_maps/outpost/nanotrasen_asteroid.dmm b/_maps/outpost/nanotrasen_asteroid.dmm
index e127c600d71e..5af450ce3e0d 100644
--- a/_maps/outpost/nanotrasen_asteroid.dmm
+++ b/_maps/outpost/nanotrasen_asteroid.dmm
@@ -580,16 +580,13 @@
pixel_y = -3
},
/obj/item/toy/plush/beeplushie,
-/obj/effect/turf_decal/weather/snow/corner{
- dir = 5
- },
-/obj/effect/turf_decal/weather/snow/corner{
- dir = 6
- },
/obj/item/reagent_containers/food/drinks/mug/tea{
pixel_y = -14;
pixel_x = -4
},
+/obj/effect/turf_decal/weather/snow/surround{
+ dir = 4
+ },
/turf/open/floor/plating/asteroid/snow/under/lit,
/area/outpost/external)
"cm" = (
@@ -871,6 +868,7 @@
/obj/item/radio/intercom/directional/north{
pixel_x = -3
},
+/obj/effect/landmark/ert_outpost_spawn,
/turf/open/floor/plasteel/tech,
/area/outpost/security/armory)
"dv" = (
@@ -998,7 +996,7 @@
/area/outpost/maintenance/fore)
"dO" = (
/obj/effect/turf_decal/snow,
-/obj/effect/turf_decal/weather/snow/corner{
+/obj/effect/turf_decal/weather/snow{
dir = 8
},
/turf/open/floor/concrete/reinforced,
@@ -1726,6 +1724,7 @@
/obj/effect/turf_decal/industrial/caution{
pixel_x = 17
},
+/obj/effect/landmark/ert_outpost_spawn,
/turf/open/floor/plasteel/tech/grid,
/area/outpost/security/armory)
"gx" = (
@@ -2097,6 +2096,7 @@
/obj/effect/turf_decal/techfloor{
dir = 8
},
+/obj/effect/landmark/ert_outpost_spawn,
/turf/open/floor/plasteel/tech/grid,
/area/outpost/security/armory)
"hW" = (
@@ -3253,7 +3253,7 @@
pixel_y = 3;
pixel_x = -1
},
-/obj/effect/turf_decal/weather/snow/corner{
+/obj/effect/turf_decal/weather/snow{
dir = 9
},
/turf/open/floor/plating/asteroid/snow/under/lit,
@@ -3514,6 +3514,7 @@
req_access_txt = "101";
pixel_x = -3
},
+/obj/effect/landmark/ert_outpost_spawn,
/turf/open/floor/plasteel/tech,
/area/outpost/security/armory)
"mP" = (
@@ -3669,6 +3670,7 @@
/obj/effect/turf_decal/techfloor{
dir = 4
},
+/obj/effect/landmark/ert_outpost_spawn,
/turf/open/floor/plasteel/tech/grid,
/area/outpost/security/armory)
"nz" = (
@@ -6619,7 +6621,7 @@
/area/outpost/hallway/central)
"xk" = (
/obj/structure/bonfire/prelit,
-/obj/effect/turf_decal/weather/snow/corner{
+/obj/effect/turf_decal/weather/snow{
dir = 1
},
/turf/open/floor/plating/asteroid/snow/under/lit,
@@ -9282,7 +9284,7 @@
pixel_y = 5;
pixel_x = 1
},
-/obj/effect/turf_decal/weather/snow/corner{
+/obj/effect/turf_decal/weather/snow{
dir = 10
},
/turf/open/floor/plating/asteroid/snow/under/lit,
@@ -10241,6 +10243,7 @@
dir = 4
},
/obj/machinery/airalarm/directional/east,
+/obj/effect/landmark/ert_outpost_spawn,
/turf/open/floor/plasteel/tech,
/area/outpost/security/armory)
"JK" = (
@@ -10712,6 +10715,7 @@
dir = 8
},
/obj/machinery/light/directional/west,
+/obj/effect/landmark/ert_outpost_spawn,
/turf/open/floor/plasteel/tech,
/area/outpost/security/armory)
"Lv" = (
@@ -11618,13 +11622,13 @@
/turf/open/floor/concrete/slab_3,
/area/outpost/hallway/central)
"Os" = (
-/obj/effect/turf_decal/weather/snow/corner{
- dir = 6
- },
/obj/item/shovel,
/obj/item/flashlight/lantern{
pixel_x = 7
},
+/obj/effect/turf_decal/weather/snow{
+ dir = 6
+ },
/turf/open/floor/plating/asteroid/snow/under/lit,
/area/outpost/external)
"Ot" = (
@@ -12929,7 +12933,6 @@
/obj/structure/closet/crate/trashcart/laundry,
/obj/effect/decal/cleanable/dirt,
/obj/effect/spawner/lootdrop/maintenance/two,
-/obj/effect/spawner/lootdrop/lizardboots,
/obj/effect/spawner/lootdrop/minor/kittyears_or_rabbitears,
/obj/structure/grille/broken,
/obj/effect/turf_decal/box/white,
diff --git a/_maps/outpost/nanotrasen_ice.dmm b/_maps/outpost/nanotrasen_ice.dmm
new file mode 100644
index 000000000000..4a138d21d421
--- /dev/null
+++ b/_maps/outpost/nanotrasen_ice.dmm
@@ -0,0 +1,16186 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"ab" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/turf/open/floor/plasteel/patterned,
+/area/outpost/cargo/smeltery)
+"am" = (
+/obj/machinery/camera{
+ dir = 1
+ },
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"an" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 8
+ },
+/obj/effect/turf_decal/borderfloor,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/patterned/brushed,
+/area/outpost/crew/bathroom)
+"au" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/obj/effect/turf_decal/borderfloor{
+ dir = 4
+ },
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"aC" = (
+/obj/structure/flora/grass/both{
+ layer = 3.1
+ },
+/obj/item/trash/can{
+ pixel_x = 6;
+ pixel_y = 2
+ },
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"aM" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/borderfloor/full,
+/obj/effect/turf_decal/industrial/warning,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/button/door{
+ pixel_y = -28;
+ id = "ice_ERT_maint";
+ name = "Maintenance Shield";
+ dir = 1;
+ pixel_x = 3;
+ req_one_access_txt = "101"
+ },
+/turf/open/floor/plasteel/tech/techmaint,
+/area/outpost/security)
+"aN" = (
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/plating/asteroid/icerock/temperate,
+/area/outpost/external)
+"aQ" = (
+/obj/structure/sign/nanotrasen{
+ pixel_x = -32
+ },
+/obj/structure/flora/grass/both{
+ layer = 3.1
+ },
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"aR" = (
+/obj/effect/turf_decal/industrial/warning/fulltile,
+/obj/machinery/door/firedoor/border_only{
+ dir = 1
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/external/glass,
+/obj/machinery/door/poddoor/shutters/indestructible{
+ id = "ice_exterior_airlock"
+ },
+/turf/open/floor/plasteel/tech,
+/area/outpost/maintenance/fore)
+"aU" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 5
+ },
+/obj/machinery/door/window/brigdoor/eastleft,
+/obj/structure/sign/poster/official/random{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/patterned/ridged,
+/area/outpost/vacant_rooms/shop)
+"aW" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/turf/open/floor/plasteel/patterned,
+/area/outpost/cargo/smeltery)
+"aX" = (
+/obj/structure/toilet{
+ dir = 1
+ },
+/obj/structure/curtain,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned/brushed,
+/area/outpost/crew/bathroom)
+"aY" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/effect/turf_decal/industrial/hatch/yellow,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"bi" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/siding/white,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/button/door{
+ pixel_y = -28;
+ id = "ice_ERT_maint";
+ name = "Maintenance Shield";
+ dir = 1;
+ pixel_x = -3;
+ req_one_access_txt = "101"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel/tech,
+/area/outpost/security/armory)
+"bj" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/borderfloor/full,
+/obj/effect/turf_decal/industrial/warning,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/railing{
+ layer = 4.1
+ },
+/turf/open/floor/plating,
+/area/outpost/maintenance/port)
+"bv" = (
+/turf/closed/indestructible/reinforced,
+/area/outpost/security)
+"bz" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer2{
+ dir = 8
+ },
+/obj/machinery/airalarm/directional/south,
+/turf/open/floor/plating,
+/area/outpost/engineering/atmospherics)
+"bG" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/turf/open/floor/wood/walnut,
+/area/outpost/crew/bar)
+"bJ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/industrial/warning{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned,
+/area/outpost/cargo/smeltery)
+"bL" = (
+/obj/structure/girder,
+/turf/open/floor/plating{
+ icon_state = "platingdmg1"
+ },
+/area/outpost/maintenance/port)
+"bP" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 9
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"bU" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/table/reinforced,
+/obj/item/flashlight/lamp{
+ pixel_x = -5;
+ pixel_y = 3
+ },
+/turf/open/floor/plasteel/telecomms_floor,
+/area/outpost/security/checkpoint)
+"bW" = (
+/obj/machinery/light/dim/directional/north,
+/turf/open/floor/plasteel/dark,
+/area/outpost/vacant_rooms/shop)
+"cd" = (
+/obj/structure/table/wood/reinforced,
+/obj/item/storage/fancy/candle_box{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/reagent_containers/food/drinks/mug{
+ pixel_x = -6;
+ pixel_y = -2
+ },
+/turf/open/floor/wood/walnut,
+/area/outpost/crew/lounge)
+"cf" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/trimline/transparent/neutral/arrow_ccw,
+/obj/item/trash/can,
+/obj/structure/closet/crate/trashcart,
+/obj/item/trash/sosjerky,
+/obj/item/trash/candy,
+/obj/item/storage/bag/trash,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned,
+/area/outpost/vacant_rooms/shop)
+"cm" = (
+/obj/machinery/photocopier,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/obj/machinery/firealarm/directional/north,
+/obj/structure/sign/poster/official/random{
+ pixel_x = 32
+ },
+/turf/open/floor/plasteel/telecomms_floor,
+/area/outpost/security)
+"cr" = (
+/turf/open/floor/plating/ice/temperate{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/external)
+"ct" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 10
+ },
+/obj/machinery/camera{
+ dir = 10
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"cx" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/outpost/maintenance/starboard)
+"cB" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/table/reinforced,
+/obj/machinery/cell_charger,
+/obj/structure/sign/poster/official/random{
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel/telecomms_floor,
+/area/outpost/security/checkpoint)
+"cC" = (
+/turf/closed/indestructible/rock/schist,
+/area/outpost/external)
+"cL" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"cO" = (
+/obj/machinery/door/airlock/grunge{
+ name = "Shop"
+ },
+/obj/effect/turf_decal/industrial/warning/fulltile,
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/firedoor/border_only{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/poddoor/shutters{
+ dir = 1;
+ id = "ice_shop1_window"
+ },
+/turf/open/floor/plasteel/tech,
+/area/outpost/vacant_rooms/shop)
+"cT" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/kirbyplants/dead{
+ pixel_y = 3
+ },
+/obj/item/trash/sosjerky{
+ pixel_x = -6
+ },
+/obj/item/trash/energybar{
+ pixel_y = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/outpost/vacant_rooms/shop)
+"cU" = (
+/obj/effect/decal/fakelattice,
+/obj/machinery/light/small/directional/west{
+ pixel_y = -6
+ },
+/obj/structure/railing,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/elevatorshaft,
+/area/outpost/maintenance/port)
+"da" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 9
+ },
+/obj/machinery/door/window/brigdoor/westright,
+/obj/structure/sign/poster/official/random{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/patterned/ridged,
+/area/outpost/vacant_rooms/shop)
+"de" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 9
+ },
+/obj/item/radio/intercom/directional/north,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"dg" = (
+/obj/structure/flora/grass/both{
+ layer = 3.1
+ },
+/obj/item/trash/candy{
+ pixel_x = 4
+ },
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"dh" = (
+/obj/machinery/door/poddoor/ert{
+ dir = 8;
+ id = "ice_exterior_port"
+ },
+/obj/effect/turf_decal/industrial/traffic{
+ dir = 4
+ },
+/obj/effect/turf_decal/industrial/traffic{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed,
+/area/outpost/exterior)
+"dk" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/obj/effect/turf_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"do" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 6
+ },
+/obj/effect/turf_decal/siding/white/corner{
+ dir = 1
+ },
+/obj/structure/railing/corner{
+ dir = 1;
+ layer = 4.1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"dp" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/kirbyplants{
+ icon_state = "plant-14"
+ },
+/obj/structure/sign/poster/official/random{
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel/dark,
+/area/outpost/vacant_rooms/shop)
+"dq" = (
+/obj/effect/turf_decal/borderfloor,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"dr" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/trimline/transparent/neutral/arrow_ccw,
+/obj/effect/turf_decal/siding/white{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 6
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel/patterned,
+/area/outpost/vacant_rooms/shop)
+"dt" = (
+/obj/structure/flora/grass/green{
+ layer = 3.1
+ },
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/external)
+"du" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/light/small/directional/west,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/outpost/maintenance/port)
+"dG" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing{
+ layer = 4.1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 4
+ },
+/obj/structure/closet/crate,
+/obj/effect/turf_decal/box,
+/turf/open/floor/plasteel/patterned,
+/area/outpost/cargo/smeltery)
+"dI" = (
+/obj/structure/rack,
+/obj/effect/turf_decal/industrial/outline/yellow,
+/obj/machinery/light/dim/directional/south,
+/turf/open/floor/plasteel/dark,
+/area/outpost/vacant_rooms/shop)
+"dJ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating{
+ icon_state = "platingdmg1"
+ },
+/area/outpost/maintenance/fore)
+"dL" = (
+/obj/structure/railing{
+ layer = 4.1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 4
+ },
+/obj/structure/closet/crate,
+/obj/effect/turf_decal/box,
+/turf/open/floor/plasteel/patterned,
+/area/outpost/cargo/smeltery)
+"dM" = (
+/obj/effect/turf_decal/siding/white,
+/obj/effect/turf_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/structure/railing{
+ layer = 4.1
+ },
+/obj/structure/table/reinforced,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"dQ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/outpost/maintenance/starboard)
+"dV" = (
+/obj/effect/decal/cleanable/vomit/old,
+/turf/open/floor/plating/asteroid/icerock/temperate{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"dY" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"dZ" = (
+/obj/structure/flora/grass/jungle,
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/machinery/light/small/directional/east{
+ bulb_power = 0.4
+ },
+/turf/open/floor/plating/grass,
+/area/outpost/maintenance/fore)
+"eg" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"el" = (
+/obj/structure/window/reinforced/spawner{
+ dir = 4
+ },
+/obj/structure/chair,
+/obj/effect/turf_decal/industrial/outline/red,
+/turf/open/floor/plasteel/tech,
+/area/outpost/security)
+"es" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/rack,
+/obj/effect/turf_decal/industrial/outline/yellow,
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plating,
+/area/outpost/vacant_rooms/shop)
+"et" = (
+/obj/machinery/door/airlock/grunge{
+ name = "Shop"
+ },
+/obj/effect/turf_decal/industrial/warning/fulltile,
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/firedoor/border_only{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "ice_shop2_window"
+ },
+/turf/open/floor/plasteel/tech,
+/area/outpost/vacant_rooms/shop)
+"ez" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/obj/effect/turf_decal/borderfloor{
+ dir = 4
+ },
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"eG" = (
+/obj/structure/rack,
+/obj/effect/turf_decal/industrial/outline/yellow,
+/turf/open/floor/plasteel/tech,
+/area/outpost/vacant_rooms/shop)
+"eI" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 10
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"eM" = (
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/door/poddoor/ert{
+ dir = 8;
+ id = "ice_ERT_bay"
+ },
+/obj/structure/fans/tiny/invisible,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/turf/open/floor/plasteel/tech,
+/area/outpost/security/armory)
+"eT" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/borderfloor{
+ dir = 6
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"fe" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/turf/open/floor/plasteel/tech,
+/area/outpost/security)
+"fk" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 6
+ },
+/obj/machinery/camera{
+ dir = 5
+ },
+/obj/machinery/newscaster/security_unit/directional/west,
+/turf/open/floor/plasteel/tech,
+/area/outpost/security)
+"fq" = (
+/obj/effect/turf_decal/borderfloor,
+/obj/effect/turf_decal/siding/white{
+ dir = 9
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"fx" = (
+/obj/effect/turf_decal/siding/white,
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
+/obj/structure/railing{
+ layer = 4.1
+ },
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"fC" = (
+/obj/effect/turf_decal/industrial/hatch/yellow,
+/obj/structure/displaycase/forsale{
+ density = 1
+ },
+/turf/open/floor/plasteel/tech,
+/area/outpost/vacant_rooms/shop)
+"fE" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"fI" = (
+/obj/machinery/door/airlock/maintenance{
+ dir = 4
+ },
+/obj/effect/turf_decal/industrial/caution{
+ dir = 8
+ },
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/tech,
+/area/outpost/maintenance/port)
+"fQ" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"fT" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/siding/white,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/turf/open/floor/plasteel/tech/techmaint,
+/area/outpost/maintenance/starboard)
+"fW" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/borderfloor/full,
+/obj/effect/turf_decal/industrial/warning,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/airalarm/directional/south,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/tech/techmaint,
+/area/outpost/security)
+"ga" = (
+/obj/structure/chair/comfy/brown{
+ dir = 1;
+ pixel_y = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood/walnut,
+/area/outpost/crew/lounge)
+"gs" = (
+/obj/effect/spawner/structure/window/reinforced/indestructable,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "ice_sec1_window"
+ },
+/turf/open/floor/plating,
+/area/outpost/security)
+"gv" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
+/obj/machinery/light/dim/directional/north,
+/obj/structure/chair/office,
+/turf/open/floor/plasteel/patterned/ridged,
+/area/outpost/vacant_rooms/shop)
+"gB" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/siding/white{
+ dir = 10
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/newscaster/directional/south,
+/obj/item/newspaper,
+/obj/machinery/camera{
+ dir = 4
+ },
+/obj/machinery/firealarm/directional/west,
+/turf/open/floor/plasteel/dark,
+/area/outpost/cargo/smeltery)
+"gG" = (
+/obj/machinery/computer/security{
+ icon_state = "computer-right"
+ },
+/turf/open/floor/plasteel/telecomms_floor,
+/area/outpost/security)
+"gH" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/fireplace{
+ dir = 4;
+ pixel_y = 16
+ },
+/obj/effect/turf_decal/siding/wood{
+ color = "#543C30"
+ },
+/turf/open/floor/concrete/tiles,
+/area/outpost/crew/bar)
+"gI" = (
+/obj/item/kirbyplants{
+ icon_state = "plant-22";
+ pixel_x = -7;
+ pixel_y = 3
+ },
+/obj/machinery/camera{
+ dir = 5
+ },
+/obj/effect/turf_decal/siding/wood{
+ color = "#543C30";
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood/walnut,
+/area/outpost/crew/bar)
+"gO" = (
+/obj/effect/turf_decal/industrial/outline/yellow,
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/maintenance/three,
+/obj/structure/sign/poster/retro/random{
+ pixel_x = -32
+ },
+/obj/item/clothing/neck/stethoscope,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"gX" = (
+/obj/structure/frame/machine,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/stack/cable_coil/red,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"hc" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/industrial/outline/yellow,
+/obj/item/rack_parts,
+/turf/open/floor/plasteel/tech,
+/area/outpost/vacant_rooms/shop)
+"he" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/modular_computer/console/preset/command{
+ dir = 1
+ },
+/obj/structure/sign/poster/official/random{
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel/telecomms_floor,
+/area/outpost/security/checkpoint)
+"ho" = (
+/obj/machinery/vending/cigarette,
+/obj/effect/turf_decal/siding/wood/end{
+ dir = 4;
+ color = "#543C30"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/camera{
+ dir = 8
+ },
+/turf/open/floor/concrete/tiles,
+/area/outpost/crew/lounge)
+"hz" = (
+/obj/structure/chair{
+ dir = 4;
+ pixel_x = 4
+ },
+/obj/effect/turf_decal/siding/wood{
+ color = "#543C30";
+ dir = 5
+ },
+/turf/open/floor/carpet/green,
+/area/outpost/crew/bar)
+"hG" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 1
+ },
+/obj/structure/chair/stool/bar{
+ dir = 8;
+ pixel_x = -6
+ },
+/turf/open/floor/wood/walnut,
+/area/outpost/crew/bar)
+"hJ" = (
+/obj/structure/chair/comfy/brown{
+ dir = 4;
+ pixel_x = -4
+ },
+/obj/machinery/light/dim/directional/west{
+ bulb_power = 0.7
+ },
+/turf/open/floor/wood/walnut,
+/area/outpost/crew/lounge)
+"hL" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/tech,
+/area/outpost/security/checkpoint)
+"hM" = (
+/obj/effect/turf_decal/siding/white/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/borderfloor{
+ dir = 5
+ },
+/obj/structure/railing/corner{
+ dir = 8;
+ layer = 4.1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"hU" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/turf/open/floor/plasteel/tech,
+/area/outpost/security)
+"hV" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer2{
+ dir = 8
+ },
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/plating,
+/area/outpost/engineering/atmospherics)
+"if" = (
+/obj/effect/turf_decal/corner/opaque/neutral,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/effect/turf_decal/siding/white,
+/turf/open/floor/plasteel/patterned,
+/area/outpost/vacant_rooms/shop)
+"ig" = (
+/obj/effect/turf_decal/siding/white,
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
+/obj/machinery/light/small/directional/east,
+/obj/structure/railing{
+ layer = 4.1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"ij" = (
+/turf/closed/indestructible/reinforced,
+/area/outpost/maintenance/port)
+"im" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/trinary/mixer/airmix{
+ dir = 8;
+ piping_layer = 2
+ },
+/turf/open/floor/plating,
+/area/outpost/engineering/atmospherics)
+"ip" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/siding/white{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2,
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/structure/cable{
+ icon_state = "0-1"
+ },
+/turf/open/floor/plasteel/patterned,
+/area/outpost/cargo/smeltery)
+"is" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/conveyor_switch/oneway{
+ pixel_x = 6;
+ pixel_y = 12;
+ id = "smelter1"
+ },
+/turf/open/floor/plasteel/patterned,
+/area/outpost/cargo/smeltery)
+"iw" = (
+/obj/machinery/vending/boozeomat/syndicate_access,
+/obj/effect/turf_decal/industrial/hatch/yellow,
+/turf/open/floor/plasteel/tech,
+/area/outpost/crew/bar)
+"iA" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/siding/wood{
+ color = "#543C30";
+ dir = 9
+ },
+/turf/open/floor/carpet/green,
+/area/outpost/crew/bar)
+"iF" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/rack,
+/obj/effect/turf_decal/industrial/outline/yellow,
+/obj/effect/spawner/lootdrop/maintenance/four,
+/turf/open/floor/plasteel/tech,
+/area/outpost/vacant_rooms/shop)
+"iH" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/girder,
+/turf/open/floor/plasteel/telecomms_floor,
+/area/outpost/maintenance/starboard)
+"iO" = (
+/turf/closed/indestructible/reinforced,
+/area/outpost/crew/bathroom)
+"iP" = (
+/obj/structure/frame/computer{
+ dir = 8;
+ pixel_x = 7;
+ anchored = 1
+ },
+/obj/effect/decal/fakelattice,
+/obj/effect/decal/cleanable/robot_debris,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating{
+ icon_state = "foam_plating"
+ },
+/area/outpost/maintenance/fore)
+"iR" = (
+/obj/structure/closet/secure_closet/ertMed{
+ anchored = 1
+ },
+/obj/effect/turf_decal/industrial/outline/red,
+/obj/structure/window/reinforced/spawner{
+ dir = 4
+ },
+/obj/machinery/door/window/brigdoor/southleft{
+ req_one_access_txt = "103"
+ },
+/turf/open/floor/plasteel/dark,
+/area/outpost/security/armory)
+"jh" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{
+ dir = 8
+ },
+/turf/open/floor/plasteel/tech,
+/area/outpost/security)
+"ji" = (
+/obj/structure/sign/nanotrasen{
+ pixel_y = -32
+ },
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"jj" = (
+/obj/effect/turf_decal/techfloor{
+ dir = 8
+ },
+/obj/structure/rack,
+/obj/machinery/light/small/broken/directional/west,
+/turf/open/floor/plasteel/tech/techmaint,
+/area/outpost/maintenance/starboard)
+"jk" = (
+/obj/structure/table/reinforced,
+/obj/item/flashlight/lamp{
+ pixel_x = -5;
+ pixel_y = 3
+ },
+/obj/item/book/manual/wiki/security_space_law{
+ pixel_x = 13;
+ pixel_y = 1
+ },
+/turf/open/floor/plasteel/telecomms_floor,
+/area/outpost/security)
+"jl" = (
+/obj/effect/decal/fakelattice,
+/obj/effect/decal/cleanable/wrapping{
+ color = "#808080"
+ },
+/turf/open/floor/plasteel/elevatorshaft,
+/area/outpost/maintenance/port)
+"jq" = (
+/obj/machinery/light/small/directional/west,
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/effect/turf_decal/borderfloor,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"jH" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 5
+ },
+/obj/item/radio/intercom/directional/north,
+/obj/item/storage/secure/safe{
+ dir = 4;
+ pixel_x = 32
+ },
+/turf/open/floor/plasteel/patterned/ridged,
+/area/outpost/vacant_rooms/shop)
+"jI" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/effect/turf_decal/borderfloor,
+/obj/machinery/light/small/directional/east,
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"jL" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"ke" = (
+/turf/closed/wall/r_wall/rust,
+/area/outpost/maintenance/port)
+"kj" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/table/reinforced,
+/obj/item/phone,
+/obj/machinery/light/directional/south,
+/obj/structure/extinguisher_cabinet/directional/east,
+/turf/open/floor/plasteel/telecomms_floor,
+/area/outpost/security/checkpoint)
+"kn" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 5
+ },
+/obj/effect/turf_decal/siding/white/corner{
+ dir = 8
+ },
+/obj/structure/railing/corner{
+ dir = 8;
+ layer = 4.1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"kv" = (
+/obj/machinery/telecomms/relay,
+/obj/machinery/light/directional/south,
+/turf/open/floor/plasteel/telecomms_floor,
+/area/outpost/security/checkpoint)
+"kG" = (
+/obj/effect/decal/fakelattice,
+/obj/effect/decal/cleanable/glass{
+ dir = 8;
+ color = "#808080"
+ },
+/turf/open/floor/plasteel/elevatorshaft,
+/area/outpost/maintenance/port)
+"kK" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "smelter2"
+ },
+/turf/open/floor/plasteel/dark,
+/area/outpost/cargo/smeltery)
+"kL" = (
+/obj/structure/flora/grass/green{
+ layer = 3.1
+ },
+/obj/item/trash/raisins{
+ pixel_y = 7
+ },
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"kM" = (
+/obj/machinery/light/small/directional/south{
+ pixel_x = -6
+ },
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"kX" = (
+/obj/effect/turf_decal/siding/white,
+/obj/machinery/light/dim/directional/south,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"kZ" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"la" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/reagent_dispensers/watertank,
+/obj/effect/decal/cleanable/wrapping,
+/turf/open/floor/plating{
+ icon_state = "foam_plating"
+ },
+/area/outpost/maintenance/starboard)
+"lb" = (
+/obj/effect/spawner/structure/window/reinforced/indestructable,
+/obj/machinery/atmospherics/pipe/layer_manifold/visible{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/outpost/engineering/atmospherics)
+"lc" = (
+/obj/effect/turf_decal/siding/white,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/effect/turf_decal/siding/white/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/white/corner{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/patterned,
+/area/outpost/crew/cryo)
+"li" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/obj/effect/turf_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"lj" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 5
+ },
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"ll" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 5
+ },
+/obj/item/radio/intercom/directional/north,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"lo" = (
+/obj/effect/turf_decal/siding/white/end{
+ dir = 8
+ },
+/obj/machinery/firealarm/directional/west,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plasteel/patterned,
+/area/outpost/crew/cryo)
+"lp" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/open/floor/wood/walnut,
+/area/outpost/crew/bar)
+"ls" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 10
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/structure/sign/poster/retro/random{
+ pixel_x = 32
+ },
+/turf/open/floor/plating/rust,
+/area/outpost/maintenance/port)
+"lv" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/tech/techmaint,
+/area/outpost/vacant_rooms/shop)
+"lw" = (
+/obj/structure/table/wood/reinforced,
+/obj/machinery/jukebox/boombox,
+/obj/effect/turf_decal/siding/wood{
+ color = "#543C30";
+ dir = 1
+ },
+/turf/open/floor/wood/walnut,
+/area/outpost/crew/bar)
+"ly" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"lF" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/effect/turf_decal/borderfloor,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing/corner{
+ dir = 4;
+ layer = 4.1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"lK" = (
+/obj/structure/flora/grass/both{
+ layer = 3.1
+ },
+/obj/item/light/bulb{
+ pixel_y = 2
+ },
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"lR" = (
+/obj/structure/table/reinforced,
+/obj/item/toy/cards/deck{
+ pixel_y = 3
+ },
+/obj/item/reagent_containers/food/drinks/beer{
+ pixel_x = -7;
+ pixel_y = 12
+ },
+/obj/item/reagent_containers/food/drinks/beer{
+ pixel_x = 7;
+ pixel_y = 2
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/sign/poster/official/random{
+ pixel_y = -32
+ },
+/turf/open/floor/wood/walnut,
+/area/outpost/crew/bar)
+"lU" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/outpost/maintenance/starboard)
+"lY" = (
+/obj/effect/turf_decal/siding/white/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/borderfloor{
+ dir = 6
+ },
+/obj/structure/railing/corner{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"lZ" = (
+/obj/effect/turf_decal/siding/white,
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
+/obj/structure/railing{
+ layer = 4.1
+ },
+/obj/machinery/vending/cigarette,
+/obj/effect/decal/cleanable/wrapping,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"mk" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 6
+ },
+/turf/open/floor/plasteel/tech,
+/area/outpost/security/armory)
+"mm" = (
+/obj/structure/flora/rock/pile/icy,
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"my" = (
+/obj/machinery/camera{
+ dir = 5
+ },
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"mz" = (
+/obj/effect/decal/cleanable/garbage{
+ pixel_x = 8;
+ pixel_y = -6
+ },
+/obj/effect/decal/cleanable/generic,
+/turf/open/floor/plating/asteroid/icerock/temperate{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"mB" = (
+/obj/effect/turf_decal/borderfloor,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/machinery/button/door{
+ id = "ice_stool_2";
+ name = "Stool Lock";
+ pixel_y = 28;
+ pixel_x = -4;
+ normaldoorcontrol = 1;
+ specialfunctions = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/plasteel/patterned,
+/area/outpost/crew/bathroom)
+"mC" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2,
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel/patterned/ridged,
+/area/outpost/vacant_rooms/shop)
+"mE" = (
+/obj/structure/sign/nanotrasen{
+ pixel_y = 32
+ },
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"mF" = (
+/obj/structure/table/reinforced,
+/obj/item/flashlight/lamp{
+ pixel_x = -5;
+ pixel_y = 3
+ },
+/obj/structure/sign/poster/official/random{
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel/telecomms_floor,
+/area/outpost/security/checkpoint)
+"mK" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/siding/white{
+ dir = 10
+ },
+/obj/effect/turf_decal/siding/white/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 5
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/tech,
+/area/outpost/security/checkpoint)
+"mM" = (
+/obj/effect/turf_decal/industrial/outline/yellow,
+/obj/structure/rack,
+/obj/machinery/airalarm/directional/west,
+/obj/item/stack/sheet/mineral/wood,
+/obj/item/stack/sheet/mineral/wood,
+/obj/item/stack/sheet/mineral/wood,
+/obj/item/stack/sheet/mineral/wood,
+/obj/item/stack/sheet/mineral/wood,
+/obj/item/stack/sheet/mineral/wood,
+/obj/item/stack/sheet/mineral/wood,
+/obj/item/stack/sheet/mineral/wood,
+/obj/item/stack/sheet/mineral/wood,
+/obj/item/stack/sheet/mineral/wood,
+/obj/item/stack/sheet/mineral/wood,
+/obj/item/stack/sheet/mineral/wood,
+/obj/item/stack/sheet/mineral/wood,
+/obj/item/stack/sheet/mineral/wood,
+/obj/item/stack/sheet/mineral/wood,
+/obj/item/stack/sheet/mineral/wood,
+/obj/item/stack/sheet/mineral/wood,
+/obj/item/lighter/greyscale,
+/turf/open/floor/plasteel/tech,
+/area/outpost/crew/bar)
+"mO" = (
+/obj/structure/table/reinforced,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned/brushed,
+/area/outpost/crew/bathroom)
+"mP" = (
+/obj/machinery/power/rtg/geothermal,
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/outpost/maintenance/starboard)
+"mS" = (
+/obj/effect/turf_decal/industrial/warning/fulltile,
+/obj/machinery/door/firedoor/border_only{
+ dir = 1
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2,
+/obj/machinery/door/airlock{
+ id_tag = "ice_stool_2"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/tech,
+/area/outpost/crew/bathroom)
+"mV" = (
+/obj/structure/rack,
+/obj/effect/turf_decal/industrial/outline/yellow,
+/obj/effect/spawner/lootdrop/maintenance/two,
+/turf/open/floor/plasteel/tech,
+/area/outpost/vacant_rooms/shop)
+"na" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "smelter1"
+ },
+/obj/structure/sign/poster/official/miners{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/dark,
+/area/outpost/cargo/smeltery)
+"ng" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/outpost/cargo/smeltery)
+"nn" = (
+/obj/structure/window/reinforced/spawner,
+/obj/effect/turf_decal/siding/white,
+/obj/effect/turf_decal/siding/white,
+/obj/effect/turf_decal/siding/thinplating/dark{
+ dir = 1
+ },
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/plasteel/dark,
+/area/outpost/security)
+"nv" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 10
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/patterned,
+/area/outpost/crew/bathroom)
+"ny" = (
+/obj/effect/turf_decal/industrial/warning/fulltile,
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/door/airlock/mining{
+ dir = 8;
+ name = "Smeltery"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/tech,
+/area/outpost/cargo/smeltery)
+"nA" = (
+/obj/machinery/door/airlock/maintenance{
+ dir = 4
+ },
+/obj/effect/turf_decal/industrial/caution{
+ dir = 4
+ },
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/tech,
+/area/outpost/maintenance/port)
+"nB" = (
+/obj/structure/railing{
+ layer = 4.1
+ },
+/obj/effect/turf_decal/techfloor,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/machinery/power/smes/magical{
+ name = "power storage unit";
+ desc = "A high-capacity superconducting magnetic energy storage (SMES) unit."
+ },
+/obj/structure/cable,
+/turf/open/floor/plasteel/tech/techmaint,
+/area/outpost/maintenance/starboard)
+"nE" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/computer/prisoner/management{
+ icon_state = "computer-right"
+ },
+/turf/open/floor/plasteel/telecomms_floor,
+/area/outpost/security/checkpoint)
+"nF" = (
+/obj/structure/table/reinforced,
+/obj/item/folder/red{
+ pixel_x = -16
+ },
+/obj/item/folder/red{
+ pixel_y = 2;
+ pixel_x = -16
+ },
+/obj/item/stamp/hos{
+ pixel_y = 3;
+ pixel_x = -15
+ },
+/obj/machinery/recharger,
+/obj/machinery/camera{
+ dir = 1
+ },
+/obj/structure/sign/poster/official/random{
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel/telecomms_floor,
+/area/outpost/security)
+"nG" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer2{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/visible/layer4{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/outpost/engineering/atmospherics)
+"nH" = (
+/obj/effect/turf_decal/siding/white/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/borderfloor{
+ dir = 10
+ },
+/obj/structure/railing/corner{
+ dir = 4
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"nK" = (
+/obj/structure/flora/rock/icy,
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"nL" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer2,
+/turf/closed/indestructible/rock/schist,
+/area/outpost/external)
+"nN" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/trimline/transparent/neutral/warning,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/dark,
+/area/outpost/vacant_rooms/shop)
+"nS" = (
+/obj/item/reagent_containers/food/drinks/beer{
+ pixel_y = 10;
+ pixel_x = -4
+ },
+/obj/item/reagent_containers/food/drinks/ale{
+ pixel_x = -9;
+ pixel_y = 4
+ },
+/obj/item/reagent_containers/food/snacks/deadmouse{
+ pixel_y = 2
+ },
+/turf/open/floor/plating/asteroid/icerock/temperate{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"nU" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/computer/secure_data{
+ icon_state = "computer-left"
+ },
+/turf/open/floor/plasteel/telecomms_floor,
+/area/outpost/security/checkpoint)
+"nW" = (
+/obj/effect/turf_decal/borderfloor,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"nZ" = (
+/obj/effect/turf_decal/borderfloor,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/machinery/light/small/directional/east,
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"od" = (
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/door/poddoor/ert{
+ dir = 8;
+ id = "ice_ERT_bay"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/fans/tiny/invisible,
+/turf/open/floor/plasteel/tech,
+/area/outpost/security/armory)
+"oe" = (
+/obj/structure/table/wood/reinforced,
+/obj/item/binoculars{
+ pixel_x = 3;
+ pixel_y = 6
+ },
+/obj/item/binoculars{
+ pixel_x = 3;
+ pixel_y = 6
+ },
+/obj/item/binoculars{
+ pixel_x = 3
+ },
+/obj/effect/turf_decal/siding/wood{
+ color = "#543C30";
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood/walnut,
+/area/outpost/crew/bar)
+"oi" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/frame/computer/retro,
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/outpost/maintenance/starboard)
+"oj" = (
+/obj/machinery/cryopod,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/crew/cryo)
+"om" = (
+/obj/effect/turf_decal/industrial/outline/yellow,
+/obj/machinery/mineral/processing_unit{
+ output_dir = 4;
+ input_dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/outpost/cargo/smeltery)
+"oq" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/item/trash/candy,
+/obj/item/trash/sosjerky{
+ pixel_x = 8;
+ pixel_y = 12
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plating,
+/area/outpost/maintenance/port)
+"ot" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/machinery/light/floor,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/garbage{
+ pixel_x = -13;
+ pixel_y = -8
+ },
+/obj/effect/decal/cleanable/generic,
+/obj/structure/railing/corner{
+ dir = 1;
+ layer = 4.1
+ },
+/obj/structure/noticeboard{
+ pixel_y = 28
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"ov" = (
+/turf/closed/indestructible/reinforced,
+/area/outpost/engineering/atmospherics)
+"oz" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/photocopier,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/machinery/firealarm/directional/north,
+/turf/open/floor/plasteel/telecomms_floor,
+/area/outpost/security/checkpoint)
+"oA" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/rack,
+/obj/structure/grille/broken,
+/obj/effect/spawner/lootdrop/maintenance/three,
+/turf/open/floor/plating,
+/area/outpost/maintenance/starboard)
+"oF" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/tech/techmaint,
+/area/outpost/vacant_rooms/shop)
+"oI" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/airalarm/directional/south,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating/rust,
+/area/outpost/maintenance/starboard)
+"oK" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/machinery/light/directional/south,
+/turf/open/floor/plasteel/telecomms_floor,
+/area/outpost/security)
+"oY" = (
+/obj/structure/tank_dispenser/oxygen,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/light/small/directional/west{
+ pixel_y = -6
+ },
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"pa" = (
+/turf/closed/indestructible/reinforced,
+/area/outpost/maintenance/starboard)
+"pi" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/obj/effect/turf_decal/industrial/hatch/yellow,
+/obj/structure/reagent_dispensers/watertank/high,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating/rust,
+/area/outpost/maintenance/fore)
+"pl" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/vomit/old,
+/turf/open/floor/plating,
+/area/outpost/maintenance/starboard)
+"pm" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer2,
+/turf/closed/indestructible/reinforced,
+/area/outpost/engineering/atmospherics)
+"pu" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/siding/white,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/plasteel/tech,
+/area/outpost/security/armory)
+"pv" = (
+/obj/machinery/button/door{
+ id = "ice_bar_window";
+ name = "Window Shutters";
+ pixel_y = 28;
+ pixel_x = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/wood{
+ color = "#543C30";
+ dir = 9
+ },
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood/walnut,
+/area/outpost/crew/bar)
+"pw" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"pA" = (
+/obj/effect/turf_decal/borderfloor,
+/obj/effect/turf_decal/siding/white{
+ dir = 5
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"pC" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/tech,
+/area/outpost/security/checkpoint)
+"pJ" = (
+/obj/structure/flora/rock/pile/icy,
+/obj/machinery/camera{
+ dir = 9
+ },
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"qa" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/glass,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating/rust,
+/area/outpost/maintenance/fore)
+"qh" = (
+/obj/effect/turf_decal/borderfloor/full,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/obj/machinery/firealarm/directional/west,
+/turf/open/floor/plasteel/tech,
+/area/outpost/security)
+"qm" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/turf/open/floor/plasteel/patterned,
+/area/outpost/vacant_rooms/shop)
+"qn" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/crate/bin,
+/obj/machinery/firealarm/directional/east,
+/obj/item/trash/energybar,
+/turf/open/floor/plasteel/dark,
+/area/outpost/vacant_rooms/shop)
+"qs" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/borderfloor/full,
+/obj/item/paper_bin,
+/obj/item/pen,
+/turf/open/floor/plasteel/tech,
+/area/outpost/maintenance/starboard)
+"qw" = (
+/obj/structure/table/reinforced,
+/obj/item/reagent_containers/food/drinks/beer{
+ pixel_y = 10;
+ pixel_x = -4
+ },
+/obj/effect/turf_decal/siding/wood{
+ color = "#543C30";
+ dir = 1
+ },
+/obj/item/toy/cards/deck{
+ pixel_y = 3
+ },
+/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{
+ pixel_x = 8;
+ pixel_y = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 10
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood/walnut,
+/area/outpost/crew/bar)
+"qx" = (
+/obj/effect/turf_decal/industrial/outline/yellow,
+/obj/effect/decal/cleanable/oil/slippery,
+/obj/item/rack_parts{
+ pixel_y = 3;
+ pixel_x = -2
+ },
+/turf/open/floor/plasteel/tech,
+/area/outpost/vacant_rooms/shop)
+"qA" = (
+/obj/machinery/door/airlock/maintenance{
+ dir = 1;
+ req_one_access_txt = "101"
+ },
+/obj/effect/turf_decal/industrial/warning/fulltile,
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/firedoor/border_only{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/airlock/unres,
+/turf/open/floor/plasteel/tech,
+/area/outpost/maintenance/port)
+"qD" = (
+/obj/effect/turf_decal/industrial/warning/fulltile,
+/obj/machinery/door/firedoor/border_only{
+ dir = 1
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/grunge{
+ name = "Cryogenics"
+ },
+/turf/open/floor/plasteel/tech,
+/area/outpost/crew/cryo)
+"qE" = (
+/obj/effect/spawner/structure/window/reinforced/indestructable,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "ice_sec2_window"
+ },
+/turf/open/floor/plating,
+/area/outpost/security/checkpoint)
+"qI" = (
+/obj/effect/turf_decal/borderfloor,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 5
+ },
+/obj/structure/sign/poster/ripped{
+ pixel_x = -32
+ },
+/obj/effect/decal/cleanable/vomit/old,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/patterned,
+/area/outpost/crew/bathroom)
+"qK" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 6
+ },
+/obj/machinery/camera{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"qO" = (
+/obj/effect/turf_decal/industrial/warning/fulltile,
+/obj/machinery/door/firedoor/border_only{
+ dir = 1
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/barricade/wooden/crude,
+/turf/open/floor/plasteel/tech,
+/area/outpost/maintenance/starboard)
+"qR" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "smelter1"
+ },
+/turf/open/floor/plasteel/dark,
+/area/outpost/cargo/smeltery)
+"qY" = (
+/obj/effect/turf_decal/industrial/warning/fulltile,
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
+ },
+/obj/machinery/door/airlock{
+ dir = 4;
+ name = "Bar"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/tech,
+/area/outpost/crew/bar)
+"qZ" = (
+/obj/structure/flora/tree/dead,
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"rc" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/closet/firecloset,
+/obj/effect/turf_decal/industrial/hatch/yellow,
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/plating,
+/area/outpost/vacant_rooms/shop)
+"re" = (
+/obj/effect/turf_decal/techfloor{
+ dir = 4
+ },
+/obj/item/trash/plate{
+ pixel_x = 5;
+ pixel_y = -5
+ },
+/obj/item/trash/sosjerky{
+ pixel_x = 5;
+ pixel_y = 4
+ },
+/obj/item/trash/energybar{
+ pixel_x = -4;
+ pixel_y = -7
+ },
+/obj/structure/sign/poster/contraband/random{
+ pixel_x = 32
+ },
+/turf/open/floor/plasteel/tech/techmaint,
+/area/outpost/maintenance/starboard)
+"rv" = (
+/obj/effect/turf_decal/industrial/outline/yellow,
+/obj/machinery/mineral/unloading_machine,
+/obj/item/radio/intercom/directional/north,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/outpost/cargo/smeltery)
+"rA" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/sink/kitchen{
+ pixel_y = 12
+ },
+/obj/structure/mirror{
+ pixel_y = 28
+ },
+/turf/open/floor/plasteel/patterned/brushed,
+/area/outpost/crew/bathroom)
+"rD" = (
+/obj/machinery/light/small/directional/south{
+ pixel_x = 6
+ },
+/obj/machinery/elevator_call_button{
+ pixel_y = -25;
+ dir = 1;
+ pixel_x = -5
+ },
+/obj/effect/landmark/outpost/elevator_machine{
+ shaft = "1"
+ },
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"rF" = (
+/obj/effect/turf_decal/siding/white/end{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/turf/open/floor/plasteel/patterned,
+/area/outpost/vacant_rooms/shop)
+"rG" = (
+/obj/machinery/atmospherics/components/trinary/filter/atmos/n2{
+ piping_layer = 2
+ },
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/plating,
+/area/outpost/engineering/atmospherics)
+"rI" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/table/reinforced,
+/obj/item/reagent_containers/food/drinks/mug{
+ pixel_y = 9;
+ pixel_x = 6
+ },
+/obj/item/folder/documents{
+ pixel_x = -20
+ },
+/obj/item/stamp/hos{
+ pixel_x = -6;
+ pixel_y = 10
+ },
+/obj/machinery/button/door{
+ id = "ice_sec2_window";
+ name = "Window Shutters";
+ pixel_x = -6;
+ req_one_access_txt = "101"
+ },
+/obj/machinery/button/door{
+ id = "ice_exterior_starboard";
+ name = "Exterior Door";
+ pixel_x = 6;
+ req_one_access_txt = "101"
+ },
+/turf/open/floor/plasteel/telecomms_floor,
+/area/outpost/security/checkpoint)
+"rL" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"rM" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/dark,
+/area/outpost/vacant_rooms/shop)
+"rS" = (
+/obj/structure/sign/poster/contraband/random{
+ pixel_y = -32
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/outpost/maintenance/starboard)
+"rU" = (
+/obj/effect/turf_decal/industrial/warning/fulltile,
+/obj/machinery/door/firedoor/border_only{
+ dir = 1
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2,
+/obj/machinery/door/airlock{
+ id_tag = "ice_stool_1"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/tech,
+/area/outpost/crew/bathroom)
+"rY" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/machinery/light/small/broken/directional/west,
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/outpost/maintenance/starboard)
+"sg" = (
+/obj/effect/turf_decal/industrial/warning/fulltile,
+/obj/machinery/door/firedoor/border_only{
+ dir = 1
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2,
+/obj/machinery/door/airlock/external/glass,
+/turf/open/floor/plasteel/tech,
+/area/outpost/maintenance/fore)
+"sh" = (
+/obj/structure/railing,
+/obj/item/grown/log/tree{
+ pixel_x = -7;
+ pixel_y = 5
+ },
+/obj/item/grown/log/tree{
+ pixel_y = 10
+ },
+/obj/item/grown/log/tree{
+ pixel_x = 7;
+ pixel_y = 5
+ },
+/turf/open/floor/plating/asteroid/icerock/temperate,
+/area/outpost/exterior)
+"sj" = (
+/obj/structure/sign/nanotrasen{
+ pixel_y = 32
+ },
+/obj/structure/flora/grass/green{
+ layer = 3.1
+ },
+/obj/item/trash/sosjerky{
+ pixel_y = 12
+ },
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"sq" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/obj/structure/sign/warning/coldtemp{
+ pixel_x = -32
+ },
+/turf/open/floor/plating/rust,
+/area/outpost/maintenance/fore)
+"su" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating/rust,
+/area/outpost/maintenance/fore)
+"sx" = (
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/plating/asteroid/icerock/temperate{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"sz" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/filingcabinet/double/grey,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/turf/open/floor/plasteel/telecomms_floor,
+/area/outpost/security/checkpoint)
+"sA" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 10
+ },
+/obj/machinery/light/small/directional/east{
+ pixel_y = -16
+ },
+/obj/machinery/button/door{
+ id = "ice_exterior_airlock";
+ name = "Exterior Shutters";
+ pixel_x = 26;
+ req_one_access_txt = "101";
+ dir = 8;
+ pixel_y = 6
+ },
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"sC" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/reagent_dispensers/watertank,
+/obj/effect/turf_decal/industrial/hatch/yellow,
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/plating,
+/area/outpost/vacant_rooms/shop)
+"sG" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/siding/white{
+ dir = 5
+ },
+/obj/item/kirbyplants{
+ icon_state = "plant-21";
+ pixel_y = 13
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/outpost/cargo/smeltery)
+"sH" = (
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"sI" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/tech,
+/area/outpost/security/checkpoint)
+"tb" = (
+/obj/effect/turf_decal/siding/white,
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
+/obj/structure/railing/corner{
+ dir = 8;
+ layer = 4.1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"td" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/industrial/hatch/yellow,
+/obj/machinery/mineral/processing_unit_console{
+ machinedir = 8;
+ output_dir = 1;
+ pixel_x = 32
+ },
+/turf/open/floor/plasteel/patterned,
+/area/outpost/cargo/smeltery)
+"tk" = (
+/obj/machinery/camera{
+ dir = 1;
+ pixel_x = 12
+ },
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"tl" = (
+/obj/structure/chair,
+/obj/effect/turf_decal/industrial/outline/red,
+/obj/item/radio/intercom/directional/west,
+/turf/open/floor/plasteel/tech,
+/area/outpost/security)
+"tn" = (
+/obj/item/trash/candy{
+ pixel_x = 12
+ },
+/obj/structure/flora/grass/green{
+ layer = 3.1
+ },
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"tr" = (
+/obj/effect/turf_decal/borderfloor/full,
+/obj/machinery/light/floor,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned/cargo_one{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"tw" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/chair/stool/bar{
+ dir = 8;
+ pixel_x = -6
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 10
+ },
+/turf/open/floor/wood/walnut,
+/area/outpost/crew/bar)
+"tx" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"tC" = (
+/obj/effect/turf_decal/industrial/hatch/yellow,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/plating/rust,
+/area/outpost/maintenance/fore)
+"tD" = (
+/obj/machinery/airalarm/directional/south,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned,
+/area/outpost/crew/bathroom)
+"tI" = (
+/obj/structure/rack,
+/obj/effect/turf_decal/industrial/outline/yellow,
+/obj/machinery/camera,
+/turf/open/floor/plasteel/tech,
+/area/outpost/vacant_rooms/shop)
+"tJ" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"tM" = (
+/obj/machinery/mineral/unloading_machine,
+/obj/effect/turf_decal/industrial/outline/yellow,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/outpost/cargo/smeltery)
+"tO" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 9
+ },
+/obj/machinery/light/small/broken/directional/east,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"tR" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/siding/wood{
+ color = "#543C30";
+ dir = 8
+ },
+/turf/open/floor/carpet/green,
+/area/outpost/crew/bar)
+"tS" = (
+/obj/effect/turf_decal/industrial/traffic{
+ dir = 1
+ },
+/obj/effect/turf_decal/industrial/traffic,
+/obj/machinery/door/poddoor/ert,
+/turf/open/floor/plasteel/patterned/brushed,
+/area/outpost/maintenance/port)
+"tU" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 9
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating/rust,
+/area/outpost/maintenance/starboard)
+"ua" = (
+/obj/structure/grille,
+/turf/open/floor/plating{
+ icon_state = "platingdmg2"
+ },
+/area/outpost/maintenance/starboard)
+"uc" = (
+/obj/effect/turf_decal/industrial/warning/fulltile,
+/obj/machinery/atmospherics/components/unary/passive_vent/layer2{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/outpost/external)
+"uf" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/table/reinforced,
+/obj/item/flashlight/lamp/green{
+ pixel_y = 3
+ },
+/obj/structure/sign/poster/retro/random{
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel/telecomms_floor,
+/area/outpost/maintenance/starboard)
+"uq" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/siding/wood{
+ color = "#543C30";
+ dir = 6
+ },
+/obj/machinery/holopad/emergency/bar,
+/turf/open/floor/concrete/tiles,
+/area/outpost/crew/bar)
+"ur" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/siding/white{
+ dir = 6
+ },
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/outpost/cargo/smeltery)
+"us" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/patterned,
+/area/outpost/cargo/smeltery)
+"uu" = (
+/obj/structure/table/wood,
+/obj/item/trash/tray,
+/obj/structure/sign/poster/contraband/random{
+ pixel_x = 32
+ },
+/turf/open/floor/plating,
+/area/outpost/maintenance/starboard)
+"uy" = (
+/obj/effect/turf_decal/siding/white,
+/obj/structure/sign/nanotrasen{
+ pixel_x = 32
+ },
+/obj/machinery/light/dim/directional/south,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"uA" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/box/handcuffs{
+ pixel_y = 3
+ },
+/obj/item/grenade/chem_grenade/teargas{
+ pixel_x = -16;
+ pixel_y = 3
+ },
+/obj/machinery/light/directional/south,
+/turf/open/floor/plasteel/telecomms_floor,
+/area/outpost/security/armory)
+"uC" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/obj/machinery/light/small/directional/west{
+ bulb_power = 0.55
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/crew/cryo)
+"uD" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
+/obj/machinery/light/broken/directional/north,
+/obj/structure/chair/office,
+/turf/open/floor/plasteel/patterned/ridged,
+/area/outpost/vacant_rooms/shop)
+"uE" = (
+/obj/effect/turf_decal/techfloor{
+ dir = 1
+ },
+/obj/structure/reagent_dispensers/fueltank,
+/obj/effect/turf_decal/industrial/hatch/yellow,
+/obj/machinery/firealarm/directional/east,
+/obj/structure/sign/poster/retro/random{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/tech/techmaint,
+/area/outpost/engineering/atmospherics)
+"uH" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"uI" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/space_heater,
+/obj/effect/decal/cleanable/oil,
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg2"
+ },
+/area/outpost/maintenance/starboard)
+"uN" = (
+/obj/structure/rack,
+/obj/item/pickaxe/rusted,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/clothing/head/hardhat/red,
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/outpost/maintenance/fore)
+"uO" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 6
+ },
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/outpost/engineering/atmospherics)
+"uT" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/curtain/cloth/grey,
+/turf/open/floor/plating,
+/area/outpost/maintenance/starboard)
+"uX" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/dark,
+/area/outpost/vacant_rooms/shop)
+"uY" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/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/layer2{
+ dir = 9
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/open/floor/plating/rust,
+/area/outpost/maintenance/fore)
+"va" = (
+/obj/structure/sign/nanotrasen{
+ pixel_x = -32
+ },
+/obj/structure/flora/grass/green{
+ layer = 3.1
+ },
+/obj/item/trash/chips{
+ pixel_y = 7;
+ pixel_x = 4
+ },
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"vc" = (
+/obj/effect/turf_decal/borderfloor/full,
+/obj/machinery/light/floor,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/patterned/cargo_one{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"vg" = (
+/obj/effect/turf_decal/industrial/warning/fulltile,
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/maintenance{
+ dir = 4;
+ req_one_access_txt = "101"
+ },
+/turf/open/floor/plasteel/tech,
+/area/outpost/maintenance/fore)
+"vn" = (
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/maintenance/two,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/outpost/maintenance/fore)
+"vu" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/siding/white,
+/obj/structure/closet/crate/secure/hydroponics,
+/obj/item/reagent_containers/food/snacks/grown/grass,
+/obj/item/reagent_containers/food/snacks/grown/grass,
+/obj/item/grown/sunflower,
+/obj/item/reagent_containers/food/snacks/grown/grass,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/plating/rust,
+/area/outpost/maintenance/fore)
+"vy" = (
+/obj/effect/turf_decal/borderfloor,
+/obj/effect/turf_decal/siding/white/corner{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"vA" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"vB" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/landmark/observer_start,
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"vC" = (
+/obj/structure/flora/grass/green{
+ layer = 3.1
+ },
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"vD" = (
+/obj/effect/turf_decal/siding/white,
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"vI" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/obj/effect/turf_decal/borderfloor{
+ dir = 4
+ },
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"vP" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/trimline/transparent/neutral/warning,
+/turf/open/floor/plasteel/dark,
+/area/outpost/vacant_rooms/shop)
+"vW" = (
+/obj/machinery/door/airlock/grunge,
+/obj/effect/turf_decal/industrial/traffic,
+/obj/effect/turf_decal/industrial/traffic{
+ dir = 1
+ },
+/obj/effect/landmark/outpost/elevator_machine{
+ shaft = "1"
+ },
+/turf/open/floor/plasteel/patterned/brushed,
+/area/outpost/maintenance/port)
+"vZ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/siding/wood{
+ color = "#543C30";
+ dir = 5
+ },
+/turf/open/floor/concrete/tiles,
+/area/outpost/crew/bar)
+"wd" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/obj/effect/turf_decal/borderfloor{
+ dir = 4
+ },
+/obj/structure/railing/corner{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"wf" = (
+/obj/structure/flora/stump,
+/obj/effect/decal/cleanable/generic,
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"wi" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 6
+ },
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/outpost/engineering/atmospherics)
+"wl" = (
+/obj/effect/turf_decal/borderfloor/full,
+/obj/machinery/light/floor,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel/patterned/cargo_one{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"wv" = (
+/obj/effect/turf_decal/industrial/warning/fulltile,
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/firedoor/border_only{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/maintenance{
+ dir = 1
+ },
+/turf/open/floor/plasteel/tech,
+/area/outpost/crew/bar)
+"wC" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/techfloor{
+ dir = 1
+ },
+/obj/structure/chair/office{
+ dir = 8
+ },
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plasteel/tech/techmaint,
+/area/outpost/engineering/atmospherics)
+"wD" = (
+/obj/structure/grille/broken,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/structure/spider/stickyweb,
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/plating/rust,
+/area/outpost/maintenance/fore)
+"wH" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/dark,
+/area/outpost/vacant_rooms/shop)
+"wL" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"wW" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/turf_decal/siding/white/corner,
+/obj/structure/railing/corner{
+ layer = 4.1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"xc" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/obj/effect/turf_decal/borderfloor{
+ dir = 8
+ },
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/machinery/light/small/directional/south,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"xf" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/white/corner{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"xg" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/obj/effect/turf_decal/borderfloor{
+ dir = 8
+ },
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"xh" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/telecomms/allinone/indestructable,
+/obj/item/radio/intercom/directional/south,
+/turf/open/floor/plasteel/telecomms_floor,
+/area/outpost/security/checkpoint)
+"xj" = (
+/obj/effect/decal/fakelattice,
+/turf/open/floor/plating,
+/area/outpost/maintenance/starboard)
+"xn" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/sign/poster/official/random{
+ pixel_y = -32
+ },
+/obj/effect/turf_decal/siding/white/corner{
+ dir = 4
+ },
+/turf/open/floor/plasteel/patterned,
+/area/outpost/crew/bathroom)
+"xp" = (
+/obj/structure/flora/grass/both{
+ layer = 3.1
+ },
+/obj/item/trash/raisins{
+ pixel_x = -4;
+ pixel_y = 2
+ },
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"xr" = (
+/obj/machinery/atmospherics/components/unary/passive_vent{
+ dir = 4
+ },
+/turf/open/floor/engine/air,
+/area/outpost/engineering/atmospherics)
+"xs" = (
+/obj/effect/turf_decal/borderfloor/full,
+/obj/machinery/light/floor,
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer4,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/patterned/cargo_one{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"xv" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/borderfloor/full,
+/obj/effect/decal/cleanable/wrapping,
+/obj/structure/frame/computer/retro{
+ dir = 8;
+ pixel_x = 7;
+ anchored = 1
+ },
+/obj/item/radio/intercom/directional/south,
+/obj/structure/sign/poster/retro/we_watch{
+ pixel_x = 32
+ },
+/turf/open/floor/plasteel/tech,
+/area/outpost/maintenance/starboard)
+"xG" = (
+/obj/effect/turf_decal/siding/white/corner,
+/obj/effect/turf_decal/borderfloor{
+ dir = 9
+ },
+/obj/structure/railing/corner{
+ layer = 4.1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"xK" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/effect/turf_decal/borderfloor,
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"xM" = (
+/obj/effect/turf_decal/siding/white/end{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/computer/cryopod/directional/north,
+/turf/open/floor/plasteel/patterned,
+/area/outpost/crew/cryo)
+"xN" = (
+/obj/structure/table/reinforced,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned/brushed,
+/area/outpost/crew/bathroom)
+"yd" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/trimline/transparent/neutral/arrow_ccw,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned,
+/area/outpost/vacant_rooms/shop)
+"yi" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/obj/structure/rack,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/oil,
+/obj/item/reagent_containers/glass/bucket,
+/obj/item/cultivator,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/tech/techmaint,
+/area/outpost/maintenance/fore)
+"yk" = (
+/obj/structure/flora/grass/both{
+ layer = 3.1
+ },
+/obj/item/trash/candy{
+ pixel_x = -2
+ },
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"yp" = (
+/obj/structure/bed{
+ icon_state = "dirty_mattress"
+ },
+/obj/structure/curtain/cloth/grey,
+/turf/open/floor/plating/asteroid/icerock/temperate{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"yq" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/newscaster/security_unit/directional/east,
+/obj/machinery/firealarm/directional/north,
+/turf/open/floor/plasteel/tech,
+/area/outpost/security/checkpoint)
+"yu" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2,
+/turf/open/floor/plasteel/patterned,
+/area/outpost/crew/cryo)
+"yw" = (
+/obj/effect/turf_decal/siding/white,
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
+/obj/structure/railing{
+ layer = 4.1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"yG" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/sink/kitchen{
+ pixel_y = 12
+ },
+/obj/structure/mirror{
+ pixel_y = 28
+ },
+/turf/open/floor/plasteel/patterned/brushed,
+/area/outpost/crew/bathroom)
+"yM" = (
+/obj/structure/railing/corner{
+ dir = 8;
+ layer = 4.1
+ },
+/obj/effect/turf_decal/industrial/warning,
+/obj/structure/sign/poster/official/work_for_a_future{
+ pixel_x = 32
+ },
+/turf/open/floor/plasteel/patterned,
+/area/outpost/cargo/smeltery)
+"yR" = (
+/turf/closed/indestructible/reinforced,
+/area/outpost/crew/bar)
+"zc" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/table_frame,
+/obj/effect/decal/cleanable/glass,
+/obj/effect/decal/cleanable/chem_pile,
+/obj/structure/sign/poster/retro/random{
+ pixel_y = 32
+ },
+/turf/open/floor/plating,
+/area/outpost/maintenance/starboard)
+"zn" = (
+/obj/effect/turf_decal/siding/white,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 9
+ },
+/turf/open/floor/plasteel/tech,
+/area/outpost/security/armory)
+"zw" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/obj/machinery/light/small/directional/north,
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"zA" = (
+/obj/effect/turf_decal/borderfloor,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/machinery/button/door{
+ id = "ice_stool_1";
+ name = "Stool Lock";
+ pixel_y = 28;
+ pixel_x = -4;
+ normaldoorcontrol = 1;
+ specialfunctions = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/plasteel/patterned,
+/area/outpost/crew/bathroom)
+"zB" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/obj/effect/turf_decal/borderfloor{
+ dir = 8
+ },
+/obj/structure/railing/corner{
+ dir = 4
+ },
+/obj/structure/sign/directions/supply{
+ dir = 1;
+ pixel_y = 8;
+ pixel_x = 32
+ },
+/obj/structure/sign/directions/service{
+ dir = 1;
+ pixel_x = 32
+ },
+/obj/structure/sign/directions/security{
+ pixel_x = 32;
+ pixel_y = -8
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"zH" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/siding/wood{
+ color = "#543C30";
+ dir = 4
+ },
+/turf/open/floor/carpet/green,
+/area/outpost/crew/bar)
+"zI" = (
+/obj/machinery/newscaster/directional/east,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/open/floor/wood/walnut{
+ icon_state = "wood-broken6"
+ },
+/area/outpost/crew/bar)
+"zO" = (
+/obj/structure/bed{
+ icon_state = "dirty_mattress"
+ },
+/obj/structure/curtain/cloth/grey,
+/turf/open/floor/plating/rust,
+/area/outpost/maintenance/starboard)
+"zQ" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plating/rust,
+/area/outpost/maintenance/fore)
+"zU" = (
+/obj/structure/table/reinforced,
+/obj/machinery/light/small/directional/south{
+ bulb_power = 0.5;
+ brightness = 3
+ },
+/obj/item/trash/tray,
+/obj/item/stack/cable_coil/cut/red,
+/obj/item/computer_hardware/hard_drive/small,
+/obj/item/computer_hardware/battery{
+ pixel_y = 6;
+ pixel_x = -4
+ },
+/obj/item/computer_hardware/network_card{
+ pixel_x = 4;
+ pixel_y = 2
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg1"
+ },
+/area/outpost/maintenance/starboard)
+"zY" = (
+/turf/closed/wall/r_wall/rust,
+/area/outpost/maintenance/starboard)
+"Ah" = (
+/obj/structure/falsewall,
+/turf/open/floor/plating,
+/area/outpost/maintenance/starboard)
+"Aj" = (
+/obj/effect/decal/fakelattice,
+/turf/open/floor/plasteel/elevatorshaft,
+/area/outpost/maintenance/port)
+"Ak" = (
+/turf/closed/indestructible/reinforced,
+/area/outpost/cargo/smeltery)
+"An" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/borderfloor/full,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/tech,
+/area/outpost/security/checkpoint)
+"At" = (
+/obj/machinery/power/rtg/geothermal,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/outpost/maintenance/starboard)
+"Au" = (
+/obj/machinery/light/small/directional/west,
+/obj/effect/turf_decal/borderfloor{
+ dir = 8
+ },
+/obj/structure/table/reinforced,
+/turf/open/floor/plasteel/patterned/brushed,
+/area/outpost/crew/bathroom)
+"Ay" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 4
+ },
+/obj/machinery/light/small/directional/north,
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"AA" = (
+/obj/structure/flora/grass/both{
+ layer = 3.1
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"AC" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 9
+ },
+/obj/effect/decal/cleanable/blood/old,
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/open/floor/plating{
+ icon_state = "foam_plating"
+ },
+/area/outpost/maintenance/starboard)
+"AG" = (
+/obj/effect/turf_decal/industrial/warning/fulltile,
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/obj/machinery/door/airlock/maintenance{
+ dir = 4;
+ req_one_access_txt = "101"
+ },
+/turf/open/floor/plasteel/tech,
+/area/outpost/maintenance/fore)
+"AS" = (
+/turf/closed/indestructible/reinforced,
+/area/outpost/vacant_rooms/shop)
+"AT" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/obj/effect/turf_decal/borderfloor{
+ dir = 8
+ },
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"AV" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/trimline/transparent/neutral/arrow_ccw,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned,
+/area/outpost/vacant_rooms/shop)
+"AX" = (
+/obj/structure/flora/grass/green{
+ layer = 3.1
+ },
+/obj/structure/sign/nanotrasen{
+ pixel_y = -32
+ },
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"Ba" = (
+/turf/open/floor/plating/asteroid/icerock/temperate,
+/area/outpost/exterior)
+"Bd" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"Bh" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"Bj" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "ice_shop2_window";
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/outpost/vacant_rooms/shop)
+"Bm" = (
+/obj/structure/table/reinforced,
+/obj/machinery/recharger,
+/obj/machinery/airalarm/directional/south,
+/obj/item/radio/intercom/directional/west,
+/turf/open/floor/plasteel/telecomms_floor,
+/area/outpost/security/armory)
+"Bu" = (
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/borderfloor{
+ dir = 6
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/button/door{
+ id = "ice_shop2_window";
+ name = "Shop Shutters";
+ dir = 1;
+ pixel_y = 3;
+ pixel_x = 3
+ },
+/obj/item/paper_bin{
+ pixel_x = -11
+ },
+/turf/open/floor/plasteel/patterned/ridged,
+/area/outpost/vacant_rooms/shop)
+"Bv" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/light/small/directional/south,
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating/rust,
+/area/outpost/maintenance/starboard)
+"Bz" = (
+/obj/effect/turf_decal/siding/white,
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"BC" = (
+/obj/structure/flora/tree/pine,
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"BL" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"BM" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2{
+ dir = 1
+ },
+/turf/open/floor/wood/walnut{
+ icon_state = "wood-broken6"
+ },
+/area/outpost/crew/bar)
+"BV" = (
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/borderfloor,
+/obj/machinery/door/window/brigdoor/southright,
+/turf/open/floor/plasteel/patterned/ridged,
+/area/outpost/vacant_rooms/shop)
+"BX" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/item/stack/rods/ten{
+ pixel_x = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 9
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/firealarm/directional/east,
+/turf/open/floor/plating,
+/area/outpost/maintenance/port)
+"BZ" = (
+/mob/living/simple_animal/pet/cat{
+ desc = "A little scoundrel."
+ },
+/turf/open/floor/plating/asteroid/icerock/temperate{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"Cc" = (
+/turf/closed/indestructible/reinforced,
+/area/outpost/maintenance/fore)
+"Cf" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/trash/raisins,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/effect/turf_decal/siding/white{
+ dir = 9
+ },
+/turf/open/floor/plasteel/patterned,
+/area/outpost/vacant_rooms/shop)
+"Ch" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/trimline/transparent/neutral/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/vomit/old,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/obj/machinery/camera{
+ dir = 9
+ },
+/obj/structure/sign/poster/retro/random{
+ pixel_x = 32
+ },
+/turf/open/floor/plasteel/patterned,
+/area/outpost/vacant_rooms/shop)
+"Cq" = (
+/obj/effect/turf_decal/borderfloor,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"Cu" = (
+/obj/effect/turf_decal/siding/white/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/borderfloor{
+ dir = 5
+ },
+/obj/structure/railing/corner{
+ dir = 8;
+ layer = 4.1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"Cy" = (
+/obj/effect/turf_decal/borderfloor,
+/obj/effect/turf_decal/siding/white/corner{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"CF" = (
+/obj/machinery/light/small/directional/east,
+/obj/effect/turf_decal/borderfloor{
+ dir = 4
+ },
+/turf/open/floor/plasteel/patterned/brushed,
+/area/outpost/crew/bathroom)
+"CI" = (
+/obj/structure/table,
+/obj/item/reagent_containers/food/drinks/mug/coco{
+ pixel_y = 9;
+ pixel_x = 5
+ },
+/obj/item/cigbutt{
+ pixel_y = 13;
+ pixel_x = -6
+ },
+/obj/item/reagent_containers/food/snacks/ration/side/crackers{
+ pixel_x = -7
+ },
+/obj/item/trash/syndi_cakes{
+ pixel_y = 5;
+ pixel_x = 2
+ },
+/obj/item/reagent_containers/food/snacks/ration/side/crackers{
+ pixel_x = -7;
+ pixel_y = -3
+ },
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"Dl" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/curtain/cloth/grey,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating/rust,
+/area/outpost/maintenance/fore)
+"Dn" = (
+/obj/structure/ore_box,
+/obj/effect/turf_decal/industrial/hatch/yellow,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/outpost/maintenance/fore)
+"Du" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/industrial/loading{
+ dir = 4
+ },
+/obj/machinery/airalarm/directional/north,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/outpost/cargo/smeltery)
+"Dw" = (
+/obj/structure/chair/stool{
+ dir = 8
+ },
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"Dx" = (
+/obj/effect/turf_decal/industrial/traffic{
+ dir = 4
+ },
+/obj/effect/turf_decal/industrial/traffic{
+ dir = 8
+ },
+/obj/machinery/door/poddoor/ert{
+ dir = 8;
+ id = "ice_exterior_starboard"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed,
+/area/outpost/exterior)
+"DB" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/effect/turf_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/crate/bin,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/item/trash/sosjerky,
+/obj/item/trash/can,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"DK" = (
+/obj/structure/table/wood/reinforced,
+/obj/item/newspaper,
+/obj/item/newspaper{
+ pixel_y = 2
+ },
+/obj/item/newspaper{
+ pixel_y = 4
+ },
+/obj/machinery/light/dim/directional/south,
+/turf/open/floor/wood/walnut,
+/area/outpost/crew/bar)
+"DS" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/obj/effect/turf_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"DT" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/obj/structure/reagent_dispensers/fueltank,
+/obj/effect/turf_decal/industrial/hatch/yellow,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/wrapping,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/tech/techmaint,
+/area/outpost/maintenance/fore)
+"Ea" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"Ed" = (
+/obj/effect/turf_decal/industrial/warning/fulltile,
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/door/airlock/outpost{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/tech,
+/area/outpost/security/checkpoint)
+"Eh" = (
+/obj/effect/spawner/structure/window/reinforced/indestructable,
+/obj/machinery/door/poddoor/shutters/indestructible{
+ id = "ice_exterior_airlock"
+ },
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"El" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/structure/girder/displaced,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"Eq" = (
+/obj/effect/turf_decal/industrial/warning/fulltile,
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/firedoor/border_only{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2,
+/obj/machinery/door/airlock/outpost{
+ dir = 1;
+ name = "Security Checkpoint"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/tech,
+/area/outpost/security/checkpoint)
+"Et" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/cobweb,
+/obj/structure/salvageable/computer,
+/turf/open/floor/plasteel/telecomms_floor,
+/area/outpost/maintenance/starboard)
+"Eu" = (
+/obj/structure/closet/secure_closet/ertEngi{
+ anchored = 1
+ },
+/obj/effect/turf_decal/industrial/outline/red,
+/obj/machinery/door/window/brigdoor/southleft{
+ req_one_access_txt = "103"
+ },
+/turf/open/floor/plasteel/dark,
+/area/outpost/security/armory)
+"Ey" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white,
+/obj/structure/railing{
+ layer = 4.1
+ },
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"EH" = (
+/obj/structure/bonfire/prelit,
+/turf/open/floor/plating/asteroid/icerock/temperate{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"EJ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/crate/trashcart,
+/obj/effect/spawner/lootdrop/maintenance/four,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating/rust,
+/area/outpost/maintenance/port)
+"EK" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 6
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/sign/poster/retro/random{
+ pixel_x = -32
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg2"
+ },
+/area/outpost/maintenance/port)
+"EO" = (
+/obj/effect/decal/cleanable/garbage,
+/turf/open/floor/plating{
+ icon_state = "foam_plating"
+ },
+/area/outpost/maintenance/starboard)
+"EQ" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/obj/effect/turf_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing/corner{
+ dir = 8;
+ layer = 4.1
+ },
+/obj/structure/sign/directions/security{
+ dir = 8;
+ pixel_x = -32;
+ pixel_y = 8
+ },
+/obj/structure/sign/directions/evac{
+ pixel_x = -32;
+ pixel_y = -8;
+ desc = "A direction sign, pointing out which way the exit is."
+ },
+/obj/structure/sign/directions/engineering{
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"Fc" = (
+/obj/effect/turf_decal/borderfloor,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 5
+ },
+/obj/structure/sign/poster/official/random{
+ pixel_x = -32
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/patterned,
+/area/outpost/crew/bathroom)
+"Ff" = (
+/obj/effect/turf_decal/industrial/warning/fulltile,
+/obj/machinery/door/firedoor/border_only{
+ dir = 1
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2,
+/obj/machinery/door/airlock/mining{
+ dir = 2;
+ name = "Smeltery"
+ },
+/turf/open/floor/plasteel/tech,
+/area/outpost/cargo/smeltery)
+"Fk" = (
+/turf/open/floor/plating/ice/temperate{
+ light_color = "#1B1D2E"
+ },
+/area/outpost/external)
+"Fp" = (
+/turf/closed/wall/rust,
+/area/outpost/maintenance/starboard)
+"Fq" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 5
+ },
+/obj/effect/turf_decal/siding/white/corner{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/patterned,
+/area/outpost/crew/bathroom)
+"Fv" = (
+/obj/structure/girder,
+/obj/structure/grille/broken,
+/turf/open/floor/plating/rust,
+/area/outpost/maintenance/starboard)
+"Fw" = (
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/borderfloor{
+ dir = 10
+ },
+/obj/structure/window/reinforced,
+/obj/machinery/paystand,
+/turf/open/floor/plasteel/patterned/ridged,
+/area/outpost/vacant_rooms/shop)
+"Fy" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{
+ dir = 1
+ },
+/obj/effect/turf_decal/borderfloor{
+ dir = 6
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/patterned/brushed,
+/area/outpost/crew/bathroom)
+"FA" = (
+/obj/machinery/door/airlock/maintenance{
+ dir = 1;
+ req_one_access_txt = "101"
+ },
+/obj/effect/turf_decal/industrial/warning/fulltile,
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/firedoor/border_only{
+ dir = 1
+ },
+/turf/open/floor/plasteel/tech,
+/area/outpost/maintenance/fore)
+"FE" = (
+/obj/structure/mopbucket,
+/obj/item/mop,
+/obj/effect/turf_decal/industrial/outline/yellow,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating/rust,
+/area/outpost/maintenance/fore)
+"FG" = (
+/obj/effect/decal/fakelattice,
+/mob/living/simple_animal/pet/mothroach{
+ name = "Mittens"
+ },
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/plating{
+ icon_state = "platingdmg2"
+ },
+/area/outpost/maintenance/starboard)
+"FH" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 6
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"FO" = (
+/obj/effect/turf_decal/industrial/warning/fulltile,
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/firedoor/border_only{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/outpost{
+ assemblytype = /obj/structure/door_assembly/door_assembly_mhatch;
+ icon = 'icons/obj/doors/airlocks/hatch/maintenance.dmi';
+ overlays_file = 'icons/obj/doors/airlocks/hatch/overlays.dmi';
+ req_access_txt = "101";
+ dir = 1
+ },
+/turf/open/floor/plasteel/tech,
+/area/outpost/security/checkpoint)
+"FQ" = (
+/obj/effect/turf_decal/siding/white,
+/obj/effect/turf_decal/siding/white/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/white/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2,
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/tech,
+/area/outpost/security)
+"FV" = (
+/turf/closed/indestructible/reinforced,
+/area/outpost/crew/lounge)
+"FX" = (
+/obj/structure/filingcabinet/double/grey,
+/obj/item/documents/nanotrasen,
+/turf/open/floor/plasteel/telecomms_floor,
+/area/outpost/security)
+"FY" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/siding/wood{
+ color = "#543C30";
+ dir = 6
+ },
+/turf/open/floor/carpet/green,
+/area/outpost/crew/bar)
+"Gg" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white/corner,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"Gn" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/closet/firecloset,
+/obj/effect/turf_decal/industrial/outline/yellow,
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/plating,
+/area/outpost/security)
+"Gv" = (
+/obj/effect/turf_decal/corner/opaque/neutral,
+/obj/effect/turf_decal/siding/white,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/patterned,
+/area/outpost/vacant_rooms/shop)
+"GC" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/crate/bin,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 5
+ },
+/obj/machinery/power/apc/auto_name/directional/west,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 5
+ },
+/obj/item/trash/chips,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/item/trash/candy,
+/turf/open/floor/wood/walnut,
+/area/outpost/crew/bar)
+"GD" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white,
+/obj/structure/railing{
+ layer = 4.1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"GO" = (
+/obj/machinery/vending/coffee,
+/obj/effect/turf_decal/siding/wood/end{
+ dir = 8;
+ color = "#543C30"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/concrete/tiles,
+/area/outpost/crew/lounge)
+"GS" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 10
+ },
+/obj/machinery/advanced_airlock_controller/internal{
+ pixel_x = 28
+ },
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"GU" = (
+/obj/effect/turf_decal/industrial/warning/fulltile,
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/obj/machinery/door/airlock/maintenance{
+ dir = 4
+ },
+/turf/open/floor/plasteel/tech,
+/area/outpost/maintenance/starboard)
+"GX" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 6
+ },
+/obj/machinery/light/small/broken/directional/north,
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/open/floor/plating,
+/area/outpost/maintenance/starboard)
+"Hc" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/visible/layer4{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/outpost/engineering/atmospherics)
+"Hd" = (
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/external)
+"Hf" = (
+/turf/closed/indestructible/reinforced,
+/area/outpost/external)
+"Hh" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/siding/white/end{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/turf/open/floor/plasteel/patterned,
+/area/outpost/vacant_rooms/shop)
+"Hm" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/on{
+ dir = 4
+ },
+/turf/open/floor/engine/air,
+/area/outpost/engineering/atmospherics)
+"Ho" = (
+/obj/structure/flora/grass/green,
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"Hq" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2,
+/obj/structure/sign/poster/retro/random{
+ pixel_x = 32
+ },
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"Hr" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/railing/corner{
+ layer = 4.1
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 5
+ },
+/obj/machinery/conveyor_switch/oneway{
+ pixel_x = 6;
+ pixel_y = -6;
+ id = "smelter2"
+ },
+/turf/open/floor/plasteel/patterned,
+/area/outpost/cargo/smeltery)
+"Hw" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"HB" = (
+/obj/effect/turf_decal/siding/wood{
+ color = "#543C30";
+ dir = 1
+ },
+/obj/item/radio/intercom/directional/north,
+/turf/open/floor/concrete/tiles,
+/area/outpost/crew/bar)
+"HF" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/corner/opaque/neutral,
+/obj/effect/decal/cleanable/confetti,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 10
+ },
+/turf/open/floor/plasteel/patterned,
+/area/outpost/vacant_rooms/shop)
+"HI" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/techfloor{
+ dir = 1
+ },
+/obj/structure/table/reinforced,
+/obj/item/flashlight/lamp{
+ pixel_x = -5;
+ pixel_y = 8
+ },
+/obj/structure/sign/poster/retro/random{
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel/tech/techmaint,
+/area/outpost/engineering/atmospherics)
+"HS" = (
+/obj/structure/flora/grass/green{
+ layer = 3.1
+ },
+/obj/item/trash/candy{
+ pixel_x = -2
+ },
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"HW" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/obj/effect/turf_decal/borderfloor{
+ dir = 8
+ },
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"Im" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/turf/open/floor/plasteel/patterned,
+/area/outpost/cargo/smeltery)
+"Io" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/trash/can/food/beans{
+ pixel_x = -16
+ },
+/obj/item/trash/can/food/beans{
+ pixel_y = 12;
+ pixel_x = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/light/dim/directional/south,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/dark,
+/area/outpost/vacant_rooms/shop)
+"Ip" = (
+/obj/machinery/door/window/brigdoor/eastleft{
+ req_one_access_txt = "101"
+ },
+/obj/structure/window/reinforced/spawner,
+/obj/effect/turf_decal/siding/white,
+/obj/effect/turf_decal/siding/white,
+/obj/effect/turf_decal/siding/thinplating/dark{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/outpost/security)
+"Ir" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/shutters{
+ dir = 4;
+ id = "ice_shop1_window"
+ },
+/turf/open/floor/plating,
+/area/outpost/vacant_rooms/shop)
+"Iv" = (
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/borderfloor{
+ dir = 10
+ },
+/obj/structure/window/reinforced,
+/obj/machinery/paystand,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/floor/plasteel/patterned/ridged,
+/area/outpost/vacant_rooms/shop)
+"Iw" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/obj/effect/turf_decal/borderfloor{
+ dir = 8
+ },
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/machinery/light/small/directional/north,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"Iy" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/industrial/outline/yellow,
+/obj/structure/mopbucket,
+/obj/item/caution{
+ pixel_y = 18;
+ pixel_x = -3
+ },
+/obj/item/mop,
+/obj/effect/decal/cleanable/greenglow,
+/turf/open/floor/plating,
+/area/outpost/vacant_rooms/shop)
+"IC" = (
+/obj/machinery/door/airlock/outpost{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/locked,
+/obj/effect/turf_decal/industrial/warning/fulltile,
+/turf/open/floor/plasteel/tech,
+/area/outpost/external)
+"IH" = (
+/obj/structure/flora/grass/both{
+ layer = 3.1
+ },
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"IM" = (
+/obj/structure/flora/grass/jungle/b,
+/obj/structure/flora/grass/rockplanet,
+/obj/structure/flora/rock/pile{
+ density = 0
+ },
+/obj/structure/flora/ausbushes/brflowers,
+/turf/open/floor/plating/grass,
+/area/outpost/maintenance/fore)
+"IV" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 10
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plating,
+/area/outpost/maintenance/starboard)
+"Ja" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/obj/effect/turf_decal/borderfloor{
+ dir = 4
+ },
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"Jb" = (
+/turf/open/floor/plating/asteroid/icerock/temperate,
+/area/outpost/external)
+"Jd" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"Jf" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/siding/white,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/oil,
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/plasteel/tech/techmaint,
+/area/outpost/maintenance/starboard)
+"Ji" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/trinary/filter/atmos/o2{
+ piping_layer = 2
+ },
+/obj/structure/extinguisher_cabinet/directional/east,
+/turf/open/floor/plating,
+/area/outpost/engineering/atmospherics)
+"JD" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/borderfloor/full,
+/obj/effect/turf_decal/industrial/warning,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/railing{
+ layer = 4.1
+ },
+/turf/open/floor/plating,
+/area/outpost/maintenance/port)
+"JG" = (
+/obj/structure/girder,
+/turf/open/floor/plating,
+/area/outpost/maintenance/starboard)
+"JJ" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/sign/poster/retro/random{
+ pixel_x = 32
+ },
+/turf/open/floor/plating/rust,
+/area/outpost/maintenance/fore)
+"JM" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/firealarm/directional/north,
+/turf/open/floor/plating,
+/area/outpost/maintenance/starboard)
+"JN" = (
+/obj/effect/turf_decal/borderfloor,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"Ka" = (
+/obj/effect/decal/fakelattice,
+/obj/structure/railing,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/elevatorshaft,
+/area/outpost/maintenance/port)
+"Kc" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/techfloor,
+/obj/structure/railing{
+ layer = 4.1
+ },
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/obj/item/pen,
+/turf/open/floor/plasteel/tech/techmaint,
+/area/outpost/engineering/atmospherics)
+"Ke" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/effect/turf_decal/borderfloor,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"Kl" = (
+/obj/effect/turf_decal/techfloor{
+ dir = 1
+ },
+/obj/machinery/button/door{
+ pixel_y = 28;
+ id = "ice_ERT_bay";
+ name = "Bay Door";
+ pixel_x = 3;
+ req_one_access_txt = "101"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/turf/open/floor/plasteel/tech/grid,
+/area/outpost/security/armory)
+"KD" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/structure/sign/nanotrasen{
+ pixel_x = 32
+ },
+/obj/machinery/light/dim/directional/north,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"KN" = (
+/obj/machinery/light/dim/directional/east,
+/obj/structure/table/reinforced,
+/obj/item/newspaper{
+ pixel_x = -3;
+ pixel_y = 2
+ },
+/obj/item/reagent_containers/food/drinks/mug{
+ pixel_x = 9;
+ pixel_y = 4
+ },
+/obj/item/cigbutt{
+ pixel_x = 3
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood/walnut,
+/area/outpost/crew/bar)
+"KO" = (
+/obj/effect/turf_decal/siding/white,
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
+/obj/structure/railing{
+ layer = 4.1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"KR" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/techfloor,
+/turf/open/floor/plasteel/tech/grid,
+/area/outpost/security/armory)
+"KS" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/siding/wood{
+ color = "#543C30";
+ dir = 10
+ },
+/turf/open/floor/carpet/green,
+/area/outpost/crew/bar)
+"KU" = (
+/obj/structure/toilet{
+ dir = 1
+ },
+/obj/structure/curtain,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned/brushed,
+/area/outpost/crew/bathroom)
+"KX" = (
+/obj/effect/turf_decal/siding/white,
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/ash,
+/obj/item/cigbutt{
+ pixel_x = 3
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"La" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 10
+ },
+/turf/open/floor/plasteel/patterned,
+/area/outpost/crew/cryo)
+"Lb" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"Lw" = (
+/obj/machinery/door/airlock/grunge,
+/obj/effect/turf_decal/industrial/stand_clear{
+ dir = 1
+ },
+/obj/effect/turf_decal/industrial/traffic,
+/obj/effect/turf_decal/industrial/traffic{
+ dir = 1
+ },
+/obj/effect/landmark/outpost/elevator_machine{
+ shaft = "1"
+ },
+/turf/open/floor/plasteel/patterned/brushed,
+/area/outpost/maintenance/port)
+"LB" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 8
+ },
+/obj/effect/turf_decal/borderfloor,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/patterned/brushed,
+/area/outpost/crew/bathroom)
+"LJ" = (
+/turf/closed/indestructible/reinforced,
+/area/outpost/crew/cryo)
+"LO" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/grille/broken,
+/obj/item/stack/cable_coil/cut/red{
+ pixel_y = 10;
+ pixel_x = -3
+ },
+/obj/machinery/atmospherics/components/unary/portables_connector/layer2{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/scrubber,
+/obj/effect/decal/cleanable/oil,
+/obj/machinery/power/apc/auto_name/directional/west,
+/obj/machinery/light/small/directional/north,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating/rust,
+/area/outpost/maintenance/port)
+"LS" = (
+/obj/structure/closet/secure_closet/ertSec{
+ anchored = 1
+ },
+/obj/effect/turf_decal/industrial/outline/red,
+/obj/machinery/door/window/brigdoor/southleft{
+ req_one_access_txt = "103"
+ },
+/obj/structure/window/reinforced/spawner{
+ dir = 4
+ },
+/obj/item/stack/sheet/mineral/sandbags,
+/obj/item/stack/sheet/mineral/sandbags,
+/obj/item/stack/sheet/mineral/sandbags,
+/obj/item/stack/sheet/mineral/sandbags,
+/obj/item/stack/sheet/mineral/sandbags,
+/obj/item/stack/sheet/mineral/sandbags,
+/obj/item/stack/sheet/mineral/sandbags,
+/obj/item/stack/sheet/mineral/sandbags,
+/obj/item/stack/sheet/mineral/sandbags,
+/obj/item/stack/sheet/mineral/sandbags,
+/obj/item/holosign_creator/security,
+/turf/open/floor/plasteel/dark,
+/area/outpost/security/armory)
+"LT" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/siding/white,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/machinery/holopad/emergency/security,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/turf/open/floor/plasteel/tech,
+/area/outpost/security)
+"LU" = (
+/obj/effect/turf_decal/techfloor{
+ dir = 1
+ },
+/obj/machinery/pipedispenser,
+/obj/effect/turf_decal/industrial/outline/yellow,
+/obj/machinery/light/dim/directional/north,
+/turf/open/floor/plasteel/tech/techmaint,
+/area/outpost/engineering/atmospherics)
+"Md" = (
+/obj/structure/flora/grass/both{
+ layer = 3.1
+ },
+/obj/item/trash/energybar,
+/obj/item/trash/sosjerky{
+ pixel_x = 8;
+ pixel_y = 12
+ },
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"Mf" = (
+/obj/structure/rack,
+/obj/effect/turf_decal/industrial/outline/yellow,
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plating,
+/area/outpost/security)
+"Mi" = (
+/obj/machinery/camera{
+ dir = 10
+ },
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"Mr" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/borderfloor/full,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2{
+ dir = 4
+ },
+/turf/open/floor/plasteel/patterned/cargo_one{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"Ms" = (
+/obj/machinery/camera{
+ dir = 1
+ },
+/obj/machinery/firealarm/directional/south,
+/mob/living/simple_animal/bot/cleanbot{
+ name = "\improper Elite Custodial Officer";
+ desc = "Pray for your life, litter!"
+ },
+/mob/living/simple_animal/bot/cleanbot{
+ name = "\improper Elite Custodial Officer";
+ desc = "Pray for your life, litter!"
+ },
+/mob/living/simple_animal/bot/cleanbot{
+ name = "\improper Elite Custodial Officer";
+ desc = "Pray for your life, litter!"
+ },
+/obj/structure/closet/jcloset,
+/obj/machinery/door/window/brigdoor/northleft,
+/obj/structure/window/reinforced/spawner/west,
+/turf/open/floor/plasteel/telecomms_floor,
+/area/outpost/security/armory)
+"Mv" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 10
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"Mz" = (
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"MJ" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white,
+/obj/machinery/holopad/emergency/security,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/tech,
+/area/outpost/security/checkpoint)
+"MK" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/machinery/camera{
+ dir = 4
+ },
+/turf/open/floor/plasteel/telecomms_floor,
+/area/outpost/security/checkpoint)
+"ML" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/siding/white{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/patterned,
+/area/outpost/cargo/smeltery)
+"MR" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/directional/north,
+/obj/structure/extinguisher_cabinet/directional/west,
+/turf/open/floor/plasteel/patterned,
+/area/outpost/cargo/smeltery)
+"MW" = (
+/obj/structure/closet/emcloset,
+/obj/item/clothing/suit/hooded/wintercoat,
+/obj/item/clothing/suit/hooded/wintercoat,
+/obj/item/clothing/suit/hooded/wintercoat,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating{
+ icon_state = "platingdmg2"
+ },
+/area/outpost/maintenance/fore)
+"Nb" = (
+/obj/structure/table/reinforced,
+/obj/item/reagent_containers/food/drinks/mug{
+ pixel_y = 9;
+ pixel_x = 6
+ },
+/obj/item/phone{
+ pixel_x = -5;
+ pixel_y = 7
+ },
+/obj/machinery/button/door{
+ id = "ice_sec1_window";
+ name = "Window Shutters";
+ pixel_x = 6;
+ req_one_access_txt = "101"
+ },
+/obj/machinery/button/door{
+ id = "ice_exterior_port";
+ name = "Exterior Door";
+ pixel_x = -6;
+ req_one_access_txt = "101"
+ },
+/turf/open/floor/plasteel/telecomms_floor,
+/area/outpost/security)
+"Nh" = (
+/turf/closed/indestructible/reinforced,
+/area/outpost/exterior)
+"Nl" = (
+/obj/machinery/computer/secure_data{
+ icon_state = "computer-left"
+ },
+/turf/open/floor/plasteel/telecomms_floor,
+/area/outpost/security)
+"Nn" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"Nu" = (
+/obj/structure/girder,
+/obj/structure/grille/broken,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"NA" = (
+/obj/effect/spawner/structure/window/reinforced/indestructable,
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"NG" = (
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"NM" = (
+/turf/open/floor/engine/air,
+/area/outpost/engineering/atmospherics)
+"NW" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/techfloor,
+/obj/structure/railing{
+ layer = 4.1
+ },
+/obj/effect/decal/cleanable/oil,
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/tech/techmaint,
+/area/outpost/engineering/atmospherics)
+"Od" = (
+/obj/machinery/vending/cola/space_up,
+/obj/effect/turf_decal/industrial/hatch/yellow,
+/turf/open/floor/plasteel/dark,
+/area/outpost/cargo/smeltery)
+"Og" = (
+/obj/structure/statue/snow/snowman,
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/external)
+"Oh" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 10
+ },
+/obj/effect/turf_decal/siding/white/corner{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"Ol" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/effect/turf_decal/borderfloor,
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"On" = (
+/obj/effect/turf_decal/industrial/warning/fulltile,
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance{
+ dir = 4;
+ req_one_access_txt = "101"
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/tech,
+/area/outpost/cargo/smeltery)
+"Oo" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/borderfloor/full,
+/turf/open/floor/plasteel/tech,
+/area/outpost/maintenance/starboard)
+"OC" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/turf/open/floor/plasteel/patterned,
+/area/outpost/cargo/smeltery)
+"OD" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/industrial/warning,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/tech/techmaint,
+/area/outpost/vacant_rooms/shop)
+"OF" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/machinery/power/apc/auto_name/directional/west,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plasteel/tech,
+/area/outpost/security/armory)
+"OR" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"OW" = (
+/obj/effect/turf_decal/siding/wood{
+ color = "#543C30";
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 8
+ },
+/turf/open/floor/carpet/green,
+/area/outpost/crew/lounge)
+"Pc" = (
+/obj/structure/aquarium/prefilled,
+/obj/effect/turf_decal/siding/wood{
+ color = "#543C30";
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/wood{
+ color = "#543C30";
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood/walnut,
+/area/outpost/crew/bar)
+"Pd" = (
+/obj/structure/flora/tree/pine,
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/external)
+"Pe" = (
+/obj/effect/decal/fakelattice,
+/obj/machinery/light/small/directional/east{
+ pixel_y = -6
+ },
+/obj/structure/railing,
+/obj/effect/decal/cleanable/greenglow{
+ color = "#808080"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/elevatorshaft,
+/area/outpost/maintenance/port)
+"Pf" = (
+/obj/structure/table_frame,
+/obj/item/trash/sosjerky{
+ pixel_x = 8;
+ pixel_y = 12
+ },
+/obj/item/trash/pistachios{
+ pixel_x = -4
+ },
+/turf/open/floor/plating/asteroid/icerock/temperate,
+/area/outpost/exterior)
+"Pj" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/grille/broken,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/open/floor/plating/rust,
+/area/outpost/maintenance/fore)
+"Pk" = (
+/obj/effect/turf_decal/borderfloor/full,
+/obj/machinery/light/floor,
+/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/patterned/cargo_one{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"Pr" = (
+/obj/effect/turf_decal/borderfloor/full,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/obj/item/radio/intercom/directional/east,
+/turf/open/floor/plasteel/tech,
+/area/outpost/security)
+"Pz" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2,
+/obj/machinery/airalarm/directional/east,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating/rust,
+/area/outpost/maintenance/port)
+"PA" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{
+ dir = 1
+ },
+/obj/effect/turf_decal/borderfloor,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/patterned/brushed,
+/area/outpost/crew/bathroom)
+"PD" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 9
+ },
+/obj/item/radio/intercom/directional/north,
+/obj/item/storage/secure/safe{
+ dir = 8;
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel/patterned/ridged,
+/area/outpost/vacant_rooms/shop)
+"PK" = (
+/obj/structure/closet/firecloset,
+/obj/effect/decal/cleanable/oil,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/sign/poster/retro/random{
+ pixel_y = -32
+ },
+/turf/open/floor/plating/rust,
+/area/outpost/maintenance/fore)
+"PN" = (
+/obj/structure/rack,
+/obj/effect/turf_decal/industrial/outline/yellow,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plasteel/tech,
+/area/outpost/vacant_rooms/shop)
+"PT" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating/rust,
+/area/outpost/maintenance/fore)
+"PU" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"PW" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/corner/opaque/neutral,
+/obj/effect/turf_decal/siding/white{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 9
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel/patterned,
+/area/outpost/vacant_rooms/shop)
+"Qe" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/borderfloor/full,
+/obj/effect/turf_decal/industrial/warning,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/tech/techmaint,
+/area/outpost/security)
+"Qf" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/wood{
+ color = "#543C30";
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood/walnut,
+/area/outpost/crew/bar)
+"Qk" = (
+/obj/effect/turf_decal/siding/white/corner,
+/obj/effect/turf_decal/borderfloor{
+ dir = 8
+ },
+/obj/structure/railing/corner{
+ layer = 4.1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"Ql" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating/rust,
+/area/outpost/maintenance/starboard)
+"Qn" = (
+/obj/effect/decal/fakelattice,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/elevatorshaft,
+/area/outpost/maintenance/port)
+"Qr" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/plating,
+/area/outpost/maintenance/starboard)
+"Qs" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/industrial/warning,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/oil/slippery,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/airalarm/directional/south,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/tech/techmaint,
+/area/outpost/vacant_rooms/shop)
+"Qu" = (
+/obj/effect/turf_decal/siding/wood{
+ color = "#543C30";
+ dir = 9
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/carpet/green,
+/area/outpost/crew/lounge)
+"Qv" = (
+/obj/effect/turf_decal/industrial/traffic,
+/obj/effect/turf_decal/industrial/traffic{
+ dir = 1
+ },
+/obj/machinery/door/poddoor/ert,
+/turf/open/floor/plasteel/patterned/brushed,
+/area/outpost/maintenance/port)
+"Qx" = (
+/obj/effect/turf_decal/industrial/hatch/yellow,
+/obj/machinery/light/directional/north,
+/obj/machinery/mineral/processing_unit_console{
+ machinedir = 8;
+ output_dir = 1;
+ pixel_x = 32
+ },
+/turf/open/floor/plasteel/patterned,
+/area/outpost/cargo/smeltery)
+"QC" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/obj/structure/sign/poster/retro/random{
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel/tech/techmaint,
+/area/outpost/maintenance/fore)
+"QL" = (
+/obj/structure/table/reinforced,
+/obj/machinery/camera{
+ dir = 1
+ },
+/obj/structure/sign/poster/official/random{
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel/telecomms_floor,
+/area/outpost/security/checkpoint)
+"QN" = (
+/obj/item/trash/raisins{
+ pixel_x = -8
+ },
+/obj/item/trash/pistachios{
+ pixel_y = 10;
+ pixel_x = 4
+ },
+/obj/structure/flora/grass/both{
+ layer = 3.1
+ },
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"QP" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/trimline/transparent/neutral/arrow_ccw,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/structure/extinguisher_cabinet/directional/west,
+/turf/open/floor/plasteel/patterned,
+/area/outpost/vacant_rooms/shop)
+"QU" = (
+/obj/machinery/cryopod,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/camera,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/crew/cryo)
+"QV" = (
+/turf/closed/indestructible/reinforced,
+/area/outpost/security/checkpoint)
+"QY" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/obj/effect/turf_decal/industrial/warning/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/door/airlock/outpost{
+ assemblytype = /obj/structure/door_assembly/door_assembly_mhatch;
+ icon = 'icons/obj/doors/airlocks/hatch/maintenance.dmi';
+ overlays_file = 'icons/obj/doors/airlocks/hatch/overlays.dmi';
+ req_access_txt = "101";
+ dir = 4;
+ name = "Atmospherics"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/tech,
+/area/outpost/engineering/atmospherics)
+"Rb" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"Rc" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/obj/machinery/light/dim/directional/south,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned,
+/area/outpost/crew/bathroom)
+"Rg" = (
+/obj/machinery/mineral/processing_unit{
+ output_dir = 4;
+ input_dir = 8
+ },
+/obj/effect/turf_decal/industrial/outline/yellow,
+/turf/open/floor/plasteel/dark,
+/area/outpost/cargo/smeltery)
+"Rh" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/binary/pump/on/layer4{
+ dir = 4;
+ target_pressure = 500
+ },
+/turf/open/floor/plating,
+/area/outpost/engineering/atmospherics)
+"Rj" = (
+/obj/effect/turf_decal/techfloor{
+ dir = 8
+ },
+/obj/structure/frame/machine,
+/obj/item/stack/cable_coil/cut/red,
+/obj/structure/sign/poster/contraband/random{
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel/tech/techmaint,
+/area/outpost/maintenance/starboard)
+"Rn" = (
+/obj/structure/chair/stool{
+ dir = 8
+ },
+/turf/open/floor/plating/asteroid/icerock/temperate{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"Rs" = (
+/obj/effect/turf_decal/siding/wood{
+ color = "#543C30";
+ dir = 5
+ },
+/turf/open/floor/carpet/green,
+/area/outpost/crew/lounge)
+"Rv" = (
+/obj/effect/turf_decal/industrial/warning/fulltile,
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/maintenance{
+ dir = 4
+ },
+/turf/open/floor/plasteel/tech,
+/area/outpost/vacant_rooms/shop)
+"RA" = (
+/obj/structure/table/wood/reinforced,
+/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{
+ pixel_y = 5;
+ pixel_x = -4
+ },
+/obj/item/table_bell{
+ pixel_x = 8;
+ pixel_y = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 5
+ },
+/turf/open/floor/wood/walnut,
+/area/outpost/crew/bar)
+"RC" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 6
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"RD" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned,
+/area/outpost/crew/bathroom)
+"RP" = (
+/obj/effect/turf_decal/borderfloor/full,
+/obj/machinery/light/floor,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel/patterned/cargo_one{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"RU" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 10
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"Sc" = (
+/obj/structure/reagent_dispensers/water_cooler{
+ pixel_y = 4;
+ pixel_x = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood/walnut,
+/area/outpost/crew/lounge)
+"Sf" = (
+/obj/structure/flora/grass/both{
+ layer = 3.1
+ },
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/external)
+"Sh" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/reagent_dispensers/fueltank,
+/obj/effect/turf_decal/industrial/hatch/yellow,
+/obj/effect/decal/cleanable/wrapping,
+/obj/machinery/light/dim/directional/north,
+/turf/open/floor/plating,
+/area/outpost/security)
+"Si" = (
+/obj/effect/turf_decal/corner/opaque/neutral,
+/obj/effect/turf_decal/siding/white,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel/patterned,
+/area/outpost/vacant_rooms/shop)
+"Sp" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white,
+/obj/structure/railing{
+ layer = 4.1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"Sq" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/borderfloor/full,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/structure/cable{
+ icon_state = "0-1"
+ },
+/obj/machinery/airalarm/directional/east,
+/turf/open/floor/plasteel/tech,
+/area/outpost/security/checkpoint)
+"Sr" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing{
+ layer = 4.1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/box,
+/obj/structure/closet/crate,
+/turf/open/floor/plasteel/patterned,
+/area/outpost/cargo/smeltery)
+"Sz" = (
+/obj/effect/turf_decal/industrial/loading{
+ dir = 4
+ },
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/outpost/cargo/smeltery)
+"SA" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/borderfloor{
+ dir = 10
+ },
+/obj/effect/turf_decal/siding/white/corner{
+ dir = 4
+ },
+/obj/structure/railing/corner{
+ dir = 4
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"SD" = (
+/obj/effect/spawner/structure/window/reinforced/indestructable,
+/turf/open/floor/plating,
+/area/outpost/cargo/smeltery)
+"SG" = (
+/turf/closed/wall/r_wall/rust,
+/area/outpost/maintenance/fore)
+"SH" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/newscaster/directional/south,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood/walnut,
+/area/outpost/crew/lounge)
+"SW" = (
+/obj/effect/turf_decal/siding/white,
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
+/obj/structure/railing{
+ layer = 4.1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"SY" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/outpost/crew/lounge)
+"Tb" = (
+/obj/effect/turf_decal/siding/white,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/turf/open/floor/plasteel/tech,
+/area/outpost/security)
+"Td" = (
+/obj/effect/decal/fakelattice{
+ layer = 2.010
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/elevatorshaft,
+/area/outpost/maintenance/port)
+"Te" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/machinery/light/directional/east,
+/obj/structure/closet/secure_closet/brig,
+/turf/open/floor/plasteel/telecomms_floor,
+/area/outpost/security)
+"Tf" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2{
+ dir = 1
+ },
+/turf/open/floor/plasteel/tech,
+/area/outpost/security/armory)
+"Ti" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"Tm" = (
+/turf/open/floor/plating/asteroid/icerock/temperate{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"Tn" = (
+/obj/machinery/blackbox_recorder,
+/turf/open/floor/plasteel/telecomms_floor,
+/area/outpost/security)
+"To" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{
+ dir = 1
+ },
+/obj/effect/turf_decal/borderfloor{
+ dir = 10
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/patterned/brushed,
+/area/outpost/crew/bathroom)
+"Tv" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4,
+/turf/open/floor/wood/walnut{
+ icon_state = "wood-broken7"
+ },
+/area/outpost/crew/bar)
+"Ty" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/garbage,
+/turf/open/floor/plasteel/dark,
+/area/outpost/vacant_rooms/shop)
+"TJ" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"TP" = (
+/obj/effect/turf_decal/borderfloor,
+/obj/machinery/light/small/directional/west,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"TS" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plating{
+ icon_state = "foam_plating"
+ },
+/area/outpost/maintenance/fore)
+"TX" = (
+/obj/structure/flora/rock/pile/icy,
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/external)
+"TZ" = (
+/obj/structure/flora/grass/both{
+ layer = 3.1
+ },
+/obj/item/broken_bottle{
+ pixel_x = 4
+ },
+/obj/item/cigbutt,
+/obj/item/cigbutt{
+ pixel_y = 6;
+ pixel_x = -8
+ },
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"Ub" = (
+/obj/effect/turf_decal/industrial/traffic{
+ dir = 4
+ },
+/obj/effect/turf_decal/industrial/traffic{
+ dir = 8
+ },
+/obj/machinery/door/poddoor/ert{
+ dir = 8;
+ id = "ice_exterior_port"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed,
+/area/outpost/exterior)
+"Ud" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 10
+ },
+/obj/structure/closet/crate/bin,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 5
+ },
+/obj/machinery/firealarm/directional/west,
+/obj/item/trash/can,
+/obj/item/trash/raisins,
+/turf/open/floor/plasteel/patterned,
+/area/outpost/cargo/smeltery)
+"Ue" = (
+/obj/effect/turf_decal/industrial/warning/fulltile,
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/door/airlock/outpost{
+ assemblytype = /obj/structure/door_assembly/door_assembly_mhatch;
+ icon = 'icons/obj/doors/airlocks/hatch/maintenance.dmi';
+ overlays_file = 'icons/obj/doors/airlocks/hatch/overlays.dmi';
+ req_access_txt = "101";
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/tech,
+/area/outpost/security)
+"Uf" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/extinguisher_cabinet/directional/north,
+/turf/open/floor/plating,
+/area/outpost/maintenance/starboard)
+"Uh" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/girder,
+/turf/open/floor/plating,
+/area/outpost/maintenance/port)
+"Uk" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/machinery/light/dim/directional/north,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"Uo" = (
+/obj/effect/turf_decal/industrial/warning/fulltile,
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/door/airlock/outpost{
+ dir = 4
+ },
+/turf/open/floor/plasteel/tech,
+/area/outpost/security)
+"Uy" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/siding/white{
+ dir = 5
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/patterned,
+/area/outpost/cargo/smeltery)
+"UA" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 6
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"UB" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/trash/can/food/beans{
+ pixel_x = 8;
+ pixel_y = 4
+ },
+/obj/effect/decal/fakelattice,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 9
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/firealarm/directional/south,
+/turf/open/floor/plating{
+ icon_state = "foam_plating"
+ },
+/area/outpost/vacant_rooms/shop)
+"UF" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white/corner{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"UP" = (
+/obj/item/reagent_containers/food/drinks/beer{
+ pixel_y = 12;
+ pixel_x = -4
+ },
+/obj/item/trash/energybar,
+/obj/item/cigbutt/cigarbutt{
+ pixel_y = 6;
+ pixel_x = 5
+ },
+/obj/structure/table,
+/turf/open/floor/plating/asteroid/icerock/temperate{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"UQ" = (
+/obj/effect/decal/fakelattice{
+ layer = 2.010
+ },
+/obj/effect/landmark/outpost/elevator{
+ shaft = "1"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/elevatorshaft,
+/area/outpost/maintenance/port)
+"UY" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/mopbucket,
+/obj/item/mop,
+/turf/open/floor/plating/rust,
+/area/outpost/maintenance/starboard)
+"Vm" = (
+/obj/effect/decal/fakelattice{
+ layer = 2.010
+ },
+/turf/open/floor/plasteel/elevatorshaft,
+/area/outpost/maintenance/port)
+"Vw" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "ice_shop2_window"
+ },
+/turf/open/floor/plating,
+/area/outpost/vacant_rooms/shop)
+"VI" = (
+/obj/effect/spawner/structure/window/reinforced/indestructable,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "ice_bar_window"
+ },
+/turf/open/floor/plating,
+/area/outpost/crew/bar)
+"VQ" = (
+/obj/effect/turf_decal/siding/wood{
+ color = "#543C30";
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc/auto_name/directional/south,
+/turf/open/floor/carpet/green,
+/area/outpost/crew/lounge)
+"VR" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"VW" = (
+/obj/machinery/door/airlock{
+ dir = 4;
+ name = "Lounge"
+ },
+/obj/effect/turf_decal/industrial/warning/fulltile,
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/tech,
+/area/outpost/crew/lounge)
+"We" = (
+/turf/closed/indestructible/reinforced,
+/area/outpost/security/armory)
+"Wh" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/obj/structure/extinguisher_cabinet/directional/south,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/tech,
+/area/outpost/security)
+"Wq" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 9
+ },
+/obj/structure/extinguisher_cabinet/directional/south,
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/firealarm/directional/east,
+/turf/open/floor/wood/walnut,
+/area/outpost/crew/bar)
+"Ws" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/industrial/warning/fulltile,
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/obj/machinery/door/airlock/outpost{
+ assemblytype = /obj/structure/door_assembly/door_assembly_mhatch;
+ icon = 'icons/obj/doors/airlocks/hatch/maintenance.dmi';
+ overlays_file = 'icons/obj/doors/airlocks/hatch/overlays.dmi';
+ req_access_txt = "101";
+ dir = 4;
+ name = "Engineering"
+ },
+/turf/open/floor/plasteel/tech,
+/area/outpost/maintenance/starboard)
+"Wu" = (
+/obj/effect/turf_decal/siding/white/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/borderfloor{
+ dir = 5
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"Ww" = (
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"Wy" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 5
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/effect/decal/cleanable/garbage{
+ pixel_x = -6;
+ pixel_y = -4
+ },
+/obj/structure/sign/poster/contraband/random{
+ pixel_x = -32
+ },
+/turf/open/floor/plating,
+/area/outpost/maintenance/starboard)
+"Wz" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/obj/effect/turf_decal/borderfloor{
+ dir = 4
+ },
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/machinery/light/small/directional/south,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"WA" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/machinery/airalarm/directional/east,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood/walnut,
+/area/outpost/crew/lounge)
+"WB" = (
+/obj/effect/decal/cleanable/ash,
+/obj/item/cigbutt{
+ pixel_x = 3
+ },
+/obj/item/cigbutt{
+ pixel_x = -5;
+ pixel_y = 4
+ },
+/obj/item/reagent_containers/food/drinks/beer{
+ pixel_y = 10;
+ pixel_x = -12
+ },
+/obj/item/reagent_containers/food/snacks/deadmouse{
+ pixel_y = 14;
+ pixel_x = 12
+ },
+/turf/open/floor/plating/asteroid/icerock/temperate{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"WI" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/obj/effect/turf_decal/borderfloor{
+ dir = 8
+ },
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"WL" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/effect/turf_decal/borderfloor,
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"WM" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 5
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"WS" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 5
+ },
+/obj/structure/extinguisher_cabinet/directional/south,
+/turf/open/floor/plasteel/dark,
+/area/outpost/vacant_rooms/shop)
+"Xa" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/plating,
+/area/outpost/maintenance/starboard)
+"Xd" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "0-1"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"Xf" = (
+/obj/item/kirbyplants{
+ icon_state = "plant-17";
+ pixel_x = 8
+ },
+/obj/item/kirbyplants{
+ icon_state = "plant-22";
+ pixel_x = -7;
+ pixel_y = 7
+ },
+/obj/machinery/button/door{
+ id = "ice_lounge_window";
+ name = "Window Shutters";
+ pixel_y = 6;
+ pixel_x = -26;
+ dir = 4
+ },
+/obj/machinery/light_switch{
+ pixel_x = -22;
+ pixel_y = -10;
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood/walnut,
+/area/outpost/crew/lounge)
+"Xk" = (
+/obj/effect/turf_decal/siding/white/end{
+ dir = 4
+ },
+/obj/machinery/airalarm/directional/south,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/patterned,
+/area/outpost/crew/cryo)
+"Xm" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/turf/open/floor/plasteel/tech,
+/area/outpost/security)
+"Xn" = (
+/obj/effect/turf_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"Xq" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/siding/white{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 5
+ },
+/turf/open/floor/plasteel/dark,
+/area/outpost/cargo/smeltery)
+"Xv" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/industrial/warning/fulltile,
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/firedoor/border_only{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/maintenance{
+ dir = 1
+ },
+/turf/open/floor/plasteel/tech,
+/area/outpost/vacant_rooms/shop)
+"Xw" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing{
+ layer = 4.1
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/plasteel/patterned,
+/area/outpost/cargo/smeltery)
+"Xx" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned,
+/area/outpost/crew/bathroom)
+"Xz" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 5
+ },
+/turf/open/floor/plasteel/dark,
+/area/outpost/cargo/smeltery)
+"XB" = (
+/obj/machinery/door/poddoor/ert{
+ dir = 8;
+ id = "ice_ERT_maint"
+ },
+/obj/effect/turf_decal/industrial/warning/fulltile,
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/door/airlock/outpost{
+ assemblytype = /obj/structure/door_assembly/door_assembly_mhatch;
+ icon = 'icons/obj/doors/airlocks/hatch/maintenance.dmi';
+ overlays_file = 'icons/obj/doors/airlocks/hatch/overlays.dmi';
+ req_access_txt = "101";
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/tech,
+/area/outpost/security/armory)
+"XG" = (
+/obj/structure/table/reinforced,
+/obj/machinery/fax,
+/obj/machinery/light/directional/south,
+/turf/open/floor/plasteel/telecomms_floor,
+/area/outpost/security)
+"XI" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/unary/portables_connector/layer4,
+/obj/effect/decal/cleanable/cobweb,
+/turf/open/floor/plating,
+/area/outpost/maintenance/starboard)
+"XK" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/fakelattice,
+/obj/effect/decal/cleanable/insectguts,
+/turf/open/floor/plating{
+ icon_state = "foam_plating"
+ },
+/area/outpost/maintenance/starboard)
+"XO" = (
+/mob/living/simple_animal/hostile/bear/snow{
+ faction = list("neutral");
+ name = "polar bear"
+ },
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/external)
+"XS" = (
+/obj/structure/railing{
+ layer = 4.1
+ },
+/obj/effect/turf_decal/techfloor,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/machinery/power/terminal{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plasteel/tech/techmaint,
+/area/outpost/maintenance/starboard)
+"Yb" = (
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/borderfloor{
+ dir = 6
+ },
+/obj/structure/window/reinforced,
+/obj/machinery/button/door{
+ id = "ice_shop1_window";
+ name = "Shop Shutters";
+ dir = 1;
+ pixel_y = 3;
+ pixel_x = 3
+ },
+/obj/item/paper_bin{
+ pixel_x = -11
+ },
+/turf/open/floor/plasteel/patterned/ridged,
+/area/outpost/vacant_rooms/shop)
+"Ye" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2,
+/obj/machinery/door/airlock/outpost,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/industrial/warning/fulltile,
+/obj/machinery/door/firedoor/border_only{
+ dir = 1
+ },
+/obj/machinery/door/firedoor/border_only,
+/turf/open/floor/plasteel/tech,
+/area/outpost/security)
+"Yh" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/outpost/maintenance/fore)
+"Yj" = (
+/obj/structure/flora/grass/green{
+ layer = 3.1
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"Yy" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/table/reinforced,
+/turf/open/floor/plasteel/patterned/brushed,
+/area/outpost/crew/bathroom)
+"YA" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/patterned,
+/area/outpost/crew/bathroom)
+"YC" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing{
+ layer = 4.1
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 4
+ },
+/turf/open/floor/plasteel/patterned,
+/area/outpost/cargo/smeltery)
+"YE" = (
+/obj/structure/catwalk/over/plated_catwalk,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"YG" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 6
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/outpost/vacant_rooms/shop)
+"YO" = (
+/obj/effect/spawner/structure/window/reinforced/indestructable,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "ice_lounge_window"
+ },
+/turf/open/floor/plating,
+/area/outpost/crew/lounge)
+"YQ" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/tech,
+/area/outpost/security/checkpoint)
+"YT" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/open/floor/plating/asteroid/icerock/temperate{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"YW" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/tech,
+/area/outpost/security/checkpoint)
+"YZ" = (
+/obj/machinery/camera{
+ dir = 8
+ },
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"Zd" = (
+/obj/structure/flora/grass/both{
+ layer = 3.1
+ },
+/obj/item/shard,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating/asteroid/snow/temperatre{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"Zg" = (
+/obj/machinery/vending/snack/blue,
+/obj/effect/turf_decal/industrial/hatch/yellow,
+/obj/machinery/light/dim/directional/east,
+/turf/open/floor/plasteel/dark,
+/area/outpost/cargo/smeltery)
+"Zi" = (
+/obj/structure/displaycase/forsale{
+ density = 1
+ },
+/obj/effect/turf_decal/industrial/hatch/yellow,
+/obj/effect/decal/cleanable/wrapping,
+/obj/structure/sign/poster/official/random{
+ pixel_x = 32
+ },
+/turf/open/floor/plasteel/tech,
+/area/outpost/vacant_rooms/shop)
+"Zk" = (
+/obj/effect/turf_decal/siding/white,
+/obj/structure/railing{
+ layer = 4.1
+ },
+/obj/machinery/light/floor,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/vending/snack,
+/obj/effect/decal/cleanable/wrapping,
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"Zl" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/frame/computer{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/robot_debris,
+/obj/item/shard,
+/turf/open/floor/plating,
+/area/outpost/maintenance/starboard)
+"Zm" = (
+/obj/machinery/computer/security{
+ icon_state = "computer-middle"
+ },
+/turf/open/floor/plasteel/telecomms_floor,
+/area/outpost/security/checkpoint)
+"Zo" = (
+/obj/structure/bed{
+ icon_state = "dirty_mattress"
+ },
+/obj/structure/curtain/cloth/grey,
+/obj/item/bedsheet{
+ layer = 3.2
+ },
+/turf/open/floor/plating/asteroid/icerock/temperate{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/exterior)
+"Zy" = (
+/obj/machinery/door/airlock{
+ dir = 4;
+ name = "Bathroom"
+ },
+/obj/effect/turf_decal/industrial/warning/fulltile,
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/tech,
+/area/outpost/crew/bathroom)
+"Zz" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/siding/white,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer2,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/tech,
+/area/outpost/security/checkpoint)
+"ZD" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/tech,
+/area/outpost/security/checkpoint)
+"ZK" = (
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/plating/asteroid/icerock/temperate,
+/area/outpost/external)
+"ZM" = (
+/obj/machinery/door/poddoor/ert{
+ dir = 8;
+ id = "ice_exterior_starboard"
+ },
+/obj/effect/turf_decal/industrial/traffic{
+ dir = 4
+ },
+/obj/effect/turf_decal/industrial/traffic{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/patterned/brushed,
+/area/outpost/exterior)
+"ZU" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/table/reinforced,
+/obj/machinery/recharger,
+/obj/item/book/manual/wiki/security_space_law{
+ pixel_y = 17;
+ pixel_x = 3
+ },
+/obj/machinery/light/directional/west,
+/turf/open/floor/plasteel/telecomms_floor,
+/area/outpost/security/checkpoint)
+"ZV" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/machinery/light/small/directional/east{
+ bulb_power = 0.55
+ },
+/turf/open/floor/plasteel/patterned/brushed{
+ light_color = "#1B1D2E";
+ light_range = 2
+ },
+/area/outpost/crew/cryo)
+"ZZ" = (
+/obj/effect/turf_decal/techfloor{
+ dir = 8
+ },
+/obj/item/trash/raisins{
+ pixel_x = -4
+ },
+/turf/open/floor/plasteel/tech/techmaint,
+/area/outpost/maintenance/starboard)
+
+(1,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+Hf
+Hf
+IC
+Hf
+Hf
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(2,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+Jb
+Jb
+Jb
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(3,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+Jb
+Jb
+Jb
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(4,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+Hf
+ZK
+Jb
+aN
+Hf
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(5,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+Jb
+Jb
+Jb
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(6,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+Jb
+Jb
+Jb
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(7,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+cC
+cC
+cr
+cr
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+Hf
+Jb
+Jb
+Jb
+Hf
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(8,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Sf
+Hd
+Hd
+Hd
+Sf
+Hd
+Hd
+Hd
+cr
+cr
+Hd
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+Jb
+Jb
+Jb
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(9,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+cr
+cr
+Hd
+Hd
+Hd
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+Jb
+Jb
+Jb
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(10,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Pd
+Hd
+Hd
+Hd
+Hd
+Pd
+Hd
+cr
+cr
+Hd
+Hd
+Hd
+Hd
+Hd
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+Hf
+ZK
+Jb
+aN
+Hf
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(11,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+Jb
+Hd
+Hd
+Hd
+Sf
+Hd
+Hd
+Sf
+Hd
+Hd
+Hd
+cr
+cr
+Hd
+Hd
+Hd
+Sf
+Hd
+Hd
+Hd
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+Jb
+Jb
+Jb
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(12,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+cr
+cr
+cr
+Hd
+Hd
+Hd
+Hd
+Hd
+Pd
+Hd
+Hd
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+Jb
+Jb
+Jb
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(13,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Pd
+Hd
+cr
+cr
+cr
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+Hf
+Hf
+IC
+Hf
+Hf
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(14,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Sf
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+cr
+cr
+cr
+cr
+Hd
+Sf
+Hd
+Hd
+Sf
+Hd
+Hd
+Sf
+Hd
+Hd
+Hd
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+Jb
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+cC
+cC
+cC
+Jb
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(15,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Sf
+Hd
+Hd
+cr
+cr
+cr
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+dt
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(16,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Pd
+Hd
+Hd
+Hd
+Hd
+cr
+cr
+cr
+Hd
+Hd
+Hd
+Hd
+Pd
+Sf
+Hd
+Hd
+Hd
+Hd
+Hd
+Pd
+Hd
+Hd
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+dt
+Hd
+Hd
+Hd
+Pd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+dt
+Hd
+Hd
+Pd
+Hd
+Hd
+Hd
+Jb
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(17,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Sf
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+cr
+cr
+Hd
+Hd
+Hd
+Sf
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Sf
+Hd
+Hd
+Hd
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Pd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Jb
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(18,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+Jb
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+cr
+cr
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Pd
+Hd
+Hd
+Hd
+dt
+Hd
+Hd
+Sf
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Pd
+Hd
+Hd
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(19,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Pd
+Hd
+Hd
+cr
+cr
+cr
+Hd
+Hd
+Hd
+Hd
+Hd
+Pd
+Hd
+Hd
+Hd
+Sf
+Hd
+Pd
+Hd
+Hd
+cC
+cC
+cC
+cC
+cC
+Jb
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Sf
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Sf
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(20,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Hd
+Pd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+cr
+cr
+cr
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Pd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Sf
+Hd
+Hd
+Hd
+Hd
+Hd
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(21,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+cr
+cr
+cr
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+dt
+Hd
+Hd
+Sf
+Hd
+Hd
+Hd
+Hd
+Hd
+Pd
+Hd
+Hd
+Sf
+Hd
+Hd
+Hd
+Hd
+Pd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(22,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Sf
+Hd
+Hd
+cr
+cr
+cr
+Hd
+Hd
+Hd
+Hd
+Hd
+Sf
+Hd
+Hd
+Hd
+Pd
+Hd
+Hd
+cC
+cC
+cC
+cC
+cC
+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
+Pd
+Hd
+Hd
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(23,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Pd
+Hd
+Hd
+Hd
+Hd
+Hd
+cr
+cr
+cr
+Hd
+Hd
+Sf
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Hd
+Pd
+Hd
+Hd
+TX
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Pd
+Hd
+Hd
+Pd
+Hd
+Hd
+Hd
+Hd
+Sf
+Hd
+Hd
+Hd
+Hd
+Hd
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(24,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Sf
+Hd
+Hd
+Hd
+Hd
+cr
+cr
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Pd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(25,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Hd
+Sf
+Hd
+TX
+Hd
+Hd
+Hd
+Hd
+Hd
+Pd
+Hd
+cr
+cr
+cr
+Hd
+Hd
+Hd
+Hd
+Pd
+Hd
+Hd
+Hd
+Sf
+Hd
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Sf
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Pd
+Hd
+Hd
+TX
+Hd
+Hd
+Hd
+Hd
+Pd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(26,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Pd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+cr
+cr
+cr
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Pd
+Hd
+Hd
+Hd
+Hd
+Hd
+Sf
+Hd
+Hd
+Hd
+Hd
+Hd
+Sf
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Jb
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(27,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Pd
+Hd
+Hd
+Hd
+cr
+cr
+cr
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Pd
+Hd
+Hd
+Hd
+Hd
+Pd
+Hd
+Hd
+Hd
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(28,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+cr
+cr
+cr
+TX
+Hd
+Hd
+Sf
+Hd
+Hd
+Hd
+Hd
+Hd
+cC
+cC
+cC
+cC
+Jb
+Hd
+Hd
+Hd
+Hd
+Hd
+Pd
+Hd
+Hd
+Hd
+Hd
+Pd
+Hd
+Hd
+Pd
+Hd
+Sf
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(29,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Sf
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+cr
+cr
+cr
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Pd
+Hd
+cC
+cC
+cC
+cC
+Jb
+Hd
+Pd
+Hd
+Hd
+Hd
+Hd
+Sf
+Hd
+Hd
+TX
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Sf
+Hd
+Hd
+Hd
+TX
+Hd
+Hd
+Hd
+Hd
+Jb
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(30,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Pd
+Hd
+Hd
+Hd
+cr
+cr
+cr
+Hd
+Hd
+Hd
+Pd
+Hd
+Hd
+Hd
+Hd
+Hd
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+dt
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Sf
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(31,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Sf
+Hd
+Hd
+cr
+cr
+cr
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+cC
+cC
+cC
+Jb
+Hd
+Hd
+fq
+fE
+eI
+Hd
+Hd
+Jb
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Jb
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(32,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Hd
+Hd
+Sf
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Pd
+cr
+cr
+cr
+Hd
+Hd
+Sf
+Hd
+Hd
+Hd
+Sf
+Hd
+Hd
+Hd
+cC
+cC
+cC
+cC
+Hd
+Hd
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+Nh
+de
+Cy
+tx
+UF
+ct
+Nh
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(33,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Hd
+Pd
+Hd
+Hd
+Hd
+Sf
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+cr
+cr
+cr
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+Nh
+KD
+JN
+tx
+wL
+uy
+Nh
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(34,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Pd
+Hd
+Hd
+cr
+cr
+cr
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+Nh
+Nh
+dh
+Ub
+Ub
+Nh
+Nh
+bv
+bv
+bv
+bv
+bv
+Ba
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(35,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Hd
+TX
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+cr
+cr
+Fk
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Pd
+Hd
+Hd
+Pd
+Hd
+Jb
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+Ba
+NG
+cC
+cC
+cC
+cC
+Ba
+Ww
+IH
+WL
+jL
+KO
+vC
+Ww
+bv
+Nb
+fk
+qh
+bv
+NG
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(36,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Pd
+Hd
+Hd
+Hd
+Hd
+Hd
+cr
+cr
+cr
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+NG
+NG
+NG
+BC
+AA
+NG
+vC
+NG
+WL
+BL
+yw
+NG
+IH
+gs
+Nl
+LT
+Tn
+bv
+NG
+Ba
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(37,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+TX
+Hd
+Hd
+cr
+cr
+cr
+Hd
+Hd
+Hd
+Pd
+Hd
+Hd
+Hd
+Hd
+Hd
+Sf
+Hd
+Hd
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+NG
+NG
+NG
+IH
+NG
+NG
+NG
+BC
+NG
+Ke
+BL
+Bz
+NG
+NG
+gs
+gG
+Tb
+XG
+bv
+NG
+NG
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(38,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Hd
+Sf
+Hd
+Hd
+Hd
+Hd
+Sf
+Hd
+Hd
+Hd
+cr
+cr
+cr
+Hd
+dt
+Hd
+Hd
+Hd
+Sf
+Hd
+Hd
+Hd
+Hd
+Hd
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+NG
+NG
+wf
+NG
+vC
+NG
+NG
+NG
+vC
+WL
+BL
+yw
+IH
+mm
+bv
+FX
+fe
+Pr
+bv
+QN
+NG
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(39,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Pd
+Hd
+cr
+cr
+cr
+cr
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+Tm
+vC
+NG
+AS
+Ir
+Ir
+Ir
+AS
+AS
+mE
+WL
+OR
+yw
+ji
+bv
+bv
+bv
+Uo
+bv
+bv
+NG
+tn
+NG
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(40,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+Jb
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+cr
+cr
+cr
+Hd
+Hd
+Sf
+Hd
+Hd
+Hd
+Pd
+Hd
+Sf
+Hd
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+lK
+NG
+AS
+AS
+mV
+eG
+fC
+cT
+AS
+NG
+WL
+OR
+yw
+am
+bv
+tl
+nn
+Xm
+jk
+bv
+NG
+NG
+NG
+Ba
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(41,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Pd
+Hd
+Hd
+Hd
+Pd
+Hd
+Sf
+Hd
+Hd
+cr
+cr
+cr
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+NG
+NG
+AS
+Ty
+vP
+Cf
+HF
+WS
+AS
+vI
+lY
+OR
+hM
+ez
+bv
+el
+Ip
+Xm
+oK
+bv
+NG
+BC
+NG
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(42,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+dt
+Hd
+cr
+cr
+cr
+cr
+Hd
+Sf
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+Pf
+NG
+yp
+AS
+da
+Iv
+AV
+hc
+YG
+cO
+eg
+eg
+Pk
+rL
+rL
+Ye
+hU
+jh
+FQ
+nF
+bv
+NG
+NG
+AA
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(43,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Sf
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+cr
+cr
+cr
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Sf
+Hd
+Hd
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+YT
+nS
+NG
+vC
+sx
+AS
+uD
+BV
+cf
+iF
+Io
+AS
+xg
+nH
+OR
+xG
+WI
+bv
+cm
+Te
+Wh
+bv
+bv
+NG
+NG
+NG
+cC
+cC
+cC
+cC
+cC
+ov
+ov
+ov
+ov
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(44,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+TX
+Hd
+Hd
+cr
+cr
+cr
+Hd
+Hd
+Hd
+Hd
+Pd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+sh
+EH
+Tm
+qZ
+NG
+IH
+AS
+jH
+Yb
+Ch
+if
+UB
+AS
+NG
+WL
+BL
+KO
+NG
+bv
+bv
+bv
+Ue
+bv
+NG
+NG
+NG
+BC
+cC
+cC
+cC
+cC
+cC
+ov
+NM
+NM
+ov
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(45,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Pd
+Hd
+Hd
+Pd
+cr
+cr
+cr
+Hd
+Hd
+Hd
+Hd
+Hd
+Sf
+Hd
+Hd
+Pd
+Hd
+Hd
+Hd
+Jb
+cC
+cC
+cC
+cC
+cC
+cC
+Rn
+mz
+UP
+NG
+yp
+AS
+AS
+AS
+AS
+Rv
+AS
+AS
+IH
+WL
+BL
+yw
+NG
+yk
+bv
+Mf
+Qe
+bv
+BC
+nK
+NG
+NG
+cC
+cC
+cC
+cC
+cC
+ov
+xr
+Hm
+ov
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(46,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+cr
+cr
+Hd
+Hd
+Pd
+Hd
+dt
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+Zo
+BZ
+dV
+EH
+tJ
+AS
+es
+Qs
+AS
+mm
+NG
+Ke
+BL
+vD
+NG
+qZ
+bv
+Sh
+fW
+bv
+NG
+NG
+NG
+NG
+cC
+cC
+cC
+ov
+ov
+ov
+lb
+lb
+ov
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(47,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Sf
+Hd
+Hd
+Hd
+Hd
+Hd
+cr
+cr
+cr
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Sf
+Hd
+Hd
+Hd
+cC
+cC
+cC
+cC
+cC
+yR
+yR
+yR
+yR
+yR
+WB
+wf
+Dw
+IH
+AS
+rc
+OD
+AS
+IH
+NG
+WL
+BL
+yw
+vC
+NG
+bv
+Gn
+aM
+bv
+NG
+NG
+BC
+NG
+Ba
+cC
+cC
+ov
+HI
+Kc
+Rh
+hV
+ov
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(48,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Sf
+cr
+cr
+cr
+Hd
+Hd
+Hd
+Sf
+Hd
+Hd
+Pd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Jb
+cC
+yR
+yR
+yR
+HB
+gH
+mM
+yR
+sx
+CI
+AS
+AS
+AS
+AS
+Rv
+AS
+AS
+HS
+Ol
+OR
+yw
+NG
+We
+We
+We
+XB
+We
+NG
+NG
+NG
+vC
+Ba
+cC
+cC
+ov
+wC
+NW
+nG
+im
+ov
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(49,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+cr
+cr
+Hd
+Hd
+Pd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Sf
+Hd
+yR
+pv
+gI
+vZ
+uq
+iw
+yR
+Ea
+xp
+AS
+PD
+Fw
+QP
+Gv
+dp
+AS
+vI
+lY
+BL
+Sp
+NG
+We
+LS
+OF
+bi
+We
+We
+vC
+mm
+NG
+cC
+cC
+cC
+ov
+LU
+uO
+Hc
+bz
+ov
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(50,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Pd
+Hd
+Hd
+Hd
+Pd
+Hd
+cr
+cr
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Pd
+Hd
+Sf
+Hd
+Hd
+Hd
+VI
+qw
+Tv
+RA
+DK
+yR
+yR
+EH
+tJ
+AS
+gv
+BV
+yd
+Si
+wH
+et
+eg
+eg
+vc
+Sp
+NG
+We
+iR
+mk
+zn
+Bm
+We
+NG
+NG
+NG
+cC
+cC
+cC
+ov
+uE
+wi
+Ji
+rG
+pm
+nL
+nL
+nL
+nL
+nL
+nL
+nL
+nL
+uc
+"}
+(51,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+cr
+cr
+Hd
+XO
+Hd
+Hd
+Sf
+Hd
+Hd
+Sf
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+VI
+Qf
+bG
+tw
+hG
+GC
+yR
+AS
+AS
+AS
+aU
+Bu
+dr
+PW
+qn
+AS
+Iw
+nH
+BL
+GD
+Mi
+We
+Eu
+Tf
+pu
+uA
+We
+NG
+BC
+NG
+ij
+ke
+ke
+ov
+ov
+QY
+ov
+ov
+ov
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(52,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Hd
+Sf
+Hd
+Hd
+Hd
+Pd
+cr
+cr
+cr
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+dt
+Hd
+TX
+Og
+Hd
+Hd
+Hd
+Hd
+VI
+lw
+iA
+tR
+KS
+BM
+wv
+oF
+lv
+Xv
+uX
+nN
+mC
+dI
+AS
+AS
+mE
+Ol
+BL
+yw
+mm
+We
+We
+Kl
+KR
+Ms
+We
+NG
+NG
+IH
+ij
+LO
+Uh
+EK
+du
+oq
+ke
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(53,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+cr
+cr
+cr
+Hd
+Hd
+Pd
+Hd
+Hd
+Pd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Sf
+TX
+Hd
+VI
+oe
+hz
+zH
+FY
+lR
+yR
+sC
+Iy
+AS
+PN
+eG
+Hh
+mV
+Vw
+NG
+IH
+Ke
+BL
+KO
+NG
+va
+We
+eM
+od
+We
+We
+NG
+NG
+NG
+qA
+ls
+Pz
+BX
+bL
+EJ
+ij
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(54,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+TX
+Hd
+Hd
+cr
+cr
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Pd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+yR
+Pc
+KN
+zI
+lp
+Wq
+yR
+AS
+AS
+AS
+bW
+rM
+qm
+qx
+Vw
+NG
+BC
+WL
+OR
+tb
+Nh
+NG
+jq
+PU
+pw
+SW
+NG
+NG
+kM
+ij
+ij
+ij
+ij
+ij
+ij
+fI
+ij
+cC
+cC
+ij
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(55,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Pd
+Hd
+Hd
+Pd
+Hd
+Hd
+Hd
+Hd
+cr
+cr
+cr
+Hd
+Hd
+Hd
+TX
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Pd
+Hd
+Jb
+cC
+yR
+yR
+yR
+yR
+qY
+yR
+yR
+NG
+Yj
+AS
+tI
+PN
+rF
+Zi
+Vw
+NG
+dg
+WL
+OR
+Wu
+EQ
+Ja
+eT
+PU
+YE
+Cu
+Ja
+dk
+Ja
+vW
+Td
+Vm
+UQ
+tS
+cU
+bj
+jl
+Qn
+Qn
+Qv
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(56,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Pd
+Hd
+cr
+cr
+cr
+Hd
+dt
+Hd
+Hd
+Hd
+Sf
+Hd
+Hd
+Hd
+Hd
+Sf
+cC
+cC
+cC
+cC
+cC
+cC
+qZ
+TP
+Bd
+fx
+aQ
+NG
+NG
+AS
+Bj
+Bj
+Bj
+AS
+AS
+vC
+NG
+Ol
+RU
+VR
+Rb
+TJ
+TJ
+Mr
+tr
+Rb
+Rb
+TJ
+Xd
+Lw
+Vm
+Td
+Td
+tS
+Ka
+JD
+Qn
+Qn
+Aj
+Qv
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(57,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+Jb
+Hd
+Hd
+Hd
+Sf
+Hd
+Hd
+Hd
+Sf
+Hd
+Sf
+Hd
+cr
+cr
+Hd
+Hd
+Hd
+Pd
+Hd
+Hd
+Hd
+Hd
+Pd
+Hd
+cC
+cC
+cC
+cC
+cC
+cC
+aC
+NG
+dq
+Bd
+KO
+NG
+NG
+BC
+NG
+NG
+IH
+NG
+my
+NG
+NG
+BC
+DB
+Mv
+Ti
+Xn
+Qk
+AT
+DS
+HW
+AT
+HW
+DS
+AT
+vW
+Vm
+Td
+Td
+tS
+Pe
+bj
+Qn
+kG
+Aj
+Qv
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(58,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+Jb
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+cr
+cr
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Pd
+Hd
+Hd
+cC
+cC
+LJ
+LJ
+LJ
+LJ
+LJ
+LJ
+Ho
+nW
+Bd
+KO
+NG
+NG
+IH
+NG
+vC
+NG
+BC
+NG
+IH
+mm
+Nh
+ot
+Cq
+vB
+wL
+Zk
+NG
+IH
+NG
+BC
+vC
+NG
+rD
+ij
+ij
+ij
+ij
+ij
+ij
+nA
+ij
+cC
+cC
+ij
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(59,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Hd
+Hd
+Pd
+Hd
+Hd
+Pd
+Hd
+Hd
+cr
+cr
+Hd
+Hd
+dt
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+cC
+cC
+LJ
+oj
+uC
+oj
+lo
+LJ
+Ay
+do
+Ti
+kn
+au
+Ja
+dk
+Ja
+au
+Ja
+Ja
+Ja
+dk
+au
+wd
+xf
+FH
+Bd
+lj
+dM
+qZ
+kL
+NG
+pJ
+NG
+NG
+BC
+NG
+cC
+cC
+cC
+pa
+XI
+cx
+pa
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(60,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Pd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Pd
+cr
+cr
+cr
+Hd
+Hd
+Hd
+Hd
+Sf
+Hd
+Hd
+Hd
+cC
+cC
+LJ
+xM
+La
+yu
+lc
+qD
+rL
+rL
+xs
+rL
+rL
+ly
+ly
+ly
+rL
+wl
+eg
+eg
+dY
+dY
+dY
+dY
+eg
+Jd
+WM
+lZ
+NG
+QV
+QV
+QV
+QV
+QV
+NG
+Zd
+Ba
+cC
+cC
+zY
+uI
+Bv
+zY
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(61,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Hd
+Sf
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+cr
+cr
+Hd
+Hd
+Hd
+Hd
+Pd
+Hd
+Hd
+Pd
+Sf
+cC
+LJ
+QU
+ZV
+oj
+Xk
+LJ
+zw
+SA
+Nn
+wW
+HW
+HW
+li
+AT
+nH
+Ti
+xG
+HW
+DS
+HW
+HW
+AT
+zB
+Oh
+Ti
+Cu
+Wz
+QV
+mF
+ZU
+MK
+QV
+QV
+cC
+cC
+cC
+cC
+pa
+JG
+oI
+zY
+pa
+pa
+pa
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(62,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+TX
+Hd
+Hd
+Hd
+cr
+cr
+cr
+TX
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Jb
+FV
+FV
+FV
+FV
+VW
+FV
+sj
+nZ
+BL
+Ey
+YZ
+qZ
+TZ
+NG
+jI
+Ti
+ig
+NG
+Md
+NG
+vC
+NG
+Nh
+lF
+RP
+eg
+eg
+Eq
+hL
+YW
+mK
+he
+QV
+cC
+cC
+cC
+cC
+pa
+zc
+lU
+pa
+Rj
+jj
+pa
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(63,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Hd
+Sf
+Hd
+Hd
+Pd
+Hd
+Sf
+Hd
+cr
+cr
+cr
+Hd
+Hd
+Hd
+Hd
+Hd
+Pd
+Hd
+Sf
+Hd
+Hd
+YO
+Xf
+hJ
+SH
+FV
+mm
+iO
+Zy
+iO
+iO
+NG
+cC
+Ak
+Ak
+ny
+Ak
+Ak
+NG
+mm
+NG
+IH
+NG
+WL
+Ti
+xG
+xc
+QV
+oz
+sz
+Zz
+kj
+QV
+cC
+cC
+cC
+cC
+zY
+GX
+AC
+qO
+xj
+rS
+pa
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(64,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Pd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+cr
+cr
+cr
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+YO
+cd
+Qu
+VQ
+FV
+iO
+iO
+YA
+xn
+iO
+cC
+cC
+Ak
+Od
+ML
+Ud
+Ak
+SD
+SD
+Ak
+Ak
+vC
+WL
+Ti
+yw
+NG
+QV
+QV
+QV
+Ed
+QV
+QV
+pa
+zY
+zY
+pa
+pa
+JM
+Zl
+pa
+Fp
+Ah
+pa
+pa
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(65,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+cr
+cr
+cr
+Hd
+Hd
+dt
+Hd
+Sf
+Sf
+Hd
+Pd
+Hd
+Hd
+YO
+ga
+Rs
+OW
+GO
+iO
+Au
+To
+RD
+iO
+iO
+iO
+Ak
+Zg
+Uy
+ip
+Ff
+Xq
+Xz
+gB
+Ak
+NG
+WL
+Ti
+yw
+IH
+NG
+QV
+bU
+YQ
+An
+FO
+dQ
+Xa
+Wy
+la
+Fv
+Ql
+zU
+zY
+EO
+ZZ
+zO
+pa
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(66,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+Jb
+Hd
+Hd
+Hd
+Hd
+Pd
+Hd
+Sf
+Hd
+Hd
+Pd
+Hd
+Hd
+cr
+cr
+Hd
+Pd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Sf
+Hd
+YO
+ga
+Sc
+WA
+ho
+iO
+rA
+PA
+Xx
+rU
+Fc
+KU
+Ak
+Ak
+On
+Ak
+Ak
+sG
+ng
+ur
+SD
+NG
+WL
+Ti
+yw
+NG
+AX
+QV
+rI
+ZD
+xh
+QV
+ua
+UY
+IV
+pl
+uT
+tU
+oA
+pa
+re
+FG
+uu
+pa
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(67,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Sf
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+cr
+cr
+Hd
+Hd
+Hd
+Hd
+Pd
+Hd
+TX
+Sf
+Hd
+Hd
+FV
+SY
+SY
+FV
+FV
+iO
+Yy
+an
+tD
+iO
+zA
+xN
+Cc
+Dn
+fQ
+Ak
+MR
+is
+Hr
+us
+SD
+NG
+WL
+Bd
+KO
+mm
+NG
+qE
+nU
+sI
+QL
+QV
+pa
+zY
+GU
+pa
+pa
+Ws
+pa
+pa
+pa
+pa
+pa
+pa
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(68,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Sf
+Hd
+Sf
+Hd
+cr
+cr
+Hd
+TX
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Sf
+Cc
+dZ
+IM
+Cc
+DT
+Cc
+yG
+LB
+Rc
+iO
+iO
+iO
+Cc
+tC
+su
+Ak
+Du
+Im
+YC
+Sz
+SD
+NG
+WL
+Bd
+KO
+NG
+IH
+qE
+Zm
+pC
+kv
+QV
+Et
+rY
+Oo
+qs
+pa
+Uf
+XS
+mP
+pa
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(69,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Pd
+Hd
+Hd
+Hd
+Pd
+Hd
+Hd
+Hd
+Pd
+Hd
+Hd
+cr
+cr
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Pd
+Hd
+Hd
+Hd
+Cc
+Cc
+AG
+Cc
+qa
+FA
+CF
+Fy
+Xx
+mS
+qI
+aX
+Cc
+uN
+fQ
+Ak
+rv
+aW
+dL
+tM
+Ak
+mE
+Ke
+Bd
+KX
+NG
+Yj
+qE
+nE
+MJ
+cB
+QV
+iH
+fT
+XK
+uf
+pa
+Qr
+nB
+At
+pa
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(70,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Hd
+Sf
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+cr
+cr
+Hd
+Hd
+Pd
+Hd
+Hd
+Hd
+Hd
+Sf
+Hd
+Pd
+Cc
+vu
+dJ
+JJ
+cL
+Cc
+iO
+nv
+Fq
+iO
+mB
+mO
+Cc
+Pj
+TS
+Ak
+na
+ab
+Sr
+kK
+SD
+IH
+xK
+Bd
+KO
+vC
+tk
+QV
+QV
+yq
+Sq
+QV
+oi
+Jf
+xv
+zY
+pa
+pa
+pa
+pa
+pa
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(71,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Pd
+Hd
+Sf
+Pd
+Hd
+cr
+cr
+Hd
+Hd
+Hd
+Sf
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Cc
+NA
+NA
+Cc
+yi
+pi
+Cc
+Cc
+vg
+Cc
+Cc
+Cc
+Cc
+RC
+bP
+Ak
+qR
+aW
+dG
+kK
+SD
+NG
+WL
+Bd
+KO
+qZ
+NG
+cC
+QV
+QV
+QV
+QV
+pa
+zY
+pa
+pa
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(72,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Pd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+cr
+cr
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+TX
+Hd
+Hd
+Pd
+Sf
+Hd
+Hd
+Cc
+Cc
+Cc
+Cc
+oY
+uH
+Cc
+aY
+gO
+Cc
+PT
+PK
+Ak
+om
+OC
+Xw
+Rg
+SD
+vC
+WL
+Ti
+KO
+IH
+NG
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(73,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Sf
+Hd
+Hd
+Hd
+Sf
+Hd
+Hd
+Hd
+Hd
+Pd
+Hd
+Hd
+cr
+cr
+Hd
+Hd
+Hd
+Hd
+Hd
+Pd
+Hd
+Sf
+Hd
+Hd
+Hd
+Sf
+Hd
+Eh
+sq
+QC
+Bh
+MW
+zQ
+Dl
+Yh
+El
+kZ
+uY
+vn
+Ak
+Qx
+bJ
+yM
+td
+Ak
+Mz
+Ol
+Lb
+KO
+sH
+Nh
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(74,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Hd
+Pd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+cr
+cr
+cr
+Hd
+Pd
+Hd
+TX
+Hd
+Hd
+Hd
+Hd
+Hd
+Sf
+Hd
+Hd
+Hd
+aR
+sA
+GS
+sg
+Hq
+tO
+Nu
+FE
+iP
+wD
+vA
+gX
+Ak
+Ak
+Ak
+Ak
+Ak
+Ak
+Nh
+ZM
+Dx
+Dx
+Nh
+Nh
+cC
+cC
+cC
+Jb
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(75,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Sf
+Hd
+Hd
+Hd
+Sf
+Hd
+cr
+cr
+cr
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Sf
+Hd
+Hd
+Pd
+Hd
+Sf
+Cc
+Cc
+Cc
+Cc
+Cc
+Cc
+Cc
+Cc
+Cc
+Cc
+SG
+Cc
+Cc
+cC
+cC
+cC
+cC
+Nh
+Uk
+Cq
+tx
+wL
+kX
+Nh
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(76,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Pd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+cr
+cr
+cr
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Pd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+Jb
+cC
+cC
+cC
+cC
+cC
+cC
+Nh
+ll
+vy
+tx
+Gg
+qK
+Nh
+cC
+cC
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(77,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Hd
+Sf
+Hd
+Hd
+Pd
+Hd
+Hd
+Hd
+Pd
+cr
+cr
+cr
+Hd
+Hd
+Pd
+Hd
+Hd
+Hd
+Hd
+Hd
+Sf
+Hd
+Hd
+Hd
+Hd
+Pd
+Sf
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+Jb
+Hd
+Hd
+Jb
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+pA
+Hw
+UA
+Hd
+Hd
+Hd
+Hd
+Hd
+Sf
+Hd
+Hd
+Hd
+Hd
+Hd
+Jb
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(78,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Pd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+cr
+cr
+cr
+Hd
+Hd
+Hd
+Hd
+Sf
+Hd
+Sf
+Hd
+Hd
+Hd
+Pd
+Hd
+Sf
+Hd
+Hd
+Hd
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Sf
+Hd
+Hd
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Pd
+Hd
+Hd
+Hd
+Hd
+Pd
+Hd
+Hd
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(79,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Pd
+Hd
+TX
+Hd
+Hd
+Hd
+cr
+cr
+cr
+Hd
+Hd
+Hd
+Pd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+cC
+cC
+cC
+Hd
+Hd
+Pd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+dt
+Hd
+Sf
+Hd
+Hd
+Sf
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(80,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Sf
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Sf
+Hd
+Hd
+cr
+cr
+cr
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Pd
+Hd
+Hd
+Hd
+Hd
+Hd
+Pd
+Hd
+Hd
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Hd
+Sf
+Hd
+Hd
+Hd
+Hd
+Hd
+Pd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Sf
+Hd
+Hd
+Hd
+dt
+Hd
+Hd
+Sf
+Hd
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(81,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Sf
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+cr
+cr
+cr
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Pd
+Hd
+Hd
+Hd
+Hd
+Hd
+Pd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(82,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Pd
+Hd
+Hd
+Hd
+Hd
+Sf
+Hd
+Sf
+Hd
+Hd
+cr
+cr
+cr
+Hd
+Hd
+Pd
+Hd
+Hd
+Hd
+Hd
+Hd
+Sf
+Hd
+Hd
+Hd
+Hd
+Sf
+Hd
+cC
+cC
+cC
+cC
+Hd
+Hd
+Pd
+Hd
+Hd
+dt
+Hd
+Hd
+Hd
+Sf
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Pd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Pd
+Hd
+Jb
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(83,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+Jb
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+cr
+cr
+Hd
+Hd
+Hd
+Hd
+Hd
+Sf
+Hd
+Hd
+Hd
+Hd
+Sf
+Hd
+Hd
+Hd
+Hd
+cC
+cC
+cC
+cC
+Hd
+Sf
+Hd
+Hd
+Hd
+Hd
+Hd
+Sf
+Hd
+Hd
+Hd
+Hd
+Sf
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Pd
+Hd
+Hd
+Hd
+Hd
+Jb
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(84,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Sf
+Hd
+Sf
+Hd
+Pd
+Hd
+Hd
+Hd
+Hd
+Pd
+cr
+cr
+cr
+Hd
+Hd
+Hd
+TX
+Hd
+Hd
+Pd
+Hd
+Hd
+Hd
+Hd
+Pd
+Hd
+Hd
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Hd
+Hd
+Pd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Sf
+Hd
+Hd
+Hd
+Sf
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(85,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Sf
+Hd
+Hd
+cr
+cr
+cr
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Pd
+Hd
+Hd
+Pd
+Hd
+Hd
+Hd
+Hd
+Hd
+dt
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Jb
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(86,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Hd
+Hd
+Pd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+cr
+cr
+cr
+Hd
+Hd
+Pd
+Hd
+Hd
+Hd
+Hd
+Sf
+Hd
+Hd
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+Jb
+cC
+Sf
+Hd
+Hd
+Sf
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Pd
+Hd
+Hd
+Sf
+Hd
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(87,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Sf
+Hd
+Hd
+Hd
+Hd
+Hd
+Sf
+Hd
+Hd
+Hd
+Hd
+cr
+cr
+cr
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+dt
+Hd
+Hd
+Pd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(88,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+cC
+cC
+cr
+cr
+cr
+cC
+cC
+cC
+cC
+Hd
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Pd
+Hd
+Hd
+Sf
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(89,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Hd
+Pd
+Hd
+Hd
+Hd
+cC
+cC
+cC
+cC
+cr
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Sf
+Hd
+Hd
+Hd
+Sf
+Hd
+Hd
+Hd
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(90,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+cC
+Hd
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Sf
+Hd
+Hd
+Hd
+Pd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Jb
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(91,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+Hd
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(92,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+Jb
+cC
+cC
+Hd
+dt
+Hd
+Hd
+Sf
+Hd
+Hd
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(93,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+Hf
+Hf
+IC
+Hf
+Hf
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(94,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+Jb
+Jb
+Jb
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(95,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+Jb
+Jb
+Jb
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(96,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+Hf
+ZK
+Jb
+aN
+Hf
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(97,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+Jb
+Jb
+Jb
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(98,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+Jb
+Jb
+Jb
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
+(99,1,1) = {"
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+Hf
+Hf
+IC
+Hf
+Hf
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+cC
+"}
diff --git a/_maps/shuttles/independent/independent_beluga.dmm b/_maps/shuttles/independent/independent_beluga.dmm
index 16a771d5be54..4bdc4813bf69 100644
--- a/_maps/shuttles/independent/independent_beluga.dmm
+++ b/_maps/shuttles/independent/independent_beluga.dmm
@@ -641,12 +641,12 @@
/obj/item/clothing/head/beret/hop,
/obj/item/radio/headset/heads/head_of_personnel,
/obj/item/clothing/glasses/sunglasses/big,
-/obj/item/clothing/suit/toggle/lieutenant,
/obj/item/clothing/suit/toggle/lawyer/burgundy,
/obj/item/clothing/suit/toggle/lawyer/navy,
/obj/item/clothing/head/hopcap,
/obj/item/gun/energy/e_gun/mini,
/obj/item/clothing/head/HoS/cowboy,
+/obj/item/clothing/suit/jacket/leather/duster/command,
/turf/open/floor/plasteel/dark,
/area/ship/bridge)
"ge" = (
@@ -3504,10 +3504,9 @@
pixel_x = -28
},
/obj/item/clothing/under/rank/command/captain,
-/obj/item/clothing/under/rank/command/lieutenant,
+/obj/item/clothing/under/rank/command,
/obj/item/clothing/shoes/laceup,
/obj/item/clothing/shoes/cowboy/black,
-/obj/item/clothing/suit/armor/vest/capcarapace/alt,
/obj/item/clothing/suit/armor/vest/capcarapace/duster,
/obj/item/clothing/head/beret/captain,
/obj/item/clothing/head/caphat,
@@ -3521,6 +3520,7 @@
/obj/item/areaeditor/shuttle,
/obj/effect/turf_decal/spline/fancy/opaque/bottlegreen,
/obj/item/clothing/head/caphat/cowboy,
+/obj/item/clothing/suit/armor/vest/capcarapace/captunic,
/turf/open/floor/wood/walnut,
/area/ship/bridge)
"Hv" = (
diff --git a/_maps/shuttles/independent/independent_bubble.dmm b/_maps/shuttles/independent/independent_bubble.dmm
index 6e37d1b244e8..32efe563c0bb 100644
--- a/_maps/shuttles/independent/independent_bubble.dmm
+++ b/_maps/shuttles/independent/independent_bubble.dmm
@@ -650,13 +650,14 @@
/turf/open/floor/plasteel/mono,
/area/ship/hallway/central)
"AR" = (
-/obj/machinery/door/airlock/external,
-/obj/docking_port/mobile{
- launch_status = 0;
- port_direction = 4
+/obj/docking_port/stationary{
+ width = 30;
+ height = 15;
+ dwidth = 15;
+ dir = 2
},
-/turf/open/floor/plating,
-/area/ship/engineering)
+/turf/template_noop,
+/area/space)
"AU" = (
/obj/machinery/cryopod{
dir = 4
@@ -955,6 +956,18 @@
},
/turf/open/floor/plating/rust,
/area/ship/maintenance/aft)
+"Nf" = (
+/obj/effect/turf_decal/industrial/warning{
+ dir = 1
+ },
+/obj/docking_port/mobile{
+ launch_status = 0;
+ port_direction = 8;
+ preferred_direction = 4;
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/ship/external)
"NN" = (
/obj/structure/frame/computer{
dir = 4
@@ -1278,6 +1291,7 @@ VB
VB
VB
VB
+VB
"}
(2,1,1) = {"
VB
@@ -1297,6 +1311,7 @@ VB
VB
VB
VB
+VB
"}
(3,1,1) = {"
VB
@@ -1316,6 +1331,7 @@ VB
VB
VB
VB
+VB
"}
(4,1,1) = {"
VB
@@ -1335,6 +1351,7 @@ Ob
VB
VB
VB
+VB
"}
(5,1,1) = {"
VB
@@ -1354,6 +1371,7 @@ Ob
VB
VB
VB
+VB
"}
(6,1,1) = {"
VB
@@ -1373,6 +1391,7 @@ nH
nH
VB
VB
+VB
"}
(7,1,1) = {"
VB
@@ -1392,6 +1411,7 @@ KG
nH
VB
VB
+VB
"}
(8,1,1) = {"
VB
@@ -1411,6 +1431,7 @@ eT
nH
VB
VB
+VB
"}
(9,1,1) = {"
VB
@@ -1430,6 +1451,7 @@ fs
vR
xX
VB
+VB
"}
(10,1,1) = {"
VB
@@ -1449,6 +1471,7 @@ kW
nH
NX
VB
+VB
"}
(11,1,1) = {"
Xn
@@ -1468,9 +1491,10 @@ IL
Vt
Rk
MJ
+VB
"}
(12,1,1) = {"
-gl
+Nf
Gl
ec
nS
@@ -1486,6 +1510,7 @@ cH
Ls
ZQ
cG
+ZQ
AR
"}
(13,1,1) = {"
@@ -1506,6 +1531,7 @@ UC
Vt
mY
MJ
+VB
"}
(14,1,1) = {"
VB
@@ -1525,6 +1551,7 @@ MJ
MJ
VB
VB
+VB
"}
(15,1,1) = {"
VB
@@ -1544,6 +1571,7 @@ zy
VB
VB
VB
+VB
"}
(16,1,1) = {"
VB
@@ -1563,6 +1591,7 @@ zy
VB
VB
VB
+VB
"}
(17,1,1) = {"
VB
@@ -1582,6 +1611,7 @@ VB
VB
VB
VB
+VB
"}
(18,1,1) = {"
VB
@@ -1601,4 +1631,25 @@ VB
VB
VB
VB
+VB
+"}
+(19,1,1) = {"
+VB
+VB
+VB
+VB
+VB
+VB
+VB
+VB
+VB
+VB
+VB
+VB
+VB
+VB
+VB
+VB
+VB
+VB
"}
diff --git a/_maps/shuttles/independent/independent_dwayne.dmm b/_maps/shuttles/independent/independent_dwayne.dmm
index 6f86b626025b..645b3a652960 100644
--- a/_maps/shuttles/independent/independent_dwayne.dmm
+++ b/_maps/shuttles/independent/independent_dwayne.dmm
@@ -1552,8 +1552,9 @@
/obj/effect/turf_decal/corner/opaque/blue/half{
dir = 1
},
-/obj/item/clothing/head/caphat/cowboy,
/obj/item/radio/intercom/wideband/directional/east,
+/obj/item/clothing/suit/armor/vest/capcarapace/duster,
+/obj/item/clothing/head/caphat/cowboy,
/turf/open/floor/plasteel/dark,
/area/ship/bridge)
"Ka" = (
diff --git a/_maps/shuttles/independent/independent_kilo.dmm b/_maps/shuttles/independent/independent_kilo.dmm
index 48c5487f6ebe..29264dd2958f 100644
--- a/_maps/shuttles/independent/independent_kilo.dmm
+++ b/_maps/shuttles/independent/independent_kilo.dmm
@@ -646,6 +646,7 @@
/obj/item/spacecash/bundle/c1000,
/obj/item/spacecash/bundle/c1000,
/obj/item/spacecash/bundle/c1000,
+/obj/item/clothing/suit/armor/vest/capcarapace/duster,
/turf/open/floor/carpet,
/area/ship/crew)
"da" = (
diff --git a/_maps/shuttles/independent/independent_pillbottle.dmm b/_maps/shuttles/independent/independent_pillbottle.dmm
index 7408067decf5..92529ea329c6 100644
--- a/_maps/shuttles/independent/independent_pillbottle.dmm
+++ b/_maps/shuttles/independent/independent_pillbottle.dmm
@@ -1721,9 +1721,6 @@
},
/turf/open/floor/plating,
/area/ship/hallway/fore)
-"CP" = (
-/turf/template_noop,
-/area/space)
"CQ" = (
/turf/closed/wall,
/area/ship/bridge)
@@ -3919,5 +3916,5 @@ hT
hT
WS
tG
-CP
+Oz
"}
diff --git a/_maps/shuttles/independent/independent_rube_goldberg.dmm b/_maps/shuttles/independent/independent_rube_goldberg.dmm
index 50febf2f2550..b8960b78342d 100644
--- a/_maps/shuttles/independent/independent_rube_goldberg.dmm
+++ b/_maps/shuttles/independent/independent_rube_goldberg.dmm
@@ -83,6 +83,7 @@
"bb" = (
/obj/structure/cable/green,
/obj/effect/turf_decal/industrial/radiation/full,
+/obj/machinery/power/grounding_rod,
/turf/open/floor/plating,
/area/ship/storage)
"be" = (
@@ -4162,6 +4163,19 @@
/obj/machinery/suit_storage_unit/atmos,
/turf/open/floor/plating,
/area/ship/engineering/atmospherics)
+"Or" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/industrial/radiation{
+ dir = 8
+ },
+/obj/effect/turf_decal/industrial/radiation{
+ dir = 4
+ },
+/obj/machinery/power/grounding_rod,
+/turf/open/floor/mineral/titanium,
+/area/ship/storage)
"Ot" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 10
@@ -4450,7 +4464,14 @@
/turf/open/floor/plating/airless,
/area/ship/hallway)
"Sw" = (
-/obj/machinery/atmospherics/components/unary/thermomachine,
+/obj/structure/frame/machine,
+/obj/item/circuitboard/machine/thermomachine/freezer,
+/obj/item/stock_parts/micro_laser,
+/obj/item/stock_parts/micro_laser,
+/obj/item/stock_parts/matter_bin,
+/obj/item/stock_parts/matter_bin,
+/obj/item/stack/cable_coil/cut,
+/obj/item/stack/sheet/glass,
/turf/open/floor/plating,
/area/ship/engineering/engine)
"Sx" = (
@@ -7063,9 +7084,9 @@ Zy
mV
bB
SY
-SY
-SY
-SY
+Or
+Or
+Or
bb
zy
wg
diff --git a/_maps/shuttles/independent/independent_shetland.dmm b/_maps/shuttles/independent/independent_shetland.dmm
index 062e8a8f61f3..68fcd724dc7b 100644
--- a/_maps/shuttles/independent/independent_shetland.dmm
+++ b/_maps/shuttles/independent/independent_shetland.dmm
@@ -64,7 +64,6 @@
/obj/structure/chair/comfy/shuttle{
dir = 4
},
-/obj/effect/landmark/start/lieutenant,
/turf/open/floor/plasteel/dark,
/area/ship/bridge)
"aG" = (
@@ -1240,18 +1239,21 @@
/obj/machinery/button/door{
id = "amogusdoors";
name = "Blast Door Control";
- pixel_x = 5;
- pixel_y = 5
+ pixel_x = 6;
+ pixel_y = 7
},
/obj/structure/table/reinforced,
/obj/machinery/button/door{
id = "amoguswindows";
name = "Window Lockdown";
- pixel_x = -5;
- pixel_y = -5
+ pixel_x = -7;
+ pixel_y = 7
},
/obj/effect/turf_decal/corner/opaque/neutral/half,
/obj/item/radio/intercom/directional/north,
+/obj/item/phone{
+ pixel_y = -4
+ },
/turf/open/floor/plasteel/dark,
/area/ship/bridge)
"mG" = (
@@ -1395,16 +1397,22 @@
/turf/open/floor/plasteel/dark,
/area/ship/hallway/port)
"oB" = (
-/obj/structure/table/reinforced,
-/obj/effect/turf_decal/corner/opaque/neutral/three_quarters{
- dir = 4
- },
-/obj/item/phone,
-/obj/item/megaphone/command{
- pixel_x = 10
- },
/obj/machinery/airalarm/directional/south,
-/turf/open/floor/plasteel/dark,
+/obj/structure/closet/secure_closet{
+ icon_state = "hop";
+ name = "\proper first officer's locker";
+ req_access_txt = "57"
+ },
+/obj/item/clothing/under/rank/command/head_of_personnel,
+/obj/item/clothing/under/rank/command/head_of_personnel/skirt,
+/obj/item/clothing/suit/armor/vest/hop,
+/obj/item/clothing/head/beret/hop,
+/obj/item/gun/energy/e_gun/mini,
+/obj/item/clothing/shoes/laceup,
+/obj/item/radio/headset/headset_com/alt,
+/obj/item/storage/box/ids,
+/obj/item/storage/briefcase,
+/turf/open/floor/carpet/blue,
/area/ship/bridge)
"oC" = (
/obj/structure/cable{
@@ -1615,15 +1623,18 @@
"qE" = (
/obj/machinery/light/small/directional/south,
/obj/structure/table/reinforced,
-/obj/effect/turf_decal/corner/opaque/neutral/half{
- dir = 1
- },
/obj/item/paper_bin,
/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,
+/obj/item/megaphone/command{
+ pixel_x = 10
+ },
+/obj/effect/turf_decal/corner/opaque/neutral/three_quarters{
+ dir = 4
+ },
/turf/open/floor/plasteel/dark,
/area/ship/bridge)
"qJ" = (
@@ -3621,11 +3632,22 @@
icon_state = "0-2"
},
/obj/machinery/power/apc/auto_name/directional/north,
-/obj/structure/closet/secure_closet/true_lieutenant,
/obj/machinery/light_switch{
pixel_x = 11;
pixel_y = 23
},
+/obj/structure/closet/secure_closet{
+ icon_state = "cap";
+ name = "\proper captain's locker";
+ req_access_txt = "20"
+ },
+/obj/item/clothing/under/rank/command/captain/suit,
+/obj/item/clothing/under/rank/command/captain/skirt,
+/obj/item/storage/backpack/captain,
+/obj/item/radio/headset/heads/captain/alt,
+/obj/item/clothing/gloves/color/captain,
+/obj/item/gun/energy/e_gun,
+/obj/item/clothing/shoes/laceup,
/turf/open/floor/carpet/blue,
/area/ship/bridge)
"KN" = (
@@ -4063,12 +4085,6 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/ship/medical)
-"OD" = (
-/obj/structure/chair/comfy/shuttle{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/ship/bridge)
"OE" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
dir = 1
@@ -6769,9 +6785,9 @@ dl
LL
TY
Ft
-OD
+aw
Lr
-OD
+aw
xq
TY
LL
diff --git a/_maps/shuttles/independent/independent_tranquility.dmm b/_maps/shuttles/independent/independent_tranquility.dmm
index e612c7fe57e9..27fd11a9368d 100644
--- a/_maps/shuttles/independent/independent_tranquility.dmm
+++ b/_maps/shuttles/independent/independent_tranquility.dmm
@@ -4729,7 +4729,6 @@
/obj/item/clothing/head/beret/chem,
/obj/item/clothing/suit/hooded/wintercoat/science,
/obj/item/clothing/suit/jacket/miljacket,
-/obj/item/clothing/under/pants/mustangjeans,
/obj/item/clothing/under/dress/sundress,
/obj/item/clothing/under/color/random,
/obj/item/clothing/under/color/jumpskirt/random,
diff --git a/_maps/shuttles/inteq/inteq_colossus.dmm b/_maps/shuttles/inteq/inteq_colossus.dmm
index 9aec48334728..bf86ed599f7f 100644
--- a/_maps/shuttles/inteq/inteq_colossus.dmm
+++ b/_maps/shuttles/inteq/inteq_colossus.dmm
@@ -3631,8 +3631,6 @@
/obj/structure/closet/crate/trashcart,
/obj/machinery/airalarm/directional/east,
/obj/machinery/firealarm/directional/south,
-/obj/effect/spawner/lootdrop/spacegym,
-/obj/effect/spawner/lootdrop/spacegym,
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/turf_decal/corner_techfloor_gray{
dir = 4
diff --git a/_maps/shuttles/minutemen/minutemen_asclepius.dmm b/_maps/shuttles/minutemen/minutemen_asclepius.dmm
index b2b8bf8786f2..877e24727dfd 100644
--- a/_maps/shuttles/minutemen/minutemen_asclepius.dmm
+++ b/_maps/shuttles/minutemen/minutemen_asclepius.dmm
@@ -4935,10 +4935,6 @@
/obj/machinery/advanced_airlock_controller{
pixel_x = 24
},
-/obj/item/clothing/shoes/cowboy/lizard{
- pixel_x = 2;
- pixel_y = -8
- },
/obj/machinery/atmospherics/pipe/layer_manifold/visible,
/obj/structure/closet/emcloset/anchored,
/turf/open/floor/plasteel/tech/grid,
diff --git a/_maps/shuttles/nanotrasen/nanotrasen_delta.dmm b/_maps/shuttles/nanotrasen/nanotrasen_delta.dmm
index 67e7dd8f1afc..4ee6ad18467c 100644
--- a/_maps/shuttles/nanotrasen/nanotrasen_delta.dmm
+++ b/_maps/shuttles/nanotrasen/nanotrasen_delta.dmm
@@ -1095,16 +1095,14 @@
/obj/item/clothing/suit/hooded/wintercoat/captain,
/obj/item/clothing/under/rank/command/captain/nt,
/obj/item/clothing/under/rank/command/captain/nt/skirt,
-/obj/item/clothing/suit/toggle/lieutenant{
- desc = "Threadbare and uncharacteristically casual for Nanotrasen. Probably rebadged surplus from some colonial militia.";
- name = "tattered captain's jacket"
- },
/obj/item/clothing/shoes/laceup,
/obj/item/clothing/head/caphat/nt,
/obj/item/stock_parts/cell/gun,
/obj/item/gun/energy/laser,
/obj/item/megaphone/command,
/obj/machinery/light/small/directional/east,
+/obj/item/clothing/head/caphat/parade,
+/obj/item/clothing/suit/armor/vest/capcarapace,
/turf/open/floor/plasteel/dark,
/area/ship/bridge)
"fy" = (
diff --git a/_maps/shuttles/nanotrasen/nanotrasen_gecko.dmm b/_maps/shuttles/nanotrasen/nanotrasen_gecko.dmm
index 529647a0cbb9..39fb0590bc12 100644
--- a/_maps/shuttles/nanotrasen/nanotrasen_gecko.dmm
+++ b/_maps/shuttles/nanotrasen/nanotrasen_gecko.dmm
@@ -1934,7 +1934,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)
@@ -3391,14 +3391,12 @@
/obj/item/clothing/under/rank/command/captain/nt,
/obj/item/clothing/head/caphat/nt,
/obj/item/clothing/shoes/laceup,
-/obj/item/clothing/suit/toggle/lieutenant{
- desc = "Threadbare and uncharacteristically casual for Nanotrasen. Probably rebadged surplus from some colonial militia.";
- name = "tattered captain's jacket"
- },
/obj/item/clothing/glasses/sunglasses,
/obj/effect/turf_decal/borderfloor{
dir = 1
},
+/obj/item/clothing/head/caphat/parade,
+/obj/item/clothing/suit/armor/vest/capcarapace,
/turf/open/floor/plasteel/dark,
/area/ship/bridge)
"Ij" = (
diff --git a/_maps/shuttles/independent/nanotrasen_heron.dmm b/_maps/shuttles/nanotrasen/nanotrasen_heron.dmm
similarity index 99%
rename from _maps/shuttles/independent/nanotrasen_heron.dmm
rename to _maps/shuttles/nanotrasen/nanotrasen_heron.dmm
index 0898de1238af..576f6ac4b2ad 100644
--- a/_maps/shuttles/independent/nanotrasen_heron.dmm
+++ b/_maps/shuttles/nanotrasen/nanotrasen_heron.dmm
@@ -773,7 +773,7 @@
dir = 5
},
/obj/machinery/computer/atmos_control/tank/air_tank{
- sensors = list("hairon"="Heron Air Mix Tank")
+ sensors = list("hairon"="Heron Air Mix Tank")
},
/obj/machinery/light_switch{
pixel_y = 23
@@ -4337,7 +4337,6 @@
/obj/item/clothing/under/rank/security/officer/military/eng,
/obj/item/clothing/suit/jacket/leather/duster,
/obj/item/clothing/suit/jacket/miljacket,
-/obj/item/clothing/head/beret/lt,
/obj/item/clothing/mask/bandana/skull,
/obj/item/clothing/suit/armor/vest/marine,
/obj/item/instrument/piano_synth/headphones/spacepods{
@@ -6003,6 +6002,9 @@
name = "Helm"
},
/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
/turf/open/floor/plasteel/telecomms_floor,
/area/ship/bridge)
"vC" = (
@@ -6617,8 +6619,6 @@
req_access_txt = "20"
},
/obj/item/clothing/neck/cloak/cap,
-/obj/item/clothing/gloves/color/captain,
-/obj/item/clothing/head/caphat,
/obj/item/radio/headset/heads/captain/alt,
/obj/item/storage/backpack/captain,
/obj/item/clothing/under/rank/centcom/officer,
@@ -6640,6 +6640,8 @@
/obj/item/clothing/suit/hooded/wintercoat/centcom,
/obj/item/clothing/head/beret/centcom_formal,
/obj/item/stock_parts/cell/gun/upgraded,
+/obj/item/clothing/head/centcom_cap,
+/obj/item/clothing/gloves/combat,
/turf/open/floor/carpet/green,
/area/ship/crew/dorm/dormtwo)
"yc" = (
@@ -9267,6 +9269,10 @@
/obj/effect/turf_decal/corner/opaque/white/diagonal,
/turf/open/floor/plasteel,
/area/ship/crew/canteen/kitchen)
+"HR" = (
+/obj/item/clothing/gloves/color/captain/nt,
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/ship/crew/law_office)
"HT" = (
/obj/structure/table/reinforced,
/obj/machinery/door/firedoor,
@@ -9385,7 +9391,6 @@
/obj/item/clothing/under/rank/security/officer/military/eng,
/obj/item/clothing/suit/jacket/leather/duster,
/obj/item/clothing/suit/jacket/miljacket,
-/obj/item/clothing/head/beret/lt,
/obj/item/clothing/suit/armor/vest/marine,
/obj/item/instrument/piano_synth/headphones/spacepods{
pixel_x = -5;
@@ -9707,7 +9712,7 @@
dir = 9
},
/obj/machinery/computer/atmos_control/tank/toxin_tank{
- sensors = list("heron_plasm"="Heron Plasma Tank")
+ sensors = list("heron_plasm"="Heron Plasma Tank")
},
/obj/structure/cable{
icon_state = "0-4"
@@ -10755,6 +10760,9 @@
/obj/structure/cable{
icon_state = "1-2"
},
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
/turf/open/floor/plasteel/telecomms_floor,
/area/ship/bridge)
"NE" = (
@@ -13672,9 +13680,6 @@
/area/ship/science/robotics)
"YP" = (
/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
dir = 1
},
@@ -15962,7 +15967,7 @@ oz
Oa
QG
QG
-QG
+HR
QG
QG
Ge
diff --git a/_maps/shuttles/nanotrasen/nanotrasen_mimir.dmm b/_maps/shuttles/nanotrasen/nanotrasen_mimir.dmm
index 5e8f8530b1cd..9223b7746f9a 100644
--- a/_maps/shuttles/nanotrasen/nanotrasen_mimir.dmm
+++ b/_maps/shuttles/nanotrasen/nanotrasen_mimir.dmm
@@ -7697,9 +7697,6 @@
pixel_x = 8;
pixel_y = 2
},
-/obj/item/storage/fancy/cigarettes/cigpack_shadyjims{
- pixel_y = 10
- },
/obj/item/lighter/greyscale{
pixel_y = 4;
pixel_x = -9
diff --git a/_maps/shuttles/nanotrasen/nanotrasen_osprey.dmm b/_maps/shuttles/nanotrasen/nanotrasen_osprey.dmm
index 970e3b2031f0..238992831180 100644
--- a/_maps/shuttles/nanotrasen/nanotrasen_osprey.dmm
+++ b/_maps/shuttles/nanotrasen/nanotrasen_osprey.dmm
@@ -1035,7 +1035,6 @@
/obj/item/clothing/under/rank/command/captain/nt/skirt,
/obj/item/clothing/under/rank/command/captain/nt,
/obj/item/clothing/suit/armor/vest/capcarapace/alt,
-/obj/item/clothing/gloves/color/captain,
/obj/item/clothing/glasses/sunglasses,
/obj/item/clothing/head/caphat/nt,
/obj/item/storage/belt/sabre,
@@ -1044,6 +1043,9 @@
desc = "An ICW-era self-destruct authorization disk. The codes on this are long past obsolete, but it's still a flagrant violation of company policy.";
name = "outdated nuclear authentication disk"
},
+/obj/item/clothing/head/caphat/parade,
+/obj/item/clothing/suit/armor/vest/capcarapace,
+/obj/item/clothing/gloves/color/captain/nt,
/turf/open/floor/carpet/royalblue,
/area/ship/bridge)
"hv" = (
diff --git a/_maps/shuttles/nanotrasen/nanotrasen_ranger.dmm b/_maps/shuttles/nanotrasen/nanotrasen_ranger.dmm
index 58d4fdb918a3..c8df06b6bd75 100644
--- a/_maps/shuttles/nanotrasen/nanotrasen_ranger.dmm
+++ b/_maps/shuttles/nanotrasen/nanotrasen_ranger.dmm
@@ -3009,7 +3009,6 @@
/obj/item/clothing/shoes/jackboots,
/obj/item/clothing/suit/jacket/miljacket,
/obj/item/clothing/suit/jacket/leather/duster/command,
-/obj/item/clothing/head/beret/lt,
/obj/item/storage/backpack/messenger/com,
/obj/item/storage/backpack/satchel/cap,
/obj/item/storage/backpack/captain,
diff --git a/_maps/shuttles/nanotrasen/nanotrasen_skipper.dmm b/_maps/shuttles/nanotrasen/nanotrasen_skipper.dmm
index 27eec1aa822e..e763b1fd0765 100644
--- a/_maps/shuttles/nanotrasen/nanotrasen_skipper.dmm
+++ b/_maps/shuttles/nanotrasen/nanotrasen_skipper.dmm
@@ -1508,10 +1508,7 @@
/obj/item/storage/backpack/satchel/leather,
/obj/item/clothing/shoes/laceup,
/obj/item/clothing/suit/armor/vest/hop,
-/obj/item/clothing/head/hopcap,
/obj/item/clothing/head/hopcap/nt,
-/obj/item/clothing/under/rank/command/head_of_personnel,
-/obj/item/clothing/under/rank/command/head_of_personnel/skirt,
/obj/item/storage/box/ids,
/obj/item/storage/box/PDAs,
/obj/item/assembly/flash/handheld,
@@ -1521,6 +1518,8 @@
pixel_y = 32
},
/obj/effect/turf_decal/siding/wood,
+/obj/item/clothing/under/rank/command/head_of_personnel/nt,
+/obj/item/clothing/under/rank/command/head_of_personnel/nt/skirt,
/turf/open/floor/wood,
/area/ship/crew/crewthree)
"lg" = (
@@ -1833,7 +1832,7 @@
"nu" = (
/obj/machinery/computer/atmos_control/incinerator{
dir = 4;
- sensors = list("nemo_incinerator_sensor"="Incinerator Chamber")
+ sensors = list("nemo_incinerator_sensor"="Incinerator Chamber")
},
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -5527,15 +5526,16 @@
/obj/item/storage/backpack/captain,
/obj/item/storage/belt/sabre,
/obj/item/clothing/glasses/sunglasses,
-/obj/item/clothing/head/caphat,
-/obj/item/clothing/head/beret/captain,
/obj/item/clothing/suit/armor/vest/capcarapace,
-/obj/item/clothing/under/rank/command/captain/skirt,
-/obj/item/clothing/under/rank/command/captain/suit,
/obj/item/clothing/under/rank/command/captain/parade,
/obj/item/clothing/shoes/laceup,
/obj/item/door_remote/captain,
/obj/item/clothing/suit/armor/vest/capcarapace/alt,
+/obj/item/clothing/gloves/color/captain/nt,
+/obj/item/clothing/under/rank/command/captain/nt/skirt,
+/obj/item/clothing/under/rank/command/captain/nt,
+/obj/item/clothing/head/caphat/parade,
+/obj/item/clothing/head/caphat/nt,
/turf/open/floor/wood,
/area/ship/crew/crewtwo)
"UN" = (
diff --git a/_maps/shuttles/roumain/srm_glaive.dmm b/_maps/shuttles/roumain/srm_glaive.dmm
index 6ac9e480222e..8b5cb2a3fdc8 100644
--- a/_maps/shuttles/roumain/srm_glaive.dmm
+++ b/_maps/shuttles/roumain/srm_glaive.dmm
@@ -208,9 +208,7 @@
/obj/structure/flora/ausbushes/brflowers,
/obj/structure/flora/ausbushes/sparsegrass,
/obj/item/book/manual/trickwines_4_brewers,
-/turf/open/floor/grass{
- icon_state = "junglegrass"
- },
+/turf/open/floor/grass/ship/jungle,
/area/ship/roumain)
"cJ" = (
/obj/structure/cable/orange{
@@ -255,6 +253,7 @@
"ds" = (
/obj/structure/flora/ausbushes/sparsegrass,
/obj/structure/flora/ausbushes/brflowers,
+/obj/item/reagent_containers/food/drinks/breakawayflask,
/turf/open/floor/grass/ship/jungle,
/area/ship/roumain)
"dt" = (
@@ -726,15 +725,7 @@
/area/ship/engineering/engine)
"jG" = (
/obj/structure/flora/ausbushes/ppflowers,
-/obj/structure/flora/tree/jungle{
- icon_state = "churchtree";
- icon = 'icons/obj/flora/chapeltree.dmi';
- randomize_icon = 0;
- pixel_x = -16;
- pixel_y = 0;
- desc = "A sturdy oak tree imported directly from the homeworld of the Montagne who runs the ship it resides on. It is planted in soil from the same place.";
- name = "Montagne's Oak"
- },
+/obj/structure/flora/tree/srm,
/turf/open/floor/grass/ship/jungle,
/area/ship/roumain)
"ko" = (
@@ -753,6 +744,12 @@
},
/turf/open/floor/wood/maple,
/area/ship/construction)
+"lb" = (
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/fermenting_barrel,
+/turf/open/floor/grass/ship/jungle,
+/area/ship/roumain)
"lf" = (
/obj/structure/cable/orange{
icon_state = "2-8"
@@ -1680,7 +1677,7 @@
/area/ship/medical)
"At" = (
/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/reagent_containers/food/drinks/drinkingglass/breakawayflask/vintageash,
+/obj/item/reagent_containers/food/drinks/breakawayflask/vintage/ashwine,
/turf/open/floor/plating{
icon_state = "greenerdirt"
},
@@ -1776,7 +1773,7 @@
/obj/structure/railing{
dir = 1
},
-/obj/item/reagent_containers/food/drinks/drinkingglass/breakawayflask/vintageash,
+/obj/item/reagent_containers/food/drinks/breakawayflask/vintage/ashwine,
/turf/open/floor/ship/dirt/dark,
/area/ship/roumain)
"BB" = (
@@ -2106,6 +2103,7 @@
name = "Body Holofield Switch";
id = "glaive_body_holo"
},
+/obj/structure/fermenting_barrel,
/turf/open/floor/grass/ship/jungle,
/area/ship/roumain)
"FA" = (
@@ -2889,8 +2887,10 @@
/turf/open/floor/plating,
/area/ship/engineering)
"Sl" = (
-/obj/structure/fermenting_barrel,
-/turf/open/floor/ship/dirt/dark,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/fermenting_barrel/distiller,
+/turf/open/floor/grass/ship/jungle,
/area/ship/roumain)
"Sx" = (
/obj/structure/window/reinforced/spawner{
@@ -3951,8 +3951,8 @@ Lk
cz
YP
ds
-aM
-aM
+lb
+Sl
Fu
wp
wp
@@ -4177,7 +4177,7 @@ ZE
MZ
qN
NL
-Sl
+NL
NL
NL
NL
diff --git a/_maps/shuttles/solgov/solgov_inkwell.dmm b/_maps/shuttles/solgov/solgov_inkwell.dmm
new file mode 100644
index 000000000000..3c8e75a7ace0
--- /dev/null
+++ b/_maps/shuttles/solgov/solgov_inkwell.dmm
@@ -0,0 +1,8990 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"af" = (
+/obj/effect/turf_decal/techfloor{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/white,
+/area/ship/storage)
+"am" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/ship/crew/canteen/kitchen)
+"ao" = (
+/obj/effect/turf_decal/corner/opaque/solgovblue{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
+ },
+/obj/structure/extinguisher_cabinet/directional/north,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/patterned,
+/area/ship/cargo)
+"aq" = (
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/turf_decal/industrial/warning{
+ 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 = 8
+ },
+/obj/machinery/door/airlock/mining/glass{
+ dir = 4;
+ name = "Cargo"
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
+ },
+/turf/open/floor/plasteel/mono/dark,
+/area/ship/hallway/starboard)
+"ar" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/ship/crew/library)
+"aO" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"bf" = (
+/obj/effect/turf_decal/corner/opaque/solgovgold/three_quarters,
+/obj/effect/turf_decal/techfloor/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/techfloor/corner{
+ dir = 8
+ },
+/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 = 5
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning{
+ dir = 6
+ },
+/turf/open/floor/plasteel/white,
+/area/ship/security/armory)
+"bh" = (
+/obj/structure/bed,
+/obj/item/bedsheet/solgov,
+/obj/structure/sign/solgov_flag{
+ dir = 8;
+ pixel_x = 28
+ },
+/obj/structure/sign/poster/solgov/random{
+ pixel_y = 32
+ },
+/turf/open/floor/carpet/royalblue,
+/area/ship/crew/dorm/dormthree)
+"bn" = (
+/obj/structure/fluff/hedge/opaque,
+/obj/effect/turf_decal/siding/wood{
+ color = "#543c30"
+ },
+/obj/machinery/button/door{
+ dir = 8;
+ id = "sgi_captainbolt";
+ name = "bolt control";
+ pixel_x = 20;
+ pixel_y = 6;
+ specialfunctions = 4;
+ normaldoorcontrol = 1
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/crew/dorm/dormtwo)
+"br" = (
+/obj/effect/turf_decal/corner/opaque/solgovblue{
+ dir = 8
+ },
+/turf/open/floor/plasteel/patterned,
+/area/ship/cargo)
+"bs" = (
+/obj/structure/bookcase/random,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/library)
+"bt" = (
+/obj/structure/closet/secure_closet/engineering_personal{
+ name = "ship engineer's locker";
+ populate = 0
+ },
+/obj/item/storage/backpack/industrial,
+/obj/item/clothing/head/hardhat/solgov,
+/obj/item/folder/solgov,
+/obj/item/clipboard,
+/obj/item/clothing/under/solgov/formal,
+/obj/item/clothing/under/solgov,
+/obj/item/clothing/accessory/armband/engine,
+/obj/item/storage/toolbox/mechanical,
+/obj/item/clothing/glasses/welding,
+/obj/item/clothing/head/welding,
+/obj/item/pen/solgov,
+/obj/item/clothing/suit/hazardvest/solgov,
+/obj/item/clothing/shoes/workboots,
+/obj/item/clothing/gloves/combat,
+/obj/effect/turf_decal/techfloor,
+/obj/effect/turf_decal/industrial/outline/orange,
+/obj/item/clothing/glasses/meson/prescription,
+/obj/machinery/light/directional/south,
+/turf/open/floor/plasteel/white,
+/area/ship/engineering)
+"bu" = (
+/obj/structure/closet/secure_closet/security{
+ populate = 0;
+ name = "sonnensöldners's locker";
+ anchored = 1
+ },
+/obj/item/clothing/head/solgov/sonnensoldner,
+/obj/item/radio{
+ icon_state = "sec_radio"
+ },
+/obj/item/clothing/under/solgov/formal,
+/obj/item/clothing/under/solgov/dress,
+/obj/item/clothing/under/solgov,
+/obj/item/clothing/shoes/workboots,
+/obj/item/storage/belt/sabre/solgov,
+/obj/item/clothing/gloves/combat,
+/obj/item/radio/headset/solgov/alt,
+/obj/item/storage/backpack,
+/obj/item/clothing/suit/armor/vest/bulletproof/solgov,
+/obj/effect/turf_decal/techfloor,
+/obj/effect/turf_decal/industrial/outline/red,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/ship/security/armory)
+"bB" = (
+/obj/effect/turf_decal/siding/yellow{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/ship/cargo)
+"bI" = (
+/obj/effect/turf_decal/siding/wood,
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/ship/crew/canteen/kitchen)
+"bS" = (
+/obj/effect/turf_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/turf_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
+/turf/open/floor/plasteel/mono/dark,
+/area/ship/hallway/starboard)
+"bU" = (
+/turf/closed/wall/mineral/titanium,
+/area/ship/crew/library)
+"ce" = (
+/obj/structure/sign/solgov_seal{
+ pixel_y = 0;
+ pixel_x = 28
+ },
+/turf/open/floor/engine/hull,
+/area/ship/external/dark)
+"cn" = (
+/obj/structure/fluff/hedge,
+/obj/machinery/light/directional/north,
+/turf/open/floor/wood/birch,
+/area/ship/hallway/starboard)
+"co" = (
+/obj/effect/turf_decal/corner/opaque/solgovblue/full,
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/white,
+/area/ship/security/armory)
+"ct" = (
+/obj/machinery/modular_computer/console/preset/id{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/turf/open/floor/wood,
+/area/ship/bridge)
+"cz" = (
+/obj/effect/turf_decal/techfloor{
+ dir = 10
+ },
+/obj/item/kirbyplants{
+ icon_state = "plant-22";
+ pixel_y = 11;
+ pixel_x = -6
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 5
+ },
+/obj/machinery/light/directional/west,
+/turf/open/floor/plasteel/white,
+/area/ship/cargo/office)
+"cG" = (
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue{
+ dir = 8
+ },
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning{
+ dir = 8
+ },
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/ship/cargo)
+"cH" = (
+/obj/structure/curtain,
+/obj/machinery/shower{
+ dir = 1
+ },
+/turf/open/floor/plasteel/freezer,
+/area/ship/crew/toilet)
+"cI" = (
+/obj/structure/closet/secure_closet/security{
+ populate = 0;
+ name = "sonnensöldners's locker";
+ anchored = 1
+ },
+/obj/item/clothing/head/solgov/sonnensoldner,
+/obj/item/radio{
+ icon_state = "sec_radio"
+ },
+/obj/item/clothing/under/solgov/formal,
+/obj/item/clothing/under/solgov/dress,
+/obj/item/clothing/under/solgov,
+/obj/item/clothing/shoes/workboots,
+/obj/item/storage/belt/sabre/solgov,
+/obj/item/clothing/gloves/combat,
+/obj/item/radio/headset/solgov/alt,
+/obj/item/storage/backpack,
+/obj/item/clothing/suit/armor/vest/bulletproof/solgov,
+/obj/effect/turf_decal/techfloor,
+/obj/effect/turf_decal/industrial/outline/red,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/ship/security/armory)
+"cL" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/holopad/emergency/command,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/dorm/dormtwo)
+"cO" = (
+/obj/effect/turf_decal/solgov/wood/center_right,
+/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 = 10
+ },
+/turf/open/floor/wood,
+/area/ship/bridge)
+"cQ" = (
+/obj/effect/turf_decal/techfloor{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/tech/grid,
+/area/ship/storage)
+"cX" = (
+/obj/effect/turf_decal/techfloor{
+ dir = 1
+ },
+/obj/machinery/light/small/directional/north,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/tech/grid,
+/area/ship/storage)
+"da" = (
+/obj/effect/turf_decal/techfloor{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/light/directional/east,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/white,
+/area/ship/cargo/office)
+"db" = (
+/obj/effect/turf_decal/box/corners{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/arrows{
+ dir = 8
+ },
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"df" = (
+/obj/effect/turf_decal/corner/opaque/solgovgold{
+ dir = 9
+ },
+/obj/effect/turf_decal/techfloor/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/techfloor/corner{
+ dir = 8
+ },
+/obj/structure/railing/corner{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/white,
+/area/ship/engineering)
+"dm" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/ship/crew/library)
+"dn" = (
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/turf_decal/industrial/warning{
+ 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 = 8
+ },
+/obj/machinery/door/airlock/solgov{
+ dir = 4;
+ req_one_access = list(20);
+ name = "Captain's Quarters";
+ id_tag = "sgi_captainbolt"
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
+ },
+/turf/open/floor/plasteel/mono/dark,
+/area/ship/crew/dorm/dormtwo)
+"dp" = (
+/obj/effect/turf_decal/corner/opaque/solgovblue{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = 21
+ },
+/turf/open/floor/plasteel/patterned,
+/area/ship/cargo)
+"dv" = (
+/obj/machinery/power/shuttle/engine/electric{
+ dir = 4
+ },
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/open/floor/engine/hull,
+/area/ship/maintenance/starboard)
+"dw" = (
+/turf/closed/wall/mineral/titanium,
+/area/ship/crew/dorm/dormtwo)
+"dE" = (
+/obj/structure/railing/wood,
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/machinery/button/door{
+ dir = 8;
+ pixel_x = 22;
+ pixel_y = 10;
+ name = "external shutters control";
+ id = "sgi_cafeteria"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/ship/crew/canteen/kitchen)
+"dH" = (
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue{
+ dir = 1
+ },
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue,
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/ship/cargo)
+"dK" = (
+/obj/effect/turf_decal/techfloor{
+ dir = 5
+ },
+/obj/structure/closet/crate/bin,
+/obj/machinery/light/directional/north,
+/turf/open/floor/plasteel/white,
+/area/ship/hallway/starboard)
+"dM" = (
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/light/floor,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/ship/cargo)
+"dQ" = (
+/obj/structure/chair/wood,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen/kitchen)
+"dR" = (
+/obj/effect/turf_decal/techfloor,
+/obj/machinery/light/directional/south,
+/turf/open/floor/plasteel/white,
+/area/ship/security/armory)
+"dT" = (
+/obj/effect/turf_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/machinery/button/door{
+ dir = 4;
+ id = "sgi_cargo1";
+ name = "blast door control";
+ pixel_x = -20;
+ pixel_y = -7
+ },
+/obj/machinery/button/shieldwallgen{
+ dir = 4;
+ pixel_y = 2;
+ pixel_x = -18;
+ id = "sgi_holocargo1"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"dY" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
+/turf/open/floor/wood/birch,
+/area/ship/crew/canteen)
+"ea" = (
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/ship/crew/toilet)
+"eb" = (
+/obj/effect/turf_decal/box/corners,
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"ec" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood/birch,
+/area/ship/crew/canteen)
+"ek" = (
+/obj/effect/turf_decal/techfloor{
+ dir = 9
+ },
+/obj/machinery/power/port_gen/pacman,
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plasteel/white,
+/area/ship/engineering)
+"en" = (
+/obj/effect/turf_decal/industrial/stand_clear{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"eq" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 1;
+ color = "#543C30"
+ },
+/obj/structure/railing/corner/wood{
+ color = "#543C30"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/dorm/dormtwo)
+"ex" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 5
+ },
+/turf/open/floor/wood,
+/area/ship/crew/canteen/kitchen)
+"ez" = (
+/obj/effect/turf_decal/techfloor,
+/obj/structure/table/wood,
+/obj/machinery/recharger{
+ pixel_y = 4
+ },
+/obj/machinery/firealarm/directional/south,
+/turf/open/floor/plasteel/white,
+/area/ship/security/armory)
+"eA" = (
+/obj/effect/turf_decal/corner/opaque/solgovblue/full,
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/white,
+/area/ship/hallway/starboard)
+"eB" = (
+/obj/structure/curtain,
+/obj/machinery/shower{
+ dir = 1
+ },
+/obj/machinery/button/door{
+ dir = 4;
+ id = "sgi_bolt";
+ name = "bathroom lock";
+ pixel_x = -20;
+ pixel_y = 7;
+ normaldoorcontrol = 1;
+ specialfunctions = 4
+ },
+/turf/open/floor/plasteel/freezer,
+/area/ship/crew/toilet)
+"eD" = (
+/obj/machinery/autolathe,
+/obj/effect/turf_decal/industrial/outline/yellow,
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"eM" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile/shuttle,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 4;
+ id = "sgi_captain"
+ },
+/turf/open/floor/plating,
+/area/ship/crew/dorm/dormtwo)
+"eQ" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/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/decal/cleanable/dirt/dust,
+/turf/open/floor/wood/birch,
+/area/ship/crew/canteen)
+"eX" = (
+/obj/effect/turf_decal/corner/opaque/solgovgold{
+ dir = 6
+ },
+/obj/effect/turf_decal/techfloor/corner,
+/obj/effect/turf_decal/techfloor/corner{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/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 = 4
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/ship/engineering)
+"ff" = (
+/obj/effect/turf_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/turf_decal/borderfloorblack{
+ dir = 4
+ },
+/turf/open/floor/plasteel/mono/dark,
+/area/ship/hallway/starboard)
+"fi" = (
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue/corner,
+/obj/effect/turf_decal/trimline/opaque/solgovblue/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/corner,
+/obj/machinery/light/floor,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/ship/cargo)
+"fj" = (
+/obj/structure/chair/wood,
+/obj/machinery/light/directional/north,
+/obj/machinery/airalarm/directional/east,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/library)
+"fk" = (
+/obj/machinery/power/terminal{
+ dir = 8
+ },
+/obj/effect/turf_decal/techfloor/orange{
+ dir = 9
+ },
+/obj/effect/turf_decal/corner/opaque/solgovblue,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/airalarm/directional/north,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/tech,
+/area/ship/maintenance/starboard)
+"ft" = (
+/turf/closed/wall/mineral/titanium,
+/area/ship/crew/dorm)
+"fv" = (
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue{
+ dir = 4
+ },
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/corner{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/ship/cargo)
+"fB" = (
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue{
+ dir = 4
+ },
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning{
+ dir = 8
+ },
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/ship/cargo)
+"fC" = (
+/obj/effect/turf_decal/techfloor/corner,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/ship/storage)
+"fE" = (
+/obj/machinery/light/directional/east,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/ship/crew/canteen)
+"fG" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/effect/turf_decal/techfloor/orange{
+ dir = 5
+ },
+/obj/effect/turf_decal/industrial/outline/yellow,
+/obj/effect/turf_decal/corner/opaque/solgovblue{
+ dir = 8
+ },
+/obj/structure/sign/poster/solgov/random{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/tech,
+/area/ship/maintenance/port)
+"fI" = (
+/obj/effect/turf_decal/techfloor{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/computer/helm/viewscreen/directional/north,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/white,
+/area/ship/security/armory)
+"fO" = (
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue,
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning,
+/obj/effect/turf_decal/trimline/opaque/solgovblue/corner{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/ship/cargo)
+"fQ" = (
+/obj/effect/turf_decal/siding/wood/corner,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/ship/hallway/starboard)
+"fU" = (
+/obj/structure/chair/office,
+/turf/open/floor/wood/maple,
+/area/ship/bridge)
+"fZ" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/closed/wall/mineral/titanium,
+/area/ship/security/armory)
+"gf" = (
+/obj/effect/turf_decal/siding/wood,
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/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 = 8
+ },
+/turf/open/floor/wood,
+/area/ship/hallway/starboard)
+"gi" = (
+/obj/effect/turf_decal/techfloor,
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/light/directional/south,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/white,
+/area/ship/security/armory)
+"gm" = (
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/effect/turf_decal/corner/opaque/solgovgold{
+ dir = 5
+ },
+/obj/effect/turf_decal/techfloor/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/techfloor/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/ship/storage)
+"gn" = (
+/obj/structure/window/reinforced/fulltile/shuttle,
+/obj/structure/grille,
+/obj/machinery/door/poddoor/shutters{
+ dir = 4;
+ id = "sgi_office"
+ },
+/turf/open/floor/plating,
+/area/ship/crew/office)
+"gp" = (
+/obj/effect/turf_decal/techfloor,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/ship/storage)
+"gr" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/white,
+/area/ship/crew/cryo)
+"gu" = (
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue{
+ dir = 4
+ },
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning{
+ dir = 4
+ },
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/ship/cargo)
+"gw" = (
+/obj/effect/turf_decal/siding/yellow,
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/corner,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/ship/cargo)
+"gI" = (
+/obj/effect/turf_decal/siding/yellow{
+ dir = 1
+ },
+/obj/machinery/light/floor,
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue/corner,
+/obj/effect/turf_decal/trimline/opaque/solgovblue/corner,
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/ship/cargo)
+"gP" = (
+/obj/effect/turf_decal/corner/opaque/solgovblue{
+ dir = 8
+ },
+/obj/machinery/airalarm/directional/north,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/patterned,
+/area/ship/cargo)
+"gS" = (
+/obj/machinery/suit_storage_unit/solgov,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/dorm/dormthree)
+"gV" = (
+/obj/structure/chair/wood{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen/kitchen)
+"gW" = (
+/obj/effect/turf_decal/corner/opaque/solgovblue/full,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/white,
+/area/ship/hallway/starboard)
+"ha" = (
+/obj/structure/rack,
+/obj/item/storage/box/emptysandbags{
+ pixel_x = -5;
+ pixel_y = 5
+ },
+/obj/item/storage/box/emptysandbags,
+/obj/item/storage/box/emptysandbags{
+ pixel_x = 5;
+ pixel_y = -5
+ },
+/obj/structure/rack,
+/obj/effect/turf_decal/industrial/outline/yellow,
+/obj/machinery/light/directional/north,
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"hg" = (
+/obj/machinery/suit_storage_unit/inherit,
+/obj/item/clothing/suit/space/hardsuit/solgov,
+/obj/item/tank/jetpack/oxygen,
+/turf/open/floor/wood/maple,
+/area/ship/crew/dorm/dormtwo)
+"hl" = (
+/obj/effect/turf_decal/corner/opaque/solgovblue{
+ dir = 1
+ },
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue{
+ dir = 8
+ },
+/obj/structure/closet/emcloset/wall{
+ dir = 1;
+ pixel_y = -28
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/patterned,
+/area/ship/cargo)
+"hm" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp/green{
+ pixel_y = 7;
+ pixel_x = 16
+ },
+/obj/item/paper_bin,
+/obj/item/pen/solgov,
+/obj/machinery/light/directional/north,
+/turf/open/floor/carpet/blue,
+/area/ship/crew/office)
+"hw" = (
+/obj/structure/bed,
+/obj/item/bedsheet/solgov,
+/obj/structure/curtain/cloth,
+/obj/machinery/light/directional/west,
+/turf/open/floor/carpet/blue,
+/area/ship/crew/dorm)
+"hB" = (
+/obj/structure/closet/crate/wooden,
+/obj/item/paper_bin/bundlenatural,
+/obj/item/paper_bin/bundlenatural,
+/obj/item/paper_bin/bundlenatural,
+/obj/item/storage/fancy/candle_box,
+/obj/item/storage/fancy/candle_box,
+/obj/item/storage/fancy/candle_box,
+/obj/item/folder/solgov,
+/obj/item/folder/solgov,
+/obj/item/folder/solgov,
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"hE" = (
+/obj/machinery/porta_turret/ship/solgov,
+/turf/closed/wall/mineral/titanium,
+/area/ship/bridge)
+"hF" = (
+/obj/effect/turf_decal/siding/wood,
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/ship/crew/library)
+"hJ" = (
+/obj/effect/turf_decal/techfloor{
+ dir = 1
+ },
+/obj/structure/rack,
+/obj/item/stack/sheet/mineral/plasma/twenty,
+/obj/machinery/light/directional/north,
+/turf/open/floor/plasteel/white,
+/area/ship/engineering)
+"hM" = (
+/obj/structure/railing/wood,
+/obj/structure/chair/stool/bar,
+/obj/effect/turf_decal/siding/wood,
+/obj/structure/extinguisher_cabinet/directional/west,
+/turf/open/floor/wood/birch,
+/area/ship/crew/canteen)
+"hR" = (
+/obj/effect/turf_decal/corner/opaque/solgovblue/full,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/white,
+/area/ship/cargo/office)
+"hS" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/ship/crew/office)
+"ia" = (
+/obj/machinery/power/terminal{
+ dir = 8
+ },
+/obj/effect/turf_decal/techfloor/orange{
+ dir = 8
+ },
+/obj/effect/turf_decal/corner/opaque/solgovblue{
+ dir = 6
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/tech,
+/area/ship/maintenance/port)
+"ib" = (
+/obj/effect/turf_decal/techfloor{
+ dir = 1
+ },
+/obj/structure/table/wood,
+/obj/machinery/recharger{
+ pixel_y = 4
+ },
+/obj/item/hand_labeler{
+ pixel_x = 4;
+ pixel_y = -4
+ },
+/obj/machinery/light/directional/north,
+/turf/open/floor/plasteel/white,
+/area/ship/cargo/office)
+"ic" = (
+/obj/effect/turf_decal/techfloor{
+ dir = 6
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/white,
+/area/ship/security/armory)
+"if" = (
+/obj/effect/turf_decal/techfloor,
+/obj/structure/table/wood,
+/obj/item/screwdriver{
+ pixel_x = -2;
+ pixel_y = 3
+ },
+/obj/item/hand_labeler{
+ pixel_x = 4;
+ pixel_y = -4
+ },
+/obj/machinery/newscaster/security_unit/directional/south,
+/turf/open/floor/plasteel/white,
+/area/ship/security/armory)
+"ij" = (
+/obj/effect/turf_decal/corner/opaque/solgovblue{
+ 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 = 8
+ },
+/obj/effect/turf_decal/corner/opaque/solgovgold{
+ dir = 6
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning{
+ dir = 4
+ },
+/turf/open/floor/plasteel/patterned,
+/area/ship/cargo)
+"iq" = (
+/obj/structure/closet/crate{
+ name = "space suits crate"
+ },
+/obj/item/clothing/suit/space/solgov,
+/obj/item/clothing/suit/space/solgov,
+/obj/item/clothing/suit/space/solgov,
+/obj/item/clothing/head/helmet/space/solgov,
+/obj/item/clothing/head/helmet/space/solgov,
+/obj/item/clothing/head/helmet/space/solgov,
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"iu" = (
+/obj/machinery/light/directional/south,
+/turf/open/floor/carpet/royalblue,
+/area/ship/crew/dorm/dormtwo)
+"iy" = (
+/obj/effect/turf_decal/box/corners,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/arrows{
+ dir = 8
+ },
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"iD" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/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
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/ship/crew/office)
+"iE" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen/kitchen)
+"iG" = (
+/turf/template_noop,
+/area/template_noop)
+"iI" = (
+/obj/effect/turf_decal/corner/opaque/solgovblue{
+ dir = 9
+ },
+/obj/effect/turf_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/machinery/cryopod{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/ship/crew/cryo)
+"iJ" = (
+/obj/item/clothing/neck/stripedsolgovscarf,
+/obj/item/clothing/neck/stripedsolgovscarf,
+/obj/item/clothing/under/solgov,
+/obj/item/clothing/under/solgov,
+/obj/item/clothing/under/solgov/dress,
+/obj/item/clothing/under/solgov/formal,
+/obj/item/clothing/under/solgov/formal,
+/obj/item/clothing/shoes/laceup,
+/obj/item/clothing/shoes/laceup,
+/obj/item/clothing/head/beret/solgov/plain,
+/obj/item/clothing/head/beret/solgov/plain,
+/obj/item/clothing/suit/solgov,
+/obj/item/clothing/suit/solgov/dress,
+/obj/item/clothing/suit/solgov/jacket,
+/obj/item/clothing/under/solgov/formal/skirt,
+/obj/item/clothing/suit/solgov/suit,
+/obj/structure/table/wood,
+/obj/structure/closet/wall{
+ dir = 8;
+ pixel_x = 28
+ },
+/obj/machinery/button/door{
+ pixel_y = -21;
+ pixel_x = -8;
+ dir = 1;
+ id = "sgi_dorms";
+ name = "dorms shutters control"
+ },
+/obj/item/clothing/suit/hooded/wintercoat/solgov,
+/obj/item/clothing/suit/hooded/wintercoat/solgov,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/dorm)
+"iL" = (
+/obj/machinery/airalarm/directional/north,
+/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,
+/turf/open/floor/wood,
+/area/ship/hallway/starboard)
+"iM" = (
+/obj/effect/turf_decal/techfloor{
+ dir = 9
+ },
+/obj/structure/extinguisher_cabinet/directional/west,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/white,
+/area/ship/cargo/office)
+"iR" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 5
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"jc" = (
+/obj/structure/chair/wood,
+/obj/effect/turf_decal/siding/wood/end{
+ dir = 4
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/crew/office)
+"je" = (
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue{
+ dir = 4
+ },
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue/corner{
+ dir = 8
+ },
+/obj/machinery/light/floor,
+/obj/effect/turf_decal/trimline/opaque/solgovblue/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/corner{
+ dir = 8
+ },
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/ship/cargo)
+"jf" = (
+/obj/structure/table/wood,
+/obj/item/table_bell{
+ pixel_x = -6;
+ pixel_y = 9
+ },
+/turf/open/floor/wood,
+/area/ship/crew/canteen)
+"jh" = (
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue{
+ 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/solgovblue/warning{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/light/floor,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/ship/cargo)
+"jo" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 8
+ },
+/obj/machinery/firealarm/directional/south,
+/turf/open/floor/wood,
+/area/ship/crew/office)
+"jv" = (
+/turf/open/floor/wood,
+/area/ship/crew/canteen)
+"jw" = (
+/obj/effect/turf_decal/techfloor,
+/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/plasteel/white,
+/area/ship/cargo/office)
+"jE" = (
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/corner{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/ship/cargo)
+"jM" = (
+/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/plasteel/mono,
+/area/ship/cargo)
+"jP" = (
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/corner{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/light/floor,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/ship/cargo)
+"jX" = (
+/obj/structure/chair/sofa/left{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/carpet/blue,
+/area/ship/crew/canteen/kitchen)
+"ka" = (
+/obj/effect/turf_decal/techfloor{
+ dir = 9
+ },
+/obj/machinery/suit_storage_unit/solgov,
+/turf/open/floor/plasteel/white,
+/area/ship/security/armory)
+"ke" = (
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning{
+ dir = 8
+ },
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/ship/cargo)
+"kf" = (
+/obj/effect/turf_decal/techfloor{
+ dir = 5
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/closet/cabinet{
+ name = "armor cabinet"
+ },
+/obj/item/clothing/suit/armor/vest/bulletproof/solgov,
+/obj/item/clothing/suit/armor/vest/bulletproof/solgov,
+/obj/item/clothing/suit/armor/vest/bulletproof/solgov,
+/obj/item/clothing/head/solgov/sonnensoldner,
+/obj/item/clothing/head/solgov/sonnensoldner,
+/obj/item/clothing/head/solgov/sonnensoldner,
+/obj/item/clothing/gloves/combat,
+/obj/item/clothing/gloves/combat,
+/obj/item/clothing/gloves/combat,
+/turf/open/floor/plasteel/white,
+/area/ship/security/armory)
+"km" = (
+/obj/structure/table/wood,
+/obj/item/storage/belt/utility{
+ pixel_y = 6
+ },
+/obj/item/radio/intercom/directional/north,
+/obj/item/multitool{
+ pixel_x = 7;
+ pixel_y = 2
+ },
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue{
+ dir = 2
+ },
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"ks" = (
+/obj/structure/cable{
+ icon_state = "2-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/structure/sign/poster/solgov/random{
+ pixel_y = 32
+ },
+/turf/open/floor/wood,
+/area/ship/hallway/starboard)
+"ku" = (
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue{
+ dir = 10
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning{
+ dir = 10
+ },
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/ship/cargo)
+"kx" = (
+/obj/effect/turf_decal/industrial/caution{
+ dir = 4
+ },
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"kz" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/machinery/light/directional/north,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen/kitchen)
+"kB" = (
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/turf_decal/industrial/warning{
+ 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/machinery/door/airlock/engineering{
+ dir = 4;
+ name = "Electrical Room";
+ req_one_access = list(10)
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
+ },
+/turf/open/floor/plasteel/mono/dark,
+/area/ship/engineering)
+"kK" = (
+/obj/machinery/door/window/brigdoor/westleft,
+/obj/structure/rack,
+/obj/machinery/light/directional/east,
+/turf/open/floor/plasteel/tech/grid,
+/area/ship/security/armory)
+"kL" = (
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/turf_decal/industrial/warning{
+ 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 = 8
+ },
+/obj/machinery/door/airlock/solgov/glass{
+ dir = 4;
+ name = "Offices"
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
+ },
+/turf/open/floor/plasteel/mono/dark,
+/area/ship/hallway/starboard)
+"kN" = (
+/obj/effect/turf_decal/corner/opaque/solgovblue{
+ dir = 9
+ },
+/obj/effect/turf_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/machinery/cryopod{
+ dir = 4
+ },
+/obj/machinery/light/directional/west,
+/turf/open/floor/plasteel/white,
+/area/ship/crew/cryo)
+"kR" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/machinery/airalarm/directional/north,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
+ },
+/turf/open/floor/wood,
+/area/ship/crew/office)
+"kZ" = (
+/obj/effect/turf_decal/techfloor,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/newscaster/security_unit/directional/south,
+/turf/open/floor/plasteel/white,
+/area/ship/cargo/office)
+"lh" = (
+/obj/item/clothing/neck/stripedsolgovscarf,
+/obj/item/clothing/neck/stripedsolgovscarf,
+/obj/item/clothing/under/solgov,
+/obj/item/clothing/under/solgov,
+/obj/item/clothing/under/solgov/dress,
+/obj/item/clothing/under/solgov/formal,
+/obj/item/clothing/under/solgov/formal,
+/obj/item/clothing/shoes/laceup,
+/obj/item/clothing/shoes/laceup,
+/obj/item/clothing/head/beret/solgov/plain,
+/obj/item/clothing/head/beret/solgov/plain,
+/obj/item/clothing/suit/solgov,
+/obj/item/clothing/suit/solgov/dress,
+/obj/item/clothing/suit/solgov/jacket,
+/obj/item/clothing/under/solgov/formal/skirt,
+/obj/item/clothing/suit/solgov/suit,
+/obj/structure/table/wood,
+/obj/structure/closet/wall{
+ dir = 8;
+ pixel_x = 28
+ },
+/obj/item/clothing/suit/hooded/wintercoat/solgov,
+/obj/item/clothing/suit/hooded/wintercoat/solgov,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/dorm)
+"li" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp/green{
+ pixel_y = 7;
+ pixel_x = 16
+ },
+/obj/item/folder/solgov,
+/obj/machinery/light/directional/south,
+/turf/open/floor/carpet/blue,
+/area/ship/crew/office)
+"lj" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/turretid/lethal{
+ pixel_y = 0;
+ pixel_x = -26
+ },
+/turf/open/floor/plasteel/stairs/wood{
+ dir = 1
+ },
+/area/ship/bridge)
+"ln" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/turf/closed/wall/mineral/titanium,
+/area/ship/maintenance/starboard)
+"lq" = (
+/obj/effect/turf_decal/techfloor{
+ dir = 1
+ },
+/obj/machinery/airalarm/directional/north,
+/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,
+/turf/open/floor/plasteel/white,
+/area/ship/security/armory)
+"lu" = (
+/obj/machinery/photocopier,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood/walnut,
+/area/ship/cargo)
+"lx" = (
+/obj/effect/turf_decal/techfloor{
+ dir = 9
+ },
+/obj/structure/rack,
+/obj/structure/window/reinforced,
+/obj/item/storage/box/handcuffs,
+/turf/open/floor/plasteel/white,
+/area/ship/security/armory)
+"lB" = (
+/obj/structure/fluff/hedge/opaque,
+/obj/effect/turf_decal/siding/wood{
+ color = "#D5A66E";
+ dir = 1
+ },
+/turf/open/floor/wood/birch,
+/area/ship/crew/dorm/dormthree)
+"lD" = (
+/obj/structure/bed,
+/obj/item/bedsheet/solgov,
+/obj/structure/curtain/cloth,
+/obj/machinery/firealarm/directional/south,
+/obj/machinery/airalarm/directional/west,
+/turf/open/floor/carpet/blue,
+/area/ship/crew/dorm)
+"lT" = (
+/obj/structure/railing/corner/wood{
+ color = "#543C30";
+ dir = 4
+ },
+/obj/effect/turf_decal/box/corners{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"lW" = (
+/obj/structure/railing/corner/wood{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/wood,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/newscaster/security_unit/directional/east,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood/birch,
+/area/ship/crew/canteen)
+"lX" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 9
+ },
+/obj/structure/extinguisher_cabinet/directional/west,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/ship/crew/canteen/kitchen)
+"md" = (
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue{
+ dir = 4
+ },
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/corner{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/ship/cargo)
+"mf" = (
+/obj/item/kirbyplants{
+ icon_state = "applebush";
+ pixel_y = 2;
+ pixel_x = -5
+ },
+/obj/machinery/light/directional/west,
+/turf/open/floor/wood/birch,
+/area/ship/crew/office)
+"my" = (
+/obj/structure/fluff/hedge,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen/kitchen)
+"mz" = (
+/obj/structure/closet/crate,
+/obj/item/reagent_containers/food/snacks/store/bread/plain,
+/obj/item/reagent_containers/food/snacks/store/bread/plain,
+/obj/item/reagent_containers/food/snacks/store/bread/plain,
+/obj/item/reagent_containers/food/snacks/store/bread/plain,
+/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/turf_decal/box/corners{
+ dir = 4
+ },
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"mA" = (
+/obj/structure/fluff/hedge,
+/turf/open/floor/wood/birch,
+/area/ship/crew/office)
+"mB" = (
+/obj/effect/turf_decal/techfloor{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/binary/dp_vent_pump/on/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/item/radio/intercom/directional/south,
+/obj/machinery/advanced_airlock_controller{
+ pixel_x = -25;
+ pixel_y = 2
+ },
+/turf/open/floor/plasteel/tech,
+/area/ship/hallway/starboard)
+"mD" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 1;
+ color = "#543C30"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/dorm/dormtwo)
+"mQ" = (
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/turf_decal/industrial/warning{
+ 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 = 8
+ },
+/obj/machinery/door/airlock/mining{
+ dir = 4;
+ name = "Field Engineer Locker Room";
+ req_one_access = list(10,31)
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
+ },
+/turf/open/floor/plasteel/mono/dark,
+/area/ship/hallway/starboard)
+"mY" = (
+/obj/effect/turf_decal/siding/yellow{
+ dir = 4
+ },
+/obj/machinery/firealarm/directional/north,
+/obj/effect/turf_decal/corner/opaque/solgovblue{
+ dir = 5
+ },
+/turf/open/floor/plasteel/white,
+/area/ship/crew/cryo)
+"nc" = (
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue{
+ dir = 8
+ },
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/ship/cargo)
+"nf" = (
+/obj/effect/turf_decal/siding/wood,
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/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 = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/ship/crew/office)
+"ng" = (
+/obj/effect/turf_decal/siding/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue,
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning,
+/obj/effect/turf_decal/trimline/opaque/solgovblue/corner{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/ship/cargo)
+"nh" = (
+/obj/effect/turf_decal/siding/wood{
+ color = "#543c30"
+ },
+/obj/structure/railing/wood{
+ color = "#543C30"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/industrial/stand_clear,
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"ni" = (
+/obj/machinery/power/shuttle/engine/electric{
+ dir = 4
+ },
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/machinery/light/floor,
+/turf/open/floor/engine/hull,
+/area/ship/maintenance/starboard)
+"nk" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 9
+ },
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = 21
+ },
+/turf/open/floor/wood,
+/area/ship/crew/canteen/kitchen)
+"no" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/ship/crew/canteen/kitchen)
+"np" = (
+/obj/effect/turf_decal/industrial/caution{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"nx" = (
+/obj/effect/turf_decal/techfloor{
+ dir = 1
+ },
+/obj/machinery/airalarm/directional/north,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
+/turf/open/floor/plasteel/white,
+/area/ship/hallway/starboard)
+"ny" = (
+/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 = 8
+ },
+/turf/open/floor/plasteel/freezer,
+/area/ship/crew/toilet)
+"nA" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/structure/closet/secure_closet/freezer/fridge,
+/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/snacks/meat/slab,
+/obj/item/reagent_containers/food/snacks/meat/slab,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/reagent_containers/food/snacks/grown/cocoapod,
+/obj/item/reagent_containers/food/snacks/grown/cocoapod,
+/obj/item/reagent_containers/food/snacks/grown/citrus/orange,
+/obj/item/reagent_containers/food/snacks/grown/citrus/orange,
+/obj/item/reagent_containers/food/snacks/grown/apple,
+/obj/item/reagent_containers/food/snacks/grown/apple,
+/obj/item/reagent_containers/food/snacks/grown/tomato,
+/obj/item/reagent_containers/food/snacks/grown/tomato,
+/obj/item/reagent_containers/food/snacks/grown/carrot,
+/obj/item/reagent_containers/food/snacks/grown/carrot,
+/obj/item/reagent_containers/food/snacks/grown/potato,
+/obj/item/reagent_containers/food/snacks/grown/potato,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen/kitchen)
+"nB" = (
+/obj/effect/turf_decal/corner/opaque/solgovblue{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/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,
+/turf/open/floor/plasteel/patterned,
+/area/ship/cargo)
+"nC" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/wood/corner,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/ship/crew/office)
+"nJ" = (
+/obj/effect/turf_decal/techfloor/orange/corner,
+/obj/effect/turf_decal/techfloor/orange/corner{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/components/binary/pump/on/layer2{
+ dir = 4;
+ name = "Air to Distro"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/effect/turf_decal/corner/opaque/solgovblue{
+ dir = 9
+ },
+/obj/effect/turf_decal/corner/opaque/solgovgold{
+ dir = 6
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/tech,
+/area/ship/maintenance/starboard)
+"nL" = (
+/obj/structure/table/wood,
+/obj/machinery/cell_charger,
+/obj/item/stock_parts/cell/high/plus,
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue{
+ dir = 1
+ },
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"nO" = (
+/obj/machinery/computer/cargo/express/solgov,
+/turf/open/floor/wood/maple,
+/area/ship/bridge)
+"nR" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile/shuttle,
+/obj/machinery/door/poddoor/shutters{
+ dir = 4;
+ id = "sgi_bridge"
+ },
+/turf/open/floor/plating,
+/area/ship/bridge)
+"nV" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 1;
+ color = "#543C30"
+ },
+/obj/structure/railing/wood{
+ color = "#543C30";
+ dir = 1
+ },
+/obj/effect/turf_decal/industrial/stand_clear{
+ dir = 1
+ },
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"nY" = (
+/obj/structure/reagent_dispensers/water_cooler,
+/turf/open/floor/wood/birch,
+/area/ship/crew/office)
+"of" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_x = 11;
+ pixel_y = -16
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
+ },
+/turf/open/floor/wood,
+/area/ship/hallway/starboard)
+"og" = (
+/obj/structure/bookcase/random,
+/obj/machinery/light/directional/west,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/library)
+"oi" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood/walnut,
+/area/ship/cargo)
+"op" = (
+/obj/machinery/power/smes/shuttle/precharged{
+ dir = 4
+ },
+/obj/effect/turf_decal/techfloor/orange{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/machinery/door/poddoor{
+ id = "sgi_engine";
+ dir = 4
+ },
+/obj/machinery/door/window/westright{
+ dir = 4
+ },
+/turf/open/floor/plasteel/tech/grid,
+/area/ship/maintenance/port)
+"or" = (
+/obj/effect/turf_decal/industrial/warning,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/door/airlock/solgov{
+ name = "Cryogenics"
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/firedoor/border_only{
+ dir = 1
+ },
+/turf/open/floor/plasteel/mono/dark,
+/area/ship/crew/cryo)
+"os" = (
+/obj/effect/turf_decal/siding/yellow{
+ dir = 8
+ },
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_x = 11;
+ pixel_y = -14
+ },
+/obj/effect/turf_decal/corner/opaque/solgovblue{
+ dir = 10
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/white,
+/area/ship/crew/cryo)
+"oC" = (
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue,
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/patterned,
+/area/ship/cargo)
+"oG" = (
+/obj/effect/turf_decal/techfloor/orange,
+/obj/machinery/atmospherics/pipe/simple/general/visible/layer2{
+ dir = 5
+ },
+/obj/machinery/light/directional/south,
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/tech,
+/area/ship/maintenance/starboard)
+"oH" = (
+/obj/effect/turf_decal/techfloor{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/item/radio/intercom/directional/north,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/white,
+/area/ship/security/armory)
+"oN" = (
+/obj/structure/bookcase/random,
+/obj/structure/sign/poster/solgov/random{
+ pixel_x = -32
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/crew/library)
+"oR" = (
+/obj/structure/chair/wood{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/wood,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/office)
+"pc" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = 12
+ },
+/obj/structure/mirror{
+ pixel_x = 25
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 8
+ },
+/obj/machinery/light/directional/north,
+/turf/open/floor/plasteel/freezer,
+/area/ship/crew/toilet)
+"pd" = (
+/obj/machinery/fax,
+/obj/structure/table/wood/fancy/purple,
+/turf/open/floor/wood/maple,
+/area/ship/crew/dorm/dormtwo)
+"ph" = (
+/obj/effect/turf_decal/siding/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/corner/opaque/solgovblue{
+ dir = 10
+ },
+/obj/machinery/newscaster/security_unit/directional/south,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/white,
+/area/ship/crew/cryo)
+"pr" = (
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue{
+ dir = 1
+ },
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue,
+/obj/machinery/light/directional/west,
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning,
+/turf/open/floor/plasteel/patterned,
+/area/ship/cargo)
+"ps" = (
+/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 = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/dorm)
+"pu" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 8;
+ color = "#543C30"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/dorm/dormtwo)
+"px" = (
+/obj/structure/rack,
+/obj/item/shovel,
+/obj/effect/turf_decal/industrial/outline/yellow,
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"py" = (
+/obj/structure/filingcabinet/double,
+/obj/item/documents/solgov,
+/obj/machinery/airalarm/directional/north,
+/turf/open/floor/wood/maple,
+/area/ship/crew/dorm/dormtwo)
+"pG" = (
+/obj/effect/turf_decal/siding/wood{
+ color = "#D5A66E"
+ },
+/obj/structure/railing/wood{
+ dir = 1;
+ color = "#D5A66E"
+ },
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = 19;
+ pixel_y = -12
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood/birch,
+/area/ship/crew/dorm/dormthree)
+"pK" = (
+/obj/effect/turf_decal/siding/yellow,
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning,
+/obj/machinery/light/floor,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/ship/cargo)
+"pL" = (
+/obj/effect/turf_decal/siding/wood{
+ color = "#D5A66E";
+ dir = 10
+ },
+/obj/structure/chair/comfy/brown{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood/birch,
+/area/ship/crew/dorm/dormthree)
+"pS" = (
+/obj/structure/table/wood,
+/turf/open/floor/carpet/blue,
+/area/ship/crew/canteen/kitchen)
+"qc" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile/shuttle,
+/obj/machinery/door/poddoor/shutters{
+ dir = 4;
+ id = "sgi_cafeteria"
+ },
+/turf/open/floor/plating,
+/area/ship/crew/canteen/kitchen)
+"qe" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/stairs/wood{
+ dir = 1
+ },
+/area/ship/bridge)
+"qh" = (
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/ship/crew/canteen/kitchen)
+"qp" = (
+/obj/machinery/door/poddoor{
+ dir = 4;
+ id = "sgi_cargo1"
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/shieldwallgen/atmos/roundstart{
+ dir = 1;
+ id = "sgi_holocargo1"
+ },
+/turf/open/floor/plasteel/patterned/ridged,
+/area/ship/cargo)
+"qs" = (
+/obj/machinery/space_heater,
+/obj/effect/turf_decal/techfloor/orange{
+ dir = 6
+ },
+/obj/effect/turf_decal/industrial/outline/yellow,
+/obj/effect/turf_decal/corner/opaque/solgovblue{
+ dir = 1
+ },
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/structure/cable,
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_x = 11;
+ pixel_y = -14
+ },
+/turf/open/floor/plasteel/tech,
+/area/ship/maintenance/port)
+"qt" = (
+/obj/structure/closet/crate,
+/obj/effect/turf_decal/industrial/stand_clear{
+ dir = 1
+ },
+/obj/effect/spawner/lootdrop/maintenance/three,
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"qw" = (
+/obj/effect/turf_decal/industrial/stand_clear{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"qx" = (
+/obj/effect/turf_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/machinery/suit_storage_unit/solgov,
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/plasteel/tech,
+/area/ship/hallway/starboard)
+"qB" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 1
+ },
+/obj/structure/sign/poster/solgov/random{
+ pixel_x = 32
+ },
+/turf/open/floor/wood,
+/area/ship/crew/canteen)
+"qE" = (
+/obj/structure/table/wood,
+/obj/item/kitchen/knife/letter_opener{
+ pixel_x = -13;
+ icon_state = "letter_opener_b";
+ pixel_y = 4;
+ name = "boxcutter"
+ },
+/obj/item/storage/box/shipping,
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue{
+ dir = 2
+ },
+/obj/structure/sign/poster/solgov/random{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"qG" = (
+/obj/machinery/light/small/directional/south,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/tech/grid,
+/area/ship/storage)
+"qM" = (
+/obj/machinery/light/floor,
+/obj/structure/sign/solgov_seal{
+ pixel_y = 0;
+ pixel_x = 28
+ },
+/turf/open/floor/engine/hull,
+/area/ship/external/dark)
+"qP" = (
+/obj/machinery/computer/crew/solgov{
+ dir = 1
+ },
+/turf/open/floor/wood/maple,
+/area/ship/bridge)
+"qS" = (
+/obj/effect/turf_decal/corner/opaque/solgovblue{
+ dir = 6
+ },
+/obj/effect/turf_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/structure/table/wood,
+/obj/structure/closet/wall{
+ pixel_y = 28
+ },
+/obj/item/radio,
+/obj/item/radio,
+/obj/item/radio,
+/obj/item/radio,
+/obj/item/radio,
+/obj/item/radio,
+/obj/item/radio,
+/obj/item/radio,
+/obj/item/radio,
+/obj/item/radio,
+/obj/item/radio,
+/obj/item/radio,
+/obj/item/radio,
+/turf/open/floor/plasteel/white,
+/area/ship/crew/cryo)
+"rb" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 1;
+ color = "#543C30"
+ },
+/obj/effect/turf_decal/box/corners,
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"rm" = (
+/obj/effect/spawner/lootdrop/crate_spawner,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"rz" = (
+/obj/machinery/holopad/emergency/command,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/ship/bridge)
+"rD" = (
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/tech,
+/area/ship/maintenance/port)
+"rM" = (
+/obj/effect/turf_decal/box/corners,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"rN" = (
+/obj/structure/closet/secure_closet/miner{
+ name = "field engineer's locker";
+ populate = 0;
+ anchored = 1
+ },
+/obj/item/pickaxe/drill/jackhammer,
+/obj/item/storage/toolbox/mechanical,
+/obj/item/clothing/head/hardhat/solgov,
+/obj/item/radio{
+ icon_state = "sec_radio"
+ },
+/obj/item/clothing/under/solgov/formal,
+/obj/item/clothing/under/solgov/dress,
+/obj/item/clothing/under/solgov,
+/obj/item/clothing/suit/hazardvest/solgov,
+/obj/item/clothing/accessory/armband/cargo,
+/obj/item/clothing/shoes/workboots,
+/obj/item/clothing/gloves/combat,
+/obj/item/storage/backpack,
+/obj/effect/turf_decal/techfloor{
+ dir = 1
+ },
+/obj/effect/turf_decal/industrial/outline/red,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/item/clothing/glasses/meson/prescription,
+/obj/item/kitchen/knife/letter_opener,
+/obj/item/clothing/glasses/meson,
+/obj/machinery/light/directional/north,
+/obj/item/storage/bag/ore,
+/turf/open/floor/plasteel/white,
+/area/ship/cargo/office)
+"rQ" = (
+/obj/effect/turf_decal/techfloor{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/airalarm/directional/west,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/white,
+/area/ship/engineering)
+"rR" = (
+/obj/effect/turf_decal/siding/yellow,
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/ship/cargo)
+"rS" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/ship/crew/canteen/kitchen)
+"rT" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/ship/crew/office)
+"rU" = (
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue,
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning,
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned,
+/area/ship/cargo)
+"rZ" = (
+/obj/structure/chair,
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue{
+ dir = 10
+ },
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"sb" = (
+/obj/effect/turf_decal/techfloor/corner,
+/obj/effect/turf_decal/techfloor/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/corner/opaque/solgovgold{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/obj/effect/turf_decal/corner/opaque/solgovblue{
+ dir = 5
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning,
+/turf/open/floor/plasteel/white,
+/area/ship/security/armory)
+"sd" = (
+/obj/structure/table/wood,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen/kitchen)
+"sg" = (
+/obj/structure/fluff/hedge,
+/obj/structure/sign/poster/solgov/random{
+ pixel_x = -32
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen/kitchen)
+"sh" = (
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue{
+ dir = 4
+ },
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning{
+ dir = 8
+ },
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/ship/cargo)
+"sk" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/wood,
+/area/ship/crew/library)
+"sm" = (
+/obj/effect/turf_decal/box/corners{
+ dir = 4
+ },
+/obj/structure/closet/crate,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/spawner/lootdrop/maintenance/three,
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"sn" = (
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/ship/crew/cryo)
+"so" = (
+/obj/structure/bed,
+/obj/item/bedsheet/solgov,
+/obj/structure/curtain/cloth,
+/turf/open/floor/carpet/blue,
+/area/ship/crew/dorm)
+"sr" = (
+/obj/effect/turf_decal/industrial/stand_clear{
+ dir = 1
+ },
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"su" = (
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/turf_decal/industrial/warning{
+ 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 = 8
+ },
+/obj/machinery/door/airlock/atmos{
+ dir = 4;
+ name = "Engine Room";
+ req_one_access = list(10)
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
+ },
+/turf/open/floor/plasteel/mono/dark,
+/area/ship/maintenance/starboard)
+"sx" = (
+/obj/structure/rack,
+/obj/item/pickaxe,
+/obj/item/pickaxe,
+/obj/effect/turf_decal/industrial/outline/yellow,
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"sz" = (
+/obj/effect/turf_decal/industrial/outline/yellow,
+/obj/machinery/light/directional/south,
+/obj/structure/ore_box,
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"sH" = (
+/obj/effect/turf_decal/box/corners{
+ dir = 8
+ },
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"sJ" = (
+/turf/closed/wall/mineral/titanium,
+/area/ship/storage)
+"sQ" = (
+/obj/structure/bed/double,
+/obj/item/bedsheet/double/solgov,
+/obj/item/toy/plush/blahaj,
+/obj/structure/sign/solgov_flag{
+ dir = 8;
+ pixel_x = 28
+ },
+/turf/open/floor/carpet/royalblue,
+/area/ship/crew/dorm/dormtwo)
+"sT" = (
+/obj/effect/turf_decal/box/corners{
+ dir = 1
+ },
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"sV" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/on/layer4{
+ dir = 2;
+ name = "atmos waste outlet injector"
+ },
+/turf/open/floor/plating,
+/area/ship/external/dark)
+"sX" = (
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue{
+ dir = 8
+ },
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue/corner,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/corner,
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning{
+ dir = 8
+ },
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/ship/cargo)
+"tc" = (
+/obj/machinery/firealarm/directional/south,
+/turf/open/floor/carpet/royalblue,
+/area/ship/crew/dorm/dormtwo)
+"td" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/ship/crew/library)
+"tg" = (
+/obj/structure/railing/wood{
+ color = "#543C30";
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"ti" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 8;
+ color = "#543C30"
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 4;
+ color = "#543C30"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 1
+ },
+/obj/machinery/button/door{
+ pixel_y = -21;
+ pixel_x = -8;
+ dir = 1;
+ id = "sgi_captain";
+ name = "external shutters control"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/dorm/dormtwo)
+"tl" = (
+/obj/effect/turf_decal/siding/wood{
+ color = "#D5A66E"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood/birch,
+/area/ship/crew/dorm/dormthree)
+"tr" = (
+/obj/structure/closet/secure_closet/miner{
+ name = "field engineer's locker";
+ populate = 0;
+ anchored = 1
+ },
+/obj/item/pickaxe/drill/jackhammer,
+/obj/item/storage/toolbox/mechanical,
+/obj/item/clothing/head/hardhat/solgov,
+/obj/item/radio{
+ icon_state = "sec_radio"
+ },
+/obj/item/clothing/under/solgov/formal,
+/obj/item/clothing/under/solgov/dress,
+/obj/item/clothing/under/solgov,
+/obj/item/clothing/suit/hazardvest/solgov,
+/obj/item/clothing/accessory/armband/cargo,
+/obj/item/clothing/shoes/workboots,
+/obj/item/clothing/gloves/combat,
+/obj/item/storage/backpack,
+/obj/item/clothing/glasses/meson/prescription,
+/obj/effect/turf_decal/techfloor{
+ dir = 1
+ },
+/obj/effect/turf_decal/industrial/outline/red,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/item/kitchen/knife/letter_opener,
+/obj/item/clothing/glasses/meson,
+/obj/structure/sign/poster/solgov/random{
+ pixel_y = 32
+ },
+/obj/item/storage/bag/ore,
+/turf/open/floor/plasteel/white,
+/area/ship/cargo/office)
+"ts" = (
+/turf/closed/wall/mineral/titanium,
+/area/ship/hallway/starboard)
+"tx" = (
+/obj/machinery/firealarm/directional/north,
+/turf/open/floor/carpet/royalblue,
+/area/ship/crew/dorm/dormthree)
+"tB" = (
+/obj/effect/turf_decal/techfloor/corner,
+/obj/effect/turf_decal/techfloor/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/corner/opaque/solgovgold{
+ dir = 6
+ },
+/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 = 8
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/ship/hallway/starboard)
+"tD" = (
+/obj/structure/fluff/hedge/opaque,
+/obj/effect/turf_decal/siding/wood{
+ color = "#543c30"
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/crew/dorm/dormtwo)
+"tK" = (
+/obj/structure/table/wood,
+/obj/item/radio/intercom/directional/east,
+/obj/item/desk_flag/solgov{
+ pixel_y = 12;
+ pixel_x = -8
+ },
+/turf/open/floor/wood,
+/area/ship/crew/canteen)
+"tT" = (
+/obj/machinery/power/terminal{
+ dir = 8
+ },
+/obj/effect/turf_decal/techfloor/orange{
+ dir = 10
+ },
+/obj/effect/turf_decal/corner/opaque/solgovblue{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/machinery/airalarm/directional/south,
+/turf/open/floor/plasteel/tech,
+/area/ship/maintenance/port)
+"tU" = (
+/obj/effect/turf_decal/siding/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning{
+ dir = 1
+ },
+/obj/machinery/light/floor,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/ship/cargo)
+"tY" = (
+/obj/effect/turf_decal/techfloor{
+ dir = 6
+ },
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = 19;
+ pixel_y = -12
+ },
+/turf/open/floor/plasteel/white,
+/area/ship/engineering)
+"uc" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 1
+ },
+/obj/machinery/light/directional/west,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood/maple,
+/area/ship/bridge)
+"uh" = (
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/ship/cargo)
+"up" = (
+/obj/structure/rack,
+/obj/item/storage/toolbox/mechanical{
+ pixel_y = 5
+ },
+/obj/item/storage/toolbox/mechanical{
+ pixel_y = 5
+ },
+/obj/item/analyzer,
+/obj/effect/turf_decal/techfloor{
+ dir = 1
+ },
+/obj/machinery/airalarm/directional/north,
+/obj/item/analyzer,
+/turf/open/floor/plasteel/white,
+/area/ship/cargo/office)
+"uq" = (
+/obj/machinery/light/directional/west,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/ship/crew/canteen)
+"ut" = (
+/obj/effect/turf_decal/techfloor/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/techfloor/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/corner/opaque/solgovgold{
+ dir = 9
+ },
+/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
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/white,
+/area/ship/cargo/office)
+"uv" = (
+/obj/effect/turf_decal/techfloor{
+ dir = 1
+ },
+/obj/structure/rack,
+/obj/machinery/door/window/brigdoor/southleft,
+/obj/item/ammo_box/magazine/pistol556mm,
+/obj/item/ammo_box/magazine/pistol556mm,
+/obj/item/ammo_box/magazine/pistol556mm,
+/obj/item/ammo_box/magazine/pistol556mm,
+/obj/item/ammo_box/magazine/pistol556mm,
+/obj/item/ammo_box/magazine/pistol556mm,
+/obj/item/gun/ballistic/automatic/pistol/solgov{
+ pixel_x = -2
+ },
+/obj/item/gun/ballistic/automatic/pistol/solgov{
+ pixel_x = 1
+ },
+/obj/item/gun/ballistic/automatic/pistol/solgov{
+ pixel_x = 4
+ },
+/obj/machinery/newscaster/security_unit/directional/north,
+/obj/effect/turf_decal/corner/opaque/solgovblue{
+ dir = 10
+ },
+/turf/open/floor/plasteel/white,
+/area/ship/security/armory)
+"uw" = (
+/obj/effect/turf_decal/industrial/warning,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/door/airlock/external,
+/obj/machinery/door/poddoor{
+ id = "sgi_external"
+ },
+/turf/open/floor/plasteel/mono/dark,
+/area/ship/hallway/starboard)
+"uy" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/ship/crew/canteen)
+"uA" = (
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning{
+ dir = 8
+ },
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/ship/cargo)
+"uC" = (
+/obj/effect/turf_decal/techfloor{
+ dir = 6
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/white,
+/area/ship/storage)
+"uE" = (
+/obj/item/paper_bin,
+/obj/item/pen/solgov,
+/obj/structure/table/wood/fancy/purple,
+/obj/item/binoculars{
+ pixel_y = 13
+ },
+/turf/open/floor/wood/maple,
+/area/ship/crew/dorm/dormtwo)
+"uK" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/ship/cargo)
+"uR" = (
+/obj/effect/turf_decal/industrial/stand_clear,
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"uS" = (
+/obj/structure/table/wood,
+/obj/item/cutting_board,
+/obj/item/kitchen/knife,
+/obj/item/reagent_containers/food/condiment/saltshaker{
+ pixel_x = -17
+ },
+/obj/item/reagent_containers/food/condiment/peppermill{
+ pixel_x = -10;
+ pixel_y = 6
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen/kitchen)
+"uT" = (
+/obj/effect/turf_decal/siding/yellow,
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/ship/cargo)
+"uX" = (
+/obj/structure/railing/wood{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/ship/crew/canteen/kitchen)
+"vf" = (
+/obj/effect/turf_decal/techfloor{
+ dir = 5
+ },
+/obj/machinery/power/port_gen/pacman,
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plasteel/white,
+/area/ship/engineering)
+"vn" = (
+/obj/item/kirbyplants{
+ icon_state = "plant-11";
+ pixel_x = -12;
+ pixel_y = 19;
+ layer = 2.89
+ },
+/obj/item/kirbyplants{
+ icon_state = "plant-17";
+ pixel_y = 3;
+ pixel_x = -10
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 4
+ },
+/obj/machinery/light/directional/west,
+/turf/open/floor/wood,
+/area/ship/hallway/starboard)
+"vo" = (
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/turf_decal/industrial/warning{
+ 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
+ },
+/obj/machinery/door/airlock/security{
+ dir = 4;
+ name = "Sonnensoldner Locker Room";
+ req_one_access = list(1,10)
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
+ },
+/turf/open/floor/plasteel/mono/dark,
+/area/ship/hallway/starboard)
+"vz" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 1;
+ color = "#543C30"
+ },
+/obj/structure/railing/wood{
+ color = "#543C30"
+ },
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = 19;
+ pixel_y = -12
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/crew/dorm/dormtwo)
+"vE" = (
+/obj/effect/turf_decal/siding/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/ship/cargo)
+"vH" = (
+/obj/effect/turf_decal/solgov/wood/top_right,
+/obj/effect/turf_decal/siding/wood{
+ 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 = -11
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/ship/bridge)
+"vL" = (
+/obj/effect/turf_decal/siding/wood,
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/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/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/ship/crew/library)
+"vM" = (
+/obj/structure/fluff/hedge,
+/obj/machinery/firealarm/directional/east,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/library)
+"vW" = (
+/obj/effect/turf_decal/solgov/wood/bottom_right,
+/obj/effect/turf_decal/siding/wood,
+/obj/item/radio/intercom/directional/west,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/turf/open/floor/wood,
+/area/ship/bridge)
+"wb" = (
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/ship/maintenance/starboard)
+"wg" = (
+/obj/structure/closet/crate/wooden,
+/obj/item/storage/crayons,
+/obj/item/storage/crayons,
+/obj/item/storage/crayons,
+/obj/item/storage/crayons,
+/obj/item/toner/extreme,
+/obj/item/toner/extreme,
+/obj/item/toner/extreme,
+/obj/effect/turf_decal/industrial/stand_clear{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"wh" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/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/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/ship/crew/library)
+"wj" = (
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning{
+ dir = 4
+ },
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/ship/cargo)
+"wk" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 8;
+ color = "#543C30"
+ },
+/obj/effect/turf_decal/siding/wood/corner{
+ color = "#543C30"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/dorm/dormtwo)
+"wm" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile/shuttle,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 4;
+ id = "sgi_qm"
+ },
+/turf/open/floor/plating,
+/area/ship/crew/dorm/dormthree)
+"wo" = (
+/obj/item/clothing/gloves/combat,
+/obj/item/folder/solgov,
+/obj/item/folder/solgov,
+/obj/item/clothing/under/solgov/formal,
+/obj/item/pen/solgov,
+/obj/item/clothing/under/solgov/dress,
+/obj/item/stamp/solgov,
+/obj/item/clothing/suit/armor/solgov_trenchcoat,
+/obj/item/storage/backpack/satchel,
+/obj/item/kitchen/knife/letter_opener,
+/obj/structure/closet/secure_closet/quartermaster{
+ populate = 0;
+ anchored = 1;
+ name = "\proper logistics deck officer's locker"
+ },
+/obj/item/clothing/suit/solgov/overcoat,
+/obj/item/clothing/head/flatcap/solgov,
+/obj/item/clothing/glasses/sunglasses,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/dorm/dormthree)
+"wq" = (
+/obj/effect/turf_decal/industrial/warning,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/door/airlock/security{
+ dir = 1;
+ name = "Hardsuit Storage";
+ req_one_access = list(1)
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/firedoor/border_only{
+ dir = 1
+ },
+/turf/open/floor/plasteel/mono/dark,
+/area/ship/security/armory)
+"wt" = (
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue{
+ dir = 4
+ },
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning{
+ dir = 8
+ },
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/ship/cargo)
+"wB" = (
+/obj/structure/closet/secure_closet/security{
+ populate = 0;
+ name = "sonnensöldners's locker";
+ anchored = 1
+ },
+/obj/item/clothing/head/solgov/sonnensoldner,
+/obj/item/radio{
+ icon_state = "sec_radio"
+ },
+/obj/item/clothing/under/solgov/formal,
+/obj/item/clothing/under/solgov/dress,
+/obj/item/clothing/under/solgov,
+/obj/item/clothing/shoes/workboots,
+/obj/item/storage/belt/sabre/solgov,
+/obj/item/clothing/gloves/combat,
+/obj/item/radio/headset/solgov/alt,
+/obj/item/storage/backpack,
+/obj/item/clothing/suit/armor/vest/bulletproof/solgov,
+/obj/effect/turf_decal/techfloor,
+/obj/effect/turf_decal/industrial/outline/red,
+/turf/open/floor/plasteel/white,
+/area/ship/security/armory)
+"wF" = (
+/obj/structure/chair/wood,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen/kitchen)
+"wQ" = (
+/obj/effect/turf_decal/corner/opaque/solgovblue/full,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/white,
+/area/ship/engineering)
+"wW" = (
+/obj/structure/table/wood,
+/obj/machinery/chem_dispenser/drinks{
+ dir = 1
+ },
+/turf/open/floor/wood,
+/area/ship/crew/canteen)
+"xd" = (
+/obj/effect/turf_decal/techfloor{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
+ },
+/turf/open/floor/plasteel/tech,
+/area/ship/hallway/starboard)
+"xf" = (
+/obj/effect/turf_decal/corner/opaque/solgovblue{
+ dir = 10
+ },
+/obj/structure/railing/corner{
+ dir = 4
+ },
+/obj/structure/railing/corner{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/white,
+/area/ship/engineering)
+"xh" = (
+/obj/structure/chair/wood{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 1
+ },
+/obj/structure/extinguisher_cabinet/directional/east,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood/birch,
+/area/ship/hallway/starboard)
+"xs" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/effect/turf_decal/techfloor/orange{
+ dir = 4
+ },
+/obj/effect/turf_decal/industrial/outline/yellow,
+/obj/effect/turf_decal/corner/opaque/solgovblue{
+ dir = 9
+ },
+/turf/open/floor/plasteel/tech,
+/area/ship/maintenance/port)
+"xt" = (
+/obj/effect/turf_decal/corner/opaque/solgovblue/full,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
+/turf/open/floor/plasteel/white,
+/area/ship/cargo/office)
+"xA" = (
+/obj/structure/fluff/hedge,
+/obj/structure/sign/poster/solgov/random{
+ pixel_y = 30
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen/kitchen)
+"xB" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue{
+ dir = 5
+ },
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"xC" = (
+/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/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/stairs/wood{
+ dir = 8;
+ color = "#D5A66E"
+ },
+/area/ship/crew/dorm/dormthree)
+"xF" = (
+/obj/machinery/door/poddoor{
+ dir = 4;
+ id = "sgi_cargo2"
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/shieldwallgen/atmos/roundstart{
+ dir = 1;
+ id = "sgi_holocargo2"
+ },
+/turf/open/floor/plasteel/patterned/ridged,
+/area/ship/cargo)
+"xP" = (
+/obj/structure/chair/sofa/right,
+/obj/machinery/airalarm/directional/north,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/carpet/blue,
+/area/ship/crew/canteen/kitchen)
+"xS" = (
+/obj/machinery/space_heater,
+/obj/effect/turf_decal/techfloor/orange{
+ dir = 5
+ },
+/obj/effect/turf_decal/corner/opaque/solgovblue{
+ dir = 8
+ },
+/obj/effect/turf_decal/industrial/outline/yellow,
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = 21
+ },
+/turf/open/floor/plasteel/tech,
+/area/ship/maintenance/starboard)
+"xU" = (
+/obj/effect/turf_decal/techfloor,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/ship/cargo/office)
+"xY" = (
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/ship/crew/dorm/dormtwo)
+"xZ" = (
+/turf/closed/wall/mineral/titanium,
+/area/ship/engineering)
+"ye" = (
+/obj/machinery/photocopier,
+/obj/machinery/light/directional/south,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/dorm/dormthree)
+"yl" = (
+/obj/machinery/computer/helm/solgov{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/wood,
+/obj/structure/railing/wood,
+/turf/open/floor/wood,
+/area/ship/bridge)
+"ym" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
+/obj/machinery/light/directional/west,
+/turf/open/floor/wood/maple,
+/area/ship/bridge)
+"yn" = (
+/obj/structure/chair/wood{
+ dir = 4
+ },
+/obj/machinery/light/directional/south,
+/obj/structure/extinguisher_cabinet/directional/west,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/library)
+"yu" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin,
+/obj/item/pen/solgov,
+/obj/machinery/newscaster/security_unit/directional/south,
+/turf/open/floor/carpet/blue,
+/area/ship/crew/office)
+"yw" = (
+/obj/effect/turf_decal/siding/yellow,
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/ship/cargo)
+"yz" = (
+/obj/effect/turf_decal/techfloor{
+ dir = 5
+ },
+/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/ship/security/armory)
+"yB" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile/shuttle,
+/obj/machinery/door/poddoor/shutters{
+ dir = 1;
+ id = "sgi_bridge"
+ },
+/turf/open/floor/plating,
+/area/ship/bridge)
+"yD" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 9;
+ color = "#543C30"
+ },
+/obj/structure/chair/comfy/beige{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/dorm/dormtwo)
+"yE" = (
+/obj/structure/closet/secure_closet/freezer/fridge,
+/obj/item/reagent_containers/food/condiment/flour,
+/obj/item/reagent_containers/food/condiment/flour,
+/obj/item/reagent_containers/food/condiment/flour,
+/obj/item/reagent_containers/food/condiment/rice,
+/obj/item/reagent_containers/food/condiment/sugar,
+/obj/item/reagent_containers/food/condiment/milk,
+/obj/item/reagent_containers/food/condiment/milk,
+/obj/item/reagent_containers/food/condiment/soymilk,
+/obj/item/reagent_containers/food/condiment/soymilk,
+/obj/item/storage/fancy/egg_box,
+/obj/item/reagent_containers/food/condiment/enzyme,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen/kitchen)
+"yG" = (
+/obj/structure/closet/crate/bin,
+/obj/machinery/light/directional/north,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood/maple,
+/area/ship/crew/dorm/dormtwo)
+"yH" = (
+/obj/structure/table/wood,
+/obj/item/radio/intercom/directional/west,
+/turf/open/floor/wood,
+/area/ship/crew/canteen)
+"yI" = (
+/obj/structure/railing/wood{
+ color = "#543C30";
+ dir = 4
+ },
+/obj/effect/turf_decal/industrial/stand_clear{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"yV" = (
+/obj/effect/turf_decal/techfloor,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
+/obj/item/radio/intercom/directional/south,
+/turf/open/floor/plasteel/white,
+/area/ship/cargo/office)
+"za" = (
+/obj/effect/turf_decal/siding/wood/corner,
+/turf/open/floor/wood,
+/area/ship/crew/office)
+"zc" = (
+/turf/closed/wall/mineral/titanium,
+/area/ship/crew/dorm/dormthree)
+"zd" = (
+/turf/closed/wall/mineral/titanium,
+/area/ship/crew/canteen)
+"ze" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/holopad/emergency/command,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood/birch,
+/area/ship/crew/dorm/dormthree)
+"zf" = (
+/obj/effect/turf_decal/industrial/warning,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/door/airlock/solgov{
+ name = "Dormitories"
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/firedoor/border_only{
+ dir = 1
+ },
+/turf/open/floor/plasteel/mono/dark,
+/area/ship/crew/dorm)
+"zp" = (
+/obj/effect/turf_decal/techfloor/orange,
+/obj/effect/turf_decal/industrial/outline/yellow,
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/light/directional/south,
+/obj/machinery/telecomms/relay{
+ network = "SolNet";
+ autolinkers = list("SolHub")
+ },
+/turf/open/floor/plasteel/tech,
+/area/ship/maintenance/port)
+"zs" = (
+/obj/machinery/vending/boozeomat,
+/turf/open/floor/wood,
+/area/ship/crew/canteen)
+"zu" = (
+/obj/effect/turf_decal/corner/opaque/solgovblue{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned,
+/area/ship/cargo)
+"zv" = (
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/turf_decal/industrial/warning{
+ 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 = 8
+ },
+/obj/machinery/door/airlock/mining{
+ dir = 4;
+ name = "Field Engineer Locker Room";
+ req_one_access = list(10,31)
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
+ },
+/turf/open/floor/plasteel/mono/dark,
+/area/ship/crew/canteen)
+"zA" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen/kitchen)
+"zC" = (
+/obj/structure/table/wood,
+/obj/machinery/chem_dispenser/drinks/beer{
+ dir = 1
+ },
+/turf/open/floor/wood,
+/area/ship/crew/canteen)
+"zE" = (
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/wood/corner,
+/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 = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/ship/crew/library)
+"zH" = (
+/obj/docking_port/stationary{
+ dir = 2
+ },
+/turf/template_noop,
+/area/template_noop)
+"zI" = (
+/obj/machinery/power/shuttle/engine/electric{
+ dir = 4
+ },
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/machinery/light/floor,
+/turf/open/floor/engine/hull,
+/area/ship/maintenance/port)
+"zK" = (
+/obj/effect/turf_decal/siding/yellow,
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/light/floor,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/ship/cargo)
+"zP" = (
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/turf_decal/industrial/warning{
+ 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 = 8
+ },
+/obj/machinery/door/airlock/solgov{
+ dir = 4;
+ name = "Bridge";
+ req_one_access = list(20,41)
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
+ },
+/turf/open/floor/plasteel/mono/dark,
+/area/ship/crew/library)
+"Aa" = (
+/obj/effect/turf_decal/corner/opaque/solgovblue{
+ dir = 5
+ },
+/obj/structure/sign/poster/solgov/random{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/white,
+/area/ship/crew/cryo)
+"Ap" = (
+/obj/structure/closet/crate,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"Au" = (
+/obj/effect/turf_decal/techfloor{
+ dir = 10
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/white,
+/area/ship/storage)
+"AA" = (
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/ship/crew/canteen/kitchen)
+"AC" = (
+/obj/effect/turf_decal/techfloor{
+ dir = 10
+ },
+/obj/machinery/light/directional/west,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/white,
+/area/ship/security/armory)
+"AM" = (
+/obj/machinery/light/floor,
+/turf/open/floor/engine/hull,
+/area/ship/external/dark)
+"AN" = (
+/obj/structure/fluff/hedge,
+/obj/machinery/firealarm/directional/east,
+/turf/open/floor/wood/birch,
+/area/ship/hallway/starboard)
+"AQ" = (
+/obj/structure/toilet,
+/obj/machinery/power/apc/auto_name/directional/west,
+/obj/machinery/light_switch{
+ dir = 4;
+ pixel_x = -20;
+ pixel_y = -11
+ },
+/obj/machinery/airalarm/directional/north,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/machinery/newscaster/security_unit/directional/east,
+/turf/open/floor/plasteel/freezer,
+/area/ship/crew/toilet)
+"AU" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin,
+/obj/item/desk_flag/solgov{
+ pixel_y = 12;
+ pixel_x = -8
+ },
+/obj/item/pen/solgov,
+/turf/open/floor/carpet/blue,
+/area/ship/crew/canteen/kitchen)
+"AZ" = (
+/obj/effect/turf_decal/techfloor{
+ dir = 9
+ },
+/obj/item/kirbyplants{
+ icon_state = "plant-17";
+ pixel_y = 3;
+ pixel_x = -10
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/sign/poster/solgov/random{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/white,
+/area/ship/hallway/starboard)
+"Ba" = (
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/turf_decal/industrial/warning{
+ 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 = 8
+ },
+/obj/machinery/door/airlock/solgov{
+ dir = 4;
+ name = "Logistics Deck Officer's Quarters";
+ req_one_access = list(41);
+ id_tag = "sgi_quartermaster"
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
+ },
+/turf/open/floor/plasteel/mono/dark,
+/area/ship/crew/dorm/dormthree)
+"Bb" = (
+/obj/effect/turf_decal/siding/yellow,
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/ship/cargo)
+"Bm" = (
+/obj/effect/turf_decal/techfloor{
+ dir = 10
+ },
+/obj/item/kirbyplants{
+ icon_state = "plant-22";
+ pixel_y = 11;
+ pixel_x = -6
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/white,
+/area/ship/security/armory)
+"Bp" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel/tech,
+/area/ship/maintenance/port)
+"Br" = (
+/obj/structure/noticeboard{
+ pixel_y = 32
+ },
+/obj/effect/turf_decal/corner/opaque/solgovblue{
+ dir = 5
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/white,
+/area/ship/crew/cryo)
+"Bt" = (
+/obj/machinery/door/poddoor{
+ dir = 4;
+ id = "sgi_cargo2"
+ },
+/turf/open/floor/plasteel/patterned/ridged,
+/area/ship/cargo)
+"BB" = (
+/obj/machinery/airalarm/directional/south,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/dorm/dormthree)
+"BD" = (
+/obj/effect/turf_decal/siding/wood{
+ color = "#543c30"
+ },
+/obj/effect/turf_decal/box/corners{
+ dir = 4
+ },
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"BF" = (
+/obj/structure/chair/wood{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/wood/end{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/office)
+"BG" = (
+/obj/effect/turf_decal/siding/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue,
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning,
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned,
+/area/ship/cargo)
+"BM" = (
+/obj/effect/turf_decal/corner/opaque/solgovblue/full,
+/obj/structure/cable{
+ icon_state = "1-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 = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/white,
+/area/ship/engineering)
+"BO" = (
+/obj/effect/turf_decal/industrial/warning,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/door/airlock/solgov/glass{
+ name = "Library"
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/firedoor/border_only{
+ dir = 1
+ },
+/turf/open/floor/plasteel/mono/dark,
+/area/ship/crew/library)
+"BP" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/ship/storage)
+"BQ" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible/layer2{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/tech,
+/area/ship/maintenance/starboard)
+"BT" = (
+/obj/effect/turf_decal/techfloor{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/obj/machinery/light/small/directional/east,
+/obj/item/radio/intercom/directional/north,
+/turf/open/floor/plasteel/tech,
+/area/ship/hallway/starboard)
+"BW" = (
+/obj/effect/turf_decal/siding/wood,
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/ship/hallway/starboard)
+"BY" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 8;
+ color = "#543C30"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/dorm)
+"Ci" = (
+/obj/effect/turf_decal/corner/opaque/solgovblue{
+ dir = 9
+ },
+/obj/effect/turf_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/machinery/cryopod{
+ dir = 4
+ },
+/obj/structure/extinguisher_cabinet/directional/west,
+/turf/open/floor/plasteel/white,
+/area/ship/crew/cryo)
+"Ck" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/structure/chair/comfy/brown{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/ship/bridge)
+"Cq" = (
+/obj/effect/turf_decal/techfloor{
+ dir = 8
+ },
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/machinery/light/directional/west,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/tech/grid,
+/area/ship/engineering)
+"Ct" = (
+/obj/structure/closet/crate,
+/obj/item/stack/sheet/metal/twenty,
+/obj/item/stack/sheet/glass/twenty,
+/obj/effect/turf_decal/industrial/stand_clear{
+ dir = 1
+ },
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"CC" = (
+/obj/effect/turf_decal/siding/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/ship/cargo)
+"CJ" = (
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/turf_decal/industrial/warning{
+ 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 = 8
+ },
+/obj/machinery/door/airlock/solgov/glass{
+ dir = 4;
+ name = "Cafeteria"
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
+ },
+/turf/open/floor/plasteel/mono/dark,
+/area/ship/crew/canteen)
+"CM" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/structure/table/wood,
+/obj/machinery/reagentgrinder,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen/kitchen)
+"CN" = (
+/obj/structure/table/wood/fancy/blue,
+/obj/machinery/computer/secure_data/laptop{
+ dir = 4
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/crew/dorm/dormthree)
+"CS" = (
+/obj/structure/table/wood/fancy/blue,
+/obj/item/clipboard{
+ pixel_x = 5;
+ pixel_y = 4
+ },
+/obj/item/stamp/solgov{
+ pixel_y = 11;
+ pixel_x = -6
+ },
+/obj/item/paper_bin{
+ pixel_x = -5;
+ pixel_y = -1
+ },
+/obj/item/pen/solgov{
+ pixel_x = -5
+ },
+/turf/open/floor/wood/maple,
+/area/ship/bridge)
+"CX" = (
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/corner{
+ dir = 8
+ },
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/ship/cargo)
+"Dc" = (
+/obj/effect/turf_decal/corner/opaque/solgovblue/full,
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/ship/cargo/office)
+"Dn" = (
+/obj/effect/turf_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/machinery/button/door{
+ dir = 4;
+ id = "sgi_cargo2";
+ name = "blast door control";
+ pixel_x = -20;
+ pixel_y = -7
+ },
+/obj/machinery/button/shieldwallgen{
+ dir = 4;
+ pixel_y = 2;
+ pixel_x = -18;
+ id = "sgi_holocargo2"
+ },
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"Dt" = (
+/obj/structure/chair/sofa{
+ dir = 8
+ },
+/turf/open/floor/carpet/blue,
+/area/ship/crew/canteen/kitchen)
+"Du" = (
+/obj/effect/turf_decal/siding/yellow{
+ dir = 1
+ },
+/obj/machinery/light/floor,
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/corner{
+ dir = 8
+ },
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/ship/cargo)
+"Dw" = (
+/obj/effect/turf_decal/solgov/all/top_right,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"Dy" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/ship/crew/library)
+"DB" = (
+/obj/effect/turf_decal/techfloor{
+ dir = 9
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/tech/grid,
+/area/ship/storage)
+"DD" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile/shuttle,
+/obj/machinery/door/poddoor/shutters{
+ dir = 1;
+ id = "sgi_dorms"
+ },
+/turf/open/floor/plating,
+/area/ship/crew/dorm)
+"DE" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/effect/turf_decal/techfloor{
+ dir = 8
+ },
+/obj/structure/sign/poster/solgov/random{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/tech/grid,
+/area/ship/engineering)
+"DF" = (
+/obj/effect/turf_decal/techfloor/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/techfloor,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 8
+ },
+/obj/effect/turf_decal/corner/opaque/solgovblue{
+ dir = 1
+ },
+/obj/structure/extinguisher_cabinet/directional/south,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/white,
+/area/ship/security/armory)
+"DH" = (
+/turf/closed/wall/mineral/titanium,
+/area/ship/maintenance/starboard)
+"DK" = (
+/obj/effect/turf_decal/siding/yellow,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/ship/cargo)
+"DP" = (
+/obj/effect/turf_decal/corner/opaque/solgovblue{
+ dir = 10
+ },
+/obj/machinery/airalarm/directional/south,
+/turf/open/floor/plasteel/white,
+/area/ship/crew/cryo)
+"DS" = (
+/turf/closed/wall/mineral/titanium,
+/area/ship/crew/toilet)
+"Ed" = (
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning{
+ dir = 8
+ },
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/ship/cargo)
+"Ee" = (
+/obj/effect/turf_decal/corner/opaque/solgovblue{
+ dir = 1
+ },
+/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 = 8
+ },
+/obj/machinery/light/directional/south,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/patterned,
+/area/ship/cargo)
+"Ef" = (
+/obj/structure/closet/crate,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/ship/storage)
+"Ek" = (
+/obj/structure/railing/wood,
+/obj/structure/chair/stool/bar,
+/obj/effect/turf_decal/siding/wood,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood/birch,
+/area/ship/crew/canteen)
+"El" = (
+/obj/effect/turf_decal/box/corners{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"Ep" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"Et" = (
+/obj/effect/turf_decal/techfloor{
+ dir = 1
+ },
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = 21
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/white,
+/area/ship/security/armory)
+"Ex" = (
+/obj/machinery/power/smes/engineering,
+/obj/effect/turf_decal/techfloor{
+ dir = 10
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plasteel/white,
+/area/ship/engineering)
+"ED" = (
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue{
+ dir = 1
+ },
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/ship/cargo)
+"EF" = (
+/obj/structure/chair/sofa,
+/obj/machinery/light/directional/north,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/carpet/blue,
+/area/ship/crew/canteen/kitchen)
+"EH" = (
+/obj/effect/turf_decal/siding/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue,
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning,
+/obj/effect/turf_decal/trimline/opaque/solgovblue/corner{
+ dir = 4
+ },
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/ship/cargo)
+"EQ" = (
+/obj/effect/turf_decal/siding/wood,
+/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/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/ship/crew/canteen/kitchen)
+"ET" = (
+/obj/structure/bookcase/random,
+/obj/structure/noticeboard{
+ dir = 4;
+ pixel_x = -32
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/crew/library)
+"Fa" = (
+/obj/effect/turf_decal/box/corners{
+ dir = 4
+ },
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"Fc" = (
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/turf_decal/industrial/warning{
+ 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 = 8
+ },
+/obj/machinery/door/airlock/mining/glass{
+ dir = 4;
+ name = "Cargo"
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
+ },
+/turf/open/floor/plasteel/mono/dark,
+/area/ship/crew/canteen)
+"Fd" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/wood,
+/area/ship/crew/library)
+"Fo" = (
+/obj/machinery/bookbinder,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/library)
+"Fp" = (
+/obj/effect/turf_decal/siding/wood{
+ color = "#543c30"
+ },
+/obj/structure/fluff/hedge/opaque,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/dorm/dormtwo)
+"Fq" = (
+/obj/effect/turf_decal/siding/wood{
+ color = "#D5A66E";
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 5
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood/birch,
+/area/ship/crew/dorm/dormthree)
+"Fs" = (
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/corner{
+ dir = 8
+ },
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/ship/cargo)
+"FC" = (
+/obj/structure/table/wood,
+/obj/item/reagent_containers/food/drinks/mug/coco{
+ pixel_x = -6;
+ pixel_y = 2
+ },
+/turf/open/floor/carpet/blue,
+/area/ship/crew/canteen/kitchen)
+"FE" = (
+/turf/closed/wall/mineral/titanium,
+/area/ship/crew/canteen/kitchen)
+"FG" = (
+/obj/machinery/power/terminal{
+ dir = 8
+ },
+/obj/effect/turf_decal/techfloor/orange{
+ dir = 8
+ },
+/obj/effect/turf_decal/corner/opaque/solgovblue{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 5
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/tech,
+/area/ship/maintenance/starboard)
+"FH" = (
+/obj/machinery/power/terminal{
+ dir = 8
+ },
+/obj/effect/turf_decal/techfloor/orange{
+ dir = 8
+ },
+/obj/effect/turf_decal/corner/opaque/solgovblue{
+ dir = 6
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/tech,
+/area/ship/maintenance/starboard)
+"FJ" = (
+/obj/effect/turf_decal/techfloor,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/computer/helm/viewscreen/directional/south,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/white,
+/area/ship/cargo/office)
+"FN" = (
+/obj/effect/turf_decal/techfloor,
+/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 = 8
+ },
+/obj/structure/sign/warning/vacuum/external{
+ pixel_y = -24
+ },
+/turf/open/floor/plasteel/white,
+/area/ship/hallway/starboard)
+"Ga" = (
+/obj/structure/fluff/hedge,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/library)
+"Gd" = (
+/obj/effect/turf_decal/corner/opaque/solgovgold{
+ dir = 5
+ },
+/obj/effect/turf_decal/techfloor/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/techfloor/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2,
+/turf/open/floor/plasteel/white,
+/area/ship/security/armory)
+"Gn" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood/birch,
+/area/ship/crew/canteen)
+"Gp" = (
+/obj/effect/turf_decal/siding/yellow,
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning,
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned,
+/area/ship/cargo)
+"Gq" = (
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/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 = 10
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/ship/crew/library)
+"GD" = (
+/obj/effect/turf_decal/techfloor{
+ dir = 1
+ },
+/obj/machinery/light/directional/north,
+/obj/effect/turf_decal/corner/opaque/solgovblue{
+ dir = 10
+ },
+/obj/machinery/suit_storage_unit/solgov,
+/turf/open/floor/plasteel/white,
+/area/ship/security/armory)
+"GF" = (
+/obj/structure/bookcase/random,
+/obj/structure/sign/poster/solgov/random{
+ pixel_x = 32
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/crew/library)
+"GH" = (
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning{
+ dir = 8
+ },
+/obj/machinery/light/floor,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/ship/cargo)
+"GJ" = (
+/obj/structure/closet/crate,
+/obj/effect/turf_decal/techfloor,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/spawner/lootdrop/maintenance/three,
+/turf/open/floor/plasteel/tech/grid,
+/area/ship/storage)
+"GN" = (
+/obj/effect/turf_decal/industrial/stand_clear{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"GO" = (
+/obj/effect/turf_decal/corner/opaque/solgovblue{
+ dir = 1
+ },
+/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 = 8
+ },
+/obj/effect/turf_decal/corner/opaque/solgovgold{
+ dir = 6
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning{
+ dir = 4
+ },
+/turf/open/floor/plasteel/patterned,
+/area/ship/cargo)
+"GP" = (
+/obj/structure/fluff/hedge/opaque,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/dorm/dormthree)
+"GV" = (
+/obj/effect/turf_decal/corner/opaque/solgovblue/full,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/ship/security/armory)
+"Hi" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue{
+ dir = 9
+ },
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"Ho" = (
+/obj/structure/chair/comfy/black,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/dorm)
+"Hp" = (
+/obj/machinery/power/shuttle/engine/electric{
+ dir = 4
+ },
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/open/floor/engine/hull,
+/area/ship/maintenance/port)
+"Hv" = (
+/obj/machinery/light/floor,
+/obj/effect/turf_decal/siding/yellow,
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/ship/cargo)
+"HB" = (
+/obj/effect/turf_decal/corner/opaque/solgovblue{
+ dir = 1
+ },
+/obj/machinery/newscaster/security_unit/directional/south,
+/turf/open/floor/plasteel/patterned,
+/area/ship/cargo)
+"HG" = (
+/obj/structure/rack,
+/obj/effect/turf_decal/industrial/outline/yellow,
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"HM" = (
+/obj/structure/railing/corner/wood,
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/ship/crew/canteen/kitchen)
+"HT" = (
+/obj/structure/table/wood/fancy/blue,
+/obj/machinery/fax,
+/turf/open/floor/wood/maple,
+/area/ship/bridge)
+"HV" = (
+/obj/effect/turf_decal/techfloor/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/techfloor/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/corner/opaque/solgovgold{
+ dir = 9
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/white,
+/area/ship/security/armory)
+"HW" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 8
+ },
+/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,
+/turf/open/floor/wood,
+/area/ship/crew/canteen/kitchen)
+"Ik" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/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 = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/ship/hallway/starboard)
+"Il" = (
+/obj/effect/turf_decal/siding/yellow,
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/corner{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/ship/cargo)
+"It" = (
+/obj/structure/table/wood,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood/birch,
+/area/ship/hallway/starboard)
+"Iu" = (
+/obj/effect/turf_decal/siding/yellow{
+ dir = 4
+ },
+/obj/structure/chair/office{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/ship/crew/cryo)
+"Iw" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/effect/turf_decal/techfloor/orange{
+ dir = 1
+ },
+/obj/effect/turf_decal/industrial/outline/yellow,
+/obj/machinery/light/directional/north,
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/tech,
+/area/ship/maintenance/starboard)
+"IB" = (
+/obj/structure/table/wood,
+/obj/item/radio/intercom/directional/south,
+/obj/item/stack/tape,
+/obj/item/hand_labeler{
+ pixel_x = 15;
+ pixel_y = 7
+ },
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue{
+ dir = 1
+ },
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"IC" = (
+/obj/effect/spawner/lootdrop/crate_spawner,
+/obj/machinery/light/small/directional/east,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/tech/grid,
+/area/ship/storage)
+"IX" = (
+/obj/effect/turf_decal/techfloor{
+ dir = 1
+ },
+/obj/structure/rack,
+/obj/structure/window/reinforced,
+/obj/item/kitchen/knife/letter_opener{
+ pixel_x = -2
+ },
+/obj/item/kitchen/knife/letter_opener{
+ pixel_x = 1
+ },
+/obj/item/kitchen/knife/letter_opener{
+ pixel_x = 4
+ },
+/obj/effect/turf_decal/corner/opaque/solgovblue{
+ dir = 10
+ },
+/obj/structure/sign/poster/solgov/random{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/white,
+/area/ship/security/armory)
+"IY" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/ship/crew/library)
+"Jc" = (
+/obj/structure/table/wood,
+/obj/item/clipboard,
+/obj/machinery/button/door{
+ pixel_y = 23;
+ id = "sgi_office";
+ name = "external shutters control"
+ },
+/turf/open/floor/carpet/blue,
+/area/ship/crew/office)
+"Jh" = (
+/obj/effect/turf_decal/siding/yellow,
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning{
+ dir = 1
+ },
+/obj/machinery/light/directional/east,
+/turf/open/floor/plasteel/patterned,
+/area/ship/cargo)
+"Jq" = (
+/obj/effect/turf_decal/techfloor,
+/obj/item/radio/intercom/directional/south,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/corner/opaque/solgovblue{
+ dir = 5
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/white,
+/area/ship/security/armory)
+"Jr" = (
+/obj/effect/turf_decal/corner/opaque/solgovblue{
+ dir = 6
+ },
+/obj/effect/turf_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/structure/table/wood,
+/obj/item/paper_bin,
+/obj/item/pen/solgov,
+/turf/open/floor/plasteel/white,
+/area/ship/crew/cryo)
+"Js" = (
+/obj/structure/table/wood,
+/obj/machinery/newscaster/security_unit/directional/east,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/library)
+"Jt" = (
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/ship/cargo)
+"Jz" = (
+/obj/effect/turf_decal/techfloor/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/techfloor/corner,
+/obj/effect/turf_decal/corner/opaque/solgovgold{
+ dir = 10
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/white,
+/area/ship/hallway/starboard)
+"JD" = (
+/obj/structure/closet/cardboard{
+ desc = "Contains a lifetime supply of Solarian Marine Society Shark plushies!";
+ name = "plushie transport box"
+ },
+/obj/item/toy/plush/blahaj,
+/obj/item/toy/plush/blahaj,
+/obj/item/toy/plush/blahaj,
+/obj/item/toy/plush/blahaj,
+/obj/item/toy/plush/blahaj,
+/obj/item/toy/plush/blahaj,
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"JG" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/ship/hallway/starboard)
+"JL" = (
+/obj/effect/turf_decal/box/corners{
+ dir = 1
+ },
+/obj/structure/closet/crate,
+/obj/effect/spawner/lootdrop/maintenance/three,
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"JN" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/ship/crew/office)
+"JS" = (
+/obj/effect/turf_decal/industrial/warning,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/door/airlock/external,
+/obj/machinery/door/poddoor{
+ id = "sgi_external"
+ },
+/turf/open/floor/plasteel/mono/dark,
+/area/ship/hallway/starboard)
+"JT" = (
+/obj/effect/turf_decal/corner/opaque/solgovblue/full,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/white,
+/area/ship/security/armory)
+"JV" = (
+/obj/structure/table/wood,
+/obj/machinery/microwave{
+ pixel_y = 5
+ },
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen/kitchen)
+"JX" = (
+/obj/effect/turf_decal/techfloor{
+ dir = 1
+ },
+/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/structure/sign/poster/solgov/random{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/white,
+/area/ship/security/armory)
+"JZ" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/wood/corner,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/ship/crew/office)
+"Kc" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/turf/open/floor/wood/birch,
+/area/ship/crew/dorm/dormthree)
+"Kd" = (
+/obj/effect/turf_decal/corner/opaque/solgovblue/full,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/white,
+/area/ship/cargo/office)
+"Kg" = (
+/obj/machinery/computer/secure_data/laptop{
+ dir = 4
+ },
+/obj/structure/table/wood/fancy/purple,
+/turf/open/floor/wood/maple,
+/area/ship/crew/dorm/dormtwo)
+"Kt" = (
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"Kv" = (
+/obj/structure/closet/crate/internals,
+/obj/item/tank/internals/emergency_oxygen/engi,
+/obj/item/tank/internals/emergency_oxygen/engi,
+/obj/item/tank/internals/emergency_oxygen/engi,
+/obj/item/tank/internals/emergency_oxygen/engi,
+/obj/item/clothing/suit/hazardvest/solgov,
+/obj/item/clothing/suit/hazardvest/solgov,
+/obj/item/clothing/suit/hazardvest/solgov,
+/obj/item/clothing/suit/hazardvest/solgov,
+/obj/item/clothing/head/hardhat/solgov,
+/obj/item/clothing/head/hardhat/solgov,
+/obj/item/clothing/head/hardhat/solgov,
+/obj/item/clothing/head/hardhat/solgov,
+/obj/effect/turf_decal/industrial/stand_clear{
+ dir = 1
+ },
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"Kz" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/effect/turf_decal/industrial/outline/yellow,
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"KD" = (
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/holopad,
+/turf/open/floor/wood,
+/area/ship/crew/canteen/kitchen)
+"KK" = (
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/ship/cargo)
+"KL" = (
+/obj/effect/turf_decal/siding/yellow,
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/corner{
+ dir = 8
+ },
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/ship/cargo)
+"KN" = (
+/obj/structure/table/wood,
+/turf/open/floor/wood,
+/area/ship/crew/canteen)
+"KS" = (
+/obj/effect/turf_decal/techfloor{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/ship/hallway/starboard)
+"KU" = (
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue/corner,
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/corner,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/ship/cargo)
+"KX" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 8;
+ color = "#543C30"
+ },
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_x = 11;
+ pixel_y = -14
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/dorm)
+"Lb" = (
+/obj/effect/turf_decal/techfloor/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/techfloor/corner,
+/obj/effect/turf_decal/corner/opaque/solgovgold{
+ dir = 10
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/white,
+/area/ship/engineering)
+"Lg" = (
+/obj/effect/turf_decal/siding/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue/corner,
+/obj/effect/turf_decal/trimline/opaque/solgovblue/corner,
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning{
+ dir = 1
+ },
+/obj/machinery/light/floor,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/ship/cargo)
+"Lk" = (
+/obj/effect/turf_decal/techfloor/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/techfloor/corner,
+/obj/effect/turf_decal/corner/opaque/solgovgold/three_quarters{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
+ },
+/obj/machinery/firealarm/directional/north,
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning{
+ dir = 5
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/light_switch{
+ pixel_x = 10;
+ pixel_y = 23
+ },
+/turf/open/floor/plasteel/white,
+/area/ship/cargo/office)
+"Ln" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/ship/cargo)
+"Lw" = (
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/ship/cargo)
+"Lz" = (
+/obj/effect/turf_decal/box/corners,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"LB" = (
+/obj/item/clothing/head/solgov/captain,
+/obj/item/clothing/suit/armor/vest/bulletproof/solgov/captain,
+/obj/item/clothing/under/solgov/formal/captain,
+/obj/item/clothing/shoes/laceup,
+/obj/item/clothing/gloves/combat,
+/obj/item/door_remote/captain,
+/obj/item/storage/belt/sabre/solgov,
+/obj/item/clothing/under/solgov,
+/obj/item/clothing/under/solgov/dress,
+/obj/item/clothing/under/solgov/formal,
+/obj/item/folder/solgov,
+/obj/item/folder/solgov,
+/obj/item/folder/solgov/red,
+/obj/item/folder/solgov/red,
+/obj/structure/closet/secure_closet{
+ icon_state = "cap";
+ name = "\proper captain's locker";
+ req_access_txt = "20"
+ },
+/obj/item/fish_feed,
+/obj/item/pen/fountain/solgov,
+/obj/item/gun/ballistic/automatic/powered/gauss/modelh,
+/obj/item/ammo_box/magazine/modelh,
+/obj/item/ammo_box/magazine/modelh,
+/obj/item/clothing/neck/cloak/solgovcap,
+/turf/open/floor/wood/maple,
+/area/ship/crew/dorm/dormtwo)
+"LJ" = (
+/turf/closed/wall/mineral/titanium,
+/area/ship/security/armory)
+"LS" = (
+/obj/effect/turf_decal/industrial/warning,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/door/airlock/security{
+ dir = 1;
+ name = "Armory";
+ req_one_access = list(1,3)
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/firedoor/border_only{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/turf/open/floor/plasteel/mono/dark,
+/area/ship/security/armory)
+"LZ" = (
+/obj/effect/turf_decal/techfloor{
+ dir = 1
+ },
+/obj/structure/closet/firecloset/wall{
+ pixel_y = 28
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/white,
+/area/ship/hallway/starboard)
+"Me" = (
+/obj/effect/turf_decal/siding/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue,
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning,
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning{
+ dir = 1
+ },
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/ship/cargo)
+"Mh" = (
+/obj/machinery/light/directional/north,
+/turf/open/floor/carpet/royalblue,
+/area/ship/crew/dorm/dormthree)
+"Mr" = (
+/obj/effect/turf_decal/siding/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/corner/opaque/solgovblue{
+ dir = 5
+ },
+/obj/machinery/computer/cryopod/directional/north{
+ pixel_y = 25
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/white,
+/area/ship/crew/cryo)
+"Mt" = (
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue/corner,
+/obj/machinery/light/floor,
+/obj/effect/turf_decal/trimline/opaque/solgovblue/corner,
+/obj/effect/turf_decal/trimline/opaque/solgovblue/corner{
+ dir = 4
+ },
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/ship/cargo)
+"Mv" = (
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/ship/hallway/starboard)
+"My" = (
+/obj/structure/chair/sofa/corner,
+/obj/item/radio/intercom/directional/north,
+/turf/open/floor/carpet/blue,
+/area/ship/crew/canteen/kitchen)
+"Mz" = (
+/obj/effect/turf_decal/siding/wood{
+ color = "#D5A66E";
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/wood{
+ color = "#D5A66E";
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
+/obj/machinery/button/door{
+ pixel_y = 23;
+ id = "sgi_qm";
+ name = "logistics deck officer shutters control";
+ pixel_x = -7
+ },
+/turf/open/floor/wood/birch,
+/area/ship/crew/dorm/dormthree)
+"MI" = (
+/obj/effect/turf_decal/techfloor{
+ dir = 4
+ },
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/machinery/computer/helm/viewscreen/directional/east,
+/turf/open/floor/plasteel/white,
+/area/ship/engineering)
+"MQ" = (
+/obj/effect/turf_decal/techfloor{
+ dir = 4
+ },
+/obj/structure/cable/yellow,
+/obj/machinery/power/terminal,
+/obj/machinery/firealarm/directional/east,
+/turf/open/floor/plasteel/white,
+/area/ship/engineering)
+"MT" = (
+/obj/effect/turf_decal/techfloor{
+ dir = 6
+ },
+/obj/item/kirbyplants{
+ icon_state = "plant-21";
+ pixel_x = 7;
+ pixel_y = 18
+ },
+/obj/item/kirbyplants{
+ icon_state = "plant-22";
+ pixel_x = 8;
+ pixel_y = 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/ship/cargo/office)
+"MW" = (
+/turf/closed/wall/mineral/titanium,
+/area/ship/cargo/office)
+"MZ" = (
+/obj/effect/turf_decal/techfloor{
+ dir = 1
+ },
+/obj/structure/tank_dispenser/oxygen,
+/turf/open/floor/plasteel/white,
+/area/ship/cargo/office)
+"Nb" = (
+/obj/structure/closet/crate,
+/obj/effect/turf_decal/box/corners{
+ dir = 1
+ },
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"Nd" = (
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue{
+ dir = 9
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning{
+ dir = 9
+ },
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/ship/cargo)
+"Nf" = (
+/obj/machinery/vending/coffee,
+/obj/item/radio/intercom/directional/west,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen/kitchen)
+"Nj" = (
+/obj/structure/closet/crate,
+/obj/effect/spawner/lootdrop/maintenance/three,
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"Np" = (
+/obj/effect/turf_decal/techfloor/corner,
+/obj/effect/turf_decal/techfloor/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/corner/opaque/solgovgold/three_quarters{
+ dir = 1
+ },
+/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 = 8
+ },
+/obj/machinery/light/directional/south,
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/white,
+/area/ship/hallway/starboard)
+"Ny" = (
+/obj/structure/fluff/hedge,
+/obj/machinery/light/directional/north,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen/kitchen)
+"NA" = (
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue{
+ dir = 4
+ },
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning{
+ dir = 8
+ },
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/ship/cargo)
+"NB" = (
+/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 = 10
+ },
+/obj/machinery/firealarm/directional/north,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood/birch,
+/area/ship/crew/canteen)
+"NP" = (
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/ship/crew/library)
+"NV" = (
+/obj/effect/turf_decal/corner/opaque/solgovblue/full,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/white,
+/area/ship/engineering)
+"NY" = (
+/obj/effect/turf_decal/techfloor{
+ dir = 8
+ },
+/obj/structure/cable/yellow,
+/obj/machinery/power/terminal,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/white,
+/area/ship/engineering)
+"Od" = (
+/turf/closed/wall/mineral/titanium,
+/area/ship/maintenance/port)
+"Ol" = (
+/obj/effect/turf_decal/corner/opaque/solgovblue{
+ 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 = 8
+ },
+/obj/machinery/light/directional/north,
+/turf/open/floor/plasteel/patterned,
+/area/ship/cargo)
+"Oo" = (
+/obj/effect/turf_decal/techfloor,
+/obj/machinery/light/small/directional/south,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/ship/storage)
+"Oq" = (
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/ship/crew/office)
+"Or" = (
+/obj/machinery/atmospherics/pipe/layer_manifold,
+/obj/structure/sign/solgov_seal{
+ pixel_y = 0;
+ pixel_x = -1
+ },
+/turf/closed/wall/mineral/titanium,
+/area/ship/hallway/starboard)
+"OC" = (
+/obj/effect/turf_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/machinery/button/door{
+ dir = 4;
+ id = "sgi_cargo1";
+ name = "blast door control";
+ pixel_x = -20;
+ pixel_y = 7
+ },
+/obj/machinery/button/shieldwallgen{
+ dir = 4;
+ pixel_y = -2;
+ pixel_x = -18;
+ id = "sgi_holocargo1"
+ },
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"OF" = (
+/obj/structure/table/wood/fancy/blue,
+/obj/item/spacecash/bundle/loadsamoney{
+ pixel_x = 5;
+ pixel_y = 8
+ },
+/obj/item/spacecash/bundle/loadsamoney{
+ pixel_x = 5;
+ pixel_y = 8
+ },
+/obj/item/desk_flag/solgov{
+ pixel_y = 12;
+ pixel_x = -8
+ },
+/obj/item/reagent_containers/food/drinks/mug/coco{
+ pixel_x = -7;
+ pixel_y = -2
+ },
+/obj/machinery/button/door{
+ pixel_y = 23;
+ id = "sgi_bridge";
+ name = "external shutters control"
+ },
+/turf/open/floor/wood/maple,
+/area/ship/bridge)
+"ON" = (
+/obj/structure/closet/crate/medical,
+/obj/item/storage/box/masks,
+/obj/item/storage/box/rxglasses,
+/obj/item/storage/firstaid/regular,
+/obj/item/storage/firstaid/medical,
+/obj/item/storage/pill_bottle/charcoal,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"OS" = (
+/obj/effect/turf_decal/siding/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue/corner,
+/obj/effect/turf_decal/trimline/opaque/solgovblue/corner,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/ship/cargo)
+"OW" = (
+/obj/structure/table/wood/fancy/blue,
+/obj/item/paper_bin,
+/obj/item/pen/solgov,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/dorm/dormthree)
+"OX" = (
+/turf/closed/wall/mineral/titanium,
+/area/ship/cargo)
+"Pd" = (
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/turf_decal/corner/opaque/solgovgold{
+ dir = 10
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning,
+/turf/open/floor/plasteel/white,
+/area/ship/crew/cryo)
+"Pf" = (
+/obj/structure/closet/cardboard,
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"Pq" = (
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue{
+ 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/solgovblue/warning{
+ dir = 4
+ },
+/obj/machinery/light/floor,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/ship/cargo)
+"Pu" = (
+/obj/effect/turf_decal/corner/opaque/solgovblue/full,
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/white,
+/area/ship/cargo/office)
+"Pv" = (
+/obj/effect/turf_decal/siding/wood,
+/obj/structure/chair/comfy/beige{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/railing/corner/wood,
+/turf/open/floor/wood,
+/area/ship/bridge)
+"Py" = (
+/obj/machinery/atmospherics/components/binary/dp_vent_pump/on/layer2,
+/obj/effect/turf_decal/techfloor{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/closet/emcloset/wall{
+ dir = 8;
+ pixel_x = 28
+ },
+/turf/open/floor/plasteel/tech,
+/area/ship/hallway/starboard)
+"PB" = (
+/obj/structure/fluff/hedge/opaque,
+/turf/open/floor/wood/maple,
+/area/ship/crew/dorm/dormtwo)
+"PN" = (
+/obj/effect/turf_decal/corner/opaque/solgovblue/full,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/ship/security/armory)
+"PR" = (
+/obj/effect/turf_decal/corner/opaque/solgovblue{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-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/patterned,
+/area/ship/cargo)
+"PV" = (
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/ship/storage)
+"Qb" = (
+/turf/closed/wall/mineral/titanium,
+/area/ship/crew/cryo)
+"Qh" = (
+/obj/effect/turf_decal/industrial/stand_clear,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"Ql" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/railing/wood{
+ dir = 4
+ },
+/turf/open/floor/plasteel/stairs/wood,
+/area/ship/bridge)
+"Qt" = (
+/obj/machinery/power/terminal{
+ dir = 8
+ },
+/obj/effect/turf_decal/techfloor/orange{
+ dir = 10
+ },
+/obj/effect/turf_decal/corner/opaque/solgovblue{
+ dir = 4
+ },
+/obj/machinery/button/door{
+ pixel_y = -23;
+ pixel_x = -4;
+ dir = 1;
+ id = "sgi_engine";
+ name = "engine blast door control"
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plasteel/tech,
+/area/ship/maintenance/starboard)
+"Qx" = (
+/obj/structure/table/wood/fancy/purple,
+/obj/item/radio/intercom/wideband/table{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/ship/bridge)
+"Qz" = (
+/obj/structure/chair,
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue{
+ dir = 6
+ },
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"QA" = (
+/obj/effect/turf_decal/techfloor{
+ dir = 5
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/suit_storage_unit/solgov,
+/turf/open/floor/plasteel/white,
+/area/ship/security/armory)
+"QB" = (
+/obj/structure/fluff/hedge,
+/obj/machinery/light/directional/west,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen/kitchen)
+"QH" = (
+/obj/effect/turf_decal/siding/wood{
+ color = "#D5A66E";
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 4;
+ color = "#D5A66E"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood/birch,
+/area/ship/crew/dorm/dormthree)
+"QN" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/effect/turf_decal/corner/opaque/solgovblue{
+ dir = 10
+ },
+/turf/open/floor/plasteel/white,
+/area/ship/engineering)
+"QO" = (
+/obj/effect/turf_decal/box/corners{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/arrows{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"QP" = (
+/obj/effect/turf_decal/corner/opaque/solgovblue{
+ dir = 8
+ },
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue{
+ dir = 8
+ },
+/obj/structure/closet/firecloset/wall{
+ pixel_y = 28
+ },
+/turf/open/floor/plasteel/patterned,
+/area/ship/cargo)
+"QT" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible/layer2{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/tech,
+/area/ship/maintenance/starboard)
+"QX" = (
+/obj/structure/table/wood/fancy/blue,
+/obj/item/clipboard,
+/obj/item/folder/solgov,
+/obj/item/radio/intercom/directional/south,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/dorm/dormthree)
+"QZ" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/dorm)
+"Rc" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_x = 11;
+ pixel_y = -14
+ },
+/turf/open/floor/wood,
+/area/ship/crew/office)
+"Rd" = (
+/obj/structure/railing/wood{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
+ },
+/turf/open/floor/wood,
+/area/ship/crew/canteen/kitchen)
+"Re" = (
+/obj/machinery/airalarm/directional/west,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/stairs/wood,
+/area/ship/bridge)
+"Rh" = (
+/obj/effect/turf_decal/techfloor,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/light/directional/south,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/white,
+/area/ship/cargo/office)
+"Rk" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"Rq" = (
+/obj/effect/turf_decal/techfloor{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = 21
+ },
+/turf/open/floor/plasteel/tech/grid,
+/area/ship/storage)
+"Rr" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"Rt" = (
+/obj/effect/turf_decal/techfloor{
+ dir = 4
+ },
+/obj/item/kirbyplants{
+ icon_state = "plant-21";
+ pixel_x = 7;
+ pixel_y = 18
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/white,
+/area/ship/security/armory)
+"Ru" = (
+/obj/structure/table/wood/fancy/blue,
+/obj/item/desk_flag/solgov{
+ pixel_y = 12;
+ pixel_x = -8
+ },
+/obj/item/binoculars,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/dorm/dormthree)
+"Rw" = (
+/obj/effect/turf_decal/corner/opaque/solgovblue{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 5
+ },
+/obj/structure/extinguisher_cabinet/directional/south,
+/turf/open/floor/plasteel/patterned,
+/area/ship/cargo)
+"Rx" = (
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/ship/crew/library)
+"RB" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/ship/crew/cryo)
+"RF" = (
+/obj/structure/chair/wood{
+ dir = 1
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen/kitchen)
+"RH" = (
+/obj/effect/turf_decal/corner/opaque/solgovgold{
+ dir = 10
+ },
+/obj/effect/turf_decal/techfloor/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/techfloor/corner,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 6
+ },
+/obj/effect/turf_decal/corner/opaque/solgovblue{
+ dir = 5
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/white,
+/area/ship/security/armory)
+"RI" = (
+/obj/structure/closet/secure_closet/engineering_personal{
+ name = "ship engineer's locker";
+ populate = 0
+ },
+/obj/item/storage/backpack/industrial,
+/obj/item/clothing/head/hardhat/solgov,
+/obj/item/folder/solgov,
+/obj/item/clipboard,
+/obj/item/clothing/under/solgov/formal,
+/obj/item/clothing/under/solgov,
+/obj/item/clothing/accessory/armband/engine,
+/obj/item/storage/toolbox/mechanical,
+/obj/item/clothing/glasses/welding,
+/obj/item/clothing/head/welding,
+/obj/item/pen/solgov,
+/obj/item/clothing/suit/hazardvest/solgov,
+/obj/item/clothing/shoes/workboots,
+/obj/item/clothing/gloves/combat,
+/obj/effect/turf_decal/techfloor,
+/obj/effect/turf_decal/industrial/outline/orange,
+/obj/item/clothing/glasses/meson/prescription,
+/obj/item/radio/intercom/directional/south,
+/turf/open/floor/plasteel/white,
+/area/ship/engineering)
+"RL" = (
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/wood,
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/ship/hallway/starboard)
+"RN" = (
+/turf/closed/wall/mineral/titanium,
+/area/ship/bridge)
+"RS" = (
+/obj/structure/closet/cardboard,
+/obj/effect/spawner/lootdrop/maintenance/three,
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"RX" = (
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 4
+ },
+/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/wood/birch,
+/area/ship/crew/canteen)
+"Sf" = (
+/obj/effect/turf_decal/siding/yellow,
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/corner{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/ship/cargo)
+"So" = (
+/obj/structure/falsewall/titanium,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 1
+ },
+/obj/effect/turf_decal/industrial/warning,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/mono/dark,
+/area/ship/storage)
+"Sr" = (
+/obj/effect/turf_decal/corner/opaque/solgovblue{
+ dir = 6
+ },
+/obj/effect/turf_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/structure/table/wood,
+/obj/machinery/light/directional/east,
+/obj/item/radio/intercom/table{
+ dir = 4;
+ pixel_x = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/ship/crew/cryo)
+"St" = (
+/obj/structure/railing/wood,
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/ship/crew/canteen/kitchen)
+"Sw" = (
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning{
+ dir = 8
+ },
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/ship/cargo)
+"Sx" = (
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue{
+ dir = 8
+ },
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue/corner{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
+/obj/effect/turf_decal/trimline/opaque/solgovblue/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning{
+ dir = 8
+ },
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/ship/cargo)
+"Sy" = (
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/ship/maintenance/port)
+"SA" = (
+/obj/effect/turf_decal/industrial/outline/yellow,
+/obj/structure/ore_box,
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"SB" = (
+/obj/machinery/atmospherics/components/unary/tank/air{
+ dir = 8;
+ piping_layer = 2
+ },
+/obj/effect/turf_decal/techfloor/orange{
+ dir = 6
+ },
+/obj/effect/turf_decal/corner/opaque/solgovblue{
+ dir = 1
+ },
+/obj/effect/turf_decal/industrial/outline/yellow,
+/turf/open/floor/plasteel/tech,
+/area/ship/maintenance/starboard)
+"SC" = (
+/obj/machinery/light/floor,
+/obj/effect/turf_decal/siding/yellow,
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/corner{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/ship/cargo)
+"SI" = (
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/ship/security/armory)
+"SU" = (
+/obj/effect/turf_decal/box/corners{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"Ta" = (
+/obj/machinery/door/poddoor{
+ dir = 4;
+ id = "sgi_cargo2"
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/shieldwallgen/atmos/roundstart{
+ dir = 2;
+ id = "sgi_holocargo2"
+ },
+/turf/open/floor/plasteel/patterned/ridged,
+/area/ship/cargo)
+"Td" = (
+/obj/structure/closet/secure_closet/miner{
+ name = "field engineer's locker";
+ populate = 0;
+ anchored = 1
+ },
+/obj/item/pickaxe/drill/jackhammer,
+/obj/item/storage/toolbox/mechanical,
+/obj/item/clothing/head/hardhat/solgov,
+/obj/item/radio{
+ icon_state = "sec_radio"
+ },
+/obj/item/clothing/under/solgov/formal,
+/obj/item/clothing/under/solgov/dress,
+/obj/item/clothing/under/solgov,
+/obj/item/clothing/suit/hazardvest/solgov,
+/obj/item/clothing/accessory/armband/cargo,
+/obj/item/clothing/shoes/workboots,
+/obj/item/clothing/gloves/combat,
+/obj/item/storage/backpack,
+/obj/effect/turf_decal/techfloor{
+ dir = 1
+ },
+/obj/effect/turf_decal/industrial/outline/red,
+/obj/item/clothing/glasses/meson/prescription,
+/obj/item/kitchen/knife/letter_opener,
+/obj/item/clothing/glasses/meson,
+/obj/item/storage/bag/ore,
+/turf/open/floor/plasteel/white,
+/area/ship/cargo/office)
+"Tf" = (
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue{
+ dir = 10
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning{
+ dir = 10
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/ship/cargo)
+"Tk" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 5
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen/kitchen)
+"Tt" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/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/ship/crew/canteen/kitchen)
+"Tv" = (
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
+ },
+/turf/open/floor/engine/hull,
+/area/ship/external/dark)
+"Ty" = (
+/obj/structure/chair/wood{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen/kitchen)
+"Tz" = (
+/obj/effect/turf_decal/techfloor,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/white,
+/area/ship/cargo/office)
+"TG" = (
+/obj/machinery/power/smes/engineering,
+/obj/effect/turf_decal/techfloor{
+ dir = 6
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/ship/engineering)
+"TM" = (
+/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/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/stairs/wood{
+ dir = 8;
+ color = "#543C30"
+ },
+/area/ship/crew/dorm/dormtwo)
+"TV" = (
+/obj/effect/turf_decal/industrial/stand_clear{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"TY" = (
+/obj/effect/turf_decal/industrial/warning/corner{
+ dir = 4
+ },
+/turf/open/floor/engine/hull,
+/area/ship/external/dark)
+"Ud" = (
+/obj/effect/turf_decal/techfloor/orange{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/light/directional/north,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/tech,
+/area/ship/maintenance/port)
+"Ul" = (
+/obj/structure/chair/wood{
+ dir = 1
+ },
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = 19;
+ pixel_y = -12
+ },
+/turf/open/floor/wood,
+/area/ship/crew/canteen)
+"UC" = (
+/obj/effect/turf_decal/corner/opaque/solgovblue/full,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/ship/security/armory)
+"UD" = (
+/obj/structure/chair/wood,
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/wood,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/office)
+"UE" = (
+/obj/effect/turf_decal/box/corners{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"UF" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen/kitchen)
+"UM" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/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,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/ship/crew/canteen/kitchen)
+"Ve" = (
+/obj/structure/fluff/hedge,
+/turf/open/floor/wood/maple,
+/area/ship/bridge)
+"Vk" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 8;
+ color = "#543C30"
+ },
+/obj/structure/dresser,
+/obj/item/desk_flag/trans{
+ pixel_y = 8;
+ pixel_x = -7
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/crew/dorm)
+"Vl" = (
+/obj/structure/table/wood/fancy/blue,
+/obj/item/paper_bin{
+ pixel_x = -5;
+ pixel_y = -1
+ },
+/obj/item/paper_bin/carbon{
+ pixel_x = 7;
+ pixel_y = 8
+ },
+/obj/item/folder/solgov{
+ pixel_x = 4
+ },
+/obj/item/pen/solgov{
+ pixel_x = 2
+ },
+/turf/open/floor/wood/maple,
+/area/ship/bridge)
+"Vo" = (
+/obj/structure/railing/wood{
+ dir = 10
+ },
+/obj/structure/fluff/hedge,
+/turf/open/floor/wood/maple,
+/area/ship/bridge)
+"Vp" = (
+/obj/structure/chair/wood{
+ dir = 4
+ },
+/obj/machinery/airalarm/directional/north,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/ship/crew/canteen)
+"Vt" = (
+/obj/structure/table/wood,
+/obj/item/radio/intercom/table{
+ dir = 8
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/cargo)
+"VA" = (
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/ship/crew/dorm)
+"VI" = (
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/ship/crew/dorm/dormthree)
+"VM" = (
+/obj/effect/turf_decal/techfloor{
+ dir = 10
+ },
+/obj/machinery/newscaster/security_unit/directional/west,
+/obj/structure/extinguisher_cabinet/directional/south,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/white,
+/area/ship/engineering)
+"VO" = (
+/obj/structure/table/wood,
+/obj/effect/turf_decal/industrial/outline/yellow,
+/obj/item/export_scanner,
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"VT" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin{
+ pixel_y = 18
+ },
+/obj/item/clipboard,
+/obj/item/folder/solgov,
+/obj/item/stamp/denied{
+ pixel_x = 4
+ },
+/obj/item/stamp{
+ pixel_x = -5;
+ pixel_y = 9
+ },
+/obj/item/pen/solgov{
+ pixel_y = 18
+ },
+/turf/open/floor/wood/walnut,
+/area/ship/cargo)
+"VY" = (
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/turf_decal/industrial/warning{
+ 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 = 8
+ },
+/obj/machinery/door/airlock{
+ dir = 4;
+ name = "Bathroom";
+ id_tag = "sgi_bolt"
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/turf/open/floor/plasteel/mono/dark,
+/area/ship/crew/dorm)
+"Wc" = (
+/obj/effect/turf_decal/corner/opaque/solgovblue/full,
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/white,
+/area/ship/security/armory)
+"We" = (
+/obj/structure/chair/wood{
+ dir = 1
+ },
+/obj/item/radio/intercom/directional/east,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/library)
+"Wh" = (
+/obj/structure/railing/corner/wood{
+ color = "#543C30"
+ },
+/obj/effect/turf_decal/box/corners{
+ dir = 1
+ },
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"Wj" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = 21
+ },
+/turf/open/floor/wood,
+/area/ship/crew/library)
+"Wk" = (
+/obj/item/radio/intercom/table{
+ dir = 1
+ },
+/obj/structure/table/wood/fancy/purple,
+/obj/structure/sign/poster/solgov/random{
+ pixel_y = 32
+ },
+/turf/open/floor/wood/maple,
+/area/ship/crew/dorm/dormtwo)
+"Wn" = (
+/obj/effect/turf_decal/siding/wood{
+ color = "#D5A66E"
+ },
+/obj/structure/railing/corner/wood{
+ dir = 4;
+ color = "#D5A66E"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood/birch,
+/area/ship/crew/dorm/dormthree)
+"Wq" = (
+/obj/effect/turf_decal/industrial/warning/corner,
+/turf/open/floor/engine/hull,
+/area/ship/external/dark)
+"Wv" = (
+/obj/item/reagent_containers/food/snacks/grown/cabbage,
+/obj/item/reagent_containers/food/snacks/grown/cabbage,
+/obj/item/reagent_containers/food/snacks/grown/cabbage,
+/obj/item/reagent_containers/food/snacks/grown/cabbage,
+/obj/item/reagent_containers/food/snacks/grown/cabbage,
+/obj/item/reagent_containers/food/snacks/grown/cabbage,
+/obj/item/reagent_containers/food/snacks/grown/cabbage,
+/obj/item/reagent_containers/food/snacks/grown/cabbage,
+/obj/item/reagent_containers/food/condiment/saltshaker,
+/obj/item/reagent_containers/food/condiment/saltshaker,
+/obj/item/reagent_containers/food/condiment/saltshaker,
+/obj/item/reagent_containers/food/condiment/saltshaker,
+/obj/structure/closet/crate/secure/gear{
+ populate = 0;
+ name = "emergency sauerkraut supplies";
+ desc = "For emergency use only";
+ req_access = list(19)
+ },
+/obj/item/reagent_containers/food/snacks/grown/cabbage,
+/obj/item/reagent_containers/food/snacks/grown/cabbage,
+/obj/item/reagent_containers/food/snacks/grown/cabbage,
+/obj/item/reagent_containers/food/snacks/grown/cabbage,
+/obj/effect/turf_decal/industrial/stand_clear{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"WF" = (
+/obj/effect/turf_decal/industrial/stand_clear{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"WG" = (
+/obj/effect/turf_decal/corner/opaque/solgovblue{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/patterned,
+/area/ship/cargo)
+"WI" = (
+/obj/structure/table/wood,
+/obj/structure/reagent_dispensers/beerkeg,
+/turf/open/floor/wood,
+/area/ship/crew/canteen)
+"WK" = (
+/obj/effect/turf_decal/solgov/all/bottom_right,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"WO" = (
+/obj/effect/turf_decal/siding/yellow{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/white,
+/area/ship/crew/cryo)
+"WR" = (
+/obj/effect/turf_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/machinery/button/door{
+ dir = 4;
+ id = "sgi_cargo2";
+ name = "blast door control";
+ pixel_x = -20;
+ pixel_y = 7
+ },
+/obj/machinery/button/shieldwallgen{
+ dir = 4;
+ pixel_y = -2;
+ pixel_x = -18;
+ id = "sgi_holocargo2"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"WX" = (
+/obj/machinery/door/poddoor{
+ dir = 4;
+ id = "sgi_cargo1"
+ },
+/turf/open/floor/plasteel/patterned/ridged,
+/area/ship/cargo)
+"Xi" = (
+/obj/effect/turf_decal/siding/wood,
+/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
+ },
+/turf/open/floor/wood,
+/area/ship/crew/canteen/kitchen)
+"Xl" = (
+/obj/structure/closet/crate/wooden,
+/obj/item/mop,
+/obj/item/reagent_containers/glass/bucket,
+/obj/item/soap,
+/obj/item/soap,
+/obj/effect/turf_decal/box/corners,
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"Xp" = (
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/dorm)
+"Xu" = (
+/obj/effect/turf_decal/techfloor/orange/corner,
+/obj/effect/turf_decal/techfloor/orange/corner{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/effect/turf_decal/corner/opaque/solgovgold{
+ dir = 6
+ },
+/obj/effect/turf_decal/corner/opaque/solgovblue{
+ dir = 9
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning{
+ dir = 4
+ },
+/turf/open/floor/plasteel/tech,
+/area/ship/maintenance/port)
+"Xz" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/wood,
+/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/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/ship/crew/library)
+"XH" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/canteen/kitchen)
+"XQ" = (
+/obj/machinery/power/terminal{
+ dir = 8
+ },
+/obj/effect/turf_decal/techfloor/orange{
+ dir = 9
+ },
+/obj/effect/turf_decal/corner/opaque/solgovblue,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/machinery/button/door{
+ pixel_y = 24;
+ pixel_x = -4;
+ id = "sgi_engine";
+ name = "engine blast door control"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/tech,
+/area/ship/maintenance/port)
+"XV" = (
+/obj/effect/turf_decal/techfloor{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
+ },
+/obj/structure/extinguisher_cabinet/directional/west,
+/turf/open/floor/plasteel/white,
+/area/ship/security/armory)
+"XY" = (
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/ship/engineering)
+"XZ" = (
+/obj/docking_port/mobile{
+ can_move_docking_ports = 1;
+ preferred_direction = 4;
+ port_direction = 4
+ },
+/turf/closed/wall/mineral/titanium,
+/area/ship/security/armory)
+"Yb" = (
+/obj/effect/turf_decal/techfloor{
+ dir = 10
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 4
+ },
+/obj/item/radio/intercom/directional/south,
+/obj/structure/extinguisher_cabinet/directional/west,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/white,
+/area/ship/security/armory)
+"Yc" = (
+/obj/structure/table/wood,
+/obj/structure/extinguisher_cabinet/directional/south,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/library)
+"Yj" = (
+/obj/structure/chair/office{
+ dir = 8
+ },
+/obj/machinery/light/directional/east,
+/turf/open/floor/wood/walnut,
+/area/ship/cargo)
+"Yt" = (
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/ship/cargo)
+"Yx" = (
+/obj/effect/turf_decal/siding/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue,
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning,
+/obj/machinery/light/directional/east,
+/turf/open/floor/plasteel/patterned,
+/area/ship/cargo)
+"YB" = (
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue{
+ dir = 1
+ },
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue,
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/ship/cargo)
+"YC" = (
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue{
+ dir = 4
+ },
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning{
+ dir = 8
+ },
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/ship/cargo)
+"YE" = (
+/obj/machinery/atmospherics/components/unary/tank/air{
+ dir = 8;
+ piping_layer = 2
+ },
+/obj/effect/turf_decal/techfloor/orange{
+ dir = 4
+ },
+/obj/effect/turf_decal/corner/opaque/solgovblue{
+ dir = 9
+ },
+/obj/effect/turf_decal/industrial/outline/yellow,
+/obj/structure/sign/poster/solgov/random{
+ pixel_x = 32
+ },
+/turf/open/floor/plasteel/tech,
+/area/ship/maintenance/starboard)
+"YF" = (
+/obj/effect/turf_decal/techfloor{
+ dir = 6
+ },
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = 19;
+ pixel_y = -12
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/machinery/button/door{
+ pixel_y = -23;
+ pixel_x = -8;
+ dir = 1;
+ id = "sgi_external";
+ name = "blast door control"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/white,
+/area/ship/hallway/starboard)
+"YP" = (
+/obj/effect/turf_decal/spline/fancy/transparent/solgovblue,
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plasteel/patterned/cargo_one,
+/area/ship/cargo)
+"YS" = (
+/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 = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood/walnut,
+/area/ship/crew/dorm/dormtwo)
+"YY" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/obj/machinery/jukebox,
+/obj/machinery/light/directional/north,
+/turf/open/floor/wood/birch,
+/area/ship/crew/canteen)
+"YZ" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile/shuttle,
+/obj/machinery/door/poddoor/shutters{
+ dir = 1;
+ id = "sgi_cafeteria"
+ },
+/turf/open/floor/plating,
+/area/ship/crew/canteen/kitchen)
+"Zb" = (
+/obj/structure/chair/office{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood/maple,
+/area/ship/bridge)
+"Zj" = (
+/obj/machinery/power/smes/shuttle/precharged{
+ dir = 4
+ },
+/obj/effect/turf_decal/techfloor/orange{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/machinery/door/poddoor{
+ id = "sgi_engine";
+ dir = 4
+ },
+/obj/machinery/door/window/westright{
+ dir = 4
+ },
+/turf/open/floor/plasteel/tech/grid,
+/area/ship/maintenance/starboard)
+"Zo" = (
+/obj/structure/railing/wood{
+ color = "#543C30";
+ dir = 4
+ },
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"Zr" = (
+/obj/machinery/door/poddoor{
+ dir = 4;
+ id = "sgi_cargo1"
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/shieldwallgen/atmos/roundstart{
+ dir = 2;
+ id = "sgi_holocargo1"
+ },
+/turf/open/floor/plasteel/patterned/ridged,
+/area/ship/cargo)
+"Zw" = (
+/obj/effect/turf_decal/corner/opaque/solgovgold{
+ dir = 5
+ },
+/obj/effect/turf_decal/techfloor/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/techfloor/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
+/obj/effect/turf_decal/trimline/opaque/solgovblue/warning{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/ship/security/armory)
+"Zz" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/effect/turf_decal/industrial/outline/yellow,
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"ZA" = (
+/obj/structure/chair/wood{
+ dir = 4
+ },
+/obj/item/radio/intercom/directional/south,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood/birch,
+/area/ship/hallway/starboard)
+"ZB" = (
+/obj/item/kirbyplants{
+ icon_state = "plant-17";
+ pixel_y = 3;
+ pixel_x = -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
+ },
+/obj/machinery/light/directional/west,
+/turf/open/floor/wood/birch,
+/area/ship/crew/canteen)
+"ZK" = (
+/obj/structure/rack,
+/obj/item/mining_scanner{
+ pixel_x = -5;
+ pixel_y = -5
+ },
+/obj/item/mining_scanner,
+/obj/item/mining_scanner{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/pickaxe,
+/obj/item/pickaxe,
+/obj/item/pickaxe,
+/obj/effect/turf_decal/techfloor{
+ dir = 1
+ },
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plasteel/white,
+/area/ship/cargo/office)
+"ZR" = (
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/engineering{
+ dir = 4;
+ name = "Engine Room";
+ req_one_access = list(10)
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
+ },
+/turf/open/floor/plasteel/mono/dark,
+/area/ship/maintenance/port)
+"ZS" = (
+/obj/structure/fluff/hedge/opaque,
+/obj/effect/turf_decal/siding/wood{
+ color = "#D5A66E";
+ dir = 1
+ },
+/obj/machinery/button/door{
+ dir = 8;
+ id = "sgi_quartermaster";
+ name = "bolt control";
+ pixel_x = 20;
+ pixel_y = -6;
+ specialfunctions = 4;
+ normaldoorcontrol = 1
+ },
+/turf/open/floor/wood/birch,
+/area/ship/crew/dorm/dormthree)
+"ZV" = (
+/obj/effect/turf_decal/solgov/all/center_right,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
+ },
+/turf/open/floor/plasteel/mono,
+/area/ship/cargo)
+"ZY" = (
+/obj/machinery/vending/coffee,
+/obj/structure/noticeboard{
+ pixel_y = 32
+ },
+/turf/open/floor/wood/birch,
+/area/ship/crew/office)
+
+(1,1,1) = {"
+iG
+hE
+zI
+Hp
+Hp
+zI
+hE
+iG
+iG
+iG
+iG
+iG
+iG
+iG
+iG
+iG
+iG
+iG
+iG
+iG
+iG
+iG
+iG
+iG
+hE
+ni
+dv
+dv
+ni
+hE
+iG
+iG
+"}
+(2,1,1) = {"
+iG
+Od
+op
+op
+op
+op
+Od
+iG
+iG
+iG
+iG
+iG
+iG
+iG
+iG
+iG
+iG
+iG
+iG
+iG
+iG
+iG
+iG
+iG
+DH
+Zj
+Zj
+Zj
+Zj
+DH
+iG
+iG
+"}
+(3,1,1) = {"
+iG
+Od
+XQ
+ia
+ia
+tT
+Od
+iG
+iG
+iG
+iG
+iG
+iG
+iG
+iG
+iG
+iG
+iG
+iG
+iG
+iG
+iG
+iG
+sV
+ln
+fk
+FG
+FH
+Qt
+DH
+iG
+iG
+"}
+(4,1,1) = {"
+iG
+Od
+Ud
+rD
+Bp
+zp
+Sy
+Od
+AM
+ce
+Wq
+Tv
+Tv
+Tv
+TY
+qM
+Wq
+Tv
+Tv
+Tv
+TY
+ce
+AM
+DH
+wb
+Iw
+BQ
+QT
+oG
+DH
+iG
+iG
+"}
+(5,1,1) = {"
+iG
+Od
+fG
+xs
+Xu
+qs
+Sy
+Sy
+uh
+OX
+OX
+Zr
+WX
+qp
+OX
+OX
+OX
+Ta
+Bt
+xF
+OX
+OX
+uh
+wb
+wb
+xS
+nJ
+YE
+SB
+DH
+iG
+iG
+"}
+(6,1,1) = {"
+iG
+Od
+Od
+Od
+ZR
+Od
+Sy
+Sy
+HG
+BG
+dT
+Dw
+ZV
+WK
+OC
+pr
+Dn
+Dw
+ZV
+WK
+WR
+Gp
+sx
+wb
+wb
+DH
+su
+DH
+DH
+DH
+iG
+iG
+"}
+(7,1,1) = {"
+hE
+XY
+DE
+Cq
+df
+rQ
+VM
+xZ
+ha
+vE
+Tf
+db
+kx
+iy
+Nd
+CX
+ku
+QO
+np
+iy
+Nd
+yw
+sz
+ts
+AZ
+KS
+Np
+ts
+qx
+ts
+hE
+iG
+"}
+(8,1,1) = {"
+xZ
+ek
+NY
+Ex
+QN
+wQ
+RI
+xZ
+px
+gI
+fv
+sh
+YC
+NA
+jE
+Mt
+Fs
+sh
+fB
+NA
+md
+Hv
+SA
+ts
+LZ
+gW
+FN
+ts
+xd
+mB
+Or
+iG
+"}
+(9,1,1) = {"
+xZ
+hJ
+NV
+Lb
+xf
+BM
+bt
+xZ
+QP
+ng
+JL
+Kt
+Wv
+Kt
+SU
+dH
+Nb
+Kt
+qw
+Rr
+sH
+Sf
+hl
+ts
+nx
+eA
+Jz
+uw
+bS
+ff
+JS
+zH
+"}
+(10,1,1) = {"
+xZ
+vf
+MQ
+TG
+MI
+eX
+tY
+xZ
+br
+EH
+Qh
+hB
+Rk
+Kt
+Kv
+dH
+uR
+iq
+Ep
+Kt
+qt
+gw
+HB
+ts
+dK
+tB
+YF
+ts
+BT
+Py
+Or
+iG
+"}
+(11,1,1) = {"
+xZ
+xZ
+xZ
+xZ
+xZ
+kB
+xZ
+xZ
+rZ
+Me
+mz
+Kt
+TV
+Rr
+eb
+dH
+Fa
+Rr
+GN
+Pf
+Lz
+Bb
+Hi
+ts
+ts
+mQ
+ts
+ts
+ts
+ts
+ts
+iG
+"}
+(12,1,1) = {"
+LJ
+ka
+Yb
+LJ
+XV
+HV
+Bm
+LJ
+km
+tU
+Sw
+Sw
+dM
+Sw
+Sw
+jP
+Sw
+Sw
+GH
+Sw
+Lw
+pK
+IB
+MW
+iM
+ut
+cz
+sJ
+DB
+Au
+sJ
+iG
+"}
+(13,1,1) = {"
+LJ
+GD
+RH
+wq
+Zw
+JT
+dR
+LJ
+qE
+Lg
+Yt
+Yt
+jh
+wj
+Yt
+fi
+wj
+Yt
+Pq
+Yt
+Yt
+zK
+nL
+MW
+ib
+Dc
+jw
+So
+gm
+qG
+sJ
+iG
+"}
+(14,1,1) = {"
+LJ
+QA
+ic
+LJ
+JX
+GV
+cI
+LJ
+Qz
+Me
+sT
+Nj
+WF
+RS
+SU
+YB
+El
+ON
+WF
+Kt
+sH
+rR
+xB
+MW
+tr
+hR
+xU
+sJ
+Rq
+GJ
+sJ
+iG
+"}
+(15,1,1) = {"
+LJ
+LJ
+LJ
+LJ
+lq
+PN
+if
+LJ
+gP
+ng
+Qh
+Rr
+Ep
+Kt
+Ct
+dH
+Qh
+JD
+Ap
+Rr
+sr
+KL
+WG
+MW
+up
+Kd
+kZ
+sJ
+af
+BP
+sJ
+iG
+"}
+(16,1,1) = {"
+LJ
+lx
+AC
+LJ
+Et
+co
+wB
+LJ
+dp
+CC
+sm
+jM
+wg
+aO
+rM
+ED
+UE
+rm
+en
+iR
+Xl
+uT
+zu
+MW
+Td
+Kd
+Rh
+sJ
+cQ
+gp
+sJ
+iG
+"}
+(17,1,1) = {"
+LJ
+uv
+Jq
+fZ
+fI
+PN
+ez
+LJ
+ao
+Du
+ke
+uA
+sX
+nc
+gu
+je
+wt
+cG
+Sx
+Ed
+Jt
+SC
+Rw
+MW
+ZK
+Pu
+FJ
+sJ
+BP
+Ef
+sJ
+iG
+"}
+(18,1,1) = {"
+LJ
+IX
+sb
+LS
+Gd
+UC
+bu
+LJ
+nB
+bB
+uK
+Ln
+YP
+Wh
+Zo
+yI
+tg
+lT
+KK
+uK
+uK
+DK
+PR
+MW
+rN
+xt
+yV
+sJ
+cX
+Oo
+sJ
+iG
+"}
+(19,1,1) = {"
+XZ
+kf
+DF
+LJ
+oH
+Wc
+gi
+LJ
+Ol
+OS
+wj
+Yt
+fO
+nh
+lu
+Vt
+VT
+nV
+KU
+wj
+wj
+Il
+Ee
+MW
+MZ
+Kd
+Tz
+sJ
+fC
+uC
+sJ
+iG
+"}
+(20,1,1) = {"
+hE
+SI
+kK
+LJ
+yz
+Rt
+bf
+LJ
+ij
+Yx
+eD
+VO
+rU
+BD
+oi
+Yj
+oi
+rb
+oC
+Zz
+Kz
+Jh
+GO
+MW
+Lk
+da
+MT
+sJ
+IC
+PV
+hE
+iG
+"}
+(21,1,1) = {"
+iG
+Qb
+Qb
+Qb
+Qb
+sn
+vo
+Mv
+aq
+VI
+wm
+wm
+wm
+wm
+wm
+zc
+eM
+eM
+eM
+eM
+eM
+dw
+Fc
+zd
+zv
+zd
+zd
+zd
+zd
+zd
+iG
+iG
+"}
+(22,1,1) = {"
+iG
+Qb
+iI
+kN
+Ci
+Qb
+ks
+vn
+Ik
+zc
+GP
+wo
+OW
+CN
+Ru
+zc
+pd
+Kg
+uE
+LB
+PB
+dw
+NB
+ZB
+dY
+hM
+yH
+uq
+zC
+zd
+iG
+iG
+"}
+(23,1,1) = {"
+iG
+Qb
+Mr
+WO
+os
+Qb
+iL
+fQ
+of
+zc
+Mz
+QH
+Fq
+pL
+QX
+zc
+Wk
+yD
+pu
+wk
+ti
+dw
+YY
+ec
+RX
+Ek
+jf
+jv
+wW
+zd
+iG
+iG
+"}
+(24,1,1) = {"
+iG
+Qb
+Aa
+gr
+Pd
+or
+JG
+RL
+ZA
+zc
+Mh
+lB
+ze
+tl
+ye
+zc
+yG
+mD
+cL
+Fp
+iu
+dw
+Vp
+jv
+eQ
+Ek
+KN
+uy
+WI
+zd
+iG
+iG
+"}
+(25,1,1) = {"
+iG
+Qb
+Br
+RB
+DP
+Qb
+cn
+gf
+It
+zc
+tx
+lB
+Kc
+Wn
+BB
+zc
+py
+eq
+YS
+tD
+tc
+dw
+tK
+Ul
+Gn
+lW
+qB
+fE
+zs
+zd
+iG
+iG
+"}
+(26,1,1) = {"
+iG
+Qb
+mY
+Iu
+ph
+Qb
+AN
+BW
+xh
+zc
+bh
+ZS
+xC
+pG
+gS
+zc
+hg
+vz
+TM
+bn
+sQ
+dw
+zd
+zd
+CJ
+zd
+zd
+zd
+zd
+zd
+iG
+iG
+"}
+(27,1,1) = {"
+iG
+Qb
+qS
+Sr
+Jr
+Qb
+Mv
+kL
+Mv
+zc
+zc
+zc
+Ba
+zc
+zc
+zc
+dw
+dw
+dn
+dw
+dw
+xY
+xA
+lX
+Xi
+Nf
+QB
+sg
+my
+FE
+iG
+iG
+"}
+(28,1,1) = {"
+iG
+Qb
+Qb
+Qb
+Qb
+Qb
+mA
+nf
+mf
+nY
+Rx
+Fo
+vL
+Ga
+oN
+og
+ET
+Ga
+vL
+yn
+bU
+Ny
+my
+am
+Xi
+wF
+sd
+sd
+RF
+YZ
+iG
+iG
+"}
+(29,1,1) = {"
+iG
+DD
+so
+hw
+lD
+ft
+ZY
+rT
+JN
+hS
+BO
+Fd
+NP
+Fd
+Fd
+wh
+Dy
+Fd
+hF
+Yc
+bU
+nk
+no
+qh
+EQ
+wF
+sd
+sd
+Ty
+YZ
+iG
+iG
+"}
+(30,1,1) = {"
+iG
+DD
+Vk
+BY
+KX
+VA
+kR
+Oq
+za
+jo
+Rx
+Wj
+IY
+dm
+sk
+zE
+ar
+ar
+Gq
+td
+BO
+rS
+UM
+KD
+bI
+dQ
+sd
+sd
+gV
+YZ
+iG
+iG
+"}
+(31,1,1) = {"
+iG
+DD
+Ho
+QZ
+Xp
+zf
+iD
+JZ
+nC
+Rc
+bU
+fj
+Js
+We
+Ga
+Xz
+vM
+GF
+bs
+bs
+bU
+xP
+pS
+ex
+HW
+HM
+Tt
+uX
+Rd
+YZ
+iG
+iG
+"}
+(32,1,1) = {"
+iG
+DD
+lh
+ps
+iJ
+VA
+hm
+oR
+UD
+li
+bU
+bU
+bU
+bU
+bU
+zP
+bU
+bU
+bU
+bU
+bU
+EF
+FC
+AU
+pS
+St
+UF
+Tk
+CM
+YZ
+iG
+iG
+"}
+(33,1,1) = {"
+iG
+ft
+ft
+VY
+ft
+ft
+Jc
+BF
+jc
+yu
+RN
+nO
+ym
+lj
+vH
+cO
+vW
+Re
+uc
+qP
+RN
+My
+Dt
+Dt
+jX
+dE
+XH
+iE
+uS
+YZ
+iG
+iG
+"}
+(34,1,1) = {"
+iG
+DS
+AQ
+ny
+eB
+DS
+gn
+gn
+gn
+gn
+RN
+OF
+Zb
+qe
+Ck
+rz
+Pv
+Ql
+fU
+CS
+RN
+qc
+qc
+qc
+qc
+AA
+kz
+zA
+JV
+FE
+iG
+iG
+"}
+(35,1,1) = {"
+iG
+hE
+ea
+pc
+cH
+DS
+iG
+iG
+iG
+iG
+nR
+yB
+Vl
+Vo
+ct
+Qx
+yl
+Ve
+HT
+yB
+nR
+iG
+iG
+iG
+iG
+FE
+nA
+yE
+AA
+hE
+iG
+iG
+"}
+(36,1,1) = {"
+iG
+iG
+DS
+DS
+DS
+hE
+iG
+iG
+iG
+iG
+iG
+nR
+nR
+nR
+nR
+nR
+nR
+nR
+nR
+nR
+iG
+iG
+iG
+iG
+iG
+hE
+qc
+qc
+FE
+iG
+iG
+iG
+"}
diff --git a/_maps/shuttles/subshuttles/Subshuttle Catalog.txt b/_maps/shuttles/subshuttles/Subshuttle Catalog.txt
index 1d48dbc85f03..3424b7605354 100644
--- a/_maps/shuttles/subshuttles/Subshuttle Catalog.txt
+++ b/_maps/shuttles/subshuttles/Subshuttle Catalog.txt
@@ -29,7 +29,7 @@ Purpose = "Supposedly an manned torpedo. What is this. Subtest?"
File Path = "_maps\shuttles\subshuttles\independant_pill.dmm"
Name = "Superpill"
-Size = "1x3"
+Size = "3x4"
Purpose = "A horrid merger of engineering platform and pill"
File Path = "_maps\shuttles\subshuttles\independant_pill.dmm"
@@ -37,3 +37,5 @@ Name = "Falcon Dropship"
Size = "13x7"
Purpose = "A Nanotrasen dropship, primarily used by Heron-Class carriers."
File Path = "_maps\shuttles\subshuttles\nanotrasen_falcon.dmm"
+
+
diff --git a/_maps/shuttles/subshuttles/frontiersmen_gut.dmm b/_maps/shuttles/subshuttles/frontiersmen_gut.dmm
index cf1571f9d7d4..3b05c2224080 100644
--- a/_maps/shuttles/subshuttles/frontiersmen_gut.dmm
+++ b/_maps/shuttles/subshuttles/frontiersmen_gut.dmm
@@ -247,6 +247,7 @@
/obj/structure/cable{
icon_state = "1-8"
},
+/obj/effect/landmark/ert_shuttle_spawn,
/turf/open/floor/plasteel/tech,
/area/ship/storage)
"qh" = (
@@ -341,6 +342,7 @@
},
/obj/machinery/light/directional/east,
/obj/machinery/power/apc/auto_name/directional/north,
+/obj/effect/landmark/ert_shuttle_spawn,
/turf/open/floor/plasteel/tech,
/area/ship/storage)
"ue" = (
@@ -569,6 +571,7 @@
color = "#808080"
},
/obj/machinery/light/directional/east,
+/obj/effect/landmark/ert_shuttle_spawn,
/turf/open/floor/plasteel/tech,
/area/ship/storage)
"RY" = (
@@ -625,6 +628,7 @@
dir = 8;
color = "#808080"
},
+/obj/effect/landmark/ert_shuttle_spawn,
/turf/open/floor/plasteel/tech,
/area/ship/storage)
"UA" = (
@@ -686,6 +690,7 @@
dir = 1;
name = "tactical chair"
},
+/obj/effect/landmark/ert_shuttle_brief_spawn,
/turf/open/floor/plasteel/telecomms_floor,
/area/ship/storage)
diff --git a/_maps/shuttles/subshuttles/independent_kunai.dmm b/_maps/shuttles/subshuttles/independent_kunai.dmm
index cdc0efe873f5..e1975d0a1737 100644
--- a/_maps/shuttles/subshuttles/independent_kunai.dmm
+++ b/_maps/shuttles/subshuttles/independent_kunai.dmm
@@ -99,6 +99,7 @@
/obj/structure/chair/comfy/shuttle{
dir = 1
},
+/obj/effect/landmark/ert_shuttle_spawn,
/turf/open/floor/engine/hull/interior,
/area/ship/storage)
"al" = (
@@ -165,6 +166,7 @@
/area/ship/storage)
"bY" = (
/obj/structure/chair/comfy/shuttle,
+/obj/effect/landmark/ert_shuttle_spawn,
/turf/open/floor/engine/hull/interior,
/area/ship/storage)
"cF" = (
@@ -333,6 +335,17 @@
/obj/structure/grille,
/turf/open/floor/engine/hull/reinforced,
/area/ship/external)
+"pk" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/siding/thinplating/dark,
+/obj/effect/turf_decal/siding/thinplating/dark{
+ dir = 1
+ },
+/obj/effect/landmark/ert_shuttle_brief_spawn,
+/turf/open/floor/plasteel/dark,
+/area/ship/storage)
"qn" = (
/obj/machinery/power/terminal,
/obj/structure/cable,
@@ -391,6 +404,7 @@
dir = 1
},
/obj/machinery/light/small/directional/south,
+/obj/effect/landmark/ert_shuttle_spawn,
/turf/open/floor/engine/hull/interior,
/area/ship/storage)
"DP" = (
@@ -493,6 +507,7 @@
"SE" = (
/obj/structure/chair/comfy/shuttle,
/obj/machinery/light/small/directional/north,
+/obj/effect/landmark/ert_shuttle_spawn,
/turf/open/floor/engine/hull/interior,
/area/ship/storage)
"Wx" = (
@@ -572,7 +587,7 @@ gs
Pq
hJ
bG
-RO
+pk
bG
hJ
Pq
diff --git a/_maps/shuttles/subshuttles/independent_sugarcube.dmm b/_maps/shuttles/subshuttles/independent_sugarcube.dmm
index 865e0da78091..11a8de916cd6 100644
--- a/_maps/shuttles/subshuttles/independent_sugarcube.dmm
+++ b/_maps/shuttles/subshuttles/independent_sugarcube.dmm
@@ -79,6 +79,7 @@
pixel_y = 23;
pixel_x = -13
},
+/obj/effect/landmark/ert_shuttle_spawn,
/turf/open/floor/plating,
/area/ship/storage)
"j" = (
@@ -86,6 +87,7 @@
dir = 4
},
/obj/structure/window/reinforced/spawner/west,
+/obj/effect/landmark/ert_shuttle_spawn,
/turf/open/floor/plating,
/area/ship/storage)
"k" = (
@@ -95,6 +97,7 @@
/obj/structure/window/reinforced/spawner/west,
/obj/structure/window/reinforced/spawner/east,
/obj/machinery/light/directional/north,
+/obj/effect/landmark/ert_shuttle_spawn,
/turf/open/floor/plating,
/area/ship/storage)
"l" = (
@@ -107,6 +110,7 @@
/obj/structure/chair/comfy/shuttle{
dir = 4
},
+/obj/effect/landmark/ert_shuttle_spawn,
/turf/open/floor/plating,
/area/ship/storage)
"n" = (
@@ -147,6 +151,7 @@
},
/obj/structure/window/reinforced/spawner/west,
/obj/structure/window/reinforced/spawner/east,
+/obj/effect/landmark/ert_shuttle_spawn,
/turf/open/floor/plating,
/area/ship/storage)
"s" = (
@@ -223,6 +228,7 @@
/obj/structure/cable{
icon_state = "1-2"
},
+/obj/effect/landmark/ert_shuttle_spawn,
/turf/open/floor/plating,
/area/ship/storage)
"A" = (
@@ -274,6 +280,7 @@
},
/obj/structure/window/reinforced/spawner/west,
/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/landmark/ert_shuttle_spawn,
/turf/open/floor/plating,
/area/ship/storage)
"G" = (
@@ -283,6 +290,7 @@
/obj/structure/window/reinforced/spawner/west,
/obj/structure/window/reinforced/spawner/east,
/obj/machinery/light/directional/south,
+/obj/effect/landmark/ert_shuttle_spawn,
/turf/open/floor/plating,
/area/ship/storage)
"H" = (
@@ -294,6 +302,7 @@
/obj/structure/chair/comfy/shuttle{
dir = 8
},
+/obj/effect/landmark/ert_shuttle_spawn,
/turf/open/floor/plating,
/area/ship/storage)
"J" = (
@@ -308,6 +317,10 @@
"L" = (
/turf/closed/wall,
/area/ship/engineering)
+"T" = (
+/obj/effect/landmark/ert_shuttle_brief_spawn,
+/turf/open/floor/plating,
+/area/ship/storage)
"Z" = (
/turf/closed/wall/rust,
/area/ship/engineering)
@@ -380,7 +393,7 @@ b
d
l
l
-y
+T
l
J
"}
diff --git a/_maps/shuttles/subshuttles/independent_superpill.dmm b/_maps/shuttles/subshuttles/independent_superpill.dmm
index fc0dacddc501..de9046d091a4 100644
--- a/_maps/shuttles/subshuttles/independent_superpill.dmm
+++ b/_maps/shuttles/subshuttles/independent_superpill.dmm
@@ -1,208 +1,219 @@
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
"a" = (
-/obj/machinery/atmospherics/pipe/heat_exchanging/manifold4w/layer2,
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/general/visible/layer4{
- dir = 5
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 1
},
/obj/machinery/portable_atmospherics/canister/toxins,
-/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer1{
- dir = 4
- },
-/obj/structure/catwalk,
/turf/open/floor/plating/rust,
/area/ship/storage)
"b" = (
-/obj/machinery/atmospherics/pipe/heat_exchanging/junction/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/heat_exchanging/manifold4w/layer2,
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
+/obj/structure/catwalk,
+/obj/machinery/conveyor_switch/oneway{
+ id = "superpill_start";
+ name = "jumpstart device";
+ desc = "A conveyor control switch. It appears to only go in one direction; once you've pulled this, there's no going back."
},
-/obj/machinery/atmospherics/components/binary/pump/on/layer1{
+/obj/machinery/atmospherics/components/unary/outlet_injector/on/layer4{
dir = 4
},
-/obj/structure/catwalk,
/turf/open/floor/plating/rust,
/area/ship/storage)
"f" = (
-/obj/machinery/power/emitter/welded{
- dir = 4
+/obj/structure/window/plasma/reinforced,
+/obj/structure/window/plasma/reinforced/spawner/west,
+/obj/structure/window/plasma/reinforced/spawner/north,
+/obj/machinery/atmospherics/pipe/heat_exchanging/manifold/layer2{
+ dir = 1
},
-/obj/structure/cable{
- icon_state = "0-2"
+/obj/machinery/atmospherics/pipe/heat_exchanging/manifold{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/heat_exchanging/junction/layer2{
+/obj/machinery/conveyor{
dir = 4;
- layer = 3
+ id = "superpill_start"
},
-/obj/machinery/atmospherics/pipe/simple/general/visible/layer1{
- dir = 10
+/obj/item/reagent_containers/pill/floorpill{
+ pixel_y = -5;
+ pixel_x = -1
+ },
+/obj/item/reagent_containers/pill/floorpill{
+ pixel_x = 6
+ },
+/obj/item/reagent_containers/pill/floorpill{
+ pixel_x = 4;
+ pixel_y = 7
+ },
+/turf/open/floor/plating{
+ initial_gas_mix = "n2o=28, n2=72;TEMP=7"
},
-/obj/structure/catwalk,
-/turf/open/floor/plating/rust,
/area/ship/storage)
"h" = (
+/obj/structure/catwalk,
/obj/machinery/power/shuttle/engine/electric{
dir = 4
},
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/machinery/atmospherics/pipe/heat_exchanging/junction/layer2,
-/obj/machinery/atmospherics/pipe/simple/general/visible/layer4,
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/obj/structure/catwalk,
/obj/docking_port/mobile{
can_move_docking_ports = 1;
dir = 4;
port_direction = 2;
preferred_direction = 4
},
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/machinery/atmospherics/pipe/layer_manifold/visible,
/turf/open/floor/plating/rust,
/area/ship/storage)
"i" = (
-/obj/machinery/atmospherics/pipe/heat_exchanging/manifold4w/layer2,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- filter_types = list("co2","bz","o2","plasma","water_vapor","nob","no2","tritium","freon","pluox","stim")
- },
+/obj/structure/window/plasma/reinforced/spawner/north,
+/obj/structure/window/plasma/reinforced/spawner/east,
+/obj/structure/window/plasma/reinforced,
/obj/machinery/power/supermatter_crystal/shard,
-/obj/structure/window/plasma/reinforced/spawner{
- pixel_y = -7
- },
-/obj/structure/window/plasma/reinforced/spawner/east{
- pixel_x = 7
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer2{
+ dir = 10
},
-/obj/structure/window/plasma/reinforced/spawner/north{
- pixel_y = 7
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 10
},
-/obj/structure/window/plasma/reinforced/spawner/west{
- pixel_x = -7
+/obj/effect/decal/remains/human{
+ name = "environmental storytelling"
},
-/obj/machinery/atmospherics/pipe/heat_exchanging/manifold4w/layer4,
-/obj/machinery/atmospherics/pipe/heat_exchanging/manifold4w{
- layer = 3
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ filter_types = list("co2","bz","o2","plasma","water_vapor","nob","no2","tritium","freon","pluox","stim")
},
/turf/open/floor/plating{
initial_gas_mix = "n2o=28, n2=72;TEMP=7"
},
/area/ship/storage)
"l" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 6
- },
+/obj/structure/catwalk,
/obj/machinery/atmospherics/pipe/simple/general/visible/layer2{
dir = 6
},
-/obj/machinery/atmospherics/pipe/simple/general/visible/layer4{
+/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 6
},
-/obj/structure/catwalk,
+/obj/structure/sign/warning/incident,
/turf/open/floor/plating/rust,
/area/ship/storage)
"m" = (
-/obj/machinery/atmospherics/pipe/heat_exchanging/manifold4w{
- layer = 3
- },
-/obj/machinery/atmospherics/components/unary/passive_vent/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/heat_exchanging/manifold4w/layer4,
-/obj/machinery/atmospherics/pipe/heat_exchanging/manifold4w/layer2,
-/obj/structure/catwalk,
/obj/machinery/computer/helm/retro{
dir = 8
},
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer2{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 9
+ },
/turf/open/floor/plating/rust,
/area/ship/storage)
"s" = (
-/obj/machinery/atmospherics/pipe/heat_exchanging/manifold4w/layer4,
-/obj/machinery/atmospherics/pipe/heat_exchanging/manifold4w/layer2,
-/obj/machinery/atmospherics/pipe/heat_exchanging/junction{
- dir = 4;
- layer = 3
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer2{
+ dir = 5
},
-/obj/machinery/atmospherics/pipe/simple/general/visible/layer1{
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/general/visible/layer4{
dir = 9
},
-/obj/structure/catwalk,
/turf/open/floor/plating/rust,
/area/ship/storage)
"x" = (
-/obj/machinery/atmospherics/pipe/layer_manifold/visible{
- dir = 8
- },
/obj/structure/catwalk,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/emitter/welded/upgraded{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/heat_exchanging/junction/layer2{
+ dir = 4;
+ layer = 3
+ },
+/obj/machinery/atmospherics/pipe/heat_exchanging/junction{
+ dir = 4;
+ layer = 3
+ },
/turf/open/floor/plating/rust,
/area/ship/storage)
"C" = (
-/obj/structure/cable{
- icon_state = "0-8"
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 4
},
/obj/machinery/power/apc/auto_name/directional/west{
pixel_x = -25
},
-/obj/structure/window/reinforced/tinted,
+/obj/item/tank/internals/plasma/full,
+/obj/item/clothing/head/helmet/space/orange,
+/obj/item/tank/internals/emergency_oxygen,
+/obj/item/pickaxe/improvised,
+/obj/item/clothing/suit/space/orange,
+/obj/item/storage/toolbox/mechanical/old,
+/obj/item/clothing/mask/gas,
+/obj/structure/bed,
+/obj/machinery/light/floor,
+/obj/machinery/holopad,
+/obj/machinery/door/window,
/obj/structure/window/reinforced/tinted{
dir = 8
},
/obj/structure/window/reinforced/tinted{
- dir = 1
+ dir = 4
+ },
+/obj/structure/fans/tiny,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
},
/obj/structure/cable{
icon_state = "0-4"
},
+/obj/machinery/door/window{
+ dir = 1
+ },
+/obj/machinery/airalarm/directional/east,
/turf/open/floor/plasteel/tech/grid,
/area/ship/storage)
"R" = (
-/obj/machinery/power/rad_collector/anchored,
+/obj/structure/catwalk,
/obj/structure/cable{
icon_state = "0-8"
},
-/obj/machinery/atmospherics/pipe/manifold/general/visible/layer4{
+/obj/machinery/power/rad_collector/anchored,
+/obj/machinery/atmospherics/pipe/heat_exchanging/manifold/layer2{
dir = 4
},
-/obj/machinery/atmospherics/pipe/heat_exchanging/manifold4w/layer4,
-/obj/machinery/atmospherics/pipe/heat_exchanging/manifold4w,
-/obj/structure/catwalk,
-/obj/machinery/atmospherics/pipe/heat_exchanging/manifold4w/layer2,
+/obj/machinery/atmospherics/pipe/heat_exchanging/manifold{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/general/visible/layer4{
+ dir = 9
+ },
/turf/open/floor/plating/rust,
/area/ship/storage)
"W" = (
-/obj/item/clothing/mask/gas,
-/obj/structure/bed,
-/obj/machinery/light/floor,
-/obj/structure/fans/tiny,
-/obj/machinery/door/window{
- dir = 1
- },
-/obj/structure/window/reinforced/tinted{
- dir = 4
- },
-/obj/structure/cable,
+/obj/structure/catwalk,
/obj/structure/cable{
- icon_state = "0-4"
+ icon_state = "4-8"
},
-/obj/machinery/airalarm/directional/west,
-/obj/structure/cable{
- icon_state = "0-8"
+/obj/machinery/atmospherics/pipe/heat_exchanging/manifold/layer2{
+ dir = 8
},
-/obj/machinery/door/window,
-/obj/machinery/atmospherics/pipe/simple/general/visible/layer1,
-/obj/machinery/holopad,
-/obj/item/storage/toolbox/mechanical/old,
-/obj/item/clothing/suit/space/orange,
-/obj/item/pickaxe/improvised,
-/obj/item/tank/internals/emergency_oxygen,
-/obj/item/clothing/head/helmet/space/orange,
-/obj/item/tank/internals/plasma/full,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 4
+/obj/machinery/atmospherics/pipe/heat_exchanging/manifold{
+ dir = 8
},
-/turf/open/floor/plasteel/tech/grid,
+/obj/item/reagent_containers/food/drinks/bottle/vodka,
+/obj/machinery/atmospherics/pipe/manifold/general/visible/layer4{
+ dir = 1
+ },
+/turf/open/floor/plating/rust,
/area/ship/storage)
(1,1,1) = {"
diff --git a/_maps/shuttles/subshuttles/nanotrasen_falcon.dmm b/_maps/shuttles/subshuttles/nanotrasen_falcon.dmm
index 566469a7e219..e88bfc4bd5f2 100644
--- a/_maps/shuttles/subshuttles/nanotrasen_falcon.dmm
+++ b/_maps/shuttles/subshuttles/nanotrasen_falcon.dmm
@@ -36,6 +36,7 @@
dir = 8
},
/obj/structure/extinguisher_cabinet/directional/south,
+/obj/effect/landmark/ert_shuttle_spawn,
/turf/open/floor/plasteel,
/area/ship/storage/eva)
"e" = (
@@ -125,6 +126,7 @@
dir = 4;
pixel_y = 8
},
+/obj/effect/landmark/ert_shuttle_spawn,
/turf/open/floor/plasteel/telecomms_floor,
/area/ship/storage/eva)
"m" = (
@@ -146,6 +148,7 @@
/obj/machinery/vending/wallmed{
pixel_y = -28
},
+/obj/effect/landmark/ert_shuttle_spawn,
/turf/open/floor/plasteel,
/area/ship/storage/eva)
"p" = (
@@ -174,6 +177,7 @@
dir = 8
},
/obj/effect/decal/cleanable/dirt,
+/obj/effect/landmark/ert_shuttle_spawn,
/turf/open/floor/plasteel,
/area/ship/storage/eva)
"s" = (
@@ -307,6 +311,7 @@
/obj/effect/turf_decal/techfloor{
dir = 8
},
+/obj/effect/landmark/ert_shuttle_spawn,
/turf/open/floor/plasteel,
/area/ship/storage/eva)
"C" = (
@@ -379,6 +384,7 @@
/obj/effect/turf_decal/techfloor{
dir = 4
},
+/obj/effect/landmark/ert_shuttle_spawn,
/turf/open/floor/plasteel,
/area/ship/storage/eva)
"J" = (
@@ -394,6 +400,7 @@
dir = 4
},
/obj/item/radio/intercom/directional/north,
+/obj/effect/landmark/ert_shuttle_spawn,
/turf/open/floor/plasteel,
/area/ship/storage/eva)
"L" = (
@@ -440,6 +447,7 @@
/obj/structure/cable{
icon_state = "1-2"
},
+/obj/effect/landmark/ert_shuttle_brief_spawn,
/turf/open/floor/plasteel/patterned/brushed,
/area/ship/storage/eva)
"N" = (
@@ -535,6 +543,7 @@
dir = 8;
pixel_y = 16
},
+/obj/effect/landmark/ert_shuttle_spawn,
/turf/open/floor/plasteel/telecomms_floor,
/area/ship/storage/eva)
"U" = (
diff --git a/_maps/shuttles/syndicate/syndicate_aegis.dmm b/_maps/shuttles/syndicate/syndicate_aegis.dmm
index 94ce81e53d3d..2f79a3e98c9f 100644
--- a/_maps/shuttles/syndicate/syndicate_aegis.dmm
+++ b/_maps/shuttles/syndicate/syndicate_aegis.dmm
@@ -33,7 +33,7 @@
/obj/item/clothing/head/HoS/beret/syndicate,
/obj/item/clothing/head/HoS/syndicate,
/obj/item/clothing/suit/armor/vest/capcarapace/syndicate,
-/obj/item/clothing/under/syndicate/aclf,
+/obj/item/clothing/under/syndicate/officer,
/obj/item/clothing/under/syndicate/combat,
/obj/item/clothing/glasses/hud/security/sunglasses,
/obj/item/clothing/neck/stripedredscarf,
@@ -46,9 +46,6 @@
},
/obj/item/storage/belt/sabre,
/obj/item/reagent_containers/glass/beaker/unholywater,
-/obj/item/clothing/suit/armor/hos/trenchcoat{
- name = "syndicate jacket"
- },
/obj/item/clothing/mask/gas/syndicate,
/turf/open/floor/wood/walnut,
/area/ship/crew/dorm)
diff --git a/_maps/shuttles/syndicate/syndicate_cybersun_kansatsu.dmm b/_maps/shuttles/syndicate/syndicate_cybersun_kansatsu.dmm
index d6b4fcd4a79a..3a20cb1f5c26 100644
--- a/_maps/shuttles/syndicate/syndicate_cybersun_kansatsu.dmm
+++ b/_maps/shuttles/syndicate/syndicate_cybersun_kansatsu.dmm
@@ -12,9 +12,7 @@
/obj/effect/turf_decal/spline/fancy/opaque/syndiered{
dir = 1
},
-/obj/effect/turf_decal/spline/fancy/opaque/syndiered{
- dir = 2
- },
+/obj/effect/turf_decal/spline/fancy/opaque/syndiered,
/turf/open/floor/plasteel/white,
/area/ship/bridge)
"ah" = (
@@ -494,7 +492,6 @@
/obj/effect/turf_decal/corner/opaque/syndiered/bordercorner{
dir = 4
},
-/obj/machinery/airalarm/directional/west,
/turf/open/floor/plasteel/dark,
/area/ship/crew)
"lP" = (
@@ -892,12 +889,25 @@
/obj/effect/landmark/observer_start,
/turf/open/floor/plasteel/white,
/area/ship/hallway/central)
+"tV" = (
+/obj/machinery/porta_turret/ship/syndicate/weak{
+ dir = 4;
+ pixel_x = 8
+ },
+/turf/closed/wall/mineral/plastitanium,
+/area/ship/bridge)
"uq" = (
/obj/effect/turf_decal/spline/fancy/opaque/syndiered{
dir = 10
},
/turf/open/floor/plasteel/dark,
/area/ship/bridge)
+"uR" = (
+/obj/machinery/porta_turret/ship/syndicate/weak{
+ dir = 9
+ },
+/turf/closed/wall/mineral/plastitanium,
+/area/ship/bridge)
"vk" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
@@ -1125,6 +1135,12 @@
},
/turf/open/floor/plasteel/tech/techmaint,
/area/ship/cargo)
+"Ah" = (
+/obj/machinery/porta_turret/ship/syndicate/weak{
+ dir = 6
+ },
+/turf/closed/wall/mineral/plastitanium,
+/area/ship/bridge)
"AM" = (
/obj/effect/turf_decal/trimline/opaque/syndiered/filled/warning,
/obj/effect/turf_decal/trimline/opaque/syndiered/filled/warning{
@@ -1176,7 +1192,9 @@
/turf/open/floor/plasteel/tech/grid,
/area/ship/crew/dorm)
"CR" = (
-/obj/machinery/porta_turret/ship,
+/obj/machinery/porta_turret/ship/syndicate/weak{
+ dir = 10
+ },
/turf/closed/wall/mineral/plastitanium,
/area/ship/bridge)
"CU" = (
@@ -1293,7 +1311,11 @@
/turf/open/floor/plasteel/tech/grid,
/area/ship/bridge)
"GV" = (
-/obj/machinery/porta_turret/ship/weak,
+/obj/machinery/porta_turret/ship/syndicate/weak{
+ dir = 4;
+ pixel_x = 8;
+ pixel_y = 4
+ },
/turf/closed/wall/mineral/plastitanium,
/area/ship/bridge)
"Hd" = (
@@ -1396,6 +1418,12 @@
},
/turf/open/floor/plasteel/dark,
/area/ship/bridge)
+"KA" = (
+/obj/machinery/porta_turret/ship/syndicate/weak{
+ dir = 5
+ },
+/turf/closed/wall/mineral/plastitanium,
+/area/ship/bridge)
"KP" = (
/obj/structure/closet/wall{
name = "emergency rum cabinet";
@@ -1966,7 +1994,7 @@
/area/ship/engineering)
(1,1,1) = {"
-CR
+uR
YQ
YQ
ru
@@ -2069,7 +2097,7 @@ nO
"}
(7,1,1) = {"
YQ
-CR
+KA
kM
kM
kM
@@ -2081,7 +2109,7 @@ cZ
jj
jj
jj
-CR
+Ah
YQ
"}
(8,1,1) = {"
@@ -2276,7 +2304,7 @@ YQ
YQ
YQ
YQ
-GV
+tV
bO
bO
dA
diff --git a/_maps/shuttles/syndicate/syndicate_gorlex_hyena.dmm b/_maps/shuttles/syndicate/syndicate_gorlex_hyena.dmm
index 5d1d70d59fec..3a97d9913950 100644
--- a/_maps/shuttles/syndicate/syndicate_gorlex_hyena.dmm
+++ b/_maps/shuttles/syndicate/syndicate_gorlex_hyena.dmm
@@ -1693,18 +1693,24 @@
/obj/machinery/porta_turret/ship/ballistic,
/turf/closed/wall/mineral/plastitanium/nodiagonal,
/area/ship/bridge)
+"BR" = (
+/obj/machinery/porta_turret/ship/syndicate{
+ dir = 1
+ },
+/turf/closed/wall/mineral/plastitanium/nodiagonal,
+/area/ship/bridge)
"BZ" = (
/obj/structure/window/reinforced/tinted/frosted,
/obj/machinery/suit_storage_unit/inherit{
name = "captain's suit storage unit";
req_access = list(20)
},
-/obj/item/clothing/suit/space/hardsuit/syndi,
-/obj/item/clothing/mask/gas/syndicate,
/obj/machinery/light_switch{
dir = 4;
pixel_x = -20
},
+/obj/item/clothing/suit/space/hardsuit/syndi/sbg,
+/obj/item/clothing/mask/gas/syndicate,
/turf/open/floor/carpet/black,
/area/ship/bridge)
"Ck" = (
@@ -2250,8 +2256,9 @@
req_access = list(56)
},
/obj/item/clothing/shoes/magboots/syndie,
-/obj/item/clothing/suit/space/hardsuit/syndi/scarlet,
/obj/item/clothing/mask/gas/syndicate,
+/obj/item/clothing/suit/space/syndicate,
+/obj/item/clothing/head/helmet/space/syndicate,
/turf/open/floor/carpet/red,
/area/ship/cargo/office)
"KX" = (
@@ -2336,6 +2343,10 @@
},
/turf/open/floor/carpet/red_gold,
/area/ship/bridge)
+"NA" = (
+/obj/machinery/porta_turret/ship/syndicate,
+/turf/closed/wall/mineral/plastitanium/nodiagonal,
+/area/ship/bridge)
"NF" = (
/turf/closed/wall/mineral/plastitanium/nodiagonal,
/area/ship/cargo)
@@ -2500,7 +2511,9 @@
/turf/open/floor/plasteel/mono/dark,
/area/ship/cargo)
"Qz" = (
-/obj/machinery/porta_turret/ship/ballistic,
+/obj/machinery/porta_turret/ship/syndicate{
+ dir = 6
+ },
/turf/closed/wall/mineral/plastitanium,
/area/ship/bridge)
"QW" = (
@@ -2876,6 +2889,12 @@
},
/turf/open/floor/carpet/red_gold,
/area/ship/bridge)
+"Up" = (
+/obj/machinery/porta_turret/ship/syndicate/heavy{
+ dir = 4
+ },
+/turf/closed/wall/mineral/plastitanium,
+/area/ship/bridge)
"UI" = (
/obj/structure/cable{
icon_state = "4-8"
@@ -2886,6 +2905,12 @@
},
/turf/open/floor/plasteel/dark,
/area/ship/crew)
+"UN" = (
+/obj/machinery/porta_turret/ship/syndicate{
+ dir = 1
+ },
+/turf/closed/wall/mineral/plastitanium,
+/area/ship/bridge)
"UX" = (
/turf/closed/wall/mineral/plastitanium/nodiagonal,
/area/ship/crew)
@@ -3051,7 +3076,7 @@
a_intent = "help";
desc = "A small goliath pup. Its tendrils have not yet fully grown. Someone, somehow, has managed to fit a large dog collar around its neck.";
environment_smash = 0;
- faction = list("neutral");
+ faction = list("neutral","playerSyndicate");
mob_size = 2;
move_force = 1000;
move_resist = 1000;
@@ -3311,7 +3336,7 @@ sE
"}
(2,1,1) = {"
nn
-BG
+BR
ir
PL
SP
@@ -3328,7 +3353,7 @@ sE
nX
dU
pi
-BG
+NA
"}
(3,1,1) = {"
nn
@@ -3578,13 +3603,13 @@ UX
GV
GV
GV
-BG
+NA
nn
Zb
"}
(15,1,1) = {"
nn
-Qz
+UN
cs
cs
XU
@@ -3836,13 +3861,13 @@ mL
"}
(27,1,1) = {"
nn
-Qz
+Up
Ap
Jv
oQ
VC
Ap
-Qz
+Up
nn
nn
nn
diff --git a/_maps/shuttles/syndicate/syndicate_gorlex_komodo.dmm b/_maps/shuttles/syndicate/syndicate_gorlex_komodo.dmm
index 2ec2677dde07..3da232da75dc 100644
--- a/_maps/shuttles/syndicate/syndicate_gorlex_komodo.dmm
+++ b/_maps/shuttles/syndicate/syndicate_gorlex_komodo.dmm
@@ -460,6 +460,12 @@
},
/turf/open/floor/plasteel/dark,
/area/ship/bridge)
+"ea" = (
+/obj/machinery/porta_turret/ship/syndicate/heavy{
+ dir = 6
+ },
+/turf/closed/wall/mineral/plastitanium,
+/area/ship/bridge)
"em" = (
/obj/machinery/light/directional/north,
/obj/effect/turf_decal/industrial/warning{
@@ -1771,6 +1777,12 @@
},
/turf/open/floor/plasteel/tech,
/area/ship/engineering)
+"rh" = (
+/obj/machinery/porta_turret/ship/syndicate/heavy{
+ dir = 10
+ },
+/turf/closed/wall/mineral/plastitanium,
+/area/ship/bridge)
"rj" = (
/obj/structure/table/reinforced,
/obj/effect/turf_decal/industrial/fire{
@@ -1858,7 +1870,7 @@
/turf/open/floor/mineral/plastitanium/red,
/area/ship/hallway/central)
"rS" = (
-/obj/machinery/porta_turret/ship/ballistic{
+/obj/machinery/porta_turret/ship/syndicate/heavy{
dir = 5
},
/turf/closed/wall/mineral/plastitanium,
@@ -1965,7 +1977,7 @@
/turf/open/floor/plasteel/dark,
/area/ship/bridge)
"td" = (
-/obj/machinery/porta_turret/ship/ballistic{
+/obj/machinery/porta_turret/ship/syndicate/heavy{
dir = 9
},
/turf/closed/wall/mineral/plastitanium,
@@ -2325,12 +2337,12 @@
dir = 4
},
/obj/machinery/suit_storage_unit/inherit,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/suit/space/hardsuit/syndi/scarlet,
/obj/machinery/light_switch{
pixel_x = -13;
pixel_y = 22
},
+/obj/item/clothing/suit/space/hardsuit/syndi/hl,
+/obj/item/clothing/mask/gas/syndicate,
/turf/open/floor/mineral/plastitanium,
/area/ship/security/armory)
"vT" = (
@@ -2483,6 +2495,12 @@
},
/turf/open/floor/mineral/plastitanium/red,
/area/ship/hallway/central)
+"yw" = (
+/obj/machinery/porta_turret/ship/syndicate{
+ dir = 8
+ },
+/turf/closed/wall/mineral/plastitanium,
+/area/ship/bridge)
"yJ" = (
/obj/structure/frame/machine,
/obj/structure/grille/broken,
@@ -3127,23 +3145,20 @@
req_access_txt = "20"
},
/obj/item/clothing/under/syndicate/combat,
-/obj/item/clothing/under/syndicate/aclf,
-/obj/item/clothing/suit/armor/vest/security/hos{
- name = "Syndicate jacket"
- },
+/obj/item/clothing/under/syndicate/officer,
/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/clothing/head/aclfcap{
+/obj/item/clothing/head/gorlexcap{
pixel_x = 5;
pixel_y = -4
},
/obj/item/gun/ballistic/derringer/traitor,
/obj/item/clothing/under/syndicate/sniper,
-/obj/item/clothing/suit/aclf,
+/obj/item/clothing/suit/gorlex,
/obj/item/ammo_box/a357,
/obj/item/ammo_box/a357,
/obj/item/radio/headset/syndicate/alt/leader,
@@ -3321,7 +3336,7 @@
/turf/open/floor/plating,
/area/ship/maintenance/port)
"FY" = (
-/obj/machinery/porta_turret/ship/ballistic{
+/obj/machinery/porta_turret/ship/syndicate{
dir = 4
},
/turf/closed/wall/mineral/plastitanium,
@@ -3792,8 +3807,8 @@
icon_state = "0-8"
},
/obj/machinery/suit_storage_unit/inherit,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/suit/space/hardsuit/syndi/scarlet,
+/obj/item/clothing/suit/space/hardsuit/syndi/hl,
+/obj/item/clothing/mask/gas/syndicate,
/turf/open/floor/mineral/plastitanium,
/area/ship/security/armory)
"JH" = (
@@ -4231,7 +4246,7 @@
/turf/open/floor/mineral/plastitanium/red,
/area/ship/hallway/central)
"OP" = (
-/obj/machinery/porta_turret/ship/ballistic{
+/obj/machinery/porta_turret/ship/syndicate{
dir = 10
},
/turf/closed/wall/mineral/plastitanium,
@@ -4363,8 +4378,8 @@
/obj/machinery/camera/autoname{
dir = 8
},
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/suit/space/hardsuit/syndi/scarlet,
+/obj/item/clothing/suit/space/hardsuit/syndi/hl,
+/obj/item/clothing/mask/gas/syndicate,
/turf/open/floor/mineral/plastitanium,
/area/ship/security/armory)
"PK" = (
@@ -4440,7 +4455,7 @@
/turf/open/floor/pod/dark,
/area/ship/medical)
"Rp" = (
-/obj/machinery/porta_turret/ship/ballistic{
+/obj/machinery/porta_turret/ship/syndicate{
dir = 6
},
/turf/closed/wall/mineral/plastitanium,
@@ -5174,7 +5189,7 @@
/turf/open/floor/mineral/plastitanium,
/area/ship/medical)
"XE" = (
-/obj/machinery/porta_turret/ship/ballistic{
+/obj/machinery/porta_turret/ship/syndicate/heavy{
dir = 8
},
/turf/closed/wall/mineral/plastitanium,
@@ -5431,7 +5446,7 @@ gN
gN
gN
gN
-OP
+rh
CM
CM
CM
@@ -5484,7 +5499,7 @@ Aj
Aj
ti
ti
-XE
+yw
lu
lu
Ep
@@ -6135,7 +6150,7 @@ OQ
OQ
OQ
OQ
-Rp
+ea
CM
CM
CM
diff --git a/_maps/shuttles/independent/independent_litieguai.dmm b/_maps/shuttles/syndicate/syndicate_litieguai.dmm
similarity index 63%
rename from _maps/shuttles/independent/independent_litieguai.dmm
rename to _maps/shuttles/syndicate/syndicate_litieguai.dmm
index 9e64a8e4407a..055e98bd59c6 100644
--- a/_maps/shuttles/independent/independent_litieguai.dmm
+++ b/_maps/shuttles/syndicate/syndicate_litieguai.dmm
@@ -1,1420 +1,1783 @@
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"aL" = (
-/obj/machinery/power/smes/engineering{
- charge = 1e+006
+"am" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 1
+ },
+/obj/effect/turf_decal/spline/fancy/opaque/black{
+ dir = 4
+ },
+/obj/effect/turf_decal/spline/fancy/opaque/black{
+ dir = 8
},
/obj/structure/cable{
- icon_state = "0-2"
+ icon_state = "1-8"
+ },
+/obj/structure/chair/office/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/patterned/brushed,
+/area/ship/science)
+"an" = (
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/ship/hallway/central)
+"as" = (
+/obj/machinery/computer/operating{
+ dir = 8
+ },
+/obj/machinery/button/door{
+ id = "traumasurgery";
+ name = "Surgery Shutter Control";
+ pixel_x = -7;
+ pixel_y = 23
},
-/obj/effect/turf_decal/industrial/hatch/yellow,
-/turf/open/floor/plating,
-/area/ship/maintenance/port)
-"aT" = (
-/obj/structure/rack,
-/obj/effect/turf_decal/industrial/outline/red,
-/obj/item/circuitboard/machine/ore_redemption,
-/obj/item/stack/sheet/glass/fifty,
-/obj/item/stack/sheet/metal/fifty,
-/obj/item/circuitboard/machine/rdserver,
-/obj/item/circuitboard/computer/rdconsole,
-/obj/structure/extinguisher_cabinet/directional/south,
/turf/open/floor/plasteel/tech,
-/area/ship/storage)
-"bl" = (
-/obj/docking_port/stationary{
- dir = 2;
- dwidth = 15;
- height = 15;
- width = 30
+/area/ship/medical/surgery)
+"ba" = (
+/obj/structure/mirror{
+ pixel_x = 25
},
-/turf/template_noop,
-/area/template_noop)
+/obj/structure/sink{
+ dir = 8;
+ pixel_y = 0;
+ pixel_x = 12
+ },
+/obj/structure/sign/poster/official/cleanliness{
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel/freezer,
+/area/ship/crew/toilet)
"bu" = (
-/obj/machinery/door/airlock/medical{
- dir = 4;
- name = "Storage Room"
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "Starboard Engines"
+ },
+/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/firedoor/border_only{
+ dir = 1
+ },
+/obj/machinery/door/firedoor/border_only,
+/turf/open/floor/plasteel/tech/grid,
+/area/ship/maintenance/starboard)
+"bv" = (
+/obj/effect/turf_decal/trimline/opaque/red/filled/warning{
+ dir = 8
},
-/obj/effect/turf_decal/trimline/opaque/red/arrow_ccw,
+/turf/open/floor/plasteel/white,
+/area/ship/cargo)
+"bD" = (
/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/door/firedoor/border_only{
dir = 8
},
/obj/machinery/door/firedoor/border_only{
dir = 4
},
-/turf/open/floor/plasteel,
-/area/ship/storage)
-"bC" = (
-/obj/item/radio/intercom/directional/south,
-/obj/effect/turf_decal/industrial/outline/red,
-/obj/machinery/autolathe,
-/turf/open/floor/plasteel/tech,
-/area/ship/storage)
-"bX" = (
-/obj/machinery/door/poddoor/preopen{
- id = "traumabridge";
- name = "Window Blast Door"
+/obj/structure/cable{
+ icon_state = "4-8"
},
-/obj/effect/spawner/structure/window/shuttle,
-/turf/open/floor/plating,
+/obj/machinery/door/airlock/command{
+ dir = 8;
+ name = "Bridge"
+ },
+/turf/open/floor/plasteel/tech/grid,
/area/ship/bridge)
-"ck" = (
-/obj/machinery/airalarm/directional/east,
-/obj/structure/sign/poster/retro/smile{
- pixel_y = -32
+"bQ" = (
+/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/frame/computer{
+/obj/effect/turf_decal/trimline/opaque/red/filled/line{
dir = 1
},
-/obj/effect/turf_decal/industrial/hatch/red,
+/obj/machinery/firealarm/directional/north,
/turf/open/floor/plasteel/white,
-/area/ship/medical)
-"cn" = (
-/obj/effect/turf_decal/trimline/opaque/red/filled/warning,
-/turf/open/floor/plasteel,
-/area/ship/cargo)
-"cs" = (
-/obj/machinery/defibrillator_mount/loaded{
- pixel_y = -32
+/area/ship/hallway/central)
+"bT" = (
+/obj/machinery/smartfridge/bloodbank/preloaded{
+ density = 0;
+ pixel_y = 0;
+ pixel_x = 32
},
-/obj/effect/turf_decal/industrial/loading{
- dir = 4
+/obj/effect/turf_decal/industrial/outline/red,
+/obj/machinery/stasis{
+ dir = 8
},
/turf/open/floor/plasteel/tech,
/area/ship/medical)
-"cI" = (
-/obj/effect/turf_decal/trimline/opaque/red/filled/line{
- dir = 4
+"cd" = (
+/obj/structure/cable{
+ icon_state = "2-4"
},
-/turf/open/floor/plasteel/white,
-/area/ship/hallway/fore)
-"cX" = (
-/obj/effect/spawner/structure/window/shuttle,
-/obj/machinery/atmospherics/pipe/layer_manifold,
-/obj/machinery/door/poddoor/preopen{
- id = "traumawindows";
- name = "Window Blast Door"
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/turf/open/floor/plating,
-/area/ship/maintenance/port)
-"dH" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/cable{
+ icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/obj/effect/turf_decal/corner/opaque/white/mono,
-/turf/open/floor/plasteel/white,
-/area/ship/medical)
-"dI" = (
-/obj/machinery/computer/cargo/express,
-/turf/open/floor/plasteel/dark,
-/area/ship/bridge)
-"dR" = (
-/obj/machinery/power/smes/shuttle/precharged{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 9
},
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8
+/obj/effect/turf_decal/industrial/warning{
+ dir = 1
},
+/turf/open/floor/plating,
+/area/ship/maintenance/starboard)
+"cK" = (
/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/machinery/door/poddoor{
- id = "traumaenginel"
+ icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/light/small/directional/east,
+/obj/structure/extinguisher_cabinet/directional/west,
/turf/open/floor/plating,
/area/ship/maintenance/port)
-"ed" = (
-/obj/machinery/light/small/directional/north,
-/obj/effect/turf_decal/industrial/outline/red,
-/obj/machinery/suit_storage_unit/inherit,
-/obj/item/clothing/suit/space/hardsuit/medical,
-/obj/item/clothing/mask/gas/sechailer,
-/obj/item/tank/internals/emergency_oxygen/engi,
-/turf/open/floor/plasteel/tech,
-/area/ship/storage)
-"el" = (
-/obj/effect/turf_decal/industrial/warning{
- dir = 9
+"cL" = (
+/obj/structure/table/reinforced,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
},
-/obj/machinery/light/small/directional/east,
-/obj/machinery/cryopod{
+/obj/item/paper_bin,
+/obj/machinery/door/firedoor/border_only{
dir = 8
},
-/obj/machinery/computer/cryopod/directional/south,
-/turf/open/floor/plasteel/dark,
-/area/ship/crew)
-"eJ" = (
-/obj/machinery/holopad/emergency/command,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
+/obj/effect/turf_decal/industrial/hatch/red,
+/obj/item/folder/white,
+/obj/item/pen,
+/turf/open/floor/plating,
+/area/ship/cargo)
+"dl" = (
+/obj/machinery/door/firedoor/border_only{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
+/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/medical{
+ name = "Research"
},
/obj/structure/cable{
- icon_state = "2-4"
+ icon_state = "1-2"
},
-/turf/open/floor/carpet/nanoweave/red,
-/area/ship/bridge)
-"eM" = (
-/obj/machinery/door/window/brigdoor/southright{
- req_access_txt = "5"
+/turf/open/floor/plasteel/tech/grid,
+/area/ship/science)
+"eo" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/obj/item/clothing/shoes/combat,
-/obj/item/clothing/shoes/combat,
-/obj/item/clothing/shoes/combat,
-/obj/item/clothing/under/rank/security/brig_phys,
-/obj/item/clothing/under/rank/security/brig_phys,
-/obj/item/clothing/under/rank/security/brig_phys,
-/obj/item/clothing/suit/toggle/labcoat/paramedic,
-/obj/item/clothing/suit/toggle/labcoat/paramedic,
-/obj/item/clothing/suit/toggle/labcoat/paramedic,
-/obj/item/clothing/head/soft/paramedic,
-/obj/item/clothing/head/soft/paramedic,
-/obj/item/clothing/head/soft/paramedic,
-/obj/item/storage/backpack/ert/medical,
-/obj/item/storage/backpack/ert/medical,
-/obj/item/storage/backpack/ert/medical,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
+/obj/machinery/door/firedoor/border_only{
+ dir = 1
},
-/obj/structure/closet/secure_closet/wall{
- dir = 8;
- icon_state = "sec_wall";
- name = "clothing locker";
- pixel_x = 28;
- req_access_txt = "5"
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/medical{
+ name = "Bathroom"
},
-/turf/open/floor/plasteel/dark,
-/area/ship/crew)
+/turf/open/floor/plasteel/tech/grid,
+/area/ship/crew/toilet)
"eS" = (
-/turf/open/floor/plasteel,
+/turf/open/floor/plasteel/white,
/area/ship/cargo)
-"fa" = (
-/obj/structure/table,
-/obj/effect/spawner/lootdrop/ration,
-/obj/effect/spawner/lootdrop/ration,
-/obj/machinery/newscaster/directional/south,
-/turf/open/floor/plasteel/grimy,
-/area/ship/crew)
-"fe" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
+"eT" = (
+/obj/effect/turf_decal/industrial/outline/red,
+/obj/machinery/computer/rdconsole/core{
+ dir = 4
},
/obj/structure/cable{
- icon_state = "1-4"
+ icon_state = "0-4"
},
-/obj/structure/cable{
- icon_state = "1-2"
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_x = 11;
+ pixel_y = -16
},
-/turf/open/floor/plating,
-/area/ship/maintenance/port)
-"fp" = (
-/turf/closed/wall/mineral/titanium,
-/area/ship/maintenance/port)
-"fT" = (
-/obj/machinery/stasis,
-/obj/effect/turf_decal/industrial/outline/red,
/obj/machinery/light/directional/west,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/medical)
-"go" = (
-/obj/effect/turf_decal/corner/opaque/red/full,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
+/turf/open/floor/plasteel/tech,
+/area/ship/science)
+"fe" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/effect/turf_decal/spline/fancy/opaque/black{
dir = 4
},
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "2-8"
+/obj/effect/turf_decal/spline/fancy/opaque/black{
+ dir = 8
},
-/turf/open/floor/plasteel,
-/area/ship/cargo)
-"gL" = (
-/turf/closed/wall/mineral/titanium/nodiagonal,
-/area/ship/cargo)
-"gO" = (
/obj/structure/cable{
- icon_state = "0-4"
+ icon_state = "1-2"
},
-/obj/machinery/power/shieldwallgen/atmos/roundstart{
- dir = 4;
- id = "traumashield"
+/turf/open/floor/plasteel/patterned/brushed,
+/area/ship/science)
+"fo" = (
+/obj/machinery/door/firedoor/border_only{
+ dir = 1
},
/obj/machinery/door/firedoor/border_only,
-/obj/effect/turf_decal/industrial/warning,
-/obj/effect/turf_decal/industrial/warning{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/door/airlock/medical{
+ name = "Surgery"
},
-/obj/machinery/door/poddoor/shutters{
- id = "traumalobby";
- name = "Lobby"
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/turf/open/floor/engine,
-/area/ship/cargo)
-"hq" = (
-/turf/open/floor/plasteel/stairs/right{
+/turf/open/floor/plasteel/tech/grid,
+/area/ship/medical/surgery)
+"fp" = (
+/turf/closed/wall/mineral/titanium,
+/area/ship/maintenance/port)
+"fW" = (
+/obj/effect/turf_decal/spline/fancy/opaque/black{
+ dir = 4
+ },
+/obj/machinery/holopad/emergency/medical,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/turf_decal/spline/fancy/opaque/black{
dir = 8
},
-/area/ship/storage)
-"hv" = (
-/obj/effect/turf_decal/arrows/red{
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/patterned/brushed,
+/area/ship/medical)
+"fX" = (
+/obj/machinery/vending/snack/random,
+/obj/effect/turf_decal/trimline/opaque/red/filled/line{
dir = 8
},
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 4
+/obj/structure/sign/poster/official/cleanliness{
+ pixel_y = 32
},
-/turf/open/floor/plasteel/patterned/grid,
+/turf/open/floor/plasteel/white,
+/area/ship/cargo)
+"gf" = (
+/obj/effect/turf_decal/industrial/outline/red,
+/obj/structure/closet/crate/freezer/surplus_limbs,
+/obj/machinery/airalarm/directional/south,
+/obj/machinery/firealarm/directional/east,
+/turf/open/floor/plasteel/tech,
/area/ship/storage)
+"gL" = (
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/ship/cargo)
+"gW" = (
+/obj/effect/turf_decal/trimline/opaque/red/filled/line,
+/turf/open/floor/plasteel/white,
+/area/ship/hallway/central)
"hF" = (
/obj/structure/table/reinforced,
/obj/machinery/fax,
/turf/open/floor/plasteel/dark,
/area/ship/bridge)
-"hH" = (
-/obj/machinery/computer/helm,
-/turf/open/floor/plasteel/dark,
-/area/ship/bridge)
"hQ" = (
/obj/structure/table/optable,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/medical)
-"hT" = (
-/obj/machinery/power/apc/auto_name/directional/south,
-/obj/effect/turf_decal/siding/white/end,
-/obj/structure/cable,
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 1
+/turf/open/floor/plasteel/tech,
+/area/ship/medical/surgery)
+"hS" = (
+/obj/effect/turf_decal/industrial/hatch/red,
+/obj/machinery/firealarm/directional/west,
+/obj/item/reagent_containers/glass/bottle/formaldehyde,
+/obj/item/storage/box/syringes,
+/obj/item/storage/box/bodybags,
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable{
+ icon_state = "0-4"
},
/obj/machinery/light_switch{
- dir = 1;
- pixel_x = -13;
- pixel_y = -16
+ pixel_x = 11;
+ pixel_y = 22
},
-/turf/open/floor/vault,
-/area/ship/storage)
-"ie" = (
-/obj/machinery/door/airlock/medical/glass{
- id_tag = "lobbydoors";
- name = "Sickbay"
+/obj/structure/closet/secure_closet{
+ name = "mortuary locker"
},
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/door/firedoor/border_only{
- dir = 1
+/turf/open/floor/plasteel/tech,
+/area/ship/medical/surgery)
+"hW" = (
+/obj/structure/dresser{
+ dir = 8
},
-/obj/effect/turf_decal/corner/opaque/white/mono,
-/turf/open/floor/plasteel/white,
-/area/ship/cargo)
-"iA" = (
-/turf/closed/wall/mineral/titanium,
+/turf/open/floor/carpet/cyan,
/area/ship/crew)
-"iJ" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+"ih" = (
+/obj/machinery/power/smes/shuttle/precharged{
dir = 4
},
-/obj/machinery/airalarm/directional/south,
-/obj/structure/sign/poster/official/cleanliness{
- pixel_x = -32
+/obj/structure/cable{
+ icon_state = "0-8"
},
-/turf/open/floor/plasteel/freezer,
-/area/ship/crew/toilet)
-"iP" = (
-/obj/machinery/power/smes/engineering{
- charge = 1e+006
+/obj/machinery/door/poddoor{
+ dir = 8;
+ id = "traumaenginel"
},
-/obj/structure/cable{
- icon_state = "0-2"
+/obj/structure/window/reinforced{
+ dir = 8
},
/turf/open/floor/plating,
-/area/ship/maintenance/starboard)
-"iW" = (
-/turf/open/floor/carpet/cyan,
-/area/ship/crew)
-"jx" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
-/obj/machinery/door/firedoor/border_only{
+/area/ship/maintenance/port)
+"in" = (
+/obj/structure/bed{
dir = 8
},
-/obj/effect/turf_decal/corner/opaque/white/mono,
-/obj/machinery/door/window/westleft{
- name = "Pharmacy"
+/obj/structure/curtain/bounty,
+/obj/item/bedsheet/blue{
+ dir = 8
},
-/turf/open/floor/plasteel/white,
-/area/ship/medical)
-"kC" = (
-/obj/machinery/door/window/brigdoor/southleft{
- req_access_txt = "5"
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/carpet/cyan,
+/area/ship/crew)
+"iz" = (
+/obj/effect/landmark/start/paramedic,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
},
-/obj/item/storage/belt/medical/surgery,
-/obj/item/storage/belt/medical/paramedic,
-/obj/item/clothing/gloves/color/latex/nitrile,
-/obj/item/clothing/gloves/color/latex/nitrile,
-/obj/item/clothing/gloves/color/latex/nitrile,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
- },
-/obj/structure/closet/secure_closet/wall{
- dir = 4;
- icon_state = "sec_wall";
- name = "equipment locker";
- pixel_x = -28;
- req_access_txt = "5"
+ dir = 4
},
-/obj/item/healthanalyzer/advanced,
-/obj/item/healthanalyzer/advanced,
-/obj/item/healthanalyzer/advanced,
-/obj/item/clothing/glasses/hud/health/sunglasses,
-/obj/item/clothing/glasses/hud/health/sunglasses,
-/obj/item/clothing/glasses/hud/health/sunglasses,
-/obj/item/storage/belt/medical/paramedic,
-/turf/open/floor/plasteel/dark,
+/obj/machinery/light/directional/north,
+/turf/open/floor/plasteel/patterned/brushed,
/area/ship/crew)
-"kH" = (
-/obj/item/radio/intercom/directional/east,
-/obj/machinery/power/terminal,
-/obj/structure/cable/yellow,
-/obj/effect/turf_decal/industrial/hatch/yellow,
-/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/plating,
-/area/ship/maintenance/starboard)
-"kO" = (
-/obj/machinery/power/shieldwallgen/atmos/roundstart{
- id = "traumashield2"
+"iA" = (
+/turf/closed/wall/mineral/titanium,
+/area/ship/crew)
+"iC" = (
+/obj/structure/table,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/machinery/firealarm/directional/west,
+/turf/open/floor/wood/ebony,
+/area/ship/crew)
+"iQ" = (
+/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2,
+/obj/structure/cable{
+ icon_state = "2-8"
},
-/obj/effect/turf_decal/trimline/opaque/red/filled/warning{
- dir = 4
+/obj/structure/cable{
+ icon_state = "1-8"
},
/obj/effect/turf_decal/trimline/opaque/red/filled/warning{
- dir = 8
+ dir = 1
},
/obj/structure/cable{
- icon_state = "0-4"
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/white,
+/area/ship/hallway/central)
+"iW" = (
+/turf/open/floor/carpet/cyan,
+/area/ship/crew)
+"jh" = (
+/obj/structure/table,
+/obj/effect/spawner/lootdrop/ration,
+/obj/effect/spawner/lootdrop/ration,
+/obj/item/radio/intercom/directional/west,
+/turf/open/floor/wood/ebony,
+/area/ship/crew)
+"jK" = (
+/obj/effect/turf_decal/trimline/opaque/red/filled/warning,
+/obj/effect/turf_decal/trimline/opaque/red/filled/warning{
+ dir = 1
},
/obj/machinery/door/poddoor{
- dir = 4;
+ dir = 1;
id = "traumaramp"
},
/obj/machinery/door/firedoor/border_only{
- dir = 8
+ dir = 1
},
/turf/open/floor/engine,
-/area/ship/storage)
-"kP" = (
-/obj/structure/table/glass,
-/obj/structure/window/reinforced{
- dir = 4
+/area/ship/storage/eva)
+"jU" = (
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/obj/structure/window/reinforced{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/effect/turf_decal/siding/white{
+ dir = 8
},
-/obj/item/clothing/mask/surgical{
- pixel_y = 6
+/obj/effect/turf_decal/siding/white{
+ dir = 4
},
-/obj/item/storage/backpack/duffelbag/med/surgery{
- pixel_y = 10
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/plasteel/tech/grid,
+/area/ship/storage/eva)
+"ke" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile/shuttle,
+/obj/structure/curtain/cloth,
+/turf/open/floor/plating,
+/area/ship/science)
+"kh" = (
+/obj/machinery/power/terminal{
+ dir = 8
},
-/obj/item/clothing/suit/apron/surgical{
- pixel_y = 6
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
},
-/obj/item/reagent_containers/spray/cleaner{
- pixel_x = 5;
- pixel_y = -1
+/obj/effect/turf_decal/industrial/hatch/yellow,
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/plating,
+/area/ship/maintenance/starboard)
+"kw" = (
+/obj/structure/chair{
+ dir = 8
},
-/obj/item/reagent_containers/medigel/sterilizine,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/medical)
-"kR" = (
-/obj/machinery/computer/crew,
-/turf/open/floor/plasteel/dark,
-/area/ship/bridge)
-"lb" = (
-/obj/machinery/power/apc/auto_name/directional/east,
-/obj/structure/cable{
- icon_state = "0-8"
+/obj/effect/landmark/start/assistant,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/turf_decal/siding/wood{
+ dir = 4;
+ color = "#332521"
},
-/obj/effect/turf_decal/trimline/opaque/red/filled/line{
+/turf/open/floor/wood/ebony,
+/area/ship/crew)
+"la" = (
+/obj/structure/railing{
+ dir = 10
+ },
+/obj/effect/turf_decal/spline/fancy/opaque/black{
dir = 4
},
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/door/firedoor/border_only{
+/obj/effect/turf_decal/spline/fancy/opaque/black{
+ dir = 8
+ },
+/turf/open/floor/plasteel/patterned/grid,
+/area/ship/storage/eva)
+"li" = (
+/obj/effect/turf_decal/trimline/opaque/red/filled/warning{
dir = 1
},
-/obj/machinery/light_switch{
- pixel_x = 19;
- pixel_y = 13;
- dir = 8
+/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
},
/turf/open/floor/plasteel/white,
-/area/ship/medical)
-"lj" = (
-/obj/structure/sink{
- dir = 4;
- pixel_x = -12
+/area/ship/hallway/central)
+"lJ" = (
+/obj/effect/turf_decal/trimline/opaque/red/filled/warning{
+ dir = 4
},
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 1
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_x = 11;
+ pixel_y = -16
},
-/turf/open/floor/plasteel/tech,
-/area/ship/medical)
-"lF" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+/turf/open/floor/plasteel/white,
+/area/ship/cargo)
+"lS" = (
+/obj/structure/chair,
+/obj/machinery/light/directional/north,
+/turf/open/floor/plasteel/white,
+/area/ship/cargo)
+"lX" = (
+/obj/structure/chair{
dir = 1
},
-/obj/machinery/door/firedoor/border_only{
+/obj/machinery/light/directional/south,
+/turf/open/floor/plasteel/white,
+/area/ship/cargo)
+"mo" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
dir = 8
},
-/obj/effect/turf_decal/corner/opaque/white/mono,
-/obj/machinery/door/window/westright{
- name = "Storage"
+/obj/machinery/photocopier,
+/obj/structure/extinguisher_cabinet/directional/east,
+/turf/open/floor/carpet/cyan,
+/area/ship/hallway/central)
+"mu" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 8
},
-/turf/open/floor/plasteel/white,
-/area/ship/medical)
-"lH" = (
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
/obj/structure/cable{
icon_state = "1-8"
},
-/obj/structure/cable{
- icon_state = "1-4"
+/turf/open/floor/plasteel/mono/white,
+/area/ship/hallway/central)
+"mx" = (
+/obj/effect/turf_decal/industrial/outline/red,
+/obj/machinery/autolathe,
+/obj/machinery/firealarm/directional/south,
+/turf/open/floor/plasteel/tech,
+/area/ship/science)
+"mP" = (
+/obj/structure/sign/departments/medbay/alt,
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/ship/maintenance/port)
+"na" = (
+/obj/machinery/vending/cola/random,
+/obj/effect/turf_decal/trimline/opaque/red/filled/line{
+ dir = 8
},
-/turf/open/floor/plasteel,
+/turf/open/floor/plasteel/white,
/area/ship/cargo)
-"lY" = (
-/obj/machinery/door/airlock/medical{
- dir = 4;
- name = "Crew Quarters"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+"nb" = (
+/obj/effect/turf_decal/spline/fancy/opaque/black{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
+/obj/effect/turf_decal/spline/fancy/opaque/black{
+ dir = 8
},
/obj/structure/cable{
- icon_state = "4-8"
+ icon_state = "2-8"
},
-/obj/machinery/door/firedoor/border_only{
+/turf/open/floor/plasteel/patterned/brushed,
+/area/ship/medical/surgery)
+"nu" = (
+/turf/closed/wall/mineral/titanium,
+/area/ship/bridge)
+"nF" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
dir = 8
},
-/obj/machinery/door/firedoor/border_only{
- dir = 4
- },
-/turf/open/floor/plasteel/grimy,
+/turf/open/floor/carpet/cyan,
/area/ship/crew)
-"mw" = (
-/obj/machinery/door/airlock/maintenance_hatch{
- dir = 4;
- name = "Port Engines"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
+"nI" = (
+/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/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/medical{
+ name = "Treatment Center"
},
/obj/structure/cable{
- icon_state = "4-8"
+ icon_state = "1-2"
},
+/turf/open/floor/plasteel/tech/grid,
+/area/ship/medical)
+"nW" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/trimline/opaque/red/filled/line,
/obj/machinery/door/firedoor/border_only{
dir = 8
},
/obj/machinery/door/firedoor/border_only{
dir = 4
},
-/turf/open/floor/plating,
-/area/ship/maintenance/port)
-"mG" = (
-/obj/machinery/firealarm/directional/north,
-/obj/structure/sign/warning/gasmask{
- pixel_x = -32
- },
-/obj/item/stack/marker_beacon/thirty,
-/obj/item/stack/marker_beacon/thirty,
-/obj/item/stack/marker_beacon/thirty,
-/obj/item/stack/marker_beacon/thirty,
-/obj/structure/rack,
-/obj/item/pickaxe/emergency{
- desc = "For extracting yourself from rough landings, and getting to the even rougher ones";
- name = "Medical Retrieval Tool"
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_x = 11;
+ pixel_y = -16
},
-/obj/item/pickaxe/emergency{
- desc = "For extracting yourself from rough landings, and getting to the even rougher ones";
- name = "Medical Retrieval Tool"
+/turf/open/floor/plasteel/white,
+/area/ship/hallway/central)
+"oc" = (
+/obj/effect/turf_decal/corner/opaque/red/full,
+/obj/structure/cable{
+ icon_state = "4-8"
},
-/obj/item/pickaxe/emergency{
- desc = "For extracting yourself from rough landings, and getting to the even rougher ones";
- name = "Medical Retrieval Tool"
+/turf/open/floor/plasteel/white,
+/area/ship/cargo)
+"ot" = (
+/obj/machinery/door/poddoor/preopen{
+ dir = 8;
+ id = "traumabridge";
+ name = "Window Blast Door"
},
-/obj/effect/turf_decal/industrial/outline/red,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/storage)
-"mO" = (
-/obj/machinery/computer/med_data,
-/turf/open/floor/plasteel/dark,
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile/shuttle,
+/turf/open/floor/plating,
/area/ship/bridge)
-"mP" = (
-/obj/structure/sign/departments/medbay/alt,
-/turf/closed/wall/mineral/titanium/nodiagonal,
-/area/ship/maintenance/port)
-"mQ" = (
-/obj/structure/window/reinforced{
- dir = 8
+"oA" = (
+/obj/effect/turf_decal/trimline/opaque/red/filled/warning{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
},
-/obj/machinery/door/firedoor/border_only{
- dir = 8
- },
-/obj/effect/turf_decal/industrial/outline/red,
-/obj/structure/window/reinforced{
- dir = 1
+/obj/structure/cable{
+ icon_state = "2-8"
},
-/obj/structure/closet/secure_closet{
- icon_state = "med";
- name = "medicine locker"
+/obj/structure/cable{
+ icon_state = "2-4"
},
-/obj/item/storage/firstaid/brute,
-/obj/item/storage/firstaid/fire,
-/obj/item/storage/firstaid/o2,
-/obj/item/storage/firstaid/toxin,
-/obj/item/storage/box/medipens,
-/obj/item/storage/box/syringes,
-/obj/item/storage/firstaid/regular,
-/obj/item/storage/firstaid/regular,
/turf/open/floor/plasteel/white,
-/area/ship/medical)
-"nl" = (
-/obj/machinery/light/small/directional/west,
+/area/ship/cargo)
+"pf" = (
+/obj/docking_port/stationary{
+ dwidth = 8;
+ height = 15;
+ width = 30
+ },
+/turf/template_noop,
+/area/template_noop)
+"pK" = (
+/turf/open/floor/carpet/cyan,
+/area/ship/hallway/central)
+"pQ" = (
+/obj/effect/turf_decal/corner/opaque/red/full,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/structure/cable{
icon_state = "1-2"
},
-/obj/effect/turf_decal/number/five{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ship/maintenance/starboard)
-"nm" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
/obj/structure/cable{
- icon_state = "2-8"
+ icon_state = "1-8"
},
-/obj/effect/turf_decal/corner/opaque/white/mono,
/turf/open/floor/plasteel/white,
-/area/ship/medical)
-"np" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
-/turf/open/floor/carpet/cyan,
-/area/ship/crew)
-"nu" = (
-/turf/closed/wall/mineral/titanium,
-/area/ship/bridge)
-"nw" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 1
+/area/ship/cargo)
+"qr" = (
+/obj/machinery/power/shieldwallgen/atmos/roundstart{
+ dir = 4;
+ id = "traumashield2"
},
/obj/structure/cable{
- icon_state = "4-8"
+ icon_state = "0-2"
},
-/turf/open/floor/plasteel,
-/area/ship/cargo)
-"oH" = (
+/obj/effect/turf_decal/trimline/opaque/red/filled/warning,
/obj/effect/turf_decal/trimline/opaque/red/filled/warning{
dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/cable{
- icon_state = "2-4"
+/obj/machinery/door/firedoor/border_only{
+ dir = 1
},
-/obj/structure/cable{
- icon_state = "1-4"
+/obj/machinery/door/poddoor{
+ id = "traumaramp"
},
-/turf/open/floor/plasteel,
-/area/ship/cargo)
-"oQ" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/window/southleft,
+/turf/open/floor/engine,
+/area/ship/storage/eva)
+"qv" = (
+/obj/structure/table,
/obj/machinery/button/door{
dir = 1;
- id = "lobbydoors";
- name = "Lobby Door Control";
- normaldoorcontrol = 1;
- pixel_x = 11;
- pixel_y = -4
+ id = "traumastore";
+ name = "Storage Shutter Control";
+ pixel_x = -7;
+ pixel_y = -22
},
-/obj/machinery/door/firedoor/border_only,
-/obj/effect/turf_decal/industrial/hatch/red,
-/obj/machinery/button/shieldwallgen{
- dir = 1;
- id = "traumashield";
- name = "Lobby Holoshield";
- pixel_x = -6;
- pixel_y = 8
- },
-/obj/machinery/button/door{
- dir = 1;
- id = "lobbydoors";
- name = "Lobby Door Bolts Control";
- normaldoorcontrol = 1;
- pixel_x = 11;
- pixel_y = 7;
- specialfunctions = 4
+/obj/item/storage/box/bodybags,
+/obj/item/storage/box/bodybags,
+/obj/item/storage/box/masks,
+/obj/item/storage/box/masks,
+/obj/item/storage/box/pillbottles,
+/obj/structure/closet/wall/white/chem{
+ dir = 4;
+ name = "Medical Supplies Locker";
+ pixel_x = -28
},
-/obj/machinery/button/door{
- dir = 1;
- id = "traumalobby";
- name = "Lobby Shutter Control";
- pixel_x = -6;
- pixel_y = -4
+/turf/open/floor/plasteel/tech,
+/area/ship/storage)
+"qA" = (
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/ship/science)
+"qV" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "traumawindows";
+ name = "Window Blast Door"
},
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile/shuttle,
/turf/open/floor/plating,
-/area/ship/cargo)
-"oS" = (
+/area/ship/medical)
+"qW" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 1
+ dir = 8
+ },
+/mob/living/simple_animal/hostile/retaliate/poison/snake{
+ desc = "The CMO's pet snake. The question of what species it actually belongs to is a mystery for the ages.";
+ dir = 8;
+ name = "\proper Deuce"
+ },
+/obj/structure/bed/dogbed{
+ anchored = 1;
+ desc = "A comfy-looking... snake bed? There's bits of shed scales stuck in the bedding...";
+ name = "snake bed"
+ },
+/obj/item/clothing/glasses/hud/health,
+/turf/open/floor/carpet/cyan,
+/area/ship/bridge)
+"rk" = (
+/obj/machinery/rnd/production/techfab/department/medical,
+/obj/effect/turf_decal/industrial/hatch/red,
+/obj/effect/turf_decal/industrial/outline/red,
+/obj/machinery/airalarm/directional/west,
+/turf/open/floor/plasteel/tech,
+/area/ship/science)
+"rn" = (
+/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
},
-/obj/effect/turf_decal/corner/opaque/white/mono,
/turf/open/floor/plasteel/white,
-/area/ship/medical)
-"oX" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+/area/ship/cargo)
+"rA" = (
+/obj/structure/cable,
+/obj/machinery/power/shieldwallgen/atmos/roundstart{
+ dir = 1;
+ id = "traumashield"
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/turf_decal/industrial/warning{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+/obj/machinery/door/poddoor/shutters{
+ dir = 8;
+ id = "traumalobby";
+ name = "Lobby"
+ },
+/turf/open/floor/engine,
+/area/ship/cargo)
+"rJ" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
dir = 4
},
-/obj/machinery/power/apc/auto_name/directional/south,
+/obj/machinery/power/terminal{
+ dir = 8
+ },
/obj/structure/cable{
icon_state = "0-4"
},
-/obj/machinery/light_switch{
- dir = 1;
- pixel_x = -12;
- pixel_y = -13
- },
-/turf/open/floor/plasteel/freezer,
-/area/ship/crew/toilet)
-"pK" = (
-/obj/structure/table/reinforced,
-/obj/item/folder/blue,
-/obj/item/pen/fourcolor,
-/obj/item/stamp/captain{
- pixel_x = -7;
- pixel_y = -1
- },
-/obj/machinery/button/door{
- id = "traumawindows";
- name = "Window Shutters";
- pixel_x = 5;
- pixel_y = 7
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
},
/obj/machinery/button/door{
- id = "traumabridge";
- name = "Bridge Window Shutters";
+ dir = 2;
+ id = "traumaenginel";
+ name = "Engine Shutter Control";
pixel_x = -5;
- pixel_y = 7
+ pixel_y = 22
},
-/turf/open/floor/carpet/nanoweave/red,
-/area/ship/bridge)
-"qc" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
-/turf/open/floor/plasteel,
-/area/ship/crew)
-"qd" = (
-/obj/structure/sink{
- dir = 8;
- pixel_x = 12
+/turf/open/floor/plating,
+/area/ship/maintenance/port)
+"rS" = (
+/obj/structure/toilet{
+ dir = 8
},
-/obj/structure/mirror{
- pixel_x = 25
+/obj/structure/window/reinforced/tinted/frosted,
+/obj/machinery/door/window/survival_pod{
+ dir = 8
},
-/obj/machinery/firealarm/directional/north,
+/obj/structure/curtain,
/turf/open/floor/plasteel/freezer,
/area/ship/crew/toilet)
-"qQ" = (
-/obj/effect/turf_decal/trimline/opaque/red/filled/warning{
+"rT" = (
+/turf/closed/wall/mineral/titanium,
+/area/ship/medical/surgery)
+"sd" = (
+/obj/machinery/stasis{
dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/effect/turf_decal/industrial/outline/red,
+/obj/machinery/light/directional/north,
+/obj/machinery/firealarm/directional/east,
+/turf/open/floor/plasteel/tech,
+/area/ship/medical)
+"sx" = (
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/plasteel/stairs/right{
+ dir = 1
+ },
+/area/ship/storage/eva)
+"sC" = (
/obj/structure/cable{
- icon_state = "1-2"
+ icon_state = "1-4"
},
-/turf/open/floor/plasteel/white,
-/area/ship/medical)
-"rh" = (
-/obj/effect/turf_decal/trimline/opaque/red/filled/warning,
/obj/structure/cable{
- icon_state = "1-2"
+ icon_state = "2-4"
},
-/turf/open/floor/plasteel,
-/area/ship/cargo)
-"ru" = (
-/obj/effect/turf_decal/trimline/opaque/red/filled/warning{
+/obj/machinery/door/firedoor/border_only{
dir = 8
},
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+/obj/effect/turf_decal/industrial/warning{
dir = 8
},
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+/obj/effect/turf_decal/industrial/warning{
+ dir = 4
+ },
+/obj/docking_port/mobile{
+ dir = 4;
+ launch_status = 0;
+ preferred_direction = 4;
+ port_direction = 2
+ },
+/obj/machinery/door/poddoor/shutters{
+ dir = 8;
+ id = "traumalobby";
+ name = "Lobby"
+ },
+/turf/open/floor/engine,
+/area/ship/cargo)
+"sI" = (
+/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,
+/obj/structure/extinguisher_cabinet/directional/west,
+/turf/open/floor/plating,
+/area/ship/maintenance/starboard)
+"sO" = (
+/obj/effect/turf_decal/industrial/outline/red,
+/obj/structure/bodycontainer/morgue{
+ dir = 1
+ },
+/obj/machinery/light/directional/south,
+/obj/machinery/airalarm/directional/west,
+/turf/open/floor/plasteel/tech,
+/area/ship/medical/surgery)
+"tb" = (
+/obj/effect/turf_decal/industrial/hatch/yellow,
+/obj/structure/reagent_dispensers/watertank,
+/obj/item/mop,
+/obj/item/reagent_containers/glass/bucket,
+/obj/item/storage/bag/trash,
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/plating,
+/area/ship/maintenance/starboard)
+"tn" = (
+/turf/closed/wall/mineral/titanium,
+/area/ship/storage/eva)
+"tF" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/turf_decal/spline/fancy/opaque/black{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
+/obj/effect/turf_decal/spline/fancy/opaque/black{
dir = 8
},
/obj/structure/cable{
icon_state = "1-2"
},
-/turf/open/floor/plasteel/white,
+/turf/open/floor/plasteel/patterned/brushed,
/area/ship/medical)
-"rM" = (
-/obj/machinery/light/small/directional/south{
- pixel_x = 17
+"tI" = (
+/obj/machinery/atmospherics/pipe/layer_manifold{
+ dir = 4
+ },
+/obj/machinery/door/poddoor/preopen{
+ dir = 8;
+ id = "traumawindows";
+ name = "Window Blast Door"
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile/shuttle,
+/turf/open/floor/plating,
+/area/ship/maintenance/port)
+"tJ" = (
+/obj/effect/turf_decal/industrial/outline/red,
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = 19;
+ pixel_y = -12
},
-/obj/machinery/power/apc/auto_name/directional/south,
/obj/structure/cable{
icon_state = "0-8"
},
-/obj/machinery/light_switch{
- dir = 1;
- pixel_x = -13;
- pixel_y = -16
+/obj/structure/closet/crate/freezer{
+ name = "organ freezer"
+ },
+/obj/item/organ/heart/cybernetic,
+/obj/item/organ/heart/cybernetic,
+/obj/item/organ/ears/cybernetic,
+/obj/item/organ/ears/cybernetic,
+/obj/item/organ/liver/cybernetic,
+/obj/item/organ/liver/cybernetic,
+/obj/item/organ/lungs/cybernetic,
+/obj/item/organ/lungs/cybernetic,
+/obj/item/organ/stomach/cybernetic,
+/obj/item/organ/stomach/cybernetic,
+/obj/item/organ/eyes/robotic,
+/obj/item/organ/eyes/robotic,
+/turf/open/floor/plasteel/tech,
+/area/ship/storage)
+"tO" = (
+/turf/open/floor/plasteel/mono/white,
+/area/ship/hallway/central)
+"tT" = (
+/obj/structure/closet/secure_closet/personal/patient,
+/obj/item/clothing/under/rank/medical/gown,
+/obj/item/clothing/under/rank/medical/gown,
+/obj/item/clothing/under/rank/medical/gown/blue,
+/obj/item/clothing/under/rank/medical/gown/green,
+/obj/item/clothing/under/rank/medical/gown/pink,
+/obj/item/clothing/shoes/sandal/slippers,
+/obj/item/clothing/shoes/sandal/slippers,
+/obj/item/clothing/shoes/sandal/slippers,
+/obj/item/clothing/shoes/sandal/slippers,
+/obj/effect/turf_decal/industrial/outline/red,
+/turf/open/floor/plasteel/tech,
+/area/ship/medical)
+"uc" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 8
},
-/turf/open/floor/carpet/nanoweave,
-/area/ship/bridge)
-"se" = (
-/obj/item/clothing/suit/armor/vest/alt,
-/obj/item/clothing/suit/armor/vest/alt,
-/obj/item/clothing/suit/armor/vest/alt,
-/obj/item/flashlight/seclite,
-/obj/item/flashlight/seclite,
-/obj/item/flashlight/seclite,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
-/obj/machinery/airalarm/directional/north,
-/obj/item/clothing/head/helmet/sec,
-/obj/item/clothing/head/helmet/sec,
-/obj/item/clothing/head/helmet/sec,
-/obj/structure/closet/secure_closet/wall{
- dir = 8;
- icon_state = "sec_wall";
- name = "armor locker";
- pixel_x = 28;
- req_access_txt = "5"
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 8
},
-/turf/open/floor/plasteel/dark,
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 5;
+ color = "#332521"
+ },
+/turf/open/floor/wood/ebony,
/area/ship/crew)
-"sq" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+"up" = (
+/obj/effect/turf_decal/spline/fancy/opaque/black{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
+/obj/effect/turf_decal/spline/fancy/opaque/black{
+ dir = 8
},
/obj/structure/cable{
icon_state = "1-2"
},
-/obj/effect/turf_decal/corner/opaque/white/mono,
-/turf/open/floor/plasteel/white,
+/turf/open/floor/plasteel/patterned/brushed,
/area/ship/medical)
-"su" = (
-/obj/effect/landmark/start/paramedic,
-/turf/open/floor/plasteel,
-/area/ship/crew)
-"sz" = (
+"us" = (
+/obj/effect/turf_decal/trimline/opaque/red/filled/line,
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_y = -19;
+ pixel_x = -8
+ },
+/turf/open/floor/plasteel/white,
+/area/ship/hallway/central)
+"uE" = (
/obj/effect/turf_decal/trimline/opaque/red/filled/line{
dir = 4
},
-/obj/machinery/door/firedoor/border_only,
+/turf/open/floor/plasteel/white,
+/area/ship/cargo)
+"uT" = (
+/obj/effect/turf_decal/industrial/loading,
+/obj/machinery/defibrillator_mount/loaded{
+ pixel_y = 0;
+ pixel_x = -32
+ },
+/obj/structure/sink{
+ dir = 4;
+ pixel_y = 0;
+ pixel_x = -13
+ },
+/turf/open/floor/plasteel/tech,
+/area/ship/medical/surgery)
+"uU" = (
+/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/firedoor/border_only{
dir = 1
},
-/obj/item/radio/intercom/wideband/directional/east,
-/turf/open/floor/plasteel/white,
-/area/ship/hallway/fore)
-"sH" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/medical{
+ name = "Storage Room"
},
-/obj/structure/cable{
- icon_state = "4-8"
+/turf/open/floor/plasteel/tech/grid,
+/area/ship/storage/eva)
+"vj" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 8
},
+/obj/structure/closet/secure_closet/wall{
+ icon_state = "sec_wall";
+ name = "firearms locker";
+ req_access_txt = "5";
+ pixel_y = 28
+ },
+/obj/item/ammo_box/magazine/m10mm/rubber,
+/obj/item/ammo_box/magazine/m10mm/rubber,
+/obj/item/ammo_box/magazine/m10mm/rubber,
+/obj/item/ammo_box/magazine/m10mm/ap,
+/obj/item/ammo_box/magazine/m10mm/ap,
+/obj/item/ammo_box/magazine/m10mm/ap,
+/obj/item/gun/ballistic/automatic/pistol,
+/obj/item/gun/ballistic/automatic/pistol,
+/obj/item/gun/ballistic/automatic/pistol,
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/plasteel/tech,
+/area/ship/crew)
+"vn" = (
+/obj/machinery/smartfridge/organ{
+ density = 0;
+ pixel_x = 32
+ },
+/obj/structure/table/glass,
+/obj/machinery/cell_charger,
+/turf/open/floor/plasteel/tech,
+/area/ship/medical)
+"vx" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/on{
+ dir = 8
+ },
+/obj/structure/catwalk/over,
/turf/open/floor/plating,
-/area/ship/maintenance/port)
-"sM" = (
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2,
-/obj/structure/cable{
- icon_state = "2-4"
+/area/ship/external)
+"vE" = (
+/obj/structure/chair/comfy/shuttle{
+ dir = 4;
+ name = "Helm"
},
-/obj/structure/cable{
- icon_state = "2-8"
+/obj/effect/landmark/start/captain,
+/turf/open/floor/carpet/cyan,
+/area/ship/bridge)
+"wb" = (
+/turf/closed/wall/mineral/titanium,
+/area/ship/science)
+"wc" = (
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "Starboard Engines"
},
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/structure/cable{
icon_state = "1-2"
},
-/obj/effect/turf_decal/trimline/opaque/red/filled/warning{
+/obj/machinery/door/firedoor/border_only{
+ dir = 1
+ },
+/obj/machinery/door/firedoor/border_only,
+/turf/open/floor/plasteel/tech/grid,
+/area/ship/cargo)
+"wp" = (
+/obj/effect/turf_decal/industrial/outline/red,
+/obj/machinery/rnd/server,
+/turf/open/floor/plasteel/tech,
+/area/ship/science)
+"wr" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
+/obj/machinery/airalarm/directional/north,
+/obj/machinery/firealarm/directional/west,
+/turf/open/floor/plasteel/freezer,
+/area/ship/crew/toilet)
+"wt" = (
+/obj/structure/closet/emcloset/wall{
+ pixel_y = 28
+ },
+/obj/effect/turf_decal/number/two,
+/turf/open/floor/plating,
+/area/ship/maintenance/starboard)
+"xa" = (
+/obj/machinery/power/terminal{
dir = 8
},
-/turf/open/floor/plasteel/white,
-/area/ship/hallway/fore)
-"tq" = (
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/machinery/light/small/directional/north,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/ship/maintenance/starboard)
+"xp" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/sign/poster/official/help_others{
+ pixel_y = 32
},
-/obj/effect/landmark/start/assistant,
-/turf/open/floor/plasteel/grimy,
-/area/ship/crew)
-"tE" = (
/obj/effect/turf_decal/trimline/opaque/red/filled/line{
dir = 1
},
+/turf/open/floor/plasteel/white,
+/area/ship/hallway/central)
+"xB" = (
+/obj/effect/turf_decal/trimline/opaque/red/filled/line{
+ dir = 4
+ },
/obj/item/kirbyplants/random,
-/obj/machinery/airalarm/directional/west,
-/turf/open/floor/plasteel,
+/obj/machinery/airalarm/directional/north,
+/turf/open/floor/plasteel/white,
/area/ship/cargo)
-"tO" = (
-/obj/structure/closet/secure_closet{
- icon_state = "med_secure";
- name = "medical intern's locker"
+"xF" = (
+/obj/machinery/computer/helm{
+ dir = 8
},
-/obj/machinery/airalarm/directional/south,
-/obj/item/clothing/glasses/hud/health,
-/obj/item/clothing/glasses/hud/health,
-/obj/item/clothing/glasses/hud/health,
-/obj/item/healthanalyzer,
-/obj/item/healthanalyzer,
-/obj/item/healthanalyzer,
-/obj/item/storage/backpack/satchel/med,
-/obj/item/storage/backpack/satchel/med,
-/obj/item/storage/backpack/satchel/med,
-/obj/item/clothing/shoes/sneakers/blue,
-/obj/item/clothing/shoes/sneakers/blue,
-/obj/item/clothing/shoes/sneakers/blue,
-/obj/structure/extinguisher_cabinet/directional/west,
-/obj/item/clothing/under/rank/medical/paramedic/emt,
-/obj/item/clothing/under/rank/medical/paramedic/emt,
-/obj/item/clothing/under/rank/medical/paramedic/emt,
-/turf/open/floor/plasteel/grimy,
+/turf/open/floor/plasteel/dark,
+/area/ship/bridge)
+"xN" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 5
+ },
+/obj/effect/landmark/start/assistant,
+/obj/effect/turf_decal/siding/wood{
+ dir = 6;
+ color = "#332521"
+ },
+/turf/open/floor/wood/ebony,
/area/ship/crew)
-"tT" = (
-/obj/machinery/light/directional/east,
-/obj/structure/chair{
+"xW" = (
+/obj/machinery/power/port_gen/pacman,
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/effect/turf_decal/industrial/hatch/yellow,
+/obj/item/stack/sheet/mineral/plasma/twenty,
+/obj/item/radio/intercom/directional/south,
+/turf/open/floor/plating,
+/area/ship/maintenance/starboard)
+"yf" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
dir = 8
},
-/turf/open/floor/plasteel,
-/area/ship/cargo)
-"tW" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
-/obj/effect/turf_decal/corner/opaque/white/mono,
-/obj/structure/chair/office/light{
- dir = 1
+/turf/open/floor/plasteel/patterned/brushed,
+/area/ship/crew)
+"yn" = (
+/obj/structure/cable{
+ icon_state = "0-2"
},
-/obj/effect/landmark/start/chemist,
-/turf/open/floor/plasteel/white,
-/area/ship/medical)
-"uk" = (
-/obj/machinery/modular_computer/console/preset/command{
- dir = 4
+/obj/machinery/power/shieldwallgen/atmos/roundstart{
+ id = "traumashield"
},
-/obj/machinery/airalarm/directional/west,
-/turf/open/floor/carpet/nanoweave,
-/area/ship/bridge)
-"uo" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 4
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
},
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 1
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
},
-/turf/open/floor/plasteel/tech,
-/area/ship/medical)
-"uq" = (
-/obj/structure/table/reinforced,
-/obj/structure/window/reinforced{
+/obj/effect/turf_decal/industrial/warning{
dir = 4
},
-/obj/structure/window/reinforced,
-/obj/item/paper_bin,
-/obj/machinery/door/firedoor/border_only,
-/obj/effect/turf_decal/industrial/hatch/red,
-/obj/item/folder/white,
-/obj/item/pen,
-/turf/open/floor/plating,
+/obj/machinery/door/poddoor/shutters{
+ dir = 8;
+ id = "traumalobby";
+ name = "Lobby"
+ },
+/turf/open/floor/engine,
/area/ship/cargo)
-"ur" = (
-/obj/effect/turf_decal/trimline/opaque/red/filled/line{
- dir = 1
+"yQ" = (
+/obj/machinery/computer/med_data{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/ship/bridge)
+"yT" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
},
-/turf/open/floor/plasteel,
-/area/ship/cargo)
-"uE" = (
-/obj/structure/window/reinforced/tinted/frosted{
- dir = 8
+/obj/effect/turf_decal/industrial/warning/corner{
+ dir = 4
},
-/obj/machinery/door/firedoor/border_only{
+/obj/effect/turf_decal/industrial/warning/corner{
dir = 8
},
-/obj/machinery/rnd/production/techfab/department/medical,
-/obj/effect/turf_decal/industrial/hatch/red,
-/obj/machinery/firealarm/directional/south,
-/turf/open/floor/plasteel/white,
-/area/ship/medical)
-"uN" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+/obj/machinery/airalarm/directional/north,
+/turf/open/floor/plating,
+/area/ship/maintenance/starboard)
+"yX" = (
+/obj/effect/turf_decal/corner/opaque/red/full,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
+/turf/open/floor/plasteel/white,
+/area/ship/cargo)
+"zh" = (
+/obj/structure/table/glass,
+/obj/item/reagent_containers/glass/bottle/formaldehyde{
+ pixel_x = 5
},
-/obj/structure/cable{
- icon_state = "4-8"
+/obj/item/reagent_containers/glass/bottle/formaldehyde{
+ pixel_x = -5
},
-/turf/open/floor/plasteel,
-/area/ship/cargo)
-"uW" = (
-/obj/structure/chair{
+/obj/item/reagent_containers/glass/bottle/epinephrine{
+ pixel_x = -5;
+ pixel_y = 8
+ },
+/obj/item/reagent_containers/glass/bottle/charcoal{
+ pixel_x = 5;
+ pixel_y = 8
+ },
+/obj/item/reagent_containers/syringe,
+/obj/machinery/airalarm/directional/east,
+/turf/open/floor/plasteel/tech,
+/area/ship/medical)
+"zl" = (
+/obj/effect/turf_decal/trimline/opaque/red/filled/line,
+/obj/machinery/door/firedoor/border_only{
dir = 8
},
-/obj/structure/sign/poster/official/soft_cap_pop_art{
- pixel_x = 32
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
},
-/turf/open/floor/plasteel,
-/area/ship/cargo)
-"ve" = (
+/turf/open/floor/plasteel/white,
+/area/ship/hallway/central)
+"zn" = (
/obj/structure/table/reinforced,
-/obj/structure/window/reinforced{
- dir = 8
+/obj/item/folder/white{
+ pixel_x = -5
},
-/obj/structure/window/reinforced,
-/obj/machinery/computer/med_data/laptop{
- dir = 1
+/obj/item/stamp/cmo{
+ pixel_x = -1;
+ pixel_y = 12
},
-/obj/item/radio/intercom/directional/west,
-/obj/machinery/door/firedoor/border_only,
-/obj/effect/turf_decal/industrial/hatch/red,
-/turf/open/floor/plating,
-/area/ship/cargo)
-"vj" = (
-/obj/effect/turf_decal/trimline/opaque/red/filled/warning{
- dir = 1
+/obj/item/pen{
+ pixel_x = -5
},
-/obj/machinery/power/apc/auto_name/directional/east,
-/obj/structure/cable{
- icon_state = "0-8"
+/obj/item/paper_bin{
+ pixel_x = 9
},
-/obj/machinery/light_switch{
+/obj/item/clothing/neck/stethoscope,
+/obj/machinery/recharger,
+/obj/machinery/light/small/directional/south,
+/obj/machinery/firealarm/directional/east,
+/turf/open/floor/carpet/cyan,
+/area/ship/bridge)
+"zo" = (
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/ship/crew/toilet)
+"zq" = (
+/obj/machinery/door/airlock/medical/glass{
dir = 8;
- pixel_x = 19;
- pixel_y = 13
+ id_tag = "lobbydoors";
+ name = "Sickbay"
},
-/turf/open/floor/plasteel,
-/area/ship/cargo)
-"vn" = (
-/obj/effect/turf_decal/trimline/opaque/red/filled/line{
+/obj/machinery/door/firedoor/border_only{
dir = 8
},
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
+ },
+/obj/effect/turf_decal/corner/opaque/white/mono,
+/turf/open/floor/plasteel/white,
+/area/ship/cargo)
+"zy" = (
+/obj/effect/turf_decal/trimline/opaque/red/filled/warning,
/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/firedoor/border_only,
-/obj/machinery/door/firedoor/border_only{
+/turf/open/floor/plasteel/white,
+/area/ship/hallway/central)
+"zD" = (
+/obj/effect/turf_decal/arrows/red{
dir = 1
},
-/turf/open/floor/plasteel/white,
-/area/ship/hallway/fore)
-"vr" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+/obj/effect/turf_decal/spline/fancy/opaque/black,
+/turf/open/floor/plasteel/patterned/grid,
+/area/ship/storage/eva)
+"zK" = (
+/obj/machinery/power/smes/shuttle/precharged{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
+/obj/machinery/door/poddoor{
+ dir = 8;
+ id = "traumaenginer"
},
/obj/structure/cable{
- icon_state = "4-8"
+ icon_state = "0-8"
},
-/obj/machinery/light/small/directional/north,
-/turf/open/floor/plating,
-/area/ship/maintenance/port)
-"vG" = (
-/obj/machinery/door/firedoor/border_only{
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
dir = 8
},
-/obj/effect/turf_decal/industrial/outline/red,
-/obj/machinery/smartfridge/chemistry,
-/turf/open/floor/plasteel/white,
-/area/ship/medical)
-"vT" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/power/apc/auto_name/directional/east,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/item/storage/toolbox/electrical,
-/obj/machinery/light_switch{
+/turf/open/floor/plating,
+/area/ship/maintenance/starboard)
+"zL" = (
+/obj/structure/table/reinforced,
+/obj/item/folder/blue,
+/obj/item/pen/fourcolor,
+/obj/machinery/button/door{
dir = 8;
- pixel_x = 19;
- pixel_y = 13
+ id = "traumawindows";
+ name = "Window Shutters";
+ pixel_x = 5;
+ pixel_y = 7
},
-/turf/open/floor/plating,
-/area/ship/maintenance/port)
-"wD" = (
-/obj/structure/chair/comfy/shuttle{
- dir = 1;
- name = "Helm"
+/obj/machinery/button/door{
+ dir = 8;
+ id = "traumabridge";
+ name = "Bridge Window Shutters";
+ pixel_x = -5;
+ pixel_y = 7
},
-/obj/effect/landmark/start/captain,
-/turf/open/floor/carpet/nanoweave,
-/area/ship/bridge)
-"wG" = (
-/obj/structure/chair/comfy/shuttle{
- dir = 1;
- name = "Medical"
+/obj/item/stamp/syndicate{
+ pixel_x = -7;
+ pixel_y = -1
},
-/obj/effect/landmark/start/chief_medical_officer,
-/turf/open/floor/carpet/nanoweave,
+/turf/open/floor/carpet/cyan,
/area/ship/bridge)
-"wQ" = (
-/obj/structure/sign/poster/official/cleanliness{
- pixel_y = 32
- },
-/obj/effect/turf_decal/industrial/outline/red,
-/obj/machinery/chem_master,
-/turf/open/floor/plasteel/white,
-/area/ship/medical)
-"xa" = (
-/obj/effect/turf_decal/corner/opaque/red/full,
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/ship/cargo)
-"yi" = (
-/obj/machinery/power/apc/auto_name/directional/west,
-/obj/structure/cable{
- icon_state = "0-2"
+"zM" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
},
-/obj/effect/turf_decal/number/zero{
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
},
-/obj/machinery/light_switch{
- dir = 4;
- pixel_x = -20;
- pixel_y = 13
+/obj/structure/cable{
+ icon_state = "4-8"
},
-/turf/open/floor/plating,
-/area/ship/maintenance/starboard)
-"zg" = (
-/obj/machinery/light/directional/north,
-/obj/structure/sign/warning/nosmoking{
- pixel_x = 32
+/obj/item/radio/intercom/directional/north,
+/obj/effect/turf_decal/trimline/opaque/red/filled/line{
+ dir = 1
},
-/obj/effect/turf_decal/corner/opaque/white/mono,
/turf/open/floor/plasteel/white,
-/area/ship/medical)
-"zo" = (
-/turf/closed/wall/mineral/titanium/nodiagonal,
-/area/ship/crew/toilet)
-"zt" = (
-/obj/effect/turf_decal/industrial/outline/red,
-/obj/structure/window/reinforced{
+/area/ship/hallway/central)
+"zS" = (
+/obj/effect/turf_decal/spline/fancy/opaque/black{
dir = 4
},
-/obj/structure/bodycontainer/morgue{
+/obj/effect/turf_decal/spline/fancy/opaque/black{
dir = 8
},
-/turf/open/floor/plasteel/tech,
-/area/ship/medical)
-"zE" = (
/obj/structure/cable{
- icon_state = "4-9"
+ icon_state = "2-8"
},
-/obj/structure/cable{
- icon_state = "4-10"
+/turf/open/floor/plasteel/patterned/brushed,
+/area/ship/medical)
+"zT" = (
+/obj/effect/turf_decal/number/zero,
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/plating,
+/area/ship/maintenance/starboard)
+"Ah" = (
+/obj/item/radio/intercom/directional/west,
+/turf/open/floor/carpet/cyan,
+/area/ship/bridge)
+"Ai" = (
+/obj/effect/turf_decal/spline/fancy/opaque/black{
+ dir = 4
},
-/turf/open/floor/plasteel/stairs/medium{
+/obj/effect/turf_decal/spline/fancy/opaque/black{
dir = 8
},
+/obj/machinery/light/directional/south,
+/turf/open/floor/plasteel/patterned/brushed,
/area/ship/storage)
-"zR" = (
-/obj/structure/table/reinforced,
-/obj/item/folder/white{
- pixel_x = -5
+"Aj" = (
+/obj/item/flashlight/seclite,
+/obj/item/flashlight/seclite,
+/obj/item/flashlight/seclite,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 8
},
-/obj/item/stamp/cmo{
- pixel_x = -1;
- pixel_y = 12
+/obj/structure/closet/secure_closet/wall{
+ dir = 1;
+ icon_state = "sec_wall";
+ name = "armor locker";
+ req_access_txt = "5";
+ pixel_y = -28
},
-/obj/item/pen{
- pixel_x = -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/head/helmet/medical,
+/obj/item/clothing/head/helmet/medical,
+/obj/item/clothing/head/helmet/medical,
+/obj/machinery/airalarm/directional/east,
+/turf/open/floor/plasteel/tech,
+/area/ship/crew)
+"Ap" = (
+/obj/effect/turf_decal/trimline/opaque/red/filled/warning{
+ dir = 8
},
-/obj/machinery/firealarm/directional/east,
-/obj/item/paper_bin{
- pixel_x = 9
+/obj/structure/cable{
+ icon_state = "4-8"
},
-/obj/item/clothing/neck/stethoscope,
-/obj/machinery/recharger,
-/turf/open/floor/carpet/nanoweave,
-/area/ship/bridge)
-"zT" = (
-/obj/machinery/atmospherics/components/unary/tank/air{
- piping_layer = 2
+/turf/open/floor/plasteel/white,
+/area/ship/cargo)
+"AD" = (
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "Port Engines"
},
-/obj/effect/turf_decal/industrial/hatch/yellow,
-/turf/open/floor/plating,
-/area/ship/maintenance/port)
-"AG" = (
-/obj/structure/railing{
- dir = 6
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/obj/effect/turf_decal/spline/fancy/opaque/black{
+/obj/machinery/door/firedoor/border_only{
dir = 1
},
-/obj/effect/turf_decal/spline/fancy/opaque/black,
-/turf/open/floor/plasteel/patterned/grid,
-/area/ship/storage)
+/obj/machinery/door/firedoor/border_only,
+/turf/open/floor/plasteel/tech/grid,
+/area/ship/cargo)
"AJ" = (
/turf/closed/wall/mineral/titanium,
/area/ship/cargo)
-"Bl" = (
-/obj/effect/turf_decal/corner/opaque/red/full,
+"AQ" = (
+/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,
+/obj/machinery/door/airlock/medical{
+ name = "Storage Room"
+ },
/obj/structure/cable{
icon_state = "1-2"
},
-/turf/open/floor/plasteel,
-/area/ship/cargo)
-"BH" = (
-/obj/machinery/power/shieldwallgen/atmos/roundstart{
- dir = 1;
- id = "traumashield2"
+/turf/open/floor/plasteel/tech/grid,
+/area/ship/storage)
+"AX" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 4
},
/obj/structure/cable{
- icon_state = "0-4"
+ icon_state = "4-8"
},
-/obj/effect/turf_decal/trimline/opaque/red/filled/warning{
- dir = 4
+/obj/effect/turf_decal/industrial/warning/corner,
+/obj/effect/turf_decal/industrial/warning/corner{
+ dir = 1
},
-/obj/effect/turf_decal/trimline/opaque/red/filled/warning{
- dir = 8
+/obj/machinery/airalarm/directional/south,
+/turf/open/floor/plating,
+/area/ship/maintenance/port)
+"Bp" = (
+/obj/effect/turf_decal/industrial/warning{
+ dir = 5
},
-/obj/machinery/door/firedoor/border_only{
- dir = 8
+/obj/machinery/cryopod{
+ dir = 1
},
-/obj/machinery/door/poddoor{
+/obj/machinery/computer/cryopod/directional/south,
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/plasteel/tech,
+/area/ship/crew)
+"BD" = (
+/obj/item/storage/belt/medical,
+/obj/item/healthanalyzer/advanced,
+/obj/item/hypospray/mkii/CMO,
+/obj/structure/closet/secure_closet/wall{
dir = 4;
- id = "traumaramp"
+ icon_state = "solgov_wall";
+ name = "chief medical officer's closet";
+ req_access_txt = "40";
+ pixel_x = -28
},
-/turf/open/floor/engine,
-/area/ship/storage)
-"BK" = (
-/obj/effect/turf_decal/trimline/opaque/red/filled/line{
+/obj/item/storage/backpack/satchel/med,
+/obj/item/defibrillator/compact/loaded,
+/obj/item/gun/syringe,
+/obj/item/reagent_containers/glass/bottle/sodium_thiopental,
+/obj/item/clothing/glasses/hud/health/night,
+/obj/item/gun/ballistic/automatic/pistol,
+/obj/item/clothing/gloves/color/latex/nitrile/evil,
+/obj/item/clothing/suit/toggle/labcoat/raincoat,
+/obj/item/clothing/shoes/combat,
+/obj/item/clothing/head/beret/cmo/cybersun,
+/obj/item/clothing/under/rank/medical/chief_medical_officer/cybersun,
+/turf/open/floor/carpet/cyan,
+/area/ship/bridge)
+"BU" = (
+/obj/effect/turf_decal/industrial/outline/red,
+/obj/machinery/suit_storage_unit/inherit,
+/obj/item/clothing/suit/space/hardsuit/syndi/cybersun/paramed,
+/obj/item/clothing/mask/gas/sechailer,
+/obj/item/tank/internals/oxygen/red,
+/turf/open/floor/plasteel/tech,
+/area/ship/storage/eva)
+"Ca" = (
+/obj/machinery/computer/crew{
dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 8
+/turf/open/floor/plasteel/dark,
+/area/ship/bridge)
+"Cp" = (
+/obj/machinery/door/airlock/medical{
+ name = "Crew Quarters"
},
-/obj/machinery/airalarm/directional/west,
+/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/white,
-/area/ship/hallway/fore)
-"BN" = (
-/obj/docking_port/mobile{
- launch_status = 0;
- port_direction = 2
- },
-/obj/structure/cable{
- icon_state = "1-8"
+/obj/machinery/door/firedoor/border_only{
+ dir = 1
},
+/obj/machinery/door/firedoor/border_only,
+/turf/open/floor/plasteel/tech/grid,
+/area/ship/crew)
+"Cy" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/structure/cable{
- icon_state = "1-4"
+ icon_state = "1-2"
},
-/obj/machinery/door/firedoor/border_only,
-/obj/effect/turf_decal/industrial/warning,
/obj/effect/turf_decal/industrial/warning{
dir = 1
},
-/obj/machinery/door/poddoor/shutters{
- id = "traumalobby";
- name = "Lobby"
+/turf/open/floor/plating,
+/area/ship/maintenance/port)
+"CF" = (
+/obj/machinery/door/window/brigdoor/southright{
+ dir = 8;
+ req_access_txt = "5"
+ },
+/obj/item/clothing/shoes/combat,
+/obj/item/clothing/shoes/combat,
+/obj/item/clothing/shoes/combat,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 5
+ },
+/obj/structure/closet/secure_closet/wall{
+ dir = 1;
+ icon_state = "sec_wall";
+ name = "clothing locker";
+ req_access_txt = "5";
+ pixel_y = -28
+ },
+/obj/item/clothing/under/syndicate/medic,
+/obj/item/clothing/under/syndicate/medic,
+/obj/item/clothing/under/syndicate/medic,
+/obj/item/clothing/head/soft/cybersun/medical,
+/obj/item/clothing/head/soft/cybersun/medical,
+/obj/item/clothing/head/soft/cybersun/medical,
+/obj/item/clothing/suit/toggle/labcoat/raincoat,
+/obj/item/clothing/suit/toggle/labcoat/raincoat,
+/obj/item/clothing/suit/toggle/labcoat/raincoat,
+/obj/item/storage/backpack/ert/medical,
+/obj/item/storage/backpack/ert/medical,
+/obj/item/storage/backpack/ert/medical,
+/obj/item/clothing/under/syndicate/medic/skirt,
+/obj/item/clothing/under/syndicate/medic/skirt,
+/obj/item/clothing/under/syndicate/medic/skirt,
+/turf/open/floor/plasteel/tech,
+/area/ship/crew)
+"CL" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 9
},
-/turf/open/floor/engine,
-/area/ship/cargo)
-"Cr" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/structure/cable{
- icon_state = "1-2"
+ icon_state = "4-8"
},
-/obj/effect/turf_decal/trimline/opaque/red/filled/line{
- dir = 8
+/turf/open/floor/plasteel/mono/white,
+/area/ship/hallway/central)
+"CZ" = (
+/obj/machinery/door/poddoor/preopen{
+ dir = 8;
+ id = "traumawindows";
+ name = "Window Blast Door"
},
-/obj/machinery/light_switch{
- dir = 4;
- pixel_x = -21;
- pixel_y = 10
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile/shuttle,
+/turf/open/floor/plating,
+/area/ship/crew)
+"Dp" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile/shuttle,
+/obj/machinery/door/poddoor/preopen{
+ dir = 8;
+ id = "traumasurgery";
+ name = "Window Blast Door"
},
-/obj/machinery/firealarm/directional/west,
-/turf/open/floor/plasteel/white,
-/area/ship/hallway/fore)
-"CX" = (
+/turf/open/floor/plating,
+/area/ship/medical)
+"Dr" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
/obj/structure/cable{
- icon_state = "1-8"
+ icon_state = "1-4"
},
/obj/structure/cable{
- icon_state = "2-8"
+ icon_state = "1-8"
},
/obj/structure/cable{
- icon_state = "4-8"
+ icon_state = "1-2"
},
+/obj/effect/turf_decal/industrial/warning,
/turf/open/floor/plating,
/area/ship/maintenance/port)
-"Dj" = (
-/obj/machinery/power/shuttle/engine/electric{
- dir = 1
- },
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/ship/maintenance/starboard)
-"Dy" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
-/mob/living/simple_animal/hostile/retaliate/poison/snake{
- desc = "The CMO's pet snake. The question of what species it actually belongs to is a mystery for the ages.";
- name = "\proper Deuce"
+"DS" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
},
-/obj/structure/bed/dogbed{
- anchored = 1;
- desc = "A comfy-looking... snake bed? There's bits of shed scales stuck in the bedding...";
- name = "snake bed"
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_y = -17;
+ pixel_x = 11
},
-/obj/item/clothing/glasses/hud/health,
-/turf/open/floor/carpet/nanoweave/red,
-/area/ship/bridge)
-"DH" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 4
+/obj/structure/cable{
+ icon_state = "0-8"
},
-/obj/effect/turf_decal/industrial/outline/red,
-/obj/structure/window/reinforced{
- dir = 1
+/obj/effect/turf_decal/industrial/warning/corner{
+ dir = 8
},
+/turf/open/floor/plating,
+/area/ship/maintenance/port)
+"DX" = (
/obj/structure/closet/crate/medical,
/obj/item/roller,
/obj/item/roller,
/obj/item/roller,
/obj/item/roller,
/obj/item/roller,
-/obj/item/tank/internals/anesthetic,
/obj/item/clothing/mask/breath/medical,
/obj/machinery/iv_drip,
/obj/machinery/iv_drip,
/obj/machinery/iv_drip,
/obj/machinery/iv_drip,
/obj/machinery/iv_drip,
-/obj/item/storage/box/bodybags,
-/obj/item/storage/box/gloves,
-/obj/item/storage/box/masks,
-/obj/item/storage/box/bodybags,
-/turf/open/floor/plasteel/white,
-/area/ship/medical)
-"DU" = (
-/obj/structure/sign/poster/official/cleanliness{
- pixel_x = -32
+/obj/effect/turf_decal/industrial/outline/red,
+/turf/open/floor/plasteel/tech,
+/area/ship/storage)
+"Eb" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 8
},
-/obj/machinery/computer/operating,
-/obj/structure/window/reinforced{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/industrial/warning,
+/turf/open/floor/plating,
+/area/ship/maintenance/port)
+"Ev" = (
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/ship/crew)
+"EL" = (
+/obj/structure/bed{
+ dir = 8
+ },
+/obj/structure/curtain/bounty,
+/obj/item/bedsheet/cmo{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/ship/bridge)
+"ES" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 6
+ },
+/obj/item/radio/intercom/wideband/directional/west,
+/turf/open/floor/carpet/cyan,
+/area/ship/bridge)
+"EW" = (
+/obj/effect/turf_decal/spline/fancy/opaque/black{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/effect/turf_decal/spline/fancy/opaque/black{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/patterned/brushed,
+/area/ship/medical/surgery)
+"Fe" = (
+/obj/effect/turf_decal/industrial/outline/red,
+/obj/machinery/suit_storage_unit/inherit,
+/obj/item/clothing/suit/space/hardsuit/syndi/cybersun/paramed,
+/obj/item/clothing/mask/gas/sechailer,
+/obj/item/tank/internals/oxygen/red,
+/obj/machinery/light/directional/south,
+/turf/open/floor/plasteel/tech,
+/area/ship/storage/eva)
+"Fr" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile/shuttle,
+/obj/machinery/door/poddoor/preopen{
+ dir = 8;
+ id = "traumastore";
+ name = "Window Blast Door"
},
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/medical)
-"Ev" = (
-/turf/closed/wall/mineral/titanium/nodiagonal,
+/turf/open/floor/plating,
+/area/ship/storage)
+"FE" = (
+/obj/effect/landmark/start/paramedic,
+/turf/open/floor/plasteel/patterned/brushed,
/area/ship/crew)
-"EA" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
-/obj/machinery/photocopier,
-/turf/open/floor/carpet/nanoweave/beige,
-/area/ship/medical)
-"FA" = (
-/obj/effect/turf_decal/trimline/opaque/red/filled/line{
+"FH" = (
+/obj/structure/chair{
dir = 4
},
+/turf/open/floor/plasteel/tech,
+/area/ship/medical)
+"FO" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
dir = 8
},
-/turf/open/floor/plasteel/white,
-/area/ship/hallway/fore)
-"FE" = (
-/obj/machinery/firealarm/directional/east,
-/obj/effect/turf_decal/industrial/outline/red,
-/obj/machinery/reagentgrinder{
- pixel_y = 10
- },
-/obj/structure/table,
-/obj/item/lighter{
- pixel_x = -8
- },
-/turf/open/floor/plasteel/white,
-/area/ship/medical)
-"Go" = (
+/turf/open/floor/carpet/cyan,
+/area/ship/bridge)
+"Gj" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
},
-/obj/machinery/door/window{
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
},
-/obj/machinery/door/firedoor/border_only{
- dir = 4
+/obj/structure/cable{
+ icon_state = "2-4"
},
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 1
+/turf/open/floor/plasteel/mono/white,
+/area/ship/hallway/central)
+"Gr" = (
+/obj/effect/turf_decal/corner/opaque/red/full,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 4
},
-/turf/open/floor/plasteel/tech,
-/area/ship/medical)
+/turf/open/floor/plasteel/white,
+/area/ship/cargo)
"Gs" = (
-/obj/effect/turf_decal/industrial/hatch/yellow,
-/obj/structure/reagent_dispensers/watertank,
-/obj/item/mop,
-/obj/item/reagent_containers/glass/bucket,
-/obj/item/storage/bag/trash,
-/turf/open/floor/plating,
-/area/ship/maintenance/starboard)
-"GP" = (
-/obj/machinery/door/airlock/maintenance_hatch{
- dir = 4;
- name = "Starboard Engines"
+/obj/structure/table,
+/obj/machinery/microwave{
+ pixel_y = 5
},
+/obj/machinery/newscaster/directional/west,
+/obj/effect/turf_decal/siding/wood{
+ dir = 2;
+ color = "#332521"
+ },
+/turf/open/floor/wood/ebony,
+/area/ship/crew)
+"Gw" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
},
@@ -1424,383 +1787,434 @@
/obj/structure/cable{
icon_state = "4-8"
},
+/obj/machinery/door/airlock/medical/glass{
+ dir = 8;
+ id_tag = "lobbydoors";
+ name = "Sickbay"
+ },
/obj/machinery/door/firedoor/border_only{
dir = 8
},
/obj/machinery/door/firedoor/border_only{
dir = 4
},
-/turf/open/floor/plating,
-/area/ship/maintenance/starboard)
-"Hk" = (
-/obj/machinery/suit_storage_unit/inherit,
-/obj/item/clothing/suit/space/hardsuit/combatmedic,
-/obj/item/clothing/mask/gas/sechailer,
-/obj/item/tank/internals/emergency_oxygen/engi,
-/obj/effect/turf_decal/industrial/hatch/red,
-/obj/structure/sign/warning/nosmoking{
- pixel_y = 32
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/storage)
-"Hl" = (
-/obj/structure/sign/poster/contraband/random,
-/turf/closed/wall/mineral/titanium/nodiagonal,
-/area/ship/crew)
-"Hq" = (
-/obj/structure/window/reinforced{
- dir = 4
+/obj/effect/turf_decal/corner/opaque/white/mono,
+/turf/open/floor/plasteel/white,
+/area/ship/cargo)
+"GH" = (
+/obj/structure/chair/comfy/shuttle{
+ dir = 4;
+ name = "Medical"
},
-/obj/machinery/door/window/northleft,
-/obj/machinery/power/terminal,
-/obj/structure/cable,
-/obj/machinery/light/small/directional/west,
-/turf/open/floor/plating,
-/area/ship/maintenance/starboard)
-"Hr" = (
-/obj/structure/bed,
-/obj/structure/curtain/bounty,
-/obj/item/bedsheet/captain,
-/turf/open/floor/plasteel/dark,
+/obj/effect/landmark/start/chief_medical_officer,
+/turf/open/floor/carpet/cyan,
/area/ship/bridge)
-"HF" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+"GI" = (
+/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/white,
+/area/ship/cargo)
+"GK" = (
+/obj/structure/chair,
+/obj/structure/extinguisher_cabinet/directional/north,
+/turf/open/floor/plasteel/white,
+/area/ship/cargo)
+"GZ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/effect/turf_decal/spline/fancy/opaque/black{
dir = 4
},
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 1
+ dir = 8
},
-/turf/open/floor/plasteel/tech,
-/area/ship/medical)
-"HP" = (
-/turf/open/floor/carpet/nanoweave/beige,
-/area/ship/medical)
-"HU" = (
-/obj/structure/sign/departments/medbay/alt,
-/turf/closed/wall/mineral/titanium/nodiagonal,
-/area/ship/maintenance/starboard)
-"IE" = (
-/obj/machinery/light/small/directional/east,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/patterned/brushed,
+/area/ship/medical/surgery)
+"Hb" = (
+/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/plating,
-/area/ship/maintenance/port)
-"IG" = (
-/obj/effect/turf_decal/corner/opaque/red/full,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+/obj/machinery/door/firedoor/border_only{
dir = 1
},
-/turf/open/floor/plasteel,
-/area/ship/cargo)
-"Ja" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/structure/extinguisher_cabinet/directional/west,
-/turf/open/floor/plasteel,
-/area/ship/cargo)
-"Je" = (
-/obj/machinery/power/terminal,
-/obj/structure/cable/yellow,
-/obj/item/wrench/crescent,
-/obj/item/radio/intercom/directional/west,
-/turf/open/floor/plating,
-/area/ship/maintenance/port)
-"Jn" = (
-/obj/machinery/power/shuttle/engine/electric{
- dir = 1
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "Port Engines"
},
-/obj/structure/cable,
-/turf/open/floor/plating,
+/turf/open/floor/plasteel/tech/grid,
/area/ship/maintenance/port)
-"JA" = (
-/obj/effect/spawner/structure/window/shuttle,
-/obj/machinery/door/poddoor/preopen{
- dir = 4;
- id = "traumawindows";
- name = "Window Blast Door"
- },
-/turf/open/floor/plating,
-/area/ship/medical)
-"Kc" = (
-/obj/structure/sign/departments/medbay/alt,
+"Hk" = (
+/obj/effect/turf_decal/industrial/outline/red,
+/obj/structure/crate_shelf,
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/plasteel/tech,
+/area/ship/storage/eva)
+"Hl" = (
+/obj/structure/sign/poster/contraband/random,
/turf/closed/wall/mineral/titanium/nodiagonal,
/area/ship/crew)
-"Kh" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 1
- },
-/obj/machinery/airalarm/directional/west,
-/obj/machinery/power/terminal,
-/obj/structure/cable,
-/obj/effect/turf_decal/industrial/warning,
-/turf/open/floor/plating,
-/area/ship/maintenance/port)
-"Ki" = (
-/obj/effect/landmark/start/paramedic,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/firealarm/directional/west,
-/obj/machinery/light_switch{
- dir = 4;
- pixel_x = -21;
- pixel_y = -10
- },
-/turf/open/floor/plasteel,
-/area/ship/crew)
-"Ko" = (
-/obj/machinery/light/directional/east,
+"HE" = (
+/obj/structure/rack,
/obj/effect/turf_decal/industrial/outline/red,
-/obj/machinery/suit_storage_unit/inherit,
-/obj/item/clothing/suit/space/hardsuit/medical,
-/obj/item/clothing/mask/gas/sechailer,
-/obj/item/tank/internals/emergency_oxygen/engi,
+/obj/item/stack/sheet/glass/fifty,
+/obj/item/stack/sheet/metal/fifty,
+/obj/item/radio/intercom/directional/west,
+/obj/item/multitool,
/turf/open/floor/plasteel/tech,
-/area/ship/storage)
-"Kv" = (
-/obj/effect/turf_decal/trimline/opaque/red/filled/line{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+/area/ship/storage/eva)
+"HI" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/southleft{
dir = 8
},
-/turf/open/floor/plasteel/white,
-/area/ship/hallway/fore)
-"KD" = (
-/obj/structure/window/reinforced{
+/obj/machinery/button/door{
+ dir = 4;
+ id = "lobbydoors";
+ name = "Lobby Door Control";
+ normaldoorcontrol = 1;
+ pixel_x = 6;
+ pixel_y = -4
+ },
+/obj/machinery/door/firedoor/border_only{
dir = 8
},
-/obj/machinery/door/window/northright,
-/obj/machinery/power/terminal,
-/obj/structure/cable,
-/obj/machinery/light/small/directional/east,
-/turf/open/floor/plating,
-/area/ship/maintenance/port)
-"KR" = (
-/obj/structure/sink{
- dir = 8;
- pixel_x = 12
+/obj/effect/turf_decal/industrial/hatch/red,
+/obj/machinery/button/shieldwallgen{
+ dir = 4;
+ id = "traumashield";
+ name = "Lobby Holoshield";
+ pixel_x = -6;
+ pixel_y = 8
},
-/obj/effect/turf_decal/corner/opaque/white/mono,
-/obj/item/storage/box/pillbottles,
-/obj/item/storage/box/pillbottles,
-/obj/item/storage/box/medigels,
-/obj/item/storage/box/medigels,
-/obj/item/reagent_containers/dropper,
-/obj/item/reagent_containers/dropper,
-/obj/item/clothing/suit/toggle/labcoat/chemist/side,
-/obj/item/clothing/glasses/science,
-/obj/item/reagent_containers/glass/beaker/large,
-/obj/item/reagent_containers/glass/beaker/large,
-/obj/structure/closet/wall/white/chem{
- dir = 1;
- name = "Chemistry Locker";
- pixel_y = -28
+/obj/machinery/button/door{
+ dir = 4;
+ id = "lobbydoors";
+ name = "Lobby Door Bolts Control";
+ normaldoorcontrol = 1;
+ pixel_x = 6;
+ pixel_y = 8;
+ specialfunctions = 4
},
-/obj/item/storage/backpack/satchel/chem,
-/obj/item/clothing/head/beret/chem,
-/obj/machinery/light/directional/east,
-/turf/open/floor/plasteel/white,
-/area/ship/medical)
-"KW" = (
-/obj/structure/sign/departments/medbay/alt,
-/turf/closed/wall/mineral/titanium/nodiagonal,
+/obj/machinery/button/door{
+ dir = 4;
+ id = "traumalobby";
+ name = "Lobby Shutter Control";
+ pixel_x = -6;
+ pixel_y = -4
+ },
+/turf/open/floor/plating,
/area/ship/cargo)
-"Lh" = (
-/obj/machinery/atmospherics/components/binary/pump/on/layer2,
-/obj/structure/closet/firecloset/wall{
- dir = 8;
- pixel_x = 28
+"HR" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
},
+/obj/machinery/firealarm/directional/north,
/turf/open/floor/plating,
/area/ship/maintenance/port)
-"Ll" = (
-/obj/effect/turf_decal/trimline/opaque/red/filled/line{
+"HU" = (
+/obj/structure/sign/departments/medbay/alt,
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/ship/maintenance/starboard)
+"IL" = (
+/obj/structure/chair{
dir = 8
},
+/obj/effect/landmark/start/assistant,
/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/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 5
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 4;
+ color = "#332521"
+ },
+/turf/open/floor/wood/ebony,
+/area/ship/crew)
+"Jh" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "traumawindows";
+ name = "Window Blast Door"
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile/shuttle,
+/turf/open/floor/plating,
+/area/ship/medical/surgery)
+"Jw" = (
+/obj/machinery/power/smes/shuttle/precharged{
+ dir = 4
},
-/turf/open/floor/plasteel/white,
-/area/ship/hallway/fore)
-"Ln" = (
/obj/structure/cable{
- icon_state = "6-8"
+ icon_state = "0-8"
},
-/obj/effect/turf_decal/arrows/red{
- dir = 8
+/obj/machinery/door/poddoor{
+ dir = 8;
+ id = "traumaenginel"
},
-/obj/effect/turf_decal/spline/fancy/opaque/black{
+/obj/structure/window/reinforced{
dir = 1
},
-/obj/effect/turf_decal/spline/fancy/opaque/black/corner,
-/turf/open/floor/plasteel/patterned/grid,
-/area/ship/storage)
-"Lt" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
+/obj/structure/window/reinforced{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
+/turf/open/floor/plating,
+/area/ship/maintenance/port)
+"JA" = (
+/obj/machinery/power/smes/engineering{
+ charge = 1e+006
},
/obj/structure/cable{
- icon_state = "4-8"
+ icon_state = "0-8"
},
/turf/open/floor/plating,
/area/ship/maintenance/starboard)
-"Lu" = (
+"JC" = (
+/obj/machinery/power/shieldwallgen/atmos/roundstart{
+ dir = 8;
+ id = "traumashield2"
+ },
+/obj/effect/turf_decal/trimline/opaque/red/filled/warning,
+/obj/effect/turf_decal/trimline/opaque/red/filled/warning{
+ dir = 1
+ },
/obj/structure/cable{
- icon_state = "4-8"
+ icon_state = "0-2"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
+/obj/machinery/door/poddoor{
+ id = "traumaramp"
},
-/obj/effect/turf_decal/siding/white,
-/obj/effect/turf_decal/siding/white{
+/obj/machinery/door/firedoor/border_only{
dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
+/turf/open/floor/engine,
+/area/ship/storage/eva)
+"JQ" = (
+/obj/structure/sign/warning/gasmask{
+ pixel_y = 32
+ },
+/obj/item/stack/marker_beacon/thirty,
+/obj/item/stack/marker_beacon/thirty,
+/obj/item/stack/marker_beacon/thirty,
+/obj/item/stack/marker_beacon/thirty,
+/obj/structure/rack,
+/obj/item/pickaxe/emergency{
+ desc = "For extracting yourself from rough landings, and getting to the even rougher ones";
+ name = "Medical Retrieval Tool"
},
-/turf/open/floor/vault,
+/obj/item/pickaxe/emergency{
+ desc = "For extracting yourself from rough landings, and getting to the even rougher ones";
+ name = "Medical Retrieval Tool"
+ },
+/obj/item/pickaxe/emergency{
+ desc = "For extracting yourself from rough landings, and getting to the even rougher ones";
+ name = "Medical Retrieval Tool"
+ },
+/obj/effect/turf_decal/industrial/outline/red,
+/obj/machinery/firealarm/directional/east,
+/turf/open/floor/plasteel/tech/grid,
+/area/ship/storage/eva)
+"Kc" = (
+/obj/structure/sign/departments/medbay/alt,
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/ship/crew)
+"Ki" = (
+/obj/effect/turf_decal/industrial/outline/red,
+/obj/machinery/vending/medical,
+/turf/open/floor/plasteel/tech,
/area/ship/storage)
-"Ml" = (
-/obj/docking_port/stationary{
- dir = 8;
- dwidth = 8;
- height = 15;
- width = 30
+"Kk" = (
+/obj/machinery/power/terminal{
+ dir = 8
},
-/turf/template_noop,
-/area/template_noop)
-"Mx" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 1
+/obj/structure/cable{
+ icon_state = "0-4"
},
-/obj/machinery/firealarm/directional/west{
- pixel_y = 6
+/obj/machinery/light/small/directional/south,
+/obj/effect/turf_decal/industrial/warning{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/ship/maintenance/port)
+"Kp" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 4
+ },
+/obj/machinery/power/terminal{
+ dir = 8
},
/obj/structure/cable{
- icon_state = "1-2"
+ icon_state = "0-4"
+ },
+/obj/effect/turf_decal/industrial/warning{
+ dir = 8
},
-/obj/effect/turf_decal/industrial/warning,
/obj/machinery/button/door{
- dir = 4;
id = "traumaenginer";
name = "Engine Shutter Control";
- pixel_x = -22;
- pixel_y = -8
+ pixel_x = -5;
+ pixel_y = -18;
+ dir = 1
},
/turf/open/floor/plating,
/area/ship/maintenance/starboard)
-"MK" = (
-/obj/effect/turf_decal/industrial/outline/red,
-/obj/structure/railing/corner,
-/obj/machinery/vending/medical,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/storage)
-"MN" = (
-/obj/machinery/power/port_gen/pacman,
-/obj/structure/cable/yellow{
- icon_state = "0-2"
+"Kv" = (
+/obj/structure/closet/secure_closet{
+ icon_state = "med_secure";
+ name = "medical intern's locker"
},
-/obj/effect/turf_decal/industrial/hatch/yellow,
-/obj/machinery/light/small/directional/north,
-/obj/item/stack/sheet/mineral/plasma/twenty,
-/turf/open/floor/plating,
-/area/ship/maintenance/starboard)
-"MP" = (
+/obj/item/clothing/glasses/hud/health,
+/obj/item/clothing/glasses/hud/health,
+/obj/item/clothing/glasses/hud/health,
+/obj/item/healthanalyzer,
+/obj/item/healthanalyzer,
+/obj/item/healthanalyzer,
+/obj/item/storage/backpack/satchel/med,
+/obj/item/storage/backpack/satchel/med,
+/obj/item/storage/backpack/satchel/med,
+/obj/item/clothing/shoes/combat,
+/obj/item/clothing/shoes/combat,
+/obj/item/clothing/shoes/combat,
+/obj/structure/extinguisher_cabinet/directional/north,
+/obj/effect/turf_decal/siding/wood{
+ dir = 1;
+ color = "#332521"
+ },
+/obj/item/clothing/under/syndicate/cybersun,
+/obj/item/clothing/under/syndicate/cybersun,
+/obj/item/clothing/under/syndicate/cybersun,
+/turf/open/floor/wood/ebony,
+/area/ship/crew)
+"KB" = (
+/obj/effect/turf_decal/trimline/opaque/red/filled/line,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 1
+ },
+/obj/machinery/light/directional/south,
+/turf/open/floor/plasteel/white,
+/area/ship/hallway/central)
+"KS" = (
/obj/machinery/power/port_gen/pacman,
/obj/structure/cable/yellow{
- icon_state = "0-2"
+ icon_state = "0-8"
},
/obj/effect/turf_decal/industrial/hatch/yellow,
-/obj/machinery/light/small/directional/north,
/obj/item/stack/sheet/mineral/plasma/twenty,
/turf/open/floor/plating,
/area/ship/maintenance/port)
-"MW" = (
-/obj/structure/table,
-/obj/item/radio/intercom/directional/south,
-/obj/machinery/cell_charger,
-/turf/open/floor/plasteel/grimy,
+"KU" = (
+/obj/structure/bed{
+ dir = 8
+ },
+/obj/structure/curtain/bounty,
+/obj/item/bedsheet/blue{
+ dir = 8
+ },
+/turf/open/floor/carpet/cyan,
/area/ship/crew)
-"MY" = (
+"KW" = (
+/obj/structure/sign/departments/medbay/alt,
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/ship/cargo)
+"KZ" = (
+/obj/machinery/suit_storage_unit/inherit,
+/obj/effect/turf_decal/industrial/hatch/red,
+/obj/structure/sign/warning/nosmoking{
+ pixel_x = 32
+ },
+/obj/item/clothing/suit/space/hardsuit/syndi/cybersun/paramed,
+/obj/item/clothing/mask/gas/sechailer,
+/obj/item/tank/internals/oxygen/red,
+/turf/open/floor/plasteel/tech,
+/area/ship/storage/eva)
+"Le" = (
+/obj/effect/turf_decal/trimline/opaque/red/filled/line{
+ dir = 1
+ },
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 1
},
/obj/structure/cable{
icon_state = "4-8"
},
-/turf/open/floor/carpet/nanoweave/red,
-/area/ship/bridge)
-"Nn" = (
-/turf/closed/wall/mineral/titanium/nodiagonal,
-/area/ship/bridge)
-"Nq" = (
-/obj/item/clothing/gloves/color/latex/nitrile,
-/obj/item/clothing/suit/toggle/labcoat/cmo,
-/obj/item/clothing/shoes/sneakers/white,
-/obj/item/storage/belt/medical,
-/obj/item/clothing/neck/tie/light_blue,
-/obj/item/healthanalyzer/advanced,
-/obj/item/hypospray/mkii/CMO,
-/obj/structure/closet/secure_closet/wall{
- dir = 1;
- icon_state = "solgov_wall";
- name = "chief medical officer's closet";
- pixel_y = -28;
- req_access_txt = "40"
+/obj/machinery/light/directional/north,
+/turf/open/floor/plasteel/white,
+/area/ship/hallway/central)
+"Lh" = (
+/obj/effect/turf_decal/trimline/opaque/red/filled/warning{
+ dir = 1
},
-/obj/item/storage/backpack/satchel/med,
-/obj/item/gun/energy/e_gun/mini,
-/obj/item/defibrillator/compact/loaded,
-/obj/item/gun/syringe,
-/obj/item/reagent_containers/glass/bottle/sodium_thiopental,
-/obj/item/clothing/glasses/hud/health/night,
-/obj/item/clothing/head/beret/cmo,
-/turf/open/floor/carpet/nanoweave,
+/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2,
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/white,
+/area/ship/hallway/central)
+"Ln" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/plasteel/tech/grid,
+/area/ship/storage/eva)
+"Lr" = (
+/obj/machinery/modular_computer/console/preset/command,
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/carpet/cyan,
/area/ship/bridge)
-"Ny" = (
-/obj/machinery/power/smes/shuttle/precharged{
+"Ls" = (
+/obj/structure/table/reinforced,
+/obj/structure/window/reinforced{
dir = 1
},
-/obj/structure/window/reinforced,
-/obj/machinery/door/window/northleft,
-/obj/structure/cable{
- icon_state = "0-2"
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/computer/med_data/laptop{
+ dir = 4
},
-/obj/machinery/door/poddoor{
- id = "traumaenginel"
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
},
+/obj/effect/turf_decal/industrial/hatch/red,
/turf/open/floor/plating,
-/area/ship/maintenance/port)
-"Ob" = (
-/obj/machinery/power/smes/shuttle/precharged{
+/area/ship/cargo)
+"LH" = (
+/obj/effect/turf_decal/trimline/opaque/red/filled/line{
dir = 1
},
-/obj/structure/window/reinforced,
-/obj/machinery/door/window/northright,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/machinery/door/poddoor{
- id = "traumaenginer"
- },
-/turf/open/floor/plating,
-/area/ship/maintenance/starboard)
-"OA" = (
-/obj/machinery/firealarm/directional/west,
-/obj/machinery/airalarm/directional/south,
-/obj/effect/turf_decal/industrial/hatch/red,
-/obj/structure/closet/crate/freezer/surplus_limbs/organs,
-/turf/open/floor/plasteel/tech,
-/area/ship/medical)
-"OB" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
},
@@ -1810,618 +2224,540 @@
/obj/structure/cable{
icon_state = "4-8"
},
-/obj/machinery/light/small/directional/north,
-/turf/open/floor/plating,
-/area/ship/maintenance/starboard)
-"OK" = (
-/turf/closed/wall/mineral/titanium/nodiagonal,
-/area/ship/storage)
-"Po" = (
-/obj/machinery/holopad/emergency/medical,
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 1
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/medical)
-"Pp" = (
-/obj/effect/turf_decal/corner/opaque/white/mono,
-/turf/open/floor/plasteel/white,
-/area/ship/medical)
-"Pr" = (
-/obj/effect/turf_decal/trimline/opaque/red/filled/warning{
+/obj/machinery/door/firedoor/border_only{
dir = 8
},
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+/obj/machinery/door/firedoor/border_only{
dir = 4
},
-/obj/structure/cable{
- icon_state = "2-8"
+/obj/structure/sign/poster/official/cleanliness{
+ pixel_y = 32
},
+/turf/open/floor/plasteel/white,
+/area/ship/hallway/central)
+"LJ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/structure/cable{
- icon_state = "1-8"
+ icon_state = "0-2"
},
-/turf/open/floor/plasteel/white,
-/area/ship/hallway/fore)
-"Ps" = (
-/obj/structure/closet/emcloset/wall{
+/obj/machinery/power/apc/auto_name/directional/west,
+/obj/machinery/light_switch{
dir = 4;
- pixel_x = -28
+ pixel_x = -20;
+ pixel_y = -11
},
-/obj/effect/turf_decal/number/two{
- dir = 4
+/turf/open/floor/plasteel/freezer,
+/area/ship/crew/toilet)
+"Mb" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
},
-/turf/open/floor/plating,
-/area/ship/maintenance/starboard)
-"PG" = (
-/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/effect/turf_decal/siding/white,
-/obj/effect/turf_decal/siding/white{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/vault,
-/area/ship/storage)
-"PH" = (
-/obj/effect/spawner/structure/window/shuttle,
-/obj/machinery/door/poddoor/preopen{
- id = "traumawindows";
- name = "Window Blast Door"
- },
+/obj/structure/closet/secure_closet/medical2,
+/obj/item/reagent_containers/glass/bottle/morphine,
+/obj/item/reagent_containers/glass/bottle/morphine,
+/obj/machinery/firealarm/directional/south,
/turf/open/floor/plating,
-/area/ship/crew)
-"PL" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/on,
-/obj/structure/catwalk/over,
+/area/ship/maintenance/starboard)
+"MW" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile/shuttle,
+/obj/structure/curtain/cloth,
/turf/open/floor/plating,
-/area/ship/external)
-"Qe" = (
-/obj/structure/toilet,
-/obj/structure/window/reinforced/tinted/frosted{
- dir = 4
+/area/ship/medical)
+"Nn" = (
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/ship/bridge)
+"Nz" = (
+/obj/machinery/shower{
+ dir = 8;
+ pixel_y = 15
},
-/obj/machinery/door/window/survival_pod,
/obj/structure/curtain,
+/obj/structure/window/reinforced/tinted/frosted,
+/obj/machinery/door/window/survival_pod{
+ dir = 8
+ },
+/obj/item/soap,
/turf/open/floor/plasteel/freezer,
/area/ship/crew/toilet)
-"Qp" = (
-/obj/machinery/vending/snack/random,
-/obj/effect/turf_decal/trimline/opaque/red/filled/line,
-/obj/structure/sign/poster/official/cleanliness{
- pixel_x = -32
+"Of" = (
+/obj/structure/cable{
+ icon_state = "2-5"
},
-/turf/open/floor/plasteel,
-/area/ship/cargo)
-"Qq" = (
-/turf/closed/wall/mineral/titanium,
-/area/ship/medical)
-"QE" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
+/obj/structure/cable{
+ icon_state = "2-9"
},
+/turf/open/floor/plasteel/stairs/medium{
+ dir = 1
+ },
+/area/ship/storage/eva)
+"OF" = (
+/obj/effect/landmark/start/paramedic,
/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"
+ icon_state = "0-8"
},
-/obj/effect/turf_decal/siding/white/end{
- dir = 4
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = 22
},
-/turf/open/floor/vault,
+/turf/open/floor/plasteel/patterned/brushed,
+/area/ship/crew)
+"OK" = (
+/turf/closed/wall/mineral/titanium/nodiagonal,
/area/ship/storage)
-"QP" = (
-/obj/effect/turf_decal/trimline/opaque/red/filled/warning{
- dir = 4
- },
+"OM" = (
/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/ship/medical)
-"QQ" = (
-/obj/effect/turf_decal/trimline/opaque/red/filled/warning{
- dir = 4
+/obj/structure/cable{
+ icon_state = "2-8"
},
-/obj/effect/turf_decal/trimline/opaque/red/filled/warning{
- dir = 8
+/obj/structure/cable{
+ icon_state = "2-4"
},
-/obj/machinery/door/poddoor{
- dir = 8;
- id = "traumaramp"
+/obj/effect/turf_decal/trimline/opaque/red/filled/line{
+ dir = 1
},
/obj/machinery/door/firedoor/border_only{
dir = 8
},
-/turf/open/floor/engine,
-/area/ship/storage)
-"QU" = (
-/obj/effect/landmark/start/paramedic,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/power/apc/auto_name/directional/west,
-/obj/structure/cable{
- icon_state = "0-2"
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
},
-/turf/open/floor/plasteel,
-/area/ship/crew)
-"QY" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 1
+/turf/open/floor/plasteel/white,
+/area/ship/hallway/central)
+"OZ" = (
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/ship/storage/eva)
+"Pg" = (
+/obj/structure/table/glass,
+/obj/item/clothing/mask/surgical{
+ pixel_y = 6
},
-/obj/machinery/airalarm/directional/east,
-/obj/machinery/power/terminal,
-/obj/structure/cable,
-/obj/effect/turf_decal/industrial/warning,
-/turf/open/floor/plating,
-/area/ship/maintenance/starboard)
-"Rh" = (
-/obj/machinery/door/airlock/maintenance_hatch{
- dir = 4;
- name = "Port Engines"
+/obj/item/storage/backpack/duffelbag/med/surgery{
+ pixel_y = 10
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
+/obj/item/clothing/suit/apron/surgical{
+ pixel_y = 6
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
+/obj/item/reagent_containers/spray/cleaner{
+ pixel_x = 5;
+ pixel_y = -1
},
+/obj/item/reagent_containers/medigel/sterilizine,
+/obj/machinery/light/directional/south,
+/turf/open/floor/plasteel/tech,
+/area/ship/medical/surgery)
+"Pm" = (
/obj/structure/cable{
icon_state = "4-8"
},
-/obj/machinery/door/firedoor/border_only{
- dir = 8
- },
-/obj/machinery/door/firedoor/border_only{
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
},
-/turf/open/floor/plasteel,
-/area/ship/cargo)
-"Rs" = (
-/obj/effect/turf_decal/trimline/opaque/red/filled/warning{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/cable{
- icon_state = "1-2"
+/obj/structure/extinguisher_cabinet/directional/north,
+/obj/effect/turf_decal/trimline/opaque/red/filled/line{
+ dir = 1
},
/turf/open/floor/plasteel/white,
-/area/ship/medical)
-"RB" = (
-/obj/structure/window/reinforced{
+/area/ship/hallway/central)
+"Pp" = (
+/obj/machinery/door/window/brigdoor/southleft{
+ dir = 8;
+ req_access_txt = "5"
+ },
+/obj/item/storage/belt/medical/surgery,
+/obj/item/storage/belt/medical/paramedic,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
},
-/obj/structure/closet/crate/freezer/blood,
-/obj/item/reagent_containers/blood/lizard,
-/obj/item/reagent_containers/blood/lizard,
-/obj/item/reagent_containers/blood/squid,
-/obj/item/reagent_containers/blood/universal,
-/obj/machinery/smartfridge/bloodbank/preloaded{
- density = 0;
- pixel_y = 32
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
},
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/medical)
-"RW" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/cable{
- icon_state = "1-4"
+/obj/structure/closet/secure_closet/wall{
+ icon_state = "sec_wall";
+ name = "equipment locker";
+ req_access_txt = "5";
+ pixel_y = 28
},
-/obj/effect/turf_decal/corner/opaque/white/mono,
-/turf/open/floor/plasteel/white,
-/area/ship/medical)
-"Sc" = (
-/obj/structure/chair,
-/obj/effect/landmark/start/assistant,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+/obj/item/healthanalyzer/advanced,
+/obj/item/healthanalyzer/advanced,
+/obj/item/healthanalyzer/advanced,
+/obj/item/clothing/glasses/hud/health/sunglasses,
+/obj/item/clothing/glasses/hud/health/sunglasses,
+/obj/item/clothing/glasses/hud/health/sunglasses,
+/obj/item/storage/belt/medical/paramedic,
+/obj/item/clothing/gloves/color/latex/nitrile/evil,
+/obj/item/clothing/gloves/color/latex/nitrile/evil,
+/obj/item/clothing/gloves/color/latex/nitrile/evil,
+/turf/open/floor/plasteel/tech,
+/area/ship/crew)
+"Pz" = (
+/obj/machinery/atmospherics/components/unary/tank/air{
+ piping_layer = 2;
+ dir = 8
+ },
+/obj/effect/turf_decal/industrial/hatch/yellow,
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/plating,
+/area/ship/maintenance/port)
+"PF" = (
+/obj/machinery/power/shuttle/engine/electric{
dir = 4
},
-/turf/open/floor/plasteel/grimy,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/ship/maintenance/starboard)
+"PH" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "traumawindows";
+ name = "Window Blast Door"
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile/shuttle,
+/turf/open/floor/plating,
/area/ship/crew)
-"Sx" = (
+"Qq" = (
+/turf/closed/wall/mineral/titanium,
+/area/ship/medical)
+"Qw" = (
/obj/structure/cable{
- icon_state = "5-8"
+ icon_state = "1-6"
},
/obj/machinery/button/door{
- dir = 1;
+ dir = 4;
id = "traumaramp";
name = "Emergency Ramp";
- pixel_x = -4;
- pixel_y = -26
+ pixel_x = -26;
+ pixel_y = -4
},
/obj/machinery/button/shieldwallgen{
- dir = 1;
+ dir = 4;
id = "traumashield2";
name = "Emergency Ramp Shield";
- pixel_x = 6;
- pixel_y = -23
+ pixel_x = -23;
+ pixel_y = 6
},
/obj/effect/turf_decal/arrows/red{
- dir = 8
- },
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 4
+ dir = 1
},
+/obj/effect/turf_decal/spline/fancy/opaque/black,
/turf/open/floor/plasteel/patterned/grid,
-/area/ship/storage)
-"Sy" = (
-/obj/machinery/stasis,
-/obj/effect/turf_decal/industrial/outline/red,
-/obj/machinery/smartfridge/organ{
- density = 0;
- pixel_y = 32
- },
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/medical)
-"SH" = (
-/obj/machinery/light/directional/east,
-/obj/effect/turf_decal/industrial/outline/red,
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/turf/open/floor/plasteel/tech,
-/area/ship/storage)
-"SI" = (
-/obj/structure/bed,
-/obj/structure/curtain/bounty,
-/obj/item/bedsheet/cmo,
-/turf/open/floor/plasteel/dark,
-/area/ship/bridge)
-"SP" = (
-/obj/machinery/shower{
- pixel_y = 15
- },
-/obj/structure/curtain,
-/obj/structure/window/reinforced/tinted/frosted{
- dir = 4
- },
-/obj/machinery/door/window/survival_pod,
-/obj/item/soap,
-/turf/open/floor/plasteel/freezer,
-/area/ship/crew/toilet)
-"SR" = (
-/obj/machinery/airalarm/directional/north,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
-/obj/effect/turf_decal/siding/white{
+/area/ship/storage/eva)
+"QF" = (
+/obj/structure/chair/office/light{
dir = 8
},
-/obj/effect/turf_decal/siding/white{
- dir = 4
- },
-/turf/open/floor/vault,
-/area/ship/storage)
-"Ti" = (
-/turf/closed/wall/mineral/titanium,
-/area/ship/maintenance/starboard)
-"Tj" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
-/turf/open/floor/carpet/nanoweave/red,
-/area/ship/bridge)
-"Tq" = (
-/obj/structure/chair/office/light,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
+ dir = 6
},
-/turf/open/floor/carpet/nanoweave/beige,
-/area/ship/medical)
-"Tt" = (
-/obj/machinery/light/directional/north,
-/obj/structure/filingcabinet/medical,
-/obj/machinery/airalarm/directional/west,
-/turf/open/floor/carpet/nanoweave/beige,
-/area/ship/medical)
-"Tx" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
+/turf/open/floor/carpet/cyan,
+/area/ship/hallway/central)
+"QG" = (
+/obj/machinery/power/smes/shuttle/precharged{
+ dir = 4
},
/obj/structure/cable{
- icon_state = "1-8"
+ icon_state = "0-8"
},
-/obj/structure/cable{
- icon_state = "1-2"
+/obj/machinery/door/poddoor{
+ dir = 8;
+ id = "traumaenginer"
+ },
+/obj/structure/window/reinforced{
+ dir = 8
},
-/obj/structure/closet/secure_closet/medical2,
-/obj/item/reagent_containers/glass/bottle/morphine,
-/obj/item/reagent_containers/glass/bottle/morphine,
/turf/open/floor/plating,
/area/ship/maintenance/starboard)
-"TI" = (
-/obj/machinery/vending/wardrobe/medi_wardrobe,
-/turf/open/floor/carpet/cyan,
-/area/ship/crew)
-"TO" = (
-/obj/structure/cable{
- icon_state = "0-8"
+"Ra" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "traumawindows";
+ name = "Window Blast Door"
},
-/obj/machinery/power/shieldwallgen/atmos/roundstart{
- dir = 8;
- id = "traumashield"
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile/shuttle,
+/turf/open/floor/plating,
+/area/ship/hallway/central)
+"Rb" = (
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/obj/machinery/door/firedoor/border_only,
-/obj/effect/turf_decal/industrial/warning,
-/obj/effect/turf_decal/industrial/warning{
+/obj/effect/turf_decal/siding/white{
dir = 1
},
-/obj/machinery/door/poddoor/shutters{
- id = "traumalobby";
- name = "Lobby"
+/obj/effect/turf_decal/siding/white/corner{
+ dir = 8
},
-/turf/open/floor/engine,
-/area/ship/cargo)
-"TR" = (
-/obj/structure/chair,
-/obj/effect/landmark/start/assistant,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
+/obj/effect/turf_decal/siding/white/corner,
+/obj/structure/cable{
+ icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
- },
-/turf/open/floor/plasteel/grimy,
-/area/ship/crew)
-"Uc" = (
-/turf/closed/wall/mineral/titanium,
-/area/ship/storage)
-"Ug" = (
-/obj/effect/turf_decal/trimline/opaque/red/filled/warning{
- dir = 4
+ dir = 10
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
+ dir = 6
},
-/obj/structure/cable{
- icon_state = "4-8"
+/turf/open/floor/plasteel/tech/grid,
+/area/ship/storage/eva)
+"Rl" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 1
},
-/turf/open/floor/plasteel/white,
-/area/ship/hallway/fore)
-"UC" = (
-/obj/machinery/light/directional/east,
-/obj/effect/turf_decal/trimline/opaque/red/filled/line{
+/obj/effect/turf_decal/spline/fancy/opaque/black{
dir = 4
},
-/turf/open/floor/plasteel/white,
-/area/ship/hallway/fore)
-"UG" = (
-/turf/template_noop,
-/area/template_noop)
-"UJ" = (
-/obj/item/clothing/suit/armor/hos/trenchcoat,
-/obj/item/areaeditor/shuttle,
-/obj/item/reagent_containers/food/drinks/flask/gold,
-/obj/item/reagent_containers/food/drinks/bottle/whiskey,
-/obj/item/megaphone/command,
-/obj/item/clothing/glasses/sunglasses,
-/obj/item/clothing/shoes/sneakers/white,
-/obj/structure/closet/secure_closet/wall{
- dir = 1;
- icon_state = "solgov_wall";
- name = "captain's closet";
- pixel_y = -28;
- req_access_txt = "20"
- },
-/obj/item/storage/backpack/messenger/com,
-/obj/item/gun/ballistic/revolver/detective{
- name = "\improper Colt Navy Special"
- },
-/obj/item/clothing/head/beret/durathread{
- name = "captain beret"
+/obj/effect/turf_decal/spline/fancy/opaque/black{
+ dir = 8
},
-/turf/open/floor/carpet/nanoweave,
-/area/ship/bridge)
-"UO" = (
-/turf/closed/wall/mineral/titanium/nodiagonal,
-/area/ship/maintenance/starboard)
-"UR" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel/grimy,
-/area/ship/crew)
-"UX" = (
-/obj/item/ammo_box/magazine/co9mm{
- ammo_type = /obj/item/ammo_casing/c9mm/rubber;
- name = "Commander magazine (Rubbershot 9mm)"
- },
-/obj/item/gun/ballistic/automatic/pistol/commander/no_mag,
-/obj/item/gun/ballistic/automatic/pistol/commander/no_mag,
-/obj/item/ammo_box/magazine/co9mm{
- ammo_type = /obj/item/ammo_casing/c9mm/rubber;
- name = "Commander magazine (Rubbershot 9mm)"
- },
-/obj/item/ammo_box/magazine/co9mm{
- ammo_type = /obj/item/ammo_casing/c9mm/rubber;
- name = "Commander magazine (Rubbershot 9mm)"
- },
-/obj/item/ammo_box/magazine/co9mm{
- ammo_type = /obj/item/ammo_casing/c9mm/ap;
- name = "Commander magazine (AP 9mm)"
+ icon_state = "1-4"
},
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
-/obj/structure/closet/secure_closet/wall{
- dir = 4;
- icon_state = "sec_wall";
- name = "firearms locker";
- pixel_x = -28;
- req_access_txt = "5"
+/turf/open/floor/plasteel/patterned/brushed,
+/area/ship/storage)
+"RA" = (
+/obj/structure/chair{
+ dir = 1
},
-/obj/item/gun/ballistic/automatic/pistol/commander/no_mag,
-/obj/machinery/light/directional/north,
-/obj/item/ammo_box/magazine/co9mm{
- ammo_type = /obj/item/ammo_casing/c9mm/ap;
- name = "Commander magazine (AP 9mm)"
+/obj/machinery/firealarm/directional/south,
+/turf/open/floor/plasteel/white,
+/area/ship/cargo)
+"Sy" = (
+/obj/effect/turf_decal/industrial/outline/red,
+/obj/item/storage/firstaid/brute,
+/obj/item/storage/firstaid/fire,
+/obj/item/storage/firstaid/o2,
+/obj/item/storage/firstaid/toxin,
+/obj/item/storage/box/medipens,
+/obj/item/storage/box/syringes,
+/obj/item/storage/firstaid/regular,
+/obj/item/storage/firstaid/regular,
+/obj/structure/closet/secure_closet{
+ icon_state = "med";
+ name = "medicine locker"
},
-/obj/item/ammo_box/magazine/co9mm{
- ammo_type = /obj/item/ammo_casing/c9mm/ap;
- name = "Commander magazine (AP 9mm)"
+/turf/open/floor/plasteel/tech,
+/area/ship/storage)
+"SR" = (
+/obj/effect/turf_decal/trimline/opaque/red/filled/line,
+/obj/structure/sign/poster/official/moth/epi{
+ pixel_y = -32
},
-/turf/open/floor/plasteel/dark,
-/area/ship/crew)
-"Vq" = (
+/turf/open/floor/plasteel/white,
+/area/ship/hallway/central)
+"Td" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 4
+ },
/obj/structure/cable{
icon_state = "1-2"
},
-/obj/machinery/door/airlock/medical/glass{
- id_tag = "lobbydoors";
- name = "Sickbay"
- },
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/door/firedoor/border_only{
- dir = 1
- },
-/obj/effect/turf_decal/corner/opaque/white/mono,
/turf/open/floor/plasteel/white,
/area/ship/cargo)
-"Vs" = (
-/obj/item/radio/intercom/wideband/directional/south,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
- },
-/turf/open/floor/carpet/nanoweave/red,
-/area/ship/bridge)
-"Vu" = (
-/obj/structure/table/glass,
-/obj/item/reagent_containers/glass/bottle/formaldehyde{
- pixel_x = 5
- },
-/obj/item/reagent_containers/glass/bottle/formaldehyde{
- pixel_x = -5
- },
-/obj/item/reagent_containers/glass/bottle/epinephrine{
- pixel_x = -5;
- pixel_y = 8
- },
-/obj/item/reagent_containers/glass/bottle/charcoal{
- pixel_x = 5;
- pixel_y = 8
- },
-/obj/item/reagent_containers/syringe,
-/obj/item/radio/intercom/directional/north,
-/turf/open/floor/plasteel/tech/grid,
-/area/ship/medical)
-"VM" = (
-/obj/machinery/power/smes/shuttle/precharged{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
+"Tg" = (
+/obj/machinery/power/shuttle/engine/electric{
dir = 4
},
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/machinery/door/poddoor{
- id = "traumaenginer"
+/obj/structure/cable{
+ icon_state = "0-4"
},
/turf/open/floor/plating,
+/area/ship/maintenance/port)
+"Ti" = (
+/turf/closed/wall/mineral/titanium,
/area/ship/maintenance/starboard)
-"VY" = (
-/obj/machinery/light/small/directional/south,
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 4
+"Tq" = (
+/obj/structure/sign/warning/nosmoking{
+ pixel_x = 32
+ },
+/obj/machinery/light/directional/south,
+/turf/open/floor/plasteel/mono/white,
+/area/ship/hallway/central)
+"Tr" = (
+/obj/effect/turf_decal/trimline/opaque/red/filled/line{
+ dir = 1
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
},
-/turf/open/floor/plasteel/freezer,
-/area/ship/crew/toilet)
-"Wc" = (
-/obj/machinery/door/airlock/command{
- name = "Bridge"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/door/firedoor/border_only{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
},
/obj/structure/cable{
- icon_state = "1-2"
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/ship/hallway/central)
+"TA" = (
+/obj/machinery/computer/cargo/express{
+ dir = 8
},
/turf/open/floor/plasteel/dark,
/area/ship/bridge)
-"Wd" = (
-/obj/effect/turf_decal/trimline/opaque/red/filled/warning{
- dir = 4
+"TB" = (
+/obj/effect/turf_decal/trimline/opaque/red/filled/line{
+ dir = 1
},
-/turf/open/floor/plasteel/white,
-/area/ship/medical)
-"Wm" = (
-/obj/effect/turf_decal/trimline/opaque/red/filled/warning{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
},
/obj/structure/cable{
- icon_state = "1-2"
+ icon_state = "4-8"
},
+/obj/structure/extinguisher_cabinet/directional/north,
/turf/open/floor/plasteel/white,
-/area/ship/medical)
-"Xb" = (
+/area/ship/hallway/central)
+"TH" = (
+/obj/effect/turf_decal/industrial/outline/red,
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/machinery/light/directional/south,
+/obj/structure/extinguisher_cabinet/directional/west,
+/turf/open/floor/plasteel/tech,
+/area/ship/storage/eva)
+"TL" = (
+/obj/effect/turf_decal/industrial/outline/red,
+/obj/structure/closet/crate/bin,
+/obj/machinery/light/directional/north,
/obj/structure/cable{
- icon_state = "1-4"
+ icon_state = "0-4"
},
-/obj/structure/cable{
- icon_state = "4-8"
+/obj/machinery/power/apc/auto_name/directional/west,
+/obj/machinery/light_switch{
+ dir = 4;
+ pixel_x = -20;
+ pixel_y = -11
+ },
+/turf/open/floor/plasteel/tech,
+/area/ship/medical)
+"TZ" = (
+/obj/structure/filingcabinet/medical,
+/obj/machinery/airalarm/directional/east,
+/obj/machinery/light/directional/north,
+/turf/open/floor/carpet/cyan,
+/area/ship/hallway/central)
+"Uc" = (
+/turf/closed/wall/mineral/titanium,
+/area/ship/storage)
+"Ug" = (
+/obj/effect/turf_decal/trimline/opaque/red/filled/line,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 1
},
+/turf/open/floor/plasteel/white,
+/area/ship/hallway/central)
+"Uh" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
+ dir = 5
},
/obj/structure/cable{
- icon_state = "2-4"
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
+/turf/open/floor/carpet/cyan,
+/area/ship/bridge)
+"Uu" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/cable{
+ icon_state = "1-2"
},
+/obj/effect/turf_decal/industrial/warning,
/turf/open/floor/plating,
/area/ship/maintenance/starboard)
-"Xh" = (
-/obj/machinery/door/airlock/medical{
+"Uz" = (
+/obj/effect/turf_decal/siding/white/end{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 4
+ },
+/obj/machinery/power/apc/auto_name/directional/west,
+/obj/machinery/light_switch{
dir = 4;
- name = "Restroom"
+ pixel_x = -20;
+ pixel_y = -11
},
+/turf/open/floor/plasteel/tech/grid,
+/area/ship/storage/eva)
+"UD" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
+ dir = 6
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 8
+ },
+/turf/open/floor/plasteel/mono/white,
+/area/ship/hallway/central)
+"UG" = (
+/turf/template_noop,
+/area/template_noop)
+"UH" = (
+/obj/machinery/power/smes/engineering{
+ charge = 1e+006
},
/obj/structure/cable{
- icon_state = "4-8"
+ icon_state = "0-8"
},
-/obj/machinery/door/firedoor/border_only{
- dir = 8
+/obj/effect/turf_decal/industrial/hatch/yellow,
+/turf/open/floor/plating,
+/area/ship/maintenance/port)
+"UK" = (
+/obj/structure/cable{
+ icon_state = "1-10"
},
-/obj/machinery/door/firedoor/border_only{
+/obj/effect/turf_decal/arrows/red{
+ dir = 1
+ },
+/obj/effect/turf_decal/spline/fancy/opaque/black{
dir = 4
},
-/turf/open/floor/plasteel/showroomfloor,
-/area/ship/crew/toilet)
-"Xj" = (
-/obj/machinery/door/airlock/maintenance_hatch{
+/obj/effect/turf_decal/spline/fancy/opaque/black/corner{
+ dir = 8
+ },
+/turf/open/floor/plasteel/patterned/grid,
+/area/ship/storage/eva)
+"UN" = (
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/west,
+/obj/machinery/light_switch{
dir = 4;
- name = "Starboard Engines"
+ pixel_x = -20;
+ pixel_y = -11
},
+/turf/open/floor/carpet/cyan,
+/area/ship/bridge)
+"UO" = (
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/ship/maintenance/starboard)
+"UV" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
},
@@ -2431,152 +2767,233 @@
/obj/structure/cable{
icon_state = "4-8"
},
-/obj/machinery/door/firedoor/border_only{
+/obj/effect/turf_decal/trimline/opaque/red/filled/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/ship/hallway/central)
+"UX" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
dir = 8
},
-/obj/machinery/door/firedoor/border_only{
- dir = 4
+/obj/effect/turf_decal/siding/white{
+ dir = 1
},
-/turf/open/floor/plasteel,
-/area/ship/cargo)
-"Xs" = (
-/obj/machinery/light/small/directional/south{
- pixel_x = 17
+/obj/effect/turf_decal/siding/white,
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/plasteel/tech/grid,
+/area/ship/storage/eva)
+"VJ" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "traumawindows";
+ name = "Window Blast Door"
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile/shuttle,
+/turf/open/floor/plating,
+/area/ship/science)
+"WB" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/plasteel/freezer,
+/area/ship/crew/toilet)
+"WJ" = (
+/obj/structure/bed{
+ dir = 8
},
-/obj/item/radio/intercom/directional/south,
-/turf/open/floor/carpet/nanoweave,
-/area/ship/bridge)
-"XW" = (
-/obj/structure/bed,
/obj/structure/curtain/bounty,
-/obj/item/bedsheet/blue,
-/turf/open/floor/carpet/cyan,
-/area/ship/crew)
-"XX" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+/obj/item/bedsheet/syndie{
+ dir = 8
+ },
+/obj/machinery/airalarm/directional/north,
+/turf/open/floor/plasteel/dark,
+/area/ship/bridge)
+"WP" = (
+/obj/effect/turf_decal/industrial/outline/red,
+/obj/structure/railing/corner{
+ dir = 8
+ },
+/obj/machinery/airalarm/directional/east,
+/obj/structure/rack,
+/obj/item/tank/internals/plasmaman/full,
+/obj/item/tank/internals/plasmaman/full,
+/obj/item/tank/internals/plasmaman/full,
+/obj/item/tank/internals/emergency_oxygen/engi,
+/obj/item/tank/internals/emergency_oxygen/engi,
+/obj/item/tank/internals/emergency_oxygen/engi,
+/turf/open/floor/plasteel/tech/grid,
+/area/ship/storage/eva)
+"WX" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
dir = 1
},
-/obj/machinery/firealarm/directional/east{
- pixel_y = 6
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/turf_decal/spline/fancy/opaque/black{
+ dir = 4
+ },
+/obj/effect/turf_decal/spline/fancy/opaque/black{
+ dir = 8
},
/obj/structure/cable{
icon_state = "1-2"
},
-/obj/effect/turf_decal/industrial/warning,
-/obj/machinery/button/door{
- dir = 8;
- id = "traumaenginel";
- name = "Engine Shutter Control";
- pixel_x = 22;
- pixel_y = -7
+/turf/open/floor/plasteel/patterned/brushed,
+/area/ship/storage)
+"Xd" = (
+/obj/item/areaeditor/shuttle,
+/obj/item/megaphone/command,
+/obj/item/clothing/glasses/sunglasses,
+/obj/structure/closet/secure_closet/wall{
+ dir = 4;
+ icon_state = "solgov_wall";
+ name = "captain's closet";
+ req_access_txt = "20";
+ pixel_x = -28
},
-/turf/open/floor/plating,
-/area/ship/maintenance/port)
-"Yb" = (
+/obj/item/gun/ballistic/revolver,
+/obj/item/clothing/suit/armor/vest/capcarapace/cybersun,
+/obj/item/clothing/shoes/combat,
+/obj/item/clothing/head/HoS/cybersun,
+/obj/item/clothing/under/syndicate/cybersun/officer,
+/obj/item/reagent_containers/food/drinks/flask,
+/obj/item/reagent_containers/food/drinks/bottle/gin,
+/turf/open/floor/carpet/cyan,
+/area/ship/bridge)
+"Xi" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/structure/cable{
- icon_state = "4-8"
+ icon_state = "1-2"
},
-/obj/effect/turf_decal/siding/white{
+/obj/effect/turf_decal/industrial/warning{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/ship/maintenance/starboard)
+"Xu" = (
+/obj/machinery/atmospherics/components/binary/pump/on/layer2{
dir = 8
},
-/obj/effect/turf_decal/siding/white/corner,
-/obj/effect/turf_decal/siding/white/corner{
- dir = 4
+/obj/structure/closet/firecloset/wall{
+ dir = 1;
+ pixel_y = -28
},
-/obj/structure/cable{
- icon_state = "2-4"
+/turf/open/floor/plating,
+/area/ship/maintenance/port)
+"Xx" = (
+/obj/docking_port/stationary{
+ dir = 8;
+ dwidth = 15;
+ height = 15;
+ width = 30
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
+/turf/template_noop,
+/area/template_noop)
+"XL" = (
+/obj/machinery/power/terminal{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/item/wrench/crescent,
+/obj/item/radio/intercom/directional/north,
+/turf/open/floor/plating,
+/area/ship/maintenance/port)
+"Ym" = (
+/obj/machinery/holopad/emergency/command,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 9
},
-/turf/open/floor/vault,
-/area/ship/storage)
-"Yk" = (
-/obj/structure/table,
-/obj/machinery/microwave{
- pixel_y = 5
+/obj/structure/cable{
+ icon_state = "2-8"
},
-/obj/machinery/light/small/directional/south,
-/turf/open/floor/plasteel/grimy,
-/area/ship/crew)
+/turf/open/floor/carpet/cyan,
+/area/ship/bridge)
"Yn" = (
-/obj/effect/spawner/structure/window/shuttle,
/obj/structure/curtain/cloth{
color = "#ACD1E9"
},
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile/shuttle,
/turf/open/floor/plating,
/area/ship/bridge)
-"Yv" = (
+"Yw" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
},
-/obj/machinery/door/window{
- dir = 4
+/obj/item/storage/toolbox/electrical,
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/plating,
+/area/ship/maintenance/port)
+"YA" = (
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/ship/medical/surgery)
+"YM" = (
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/ship/medical)
+"YQ" = (
+/obj/effect/turf_decal/number/five,
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = 22
},
-/obj/machinery/door/firedoor/border_only{
- dir = 4
+/obj/structure/cable{
+ icon_state = "0-8"
},
-/obj/effect/turf_decal/spline/fancy/opaque/black{
+/obj/effect/turf_decal/industrial/warning/corner{
dir = 1
},
-/turf/open/floor/plasteel/tech,
-/area/ship/medical)
-"YI" = (
-/obj/machinery/light/directional/west,
-/obj/structure/chair{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ship/cargo)
-"YK" = (
+/turf/open/floor/plating,
+/area/ship/maintenance/starboard)
+"YV" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/siding/white/end,
+/turf/open/floor/plasteel/tech/grid,
+/area/ship/storage/eva)
+"Zv" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile/shuttle,
+/obj/structure/curtain/cloth,
+/turf/open/floor/plating,
+/area/ship/storage)
+"ZC" = (
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/ship/maintenance/port)
+"ZH" = (
+/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4,
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
/obj/structure/cable{
icon_state = "2-4"
},
/obj/structure/cable{
icon_state = "1-4"
},
-/obj/effect/turf_decal/trimline/opaque/red/filled/line{
- dir = 8
+/obj/structure/cable{
+ icon_state = "1-8"
},
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/door/firedoor/border_only{
+/obj/effect/turf_decal/trimline/opaque/red/filled/warning{
dir = 1
},
-/obj/structure/extinguisher_cabinet/directional/west,
/turf/open/floor/plasteel/white,
-/area/ship/medical)
-"YM" = (
-/turf/closed/wall/mineral/titanium/nodiagonal,
-/area/ship/medical)
-"Zb" = (
-/obj/effect/spawner/structure/window/shuttle,
-/obj/machinery/door/poddoor/preopen{
- dir = 4;
- id = "traumawindows";
- name = "Window Blast Door"
- },
-/turf/open/floor/plating,
-/area/ship/crew)
-"ZC" = (
-/turf/closed/wall/mineral/titanium/nodiagonal,
-/area/ship/maintenance/port)
-"ZN" = (
-/obj/effect/turf_decal/spline/fancy/opaque/black{
- dir = 1
- },
-/turf/open/floor/plasteel/tech,
-/area/ship/medical)
-"ZO" = (
-/obj/machinery/vending/cola/random,
+/area/ship/hallway/central)
+"ZJ" = (
/obj/effect/turf_decal/trimline/opaque/red/filled/line,
-/obj/machinery/firealarm/directional/east,
-/turf/open/floor/plasteel,
-/area/ship/cargo)
+/obj/item/radio/intercom/directional/south,
+/turf/open/floor/plasteel/white,
+/area/ship/hallway/central)
(1,1,1) = {"
UG
@@ -2588,544 +3005,664 @@ UG
UG
UG
UG
-Ml
UG
+Xx
+UG
+UG
+UG
+UG
+UG
+UG
+UG
+UG
+UG
+UG
+"}
+(2,1,1) = {"
+UG
+UG
+Tg
+fp
+UG
+UG
+UG
+AJ
+KW
+yn
+sC
+rA
+KW
+AJ
+UG
+UG
+UG
+Ti
+PF
UG
UG
+"}
+(3,1,1) = {"
+UG
+Tg
+Jw
+ZC
+UG
+UG
+UG
+gL
+fX
+bv
+Ap
+bv
+na
+gL
+UG
UG
UG
+UO
+zK
+PF
UG
+"}
+(4,1,1) = {"
+fp
+ih
+Kk
+ZC
UG
UG
fp
+gL
+GK
+eS
+oc
+eS
+RA
+gL
+Ti
+UG
+UG
+UO
+xa
+QG
+Ti
+"}
+(5,1,1) = {"
+ZC
+rJ
+AX
ZC
ZC
+ZC
+ZC
+gL
+lS
+yX
+oc
+Gr
+lX
+gL
+UO
+UO
+UO
+UO
+yT
+Kp
+UO
+"}
+(6,1,1) = {"
+ZC
+HR
+Dr
+Hb
+Cy
+cK
+Eb
+AD
+GI
+Td
+pQ
+rn
+GI
+wc
+Xi
+sI
+Uu
+bu
+cd
+Mb
+UO
+"}
+(7,1,1) = {"
mP
+UH
+DS
+ZC
+ZC
+ZC
+tI
+gL
+xB
+uE
+uE
+oA
+lJ
+gL
+UO
+UO
+UO
+UO
+YQ
+JA
+HU
+"}
+(8,1,1) = {"
ZC
+XL
+Yw
ZC
fp
UG
+vx
+gL
+Ls
+HI
+cL
+Gw
+zq
+gL
UG
UG
+Ti
+UO
+zT
+kh
+UO
"}
-(2,1,1) = {"
+(9,1,1) = {"
+ZC
+KS
+Xu
+ZC
UG
UG
UG
+Ra
+pK
+QF
+UD
+CL
+tO
+Ra
UG
UG
UG
-Uc
-OK
-kO
-QQ
-BH
-Uc
+UO
+wt
+xW
+UO
+"}
+(10,1,1) = {"
+fp
+ZC
+Pz
+ZC
+UG
UG
UG
+an
+TZ
+mo
+Gj
+mu
+Tq
+an
+UG
UG
UG
+UO
+tb
+UO
+Ti
+"}
+(11,1,1) = {"
UG
fp
ZC
-MP
-Je
-aL
-fe
-Kh
-Ny
-Jn
+fp
+UG
+rT
+YA
+YA
+YA
+YA
+OM
+nW
+qA
+qA
+qA
+wb
UG
+Ti
+UO
+Ti
UG
"}
-(3,1,1) = {"
+(12,1,1) = {"
UG
UG
UG
UG
UG
+YA
+hS
+uT
+sO
+YA
+xp
+gW
+ke
+rk
+eT
+qA
UG
-OK
-mG
-Ln
-hv
-Sx
-OK
UG
UG
UG
UG
+"}
+(13,1,1) = {"
+UG
+UG
+UG
+UG
+UG
+Jh
+nb
+EW
+GZ
+fo
+ZH
+zy
+dl
+fe
+am
+VJ
+UG
+UG
+UG
UG
-ZC
-zT
-Lh
-vT
-IE
-CX
-XX
-KD
-dR
-Jn
UG
"}
-(4,1,1) = {"
+(14,1,1) = {"
UG
UG
UG
UG
UG
-Uc
-OK
-MK
-AG
-zE
-hq
-OK
-Uc
+YA
+as
+hQ
+Pg
+YA
+zM
+gW
+ke
+wp
+mx
+qA
UG
UG
UG
UG
-fp
-ZC
-ZC
-ZC
-ZC
-mw
-ZC
-ZC
-ZC
-fp
UG
-"}
-(5,1,1) = {"
+"}
+(15,1,1) = {"
+UG
+UG
+UG
+UG
+Qq
+YM
+Dp
+Dp
+Dp
+YM
+Pm
+SR
+OK
+Fr
+Fr
+OK
+Uc
+UG
UG
UG
-nu
-Nn
-Nn
-zo
-zo
-zo
-SR
-Yb
-hT
-OK
-YM
-JA
-Qq
UG
+"}
+(16,1,1) = {"
UG
UG
UG
UG
-ZC
-ZC
-vr
-ZC
+YM
+TL
+FH
+FH
+tT
+MW
+UV
+gW
+Zv
+Sy
+DX
+qv
+OK
UG
UG
UG
UG
"}
-(6,1,1) = {"
+(17,1,1) = {"
UG
-nu
-Nn
-Hr
-Nn
-SP
-iJ
-zo
-ed
-Lu
-bC
-OK
-fT
-ZN
-YM
-JA
-YM
-Qq
UG
UG
-PL
-cX
-sH
-ZC
-fp
UG
+qV
+zS
+up
+fW
+tF
+nI
+Lh
+zy
+AQ
+WX
+Rl
+Ai
+OK
UG
UG
-"}
-(7,1,1) = {"
-Nn
-Nn
-uk
-UJ
-Nn
-Qe
-VY
-zo
-Hk
-PG
-aT
-OK
-Vu
-Po
-DU
-lj
-OA
-YM
-YM
-JA
-gL
-gL
-Rh
-gL
-gL
-gL
-AJ
UG
-"}
-(8,1,1) = {"
-bX
-hH
-wD
-Xs
-Nn
-qd
-oX
-zo
-Ko
-QE
-SH
-OK
-Sy
-uo
-hQ
-HF
-cs
-YM
-Tt
-HP
-ve
-tE
-uN
-YI
-Ja
-Qp
-KW
UG
"}
-(9,1,1) = {"
-bX
-dI
-Tj
-Vs
-Nn
-zo
-Xh
-zo
-OK
-bu
-OK
-OK
-RB
-Go
-kP
-Yv
-zt
-YM
-EA
-Tq
-oQ
-ur
-nw
-xa
-eS
-cn
-gO
+(18,1,1) = {"
UG
-"}
-(10,1,1) = {"
-bX
-hF
-pK
-eJ
-Wc
-Ll
-Pr
-BK
-Ll
-sM
-Cr
+UG
+UG
+UG
+YM
+sd
+zh
vn
-qQ
-Rs
-ru
-Wm
-qQ
-YK
-RW
-dH
-uq
-ur
-go
-Bl
-Bl
-rh
-BN
-bl
-"}
-(11,1,1) = {"
-bX
-kR
-Dy
-MY
-Yn
-cI
-Kv
-FA
-UC
-Ug
-cI
-sz
-Wd
-Wd
-QP
-Wd
-Wd
-lb
-nm
-sq
-Vq
-oH
-lH
-IG
-eS
-cn
-TO
+bT
+MW
+UV
+gW
+Zv
+Ki
+tJ
+gf
+OK
+UG
+UG
+UG
UG
"}
-(12,1,1) = {"
-bX
-mO
-wG
-rM
-Nn
+(19,1,1) = {"
+UG
+UG
+tn
+OZ
+OZ
+OZ
+OZ
+OZ
+OZ
+OZ
+LH
+zl
Ev
Ev
Ev
Ev
-lY
Ev
+iA
+UG
+UG
+UG
+"}
+(20,1,1) = {"
+UG
+UG
+qr
+Qw
+sx
+Uz
+Hk
+HE
+TH
+OZ
+bQ
+ZJ
Ev
-vG
-jx
-mQ
-lF
-uE
-YM
-zg
-Pp
-ie
-vj
-uN
-tT
-uW
-ZO
-KW
+Kv
+iC
+jh
+Gs
+Ev
+iA
+UG
UG
"}
-(13,1,1) = {"
-Nn
-Nn
-zR
-Nq
-Nn
-UX
-kC
-Ki
-QU
-UR
-tO
+(21,1,1) = {"
+UG
+pf
+jK
+zD
+Of
+Rb
+jU
+Ln
+YV
+uU
+iQ
+zy
+Cp
+uc
+IL
+kw
+xN
+Bp
Ev
-wQ
-tW
-DH
-oS
-ck
-YM
-YM
-JA
-gL
-gL
-Xj
-gL
-gL
-gL
-AJ
+UG
UG
"}
-(14,1,1) = {"
+(22,1,1) = {"
UG
-nu
-Nn
-SI
-Nn
-se
-eM
-su
-qc
-TR
-MW
+UG
+JC
+UK
+la
+UX
+BU
+KZ
+Fe
+OZ
+TB
+us
Ev
-FE
-KR
-YM
-JA
-YM
-Qq
+OF
+yf
+iW
+nF
+iW
+PH
UG
UG
+"}
+(23,1,1) = {"
UG
-UO
-Lt
-UO
-Ti
UG
+OZ
+JQ
+WP
+zo
+zo
+zo
+zo
+zo
+Le
+KB
+Ev
+iz
+FE
+hW
+KU
+in
+Kc
UG
UG
"}
-(15,1,1) = {"
+(24,1,1) = {"
UG
UG
-nu
-Nn
-Nn
-Ev
+tn
+OZ
+OZ
+zo
+wr
+WB
+LJ
+eo
+li
+Ug
Ev
-TI
-iW
-Sc
-fa
+Pp
+CF
Ev
-YM
-YM
-Qq
+Hl
+CZ
+iA
UG
UG
+"}
+(25,1,1) = {"
UG
UG
UG
-Ti
-UO
-OB
-UO
+UG
+tn
+zo
+Nz
+rS
+ba
+zo
+Tr
+gW
+Ev
+vj
+Aj
+Ev
+iA
UG
UG
UG
UG
"}
-(16,1,1) = {"
+(26,1,1) = {"
UG
UG
UG
UG
UG
-iA
-Hl
-XW
-np
-tq
-Yk
-Ev
-Qq
+Nn
+Nn
+Nn
+Nn
+Nn
+bD
+Yn
+Nn
+Nn
+Nn
+Nn
UG
UG
UG
UG
-Ti
-UO
-UO
-UO
-UO
-GP
-UO
-UO
-UO
-Ti
UG
"}
-(17,1,1) = {"
+(27,1,1) = {"
UG
UG
UG
UG
UG
-UG
-PH
-XW
-iW
-el
-Ev
-iA
-UG
+Nn
+WJ
+Xd
+Ah
+ES
+Ym
+Uh
+UN
+BD
+EL
+Nn
UG
UG
UG
UG
-UO
-Gs
-Ps
-yi
-nl
-Xb
-Mx
-Hq
-VM
-Dj
UG
"}
-(18,1,1) = {"
+(28,1,1) = {"
UG
UG
UG
UG
UG
+nu
+Nn
+Lr
+vE
+FO
+zL
+qW
+GH
+zn
+Nn
+nu
UG
-iA
-Kc
-Zb
-Ev
-iA
UG
UG
UG
UG
+"}
+(29,1,1) = {"
UG
UG
-Ti
-UO
-MN
-kH
-iP
-Tx
-QY
-Ob
-Dj
UG
UG
-"}
-(19,1,1) = {"
UG
UG
+nu
+Nn
+xF
+TA
+hF
+Ca
+yQ
+Nn
+nu
+UG
UG
UG
UG
UG
UG
+"}
+(30,1,1) = {"
UG
UG
UG
@@ -3133,17 +3670,17 @@ UG
UG
UG
UG
+Nn
+ot
+ot
+ot
+ot
+ot
+Nn
UG
UG
UG
UG
-Ti
-UO
-UO
-HU
-UO
-UO
-Ti
UG
UG
UG
diff --git a/_maps/shuttles/syndicate/syndicate_luxembourg.dmm b/_maps/shuttles/syndicate/syndicate_luxembourg.dmm
index 1f8f1132f0d7..6dde77123cba 100644
--- a/_maps/shuttles/syndicate/syndicate_luxembourg.dmm
+++ b/_maps/shuttles/syndicate/syndicate_luxembourg.dmm
@@ -2517,8 +2517,8 @@
/obj/machinery/suit_storage_unit/inherit{
req_access_txt = "41"
},
-/obj/item/clothing/suit/space/hardsuit/syndi/scarlet,
-/obj/item/clothing/head/helmet/space/hardsuit/syndi/scarlet,
+/obj/item/clothing/suit/space/syndicate,
+/obj/item/clothing/head/helmet/space/syndicate,
/obj/item/clothing/mask/breath,
/turf/open/floor/plasteel/mono/dark,
/area/ship/engineering)
diff --git a/_maps/shuttles/syndicate/syndicate_twinkleshine.dmm b/_maps/shuttles/syndicate/syndicate_twinkleshine.dmm
index 6390f43501cd..2c471b9ccb85 100644
--- a/_maps/shuttles/syndicate/syndicate_twinkleshine.dmm
+++ b/_maps/shuttles/syndicate/syndicate_twinkleshine.dmm
@@ -514,7 +514,7 @@
req_access = list(151)
},
/obj/item/areaeditor/shuttle,
-/obj/item/clothing/under/syndicate/aclf,
+/obj/item/clothing/under/syndicate/officer,
/obj/item/clothing/suit/armor/vest/capcarapace/syndicate,
/obj/item/clothing/head/HoS/syndicate,
/obj/item/codespeak_manual/unlimited,
@@ -2033,9 +2033,8 @@
/turf/open/floor/engine,
/area/ship/engineering/engine)
"ms" = (
-/obj/machinery/porta_turret/syndicate/energy{
- dir = 9;
- faction = list("PlayerSyndicate")
+/obj/machinery/porta_turret/ship/syndicate/heavy{
+ dir = 9
},
/turf/closed/wall/r_wall/syndicate/nodiagonal{
rad_insulation = 0
@@ -3434,9 +3433,8 @@
/turf/open/floor/plating,
/area/ship/engineering/atmospherics)
"vd" = (
-/obj/machinery/porta_turret/syndicate/energy{
- dir = 5;
- faction = list("PlayerSyndicate")
+/obj/machinery/porta_turret/ship/syndicate/heavy{
+ dir = 5
},
/turf/closed/wall/r_wall/syndicate/nodiagonal{
rad_insulation = 0
@@ -5351,9 +5349,9 @@
/obj/effect/turf_decal/spline/fancy/opaque/syndiered{
dir = 5
},
-/obj/item/clothing/head/aclfcap,
-/obj/item/clothing/suit/aclf,
-/obj/item/clothing/under/syndicate/aclf,
+/obj/item/clothing/head/gorlexcap,
+/obj/item/clothing/suit/gorlex,
+/obj/item/clothing/under/syndicate/officer,
/obj/structure/closet/secure_closet{
anchored = 1;
icon_state = "syndicate";
@@ -5845,9 +5843,6 @@
/obj/machinery/door/firedoor/border_only{
dir = 1
},
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
/obj/machinery/door/airlock/hatch{
name = "Security"
},
@@ -6469,9 +6464,8 @@
/turf/open/floor/engine,
/area/ship/engineering/engine)
"Mr" = (
-/obj/machinery/porta_turret/syndicate/energy{
- dir = 6;
- faction = list("PlayerSyndicate")
+/obj/machinery/porta_turret/ship/syndicate/heavy{
+ dir = 6
},
/turf/closed/wall/r_wall/syndicate/nodiagonal{
rad_insulation = 0
@@ -8074,9 +8068,8 @@
},
/area/ship/crew/cryo)
"We" = (
-/obj/machinery/porta_turret/syndicate/energy{
- dir = 10;
- faction = list("PlayerSyndicate")
+/obj/machinery/porta_turret/ship/syndicate/heavy{
+ dir = 10
},
/turf/closed/wall/r_wall/syndicate/nodiagonal{
rad_insulation = 0
diff --git a/_maps/templates/holodeck_thunderdome1218.dmm b/_maps/templates/holodeck_thunderdome1218.dmm
index 353f77e4710d..94556b2bdc7d 100644
--- a/_maps/templates/holodeck_thunderdome1218.dmm
+++ b/_maps/templates/holodeck_thunderdome1218.dmm
@@ -101,7 +101,6 @@
/area/template_noop)
"T" = (
/obj/structure/table/wood,
-/obj/item/tailclub,
/obj/item/spear,
/turf/open/floor/holofloor/asteroid,
/area/template_noop)
diff --git a/auxmos.dll b/auxmos.dll
index 499c125baa87..9db02bf27e26 100644
Binary files a/auxmos.dll and b/auxmos.dll differ
diff --git a/check_regex.yaml b/check_regex.yaml
index c051d974de12..a2bb022d2b90 100644
--- a/check_regex.yaml
+++ b/check_regex.yaml
@@ -29,7 +29,7 @@ standards:
- exactly: [1, "/area text paths", '"/area']
- exactly: [17, "/datum text paths", '"/datum']
- exactly: [4, "/mob text paths", '"/mob']
- - exactly: [49, "/obj text paths", '"/obj']
+ - exactly: [44, "/obj text paths", '"/obj']
- exactly: [0, "/turf text paths", '"/turf']
- exactly: [117, "text2path uses", "text2path"]
@@ -52,6 +52,9 @@ standards:
'\(([\t ]+([^)"\n\\]*)|([^("\n]+)[\t ]+)\)',
]
+ - exactly: [2, "Old-style proc references", '\.proc/(\w+)']
+ - exactly: [0, "Old-style typed proc references", '([\w/]+?)/?\.proc/(\w+)']
+
- no_more:
[
34,
diff --git a/code/__DEFINES/DNA.dm b/code/__DEFINES/DNA.dm
index 8cdb11fd00b1..36fc398d942c 100644
--- a/code/__DEFINES/DNA.dm
+++ b/code/__DEFINES/DNA.dm
@@ -154,7 +154,6 @@
#define ORGAN_SLOT_LIVER "liver"
#define ORGAN_SLOT_TONGUE "tongue"
#define ORGAN_SLOT_VOICE "vocal_cords"
-#define ORGAN_SLOT_ADAMANTINE_RESONATOR "adamantine_resonator"
#define ORGAN_SLOT_HEART_AID "heartdrive"
#define ORGAN_SLOT_BRAIN_ANTIDROP "brain_antidrop"
#define ORGAN_SLOT_BRAIN_ANTISTUN "brain_antistun"
diff --git a/code/__DEFINES/atmospherics.dm b/code/__DEFINES/atmospherics.dm
index fc720d2c96fd..4600cb626da0 100644
--- a/code/__DEFINES/atmospherics.dm
+++ b/code/__DEFINES/atmospherics.dm
@@ -292,16 +292,6 @@
#define INCINERATOR_ATMOS_AIRLOCK_INTERIOR "atmos_incinerator_airlock_interior"
#define INCINERATOR_ATMOS_AIRLOCK_EXTERIOR "atmos_incinerator_airlock_exterior"
-//Syndicate lavaland base incinerator (lavaland_surface_syndicate_base1.dmm)
-#define INCINERATOR_SYNDICATELAVA_IGNITER "syndicatelava_igniter"
-#define INCINERATOR_SYNDICATELAVA_MAINVENT "syndicatelava_mainvent"
-#define INCINERATOR_SYNDICATELAVA_AUXVENT "syndicatelava_auxvent"
-#define INCINERATOR_SYNDICATELAVA_DP_VENTPUMP "syndicatelava_airlock_pump"
-#define INCINERATOR_SYNDICATELAVA_AIRLOCK_SENSOR "syndicatelava_airlock_sensor"
-#define INCINERATOR_SYNDICATELAVA_AIRLOCK_CONTROLLER "syndicatelava_airlock_controller"
-#define INCINERATOR_SYNDICATELAVA_AIRLOCK_INTERIOR "syndicatelava_airlock_interior"
-#define INCINERATOR_SYNDICATELAVA_AIRLOCK_EXTERIOR "syndicatelava_airlock_exterior"
-
//MULTIPIPES
//IF YOU EVER CHANGE THESE CHANGE SPRITES TO MATCH.
#define PIPING_LAYER_MIN 1
@@ -359,17 +349,6 @@
T.pixel_x = (PipingLayer - PIPING_LAYER_DEFAULT) * PIPING_LAYER_P_X; \
T.pixel_y = (PipingLayer - PIPING_LAYER_DEFAULT) * PIPING_LAYER_P_Y;
-GLOBAL_VAR(atmos_extools_initialized) // this must be an uninitialized (null) one or init_monstermos will be called twice because reasons
-#define ATMOS_EXTOOLS_CHECK if(!GLOB.atmos_extools_initialized){ \
- GLOB.atmos_extools_initialized=TRUE; \
- if(fexists(world.system_type == MS_WINDOWS ? "./byond-extools.dll" : "./libbyond-extools.so")){ \
- var/result = call((world.system_type == MS_WINDOWS ? "./byond-extools.dll" : "./libbyond-extools.so"),"init_monstermos")(); \
- if(result != "ok") {CRASH(result);} \
- } else { \
- CRASH("byond-extools.dll does not exist!"); \
- } \
-}
-
GLOBAL_LIST_INIT(pipe_paint_colors, sortList(list(
"amethyst" = rgb(130,43,255), //supplymain
"blue" = rgb(0,0,255),
diff --git a/code/__DEFINES/callbacks.dm b/code/__DEFINES/callbacks.dm
index ca7a54d6cfc1..25f3717011a9 100644
--- a/code/__DEFINES/callbacks.dm
+++ b/code/__DEFINES/callbacks.dm
@@ -4,4 +4,4 @@
#define INVOKE_ASYNC world.ImmediateInvokeAsync
/// like CALLBACK but specifically for verb callbacks
#define VERB_CALLBACK new /datum/callback/verb_callback
-#define CALLBACK_NEW(typepath, args) CALLBACK(GLOBAL_PROC, /proc/___callbacknew, typepath, args)
+#define CALLBACK_NEW(typepath, args) CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(___callbacknew), typepath, args)
diff --git a/code/__DEFINES/colors.dm b/code/__DEFINES/colors.dm
index 5814f8f27a1f..c428e1e7dd53 100644
--- a/code/__DEFINES/colors.dm
+++ b/code/__DEFINES/colors.dm
@@ -164,6 +164,8 @@
#define LIGHT_COLOR_LAVA "#C48A18"
/// Bright, non-saturated red. Leaning slightly towards pink for visibility. rgb(250, 100, 75)
#define LIGHT_COLOR_FLARE "#FA644B"
+/// Vivid red. Leans a bit darker to accentuate red colors and leave other channels a bit dry. rgb(200, 25, 25)
+#define LIGHT_COLOR_INTENSE_RED "#C81919"
/// Weird color, between yellow and green, very slimy. rgb(175, 200, 75)
#define LIGHT_COLOR_SLIME_LAMP "#AFC84B"
/// Extremely diluted yellow, close to skin color (for some reason). rgb(250, 225, 175)
diff --git a/code/__DEFINES/combat.dm b/code/__DEFINES/combat.dm
index 36da2cc3ae7d..7df3a453acfb 100644
--- a/code/__DEFINES/combat.dm
+++ b/code/__DEFINES/combat.dm
@@ -134,8 +134,11 @@ GLOBAL_LIST_INIT(shove_disarming_types, typecacheof(list(/obj/item/gun)))
#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
diff --git a/code/__DEFINES/cooldowns.dm b/code/__DEFINES/cooldowns.dm
index 8f1f667a79f7..861bb843d793 100644
--- a/code/__DEFINES/cooldowns.dm
+++ b/code/__DEFINES/cooldowns.dm
@@ -35,7 +35,7 @@
#define COMSIG_CD_STOP(cd_index) "cooldown_[cd_index]"
#define COMSIG_CD_RESET(cd_index) "cd_reset_[cd_index]"
-#define TIMER_COOLDOWN_START(cd_source, cd_index, cd_time) LAZYSET(cd_source.cooldowns, cd_index, addtimer(CALLBACK(GLOBAL_PROC, /proc/end_cooldown, cd_source, cd_index), cd_time))
+#define TIMER_COOLDOWN_START(cd_source, cd_index, cd_time) LAZYSET(cd_source.cooldowns, cd_index, addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(end_cooldown), cd_source, cd_index), cd_time))
#define TIMER_COOLDOWN_CHECK(cd_source, cd_index) LAZYACCESS(cd_source.cooldowns, cd_index)
@@ -48,7 +48,7 @@
* A bit more expensive than the regular timers, but can be reset before they end and the time left can be checked.
*/
-#define S_TIMER_COOLDOWN_START(cd_source, cd_index, cd_time) LAZYSET(cd_source.cooldowns, cd_index, addtimer(CALLBACK(GLOBAL_PROC, /proc/end_cooldown, cd_source, cd_index), cd_time, TIMER_STOPPABLE))
+#define S_TIMER_COOLDOWN_START(cd_source, cd_index, cd_time) LAZYSET(cd_source.cooldowns, cd_index, addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(end_cooldown), cd_source, cd_index), cd_time, TIMER_STOPPABLE))
#define S_TIMER_COOLDOWN_RESET(cd_source, cd_index) reset_cooldown(cd_source, cd_index)
diff --git a/code/__DEFINES/dcs/signals.dm b/code/__DEFINES/dcs/signals.dm
index bbdbe022a9df..004b2f23fedf 100644
--- a/code/__DEFINES/dcs/signals.dm
+++ b/code/__DEFINES/dcs/signals.dm
@@ -752,3 +752,7 @@
/// generally called before temporary non-parallel animate()s on the atom (animation_duration)
#define COMSIG_ATOM_TEMPORARY_ANIMATION_START "atom_temp_animate_start"
+
+/// send when enabling/diabling an autofire component
+#define COMSIG_GUN_DISABLE_AUTOFIRE "disable_autofire"
+#define COMSIG_GUN_ENABLE_AUTOFIRE "enable_autofire"
diff --git a/code/__DEFINES/factions.dm b/code/__DEFINES/factions.dm
new file mode 100644
index 000000000000..a6fbc5c87546
--- /dev/null
+++ b/code/__DEFINES/factions.dm
@@ -0,0 +1,6 @@
+//"Antag" factions
+// anything with these factions should be hostile to the average player.
+#define FACTION_ANTAG_SYNDICATE "Syndicate"
+
+//Player Factions
+#define FACTION_PLAYER_SYNDICATE "playerSyndicate"
diff --git a/code/__DEFINES/fonts.dm b/code/__DEFINES/fonts.dm
index 446a40998898..32a08f38861b 100644
--- a/code/__DEFINES/fonts.dm
+++ b/code/__DEFINES/fonts.dm
@@ -2,7 +2,7 @@
/// Font used by regular pens
#define PEN_FONT "Verdana"
/// Font used by fancy pens
-#define FOUNTAIN_PEN_FONT "Segoe Script"
+#define FOUNTAIN_PEN_FONT "Adobe Garamond"
/// Font used by crayons
#define CRAYON_FONT "Comic Sans MS"
/// Font used by printers
diff --git a/code/__DEFINES/is_helpers.dm b/code/__DEFINES/is_helpers.dm
index b824bd2a17b1..8fd5d549c086 100644
--- a/code/__DEFINES/is_helpers.dm
+++ b/code/__DEFINES/is_helpers.dm
@@ -61,7 +61,6 @@ GLOBAL_LIST_INIT(turfs_without_ground, typecacheof(list(
#define isandroid(A) (is_species(A, /datum/species/android))
#define issynth(A) (is_species(A, /datum/species/synth))
#define ismilsynth(A) (is_species(A, /datum/species/synth/military))
-#define isgolem(A) (is_species(A, /datum/species/golem))
#define islizard(A) (is_species(A, /datum/species/lizard))
#define isplasmaman(A) (is_species(A, /datum/species/plasmaman))
#define ispodperson(A) (is_species(A, /datum/species/pod))
diff --git a/code/__DEFINES/keybinding.dm b/code/__DEFINES/keybinding.dm
index a1494018d434..97b9c9d82aad 100644
--- a/code/__DEFINES/keybinding.dm
+++ b/code/__DEFINES/keybinding.dm
@@ -42,6 +42,7 @@
//Human
#define COMSIG_KB_HUMAN_QUICKEQUIP_DOWN "keybinding_human_quickequip_down"
#define COMSIG_KB_HUMAN_QUICKEQUIPBELT_DOWN "keybinding_human_quickequipbelt_down"
+#define COMSIG_KB_HUMAN_UNIQUEACTION "keybinding_uniqueaction"
#define COMSIG_KB_HUMAN_BAGEQUIP_DOWN "keybinding_human_bagequip_down"
#define COMSIG_KB_HUMAN_EQUIPMENTSWAP_DOWN "keybinding_human_equipmentswap_down"
#define COMSIG_KB_HUMAN_SUITEQUIP_DOWN "keybinding_human_suitequip_down"
diff --git a/code/__DEFINES/misc.dm b/code/__DEFINES/misc.dm
index e8975a1a6653..9dbe4fae64e9 100644
--- a/code/__DEFINES/misc.dm
+++ b/code/__DEFINES/misc.dm
@@ -474,3 +474,7 @@ GLOBAL_LIST_INIT(ghost_others_options, list(GHOST_OTHERS_SIMPLE, GHOST_OTHERS_DE
#define CUSTOM_HOLODECK_ONE (1<<1)
#define CUSTOM_HOLODECK_TWO (1<<2)
#define HOLODECK_DEBUG (1<<3)//you should never see this
+
+#define ROUND_END_NOT_DELAYED 0
+#define ROUND_END_DELAYED 1
+#define ROUND_END_TGS 2
diff --git a/code/__DEFINES/mobs.dm b/code/__DEFINES/mobs.dm
index 99cff793a761..ad9d5ae5abc8 100644
--- a/code/__DEFINES/mobs.dm
+++ b/code/__DEFINES/mobs.dm
@@ -87,10 +87,8 @@
#define SPECIES_LIZARD "lizard"
#define SPECIES_ASHWALKER "ashwalker"
#define SPECIES_KOBOLD "kobold"
-#define SPECIES_GOLEM "golem"
#define SPECIES_MONKEY "monkey"
#define SPECIES_MOTH "moth"
-#define SPECIES_MUSH "mush"
#define SPECIES_PLASMAMAN "plasmaman"
#define SPECIES_POD "pod"
#define SPECIES_SHADOW "shadow"
@@ -226,7 +224,6 @@
#define SANITY_INSANE 0
//Nutrition levels for humans
-#define NUTRITION_LEVEL_FAT 600
#define NUTRITION_LEVEL_FULL 550
#define NUTRITION_LEVEL_WELL_FED 450
#define NUTRITION_LEVEL_FED 350
diff --git a/code/__DEFINES/obj_flags.dm b/code/__DEFINES/obj_flags.dm
index 570edb76d8c4..865470774039 100644
--- a/code/__DEFINES/obj_flags.dm
+++ b/code/__DEFINES/obj_flags.dm
@@ -64,3 +64,13 @@
/// Flags for the pod_flags var on /obj/structure/closet/supplypod
#define FIRST_SOUNDS (1<<0) // If it shouldn't play sounds the first time it lands, used for reverse mode
+
+
+// Bullet hit sounds
+#define PROJECTILE_HITSOUND_FLESH (1<<0)
+#define PROJECTILE_HITSOUND_NON_LIVING (1<<1)
+#define PROJECTILE_HITSOUND_GLASS (1<<2)
+#define PROJECTILE_HITSOUND_STONE (1<<3)
+#define PROJECTILE_HITSOUND_METAL (1<<4)
+#define PROJECTILE_HITSOUND_WOOD (1<<5)
+#define PROJECTILE_HITSOUND_SNOW (1<<6)
diff --git a/code/__DEFINES/qdel.dm b/code/__DEFINES/qdel.dm
index 86c3ad465250..dca885b37b95 100644
--- a/code/__DEFINES/qdel.dm
+++ b/code/__DEFINES/qdel.dm
@@ -54,10 +54,10 @@
#define QDELETED(X) (!X || QDELING(X))
#define QDESTROYING(X) (!X || X.gc_destroyed == GC_CURRENTLY_BEING_QDELETED)
-#define QDEL_IN(item, time) addtimer(CALLBACK(GLOBAL_PROC, .proc/qdel, (time) > GC_FILTER_QUEUE ? WEAKREF(item) : item), time, TIMER_STOPPABLE)
-#define QDEL_IN_CLIENT_TIME(item, time) addtimer(CALLBACK(GLOBAL_PROC, .proc/qdel, item), time, TIMER_STOPPABLE | TIMER_CLIENT_TIME)
+#define QDEL_IN(item, time) addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(qdel), (time) > GC_FILTER_QUEUE ? WEAKREF(item) : item), time, TIMER_STOPPABLE)
+#define QDEL_IN_CLIENT_TIME(item, time) addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(qdel), item), time, TIMER_STOPPABLE | TIMER_CLIENT_TIME)
#define QDEL_NULL(item) qdel(item); item = null
#define QDEL_LIST(L) if(L) { for(var/I in L) qdel(I); L.Cut(); }
-#define QDEL_LIST_IN(L, time) addtimer(CALLBACK(GLOBAL_PROC, .proc/______qdel_list_wrapper, L), time, TIMER_STOPPABLE)
+#define QDEL_LIST_IN(L, time) addtimer(CALLBACK(GLOBAL_PROC, PROC_REF(______qdel_list_wrapper), L), time, TIMER_STOPPABLE)
#define QDEL_LIST_ASSOC(L) if(L) { for(var/I in L) { qdel(L[I]); qdel(I); } L.Cut(); }
#define QDEL_LIST_ASSOC_VAL(L) if(L) { for(var/I in L) qdel(L[I]); L.Cut(); }
diff --git a/code/__DEFINES/reagents.dm b/code/__DEFINES/reagents.dm
index 8e2f1e52758d..c66d3f34c1ad 100644
--- a/code/__DEFINES/reagents.dm
+++ b/code/__DEFINES/reagents.dm
@@ -22,7 +22,7 @@
#define VAPOR 3 // foam, spray, blob attack
#define PATCH 4 // patches
#define INJECT 5 // injection
-
+#define SMOKE 6 //smoking
//defines passed through to the on_reagent_change proc
#define DEL_REAGENT 1 // reagent deleted (fully cleared)
diff --git a/code/__DEFINES/rust_g.dm b/code/__DEFINES/rust_g.dm
index cab4430a88df..76e5fa22d474 100644
--- a/code/__DEFINES/rust_g.dm
+++ b/code/__DEFINES/rust_g.dm
@@ -110,6 +110,12 @@
#define rustg_dmi_strip_metadata(fname) RUSTG_CALL(RUST_G, "dmi_strip_metadata")(fname)
#define rustg_dmi_create_png(path, width, height, data) RUSTG_CALL(RUST_G, "dmi_create_png")(path, width, height, data)
#define rustg_dmi_resize_png(path, width, height, resizetype) RUSTG_CALL(RUST_G, "dmi_resize_png")(path, width, height, resizetype)
+/**
+ * input: must be a path, not an /icon; you have to do your own handling if it is one, as icon objects can't be directly passed to rustg.
+ *
+ * output: json_encode'd list. json_decode to get a flat list with icon states in the order they're in inside the .dmi
+ */
+#define rustg_dmi_icon_states(fname) RUSTG_CALL(RUST_G, "dmi_icon_states")(fname)
#define rustg_file_read(fname) RUSTG_CALL(RUST_G, "file_read")(fname)
#define rustg_file_exists(fname) RUSTG_CALL(RUST_G, "file_exists")(fname)
@@ -158,8 +164,9 @@
#define rustg_time_milliseconds(id) text2num(RUSTG_CALL(RUST_G, "time_milliseconds")(id))
#define rustg_time_reset(id) RUSTG_CALL(RUST_G, "time_reset")(id)
+/// Returns the timestamp as a string
/proc/rustg_unix_timestamp()
- return text2num(RUSTG_CALL(RUST_G, "unix_timestamp")())
+ return RUSTG_CALL(RUST_G, "unix_timestamp")()
#define rustg_raw_read_toml_file(path) json_decode(RUSTG_CALL(RUST_G, "toml_file_to_json")(path) || "null")
diff --git a/code/__DEFINES/say.dm b/code/__DEFINES/say.dm
index b349387832ea..a470b9087b2e 100644
--- a/code/__DEFINES/say.dm
+++ b/code/__DEFINES/say.dm
@@ -71,10 +71,7 @@
#define SPAN_COMMAND "command_headset"
#define SPAN_CLOWN "clown"
#define SPAN_SINGING "singing"
-
-//WS Spans - Begin
#define SPAN_SGA "sga"
-//WS Spans - End
//bitflag #defines for return value of the radio() proc.
#define ITALICS (1<<0)
diff --git a/code/__DEFINES/spaceman_dmm.dm b/code/__DEFINES/spaceman_dmm.dm
index 6d87700f3d24..b62bbee4259a 100644
--- a/code/__DEFINES/spaceman_dmm.dm
+++ b/code/__DEFINES/spaceman_dmm.dm
@@ -40,5 +40,5 @@
/world/Del()
var/debug_server = world.GetConfig("env", "AUXTOOLS_DEBUG_DLL")
if (debug_server)
- call(debug_server, "auxtools_shutdown")()
+ LIBCALL(debug_server, "auxtools_shutdown")()
. = ..()
diff --git a/code/__DEFINES/statpanel.dm b/code/__DEFINES/statpanel.dm
index 8ce6ba624a1b..c5378235fc63 100644
--- a/code/__DEFINES/statpanel.dm
+++ b/code/__DEFINES/statpanel.dm
@@ -8,7 +8,7 @@ GLOBAL_LIST_INIT(client_verbs_required, list(
/client/verb/panel_ready,
// Skin buttons that should always work
/client/verb/rules,
- /client/verb/forum,
+ /client/verb/lore,
/client/verb/github,
/client/verb/joindiscord,
))
diff --git a/code/__DEFINES/status_effects.dm b/code/__DEFINES/status_effects.dm
index d1fbf26616d5..97e1ac7c574d 100644
--- a/code/__DEFINES/status_effects.dm
+++ b/code/__DEFINES/status_effects.dm
@@ -1,138 +1,93 @@
-
-//These are all the different status effects. Use the paths for each effect in the defines.
-
-#define STATUS_EFFECT_MULTIPLE 0 //if it allows multiple instances of the effect
-
-#define STATUS_EFFECT_UNIQUE 1 //if it allows only one, preventing new instances
-
-#define STATUS_EFFECT_REPLACE 2 //if it allows only one, but new instances replace
-
-#define STATUS_EFFECT_REFRESH 3 // if it only allows one, and new instances just instead refresh the timer
-
-///////////
-// BUFFS //
-///////////
-
-#define STATUS_EFFECT_SHADOW_MEND /datum/status_effect/shadow_mend //Quick, powerful heal that deals damage afterwards. Heals 15 brute/burn every second for 3 seconds.
-#define STATUS_EFFECT_VOID_PRICE /datum/status_effect/void_price //The price of healing yourself with void energy. Deals 3 brute damage every 3 seconds for 30 seconds.
-
-#define STATUS_EFFECT_POWERREGEN /datum/status_effect/cyborg_power_regen //Regenerates power on a given cyborg over time
-
-#define STATUS_EFFECT_WISH_GRANTERS_GIFT /datum/status_effect/wish_granters_gift //If you're currently resurrecting with the Wish Granter
-
-#define STATUS_EFFECT_BLOODDRUNK /datum/status_effect/blooddrunk //Stun immunity and greatly reduced damage taken
-
-#define STATUS_EFFECT_FLESHMEND /datum/status_effect/fleshmend //Very fast healing; suppressed by fire, and heals less fire damage
-
-#define STATUS_EFFECT_EXERCISED /datum/status_effect/exercised //Prevents heart disease
-
-#define STATUS_EFFECT_HIPPOCRATIC_OATH /datum/status_effect/hippocraticOath //Gives you an aura of healing as well as regrowing the Rod of Asclepius if lost
-
-#define STATUS_EFFECT_GOOD_MUSIC /datum/status_effect/good_music
-
-#define STATUS_EFFECT_REGENERATIVE_CORE /datum/status_effect/regenerative_core
-
-#define STATUS_EFFECT_ANTIMAGIC /datum/status_effect/antimagic //grants antimagic (and reapplies if lost) for the duration
-
-/////////////
-// DEBUFFS //
-/////////////
-
-#define STATUS_EFFECT_STUN /datum/status_effect/incapacitating/stun //the affected is unable to move or use items
-
-#define STATUS_EFFECT_KNOCKDOWN /datum/status_effect/incapacitating/knockdown //the affected is unable to stand up
-
-#define STATUS_EFFECT_IMMOBILIZED /datum/status_effect/incapacitating/immobilized //the affected is unable to move
-
-#define STATUS_EFFECT_PARALYZED /datum/status_effect/incapacitating/paralyzed //the affected is unable to move, use items, or stand up.
-
-#define STATUS_EFFECT_UNCONSCIOUS /datum/status_effect/incapacitating/unconscious //the affected is unconscious
-
-#define STATUS_EFFECT_SLEEPING /datum/status_effect/incapacitating/sleeping //the affected is asleep
-
-#define STATUS_EFFECT_PACIFY /datum/status_effect/pacify //the affected is pacified, preventing direct hostile actions
-
-#define STATUS_EFFECT_BELLIGERENT /datum/status_effect/belligerent //forces the affected to walk, doing damage if they try to run
-
-#define STATUS_EFFECT_GEISTRACKER /datum/status_effect/geis_tracker //if you're using geis, this tracks that and keeps you from using scripture
-
-#define STATUS_EFFECT_MANIAMOTOR /datum/status_effect/maniamotor //disrupts, damages, and confuses the affected as long as they're in range of the motor
-#define MAX_MANIA_SEVERITY 100 //how high the mania severity can go
-#define MANIA_DAMAGE_TO_CONVERT 90 //how much damage is required before it'll convert affected targets
-
-#define STATUS_EFFECT_CHOKINGSTRAND /datum/status_effect/strandling //Choking Strand
-
-#define STATUS_EFFECT_HISWRATH /datum/status_effect/his_wrath //His Wrath.
-
-#define STATUS_EFFECT_SUMMONEDGHOST /datum/status_effect/cultghost //is a cult ghost and can't use manifest runes
-
-#define STATUS_EFFECT_CRUSHERMARK /datum/status_effect/crusher_mark //if struck with a proto-kinetic crusher, takes a ton of damage
-
-#define STATUS_EFFECT_SAWBLEED /datum/status_effect/stacking/saw_bleed //if the bleed builds up enough, takes a ton of damage
-
-#define STATUS_EFFECT_NECKSLICE /datum/status_effect/neck_slice //Creates the flavor messages for the neck-slice
-
-#define STATUS_EFFECT_CONVULSING /datum/status_effect/convulsing
-
-#define STATUS_EFFECT_NECROPOLIS_CURSE /datum/status_effect/necropolis_curse
-#define STATUS_EFFECT_HIVEMIND_CURSE /datum/status_effect/necropolis_curse/hivemind
-#define CURSE_BLINDING 1 //makes the edges of the target's screen obscured
-#define CURSE_SPAWNING 2 //spawns creatures that attack the target only
-#define CURSE_WASTING 4 //causes gradual damage
-#define CURSE_GRASPING 8 //hands reach out from the sides of the screen, doing damage and stunning if they hit the target
-
-#define STATUS_EFFECT_KINDLE /datum/status_effect/kindle //A knockdown reduced by 1 second for every 3 points of damage the target takes.
-
-#define STATUS_EFFECT_ICHORIAL_STAIN /datum/status_effect/ichorial_stain //Prevents a servant from being revived by vitality matrices for one minute.
-
-#define STATUS_EFFECT_GONBOLAPACIFY /datum/status_effect/gonbolaPacify //Gives the user gondola traits while the gonbola is attached to them.
-
-#define STATUS_EFFECT_SPASMS /datum/status_effect/spasms //causes random muscle spasms
-
-#define STATUS_EFFECT_DNA_MELT /datum/status_effect/dna_melt //usually does something horrible to you when you hit 100 genetic instability
-
-#define STATUS_EFFECT_GO_AWAY /datum/status_effect/go_away //makes you launch through walls in a single direction for a while
-
-#define STATUS_EFFECT_STASIS /datum/status_effect/grouped/stasis //Halts biological functions like bleeding, chemical processing, blood regeneration, walking, etc
-
-#define STATUS_EFFECT_FAKE_VIRUS /datum/status_effect/fake_virus //gives you fluff messages for cough, sneeze, headache, etc but without an actual virus
-
-#define STATUS_EFFECT_METAB_FROZEN /datum/status_effect/metab_frozen // Affected cannot process chems
-
-/////////////
-// NEUTRAL //
-/////////////
-
-#define STATUS_EFFECT_SIGILMARK /datum/status_effect/sigil_mark
-
-#define STATUS_EFFECT_CRUSHERDAMAGETRACKING /datum/status_effect/crusher_damage //tracks total kinetic crusher damage on a target
-
-#define STATUS_EFFECT_SYPHONMARK /datum/status_effect/syphon_mark //tracks kills for the KA death syphon module
-
-#define STATUS_EFFECT_INLOVE /datum/status_effect/in_love //Displays you as being in love with someone else, and makes hearts appear around them.
-
-#define STATUS_EFFECT_BUGGED /datum/status_effect/bugged //Lets other mobs listen in on what it hears
-
-#define STATUS_EFFECT_BOUNTY /datum/status_effect/bounty //rewards the person who added this to the target with refreshed spells and a fair heal
-
-#define STATUS_EFFECT_HELDUP /datum/status_effect/heldup // someone is currently pointing a gun at you
-
-#define STATUS_EFFECT_HOLDUP /datum/status_effect/holdup // you are currently pointing a gun at someone
-
-#define STATUS_EFFECT_OFFERING /datum/status_effect/offering // you are offering up an item to people
-
-#define STATUS_EFFECT_SURRENDER /datum/status_effect/surrender // gives an alert to quickly surrender
-/////////////
-// SLIME //
-/////////////
-
-#define STATUS_EFFECT_RAINBOWPROTECTION /datum/status_effect/rainbow_protection //Invulnerable and pacifistic
-#define STATUS_EFFECT_SLIMESKIN /datum/status_effect/slimeskin //Increased armor
+///if it allows multiple instances of the effect
+#define STATUS_EFFECT_MULTIPLE 0
+///if it allows only one, preventing new instances
+#define STATUS_EFFECT_UNIQUE 1
+///if it allows only one, but new instances replace
+#define STATUS_EFFECT_REPLACE 2
+/// if it only allows one, and new instances just instead refresh the timer
+#define STATUS_EFFECT_REFRESH 3
+
+///Processing flags - used to define the speed at which the status will work
+///This is fast - 0.2s between ticks (I believe!)
+#define STATUS_EFFECT_FAST_PROCESS 0
+///This is slower and better for more intensive status effects - 1s between ticks
+#define STATUS_EFFECT_NORMAL_PROCESS 1
+
+//several flags for the Necropolis curse status effect
+///makes the edges of the target's screen obscured
+#define CURSE_BLINDING (1<<0)
+///spawns creatures that attack the target only
+#define CURSE_SPAWNING (1<<1)
+///causes gradual damage
+#define CURSE_WASTING (1<<2)
+///hands reach out from the sides of the screen, doing damage and stunning if they hit the target
+#define CURSE_GRASPING (1<<3)
// Grouped effect sources, see also code/__DEFINES/traits.dm
#define STASIS_MACHINE_EFFECT "stasis_machine"
-// Stasis helpers
-
-#define IS_IN_STASIS(mob) (mob.has_status_effect(STATUS_EFFECT_STASIS))
+// Status effect application helpers.
+// These are macros for easier use of adjust_timed_status_effect and set_timed_status_effect.
+//
+// adjust_x:
+// - Adds duration to a status effect
+// - Removes duration if a negative duration is passed.
+// - Ex: adjust_stutter(10 SECONDS) adds ten seconds of stuttering.
+// - Ex: adjust_jitter(-5 SECONDS) removes five seconds of jittering, or just removes jittering if less than five seconds exist.
+//
+// adjust_x_up_to:
+// - Will only add (or remove) duration of a status effect up to the second parameter
+// - If the duration will result in going beyond the second parameter, it will stop exactly at that parameter
+// - The second parameter cannot be negative.
+// - Ex: adjust_stutter_up_to(20 SECONDS, 10 SECONDS) adds ten seconds of stuttering.
+//
+// set_x:
+// - Set the duration of a status effect to the exact number.
+// - Setting duration to zero seconds is effectively the same as just using remove_status_effect, or qdelling the effect.
+// - Ex: set_stutter(10 SECONDS) sets the stuttering to ten seconds, regardless of whether they had more or less existing stutter.
+//
+// set_x_if_lower:
+// - Will only set the duration of that effect IF any existing duration is lower than what was passed.
+// - Ex: set_stutter_if_lower(10 SECONDS) will set stuttering to ten seconds if no stuttering or less than ten seconds of stuttering exists
+// - Ex: set_jitter_if_lower(20 SECONDS) will do nothing if more than twenty seconds of jittering already exists
+
+#define adjust_stutter(duration) adjust_timed_status_effect(duration, /datum/status_effect/speech/stutter)
+#define adjust_stutter_up_to(duration, up_to) adjust_timed_status_effect(duration, /datum/status_effect/speech/stutter, up_to)
+#define set_stutter(duration) set_timed_status_effect(duration, /datum/status_effect/speech/stutter)
+#define set_stutter_if_lower(duration) set_timed_status_effect(duration, /datum/status_effect/speech/stutter, TRUE)
+
+#define adjust_derpspeech(duration) adjust_timed_status_effect(duration, /datum/status_effect/speech/stutter/derpspeech)
+#define adjust_derpspeech_up_to(duration, up_to) adjust_timed_status_effect(duration, /datum/status_effect/speech/stutter/derpspeech, up_to)
+#define set_derpspeech(duration) set_timed_status_effect(duration, /datum/status_effect/speech/stutter/derpspeech)
+#define set_derpspeech_if_lower(duration) set_timed_status_effect(duration, /datum/status_effect/speech/stutter/derpspeech, TRUE)
+
+#define adjust_slurring(duration) adjust_timed_status_effect(duration, /datum/status_effect/speech/slurring/drunk)
+#define adjust_slurring_up_to(duration, up_to) adjust_timed_status_effect(duration, /datum/status_effect/speech/slurring/drunk, up_to)
+#define set_slurring(duration) set_timed_status_effect(duration, /datum/status_effect/speech/slurring/drunk)
+#define set_slurring_if_lower(duration) set_timed_status_effect(duration, /datum/status_effect/speech/slurring/drunk, TRUE)
+
+#define adjust_dizzy(duration) adjust_timed_status_effect(duration, /datum/status_effect/dizziness)
+#define adjust_dizzy_up_to(duration, up_to) adjust_timed_status_effect(duration, /datum/status_effect/dizziness, up_to)
+#define set_dizzy(duration) set_timed_status_effect(duration, /datum/status_effect/dizziness)
+#define set_dizzy_if_lower(duration) set_timed_status_effect(duration, /datum/status_effect/dizziness, TRUE)
+
+#define adjust_jitter(duration) adjust_timed_status_effect(duration, /datum/status_effect/jitter)
+#define adjust_jitter_up_to(duration, up_to) adjust_timed_status_effect(duration, /datum/status_effect/jitter, up_to)
+#define set_jitter(duration) set_timed_status_effect(duration, /datum/status_effect/jitter)
+#define set_jitter_if_lower(duration) set_timed_status_effect(duration, /datum/status_effect/jitter, TRUE)
+
+#define adjust_confusion(duration) adjust_timed_status_effect(duration, /datum/status_effect/confusion)
+#define adjust_confusion_up_to(duration, up_to) adjust_timed_status_effect(duration, /datum/status_effect/confusion, up_to)
+#define set_confusion(duration) set_timed_status_effect(duration, /datum/status_effect/confusion)
+#define set_confusion_if_lower(duration) set_timed_status_effect(duration, /datum/status_effect/confusion, TRUE)
+/* Drugginess is not a status effect (yet)
+#define adjust_drugginess(duration) adjust_timed_status_effect(duration, /datum/status_effect/drugginess)
+#define adjust_drugginess_up_to(duration, up_to) adjust_timed_status_effect(duration, /datum/status_effect/drugginess, up_to)
+#define set_drugginess(duration) set_timed_status_effect(duration, /datum/status_effect/drugginess)
+#define set_drugginess_if_lower(duration) set_timed_status_effect(duration, /datum/status_effect/drugginess, TRUE)
+*/
+#define adjust_hallucinations(duration) adjust_timed_status_effect(duration, /datum/status_effect/hallucination)
+#define adjust_hallucinations_up_to(duration, up_to) adjust_timed_status_effect(duration, /datum/status_effect/hallucination, up_to)
+#define set_hallucinations(duration) set_timed_status_effect(duration, /datum/status_effect/hallucination)
+#define set_hallucinations_if_lower(duration) set_timed_status_effect(duration, /datum/status_effect/hallucination, TRUE)
diff --git a/code/__DEFINES/tgs.dm b/code/__DEFINES/tgs.dm
index d468d6044196..c561a64ebf58 100644
--- a/code/__DEFINES/tgs.dm
+++ b/code/__DEFINES/tgs.dm
@@ -1,6 +1,6 @@
// tgstation-server DMAPI
-#define TGS_DMAPI_VERSION "6.6.1"
+#define TGS_DMAPI_VERSION "7.0.1"
// All functions and datums outside this document are subject to change with any version and should not be relied on.
@@ -73,12 +73,12 @@
#define TGS_EVENT_REPO_MERGE_PULL_REQUEST 3
/// Before the repository makes a sychronize operation. Parameters: Absolute repostiory path.
#define TGS_EVENT_REPO_PRE_SYNCHRONIZE 4
-/// Before a BYOND install operation begins. Parameters: [/datum/tgs_version] of the installing BYOND.
-#define TGS_EVENT_BYOND_INSTALL_START 5
-/// When a BYOND install operation fails. Parameters: Error message
-#define TGS_EVENT_BYOND_INSTALL_FAIL 6
-/// When the active BYOND version changes. Parameters: (Nullable) [/datum/tgs_version] of the current BYOND, [/datum/tgs_version] of the new BYOND.
-#define TGS_EVENT_BYOND_ACTIVE_VERSION_CHANGE 7
+/// Before a engine install operation begins. Parameters: Version string of the installing engine.
+#define TGS_EVENT_ENGINE_INSTALL_START 5
+/// When a engine install operation fails. Parameters: Error message
+#define TGS_EVENT_ENGINE_INSTALL_FAIL 6
+/// When the active engine version changes. Parameters: (Nullable) Version string of the current engine, version string of the new engine.
+#define TGS_EVENT_ENGINE_ACTIVE_VERSION_CHANGE 7
/// When the compiler starts running. Parameters: Game directory path, origin commit SHA.
#define TGS_EVENT_COMPILE_START 8
/// When a compile is cancelled. No parameters.
@@ -108,7 +108,7 @@
// #define TGS_EVENT_DREAM_DAEMON_LAUNCH 22
/// After a single submodule update is performed. Parameters: Updated submodule name.
#define TGS_EVENT_REPO_SUBMODULE_UPDATE 23
-/// After CodeModifications are applied, before DreamMaker is run. Parameters: Game directory path, origin commit sha, byond version.
+/// After CodeModifications are applied, before DreamMaker is run. Parameters: Game directory path, origin commit sha, version string of the used engine.
#define TGS_EVENT_PRE_DREAM_MAKER 24
/// Whenever a deployment folder is deleted from disk. Parameters: Game directory path.
#define TGS_EVENT_DEPLOYMENT_CLEANUP 25
@@ -122,6 +122,7 @@
/// The watchdog will restart on reboot.
#define TGS_REBOOT_MODE_RESTART 2
+// Note that security levels are currently meaningless in OpenDream
/// DreamDaemon Trusted security level.
#define TGS_SECURITY_TRUSTED 0
/// DreamDaemon Safe security level.
@@ -136,6 +137,11 @@
/// DreamDaemon invisible visibility level.
#define TGS_VISIBILITY_INVISIBLE 2
+/// The Build Your Own Net Dream engine.
+#define TGS_ENGINE_TYPE_BYOND 0
+/// The OpenDream engine.
+#define TGS_ENGINE_TYPE_OPENDREAM 1
+
//REQUIRED HOOKS
/**
@@ -449,6 +455,10 @@
/world/proc/TgsVersion()
return
+/// Returns the running engine type
+/world/proc/TgsEngine()
+ return
+
/// Returns the current [/datum/tgs_version] of the DMAPI being used if it was activated, null otherwise. This function may sleep if the call to [/world/proc/TgsNew] is sleeping!
/world/proc/TgsApiVersion()
return
diff --git a/code/__DEFINES/time.dm b/code/__DEFINES/time.dm
index fda27f56d1a3..494859934cdb 100644
--- a/code/__DEFINES/time.dm
+++ b/code/__DEFINES/time.dm
@@ -2,8 +2,9 @@
#define MIDNIGHT_ROLLOVER 864000
///displays the current time into the round, with a lot of extra code just there for ensuring it looks okay after an entire day passes
-#define ROUND_TIME ( "[world.time - SSticker.round_start_time > MIDNIGHT_ROLLOVER ? "[round((world.time - SSticker.round_start_time)/MIDNIGHT_ROLLOVER)]:[worldtime2text()]" : worldtime2text()]" )
-
+#define ROUND_TIME ( "[world.time - SSticker.round_start_time > MIDNIGHT_ROLLOVER ? "[round((world.time - SSticker.round_start_time)/MIDNIGHT_ROLLOVER)]:[game_timestamp()]" : game_timestamp()]" )
+///same as above, but based on real time of day
+#define ROUND_REALTIMEOFDAY ( "[REALTIMEOFDAY - SSticker.round_start_timeofday > MIDNIGHT_ROLLOVER ? "[round((REALTIMEOFDAY - SSticker.round_start_timeofday)/MIDNIGHT_ROLLOVER)]:[time2text(world.timeofday - SSticker.round_start_timeofday, "hh:mm:ss", 0)]" : time2text(world.timeofday - SSticker.round_start_timeofday, "hh:mm:ss", 0)]" )
#define JANUARY 1
#define FEBRUARY 2
diff --git a/code/__DEFINES/tools.dm b/code/__DEFINES/tools.dm
index 11ce83ecfb0b..320648170b44 100644
--- a/code/__DEFINES/tools.dm
+++ b/code/__DEFINES/tools.dm
@@ -18,3 +18,8 @@
// If delay between the start and the end of tool operation is less than MIN_TOOL_SOUND_DELAY,
// tool sound is only played when op is started. If not, it's played twice.
#define MIN_TOOL_SOUND_DELAY 20
+
+/// When a tooltype_act proc is successful
+#define TOOL_ACT_TOOLTYPE_SUCCESS (1<<0)
+/// When [COMSIG_ATOM_TOOL_ACT] blocks the act
+#define TOOL_ACT_SIGNAL_BLOCKING (1<<1)
diff --git a/code/__DEFINES/traits.dm b/code/__DEFINES/traits.dm
index ea51a1c96113..69de29d4cd70 100644
--- a/code/__DEFINES/traits.dm
+++ b/code/__DEFINES/traits.dm
@@ -146,7 +146,6 @@ Remember to update _globalvars/traits.dm if you're adding/removing/renaming trai
#define TRAIT_MUTE "mute"
#define TRAIT_EMOTEMUTE "emotemute"
#define TRAIT_NEARSIGHT "nearsighted"
-#define TRAIT_FAT "fat"
#define TRAIT_HUSK "husk"
#define TRAIT_BADDNA "baddna"
#define TRAIT_CLUMSY "clumsy"
@@ -290,6 +289,7 @@ Remember to update _globalvars/traits.dm if you're adding/removing/renaming trai
#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"
#define TRAIT_FREERUNNING "freerunning"
@@ -322,7 +322,6 @@ Remember to update _globalvars/traits.dm if you're adding/removing/renaming trai
#define UNCONSCIOUS_TRAIT "unconscious"
#define EYE_DAMAGE "eye_damage"
#define GENETIC_MUTATION "genetic"
-#define OBESITY "obesity"
#define MAGIC_TRAIT "magic"
#define TRAUMA_TRAIT "trauma"
#define DISEASE_TRAIT "disease"
@@ -425,6 +424,8 @@ Remember to update _globalvars/traits.dm if you're adding/removing/renaming trai
#define TRAIT_FISH_SAFE_STORAGE "fish_case"
/// Stuff that can go inside fish cases
#define TRAIT_FISH_CASE_COMPATIBILE "fish_case_compatibile"
+/// Granted by prismwine
+#define TRAIT_REFLECTIVE "reflective"
/// Trait granted by [mob/living/silicon/ai]
/// Applied when the ai anchors itself
diff --git a/code/__HELPERS/_extools_api.dm b/code/__HELPERS/_extools_api.dm
index d1961907e1e8..16c70f7d2dc5 100644
--- a/code/__HELPERS/_extools_api.dm
+++ b/code/__HELPERS/_extools_api.dm
@@ -8,7 +8,7 @@ GLOBAL_LIST_EMPTY(auxtools_initialized)
#define AUXTOOLS_CHECK(LIB)\
if (!GLOB.auxtools_initialized[LIB] && fexists(LIB)) {\
- var/string = call(LIB,"auxtools_init")();\
+ var/string = LIBCALL(LIB,"auxtools_init")();\
if(findtext(string, "SUCCESS")) {\
GLOB.auxtools_initialized[LIB] = TRUE;\
} else {\
@@ -18,6 +18,6 @@ GLOBAL_LIST_EMPTY(auxtools_initialized)
#define AUXTOOLS_SHUTDOWN(LIB)\
if (GLOB.auxtools_initialized[LIB] && fexists(LIB)){\
- call(LIB,"auxtools_shutdown")();\
+ LIBCALL(LIB,"auxtools_shutdown")();\
GLOB.auxtools_initialized[LIB] = FALSE;\
}\
diff --git a/code/__HELPERS/_logging.dm b/code/__HELPERS/_logging.dm
index df8a952c05b5..1ab889987695 100644
--- a/code/__HELPERS/_logging.dm
+++ b/code/__HELPERS/_logging.dm
@@ -71,7 +71,7 @@
/proc/log_mentor(text)
GLOB.mentorlog.Add(text)
if (CONFIG_GET(flag/log_admin))
- WRITE_FILE(GLOB.world_game_log, "\[[time_stamp()]]MENTOR: [text]")
+ WRITE_FILE(GLOB.world_game_log, "MENTOR: [text]")
/* All other items are public. */
/proc/log_game(text)
diff --git a/code/__HELPERS/chat.dm b/code/__HELPERS/chat.dm
index 2a546370ec0e..c265623b1643 100644
--- a/code/__HELPERS/chat.dm
+++ b/code/__HELPERS/chat.dm
@@ -47,18 +47,17 @@ In TGS3 it will always be sent to all connected designated game chats.
var/datum/tgs_version/version = world.TgsVersion()
if(channel_tag == "" || version.suite == 3)
- world.TgsTargetedChatBroadcast(message, FALSE)
+ world.TgsTargetedChatBroadcast(new /datum/tgs_message_content(message), FALSE)
return
var/list/channels_to_use = list()
- for(var/I in world.TgsChatChannelInfo())
- var/datum/tgs_chat_channel/channel = I
+ for(var/datum/tgs_chat_channel/channel as anything in world.TgsChatChannelInfo())
var/list/applicable_tags = splittext(channel.custom_tag, ",")
if(channel_tag in applicable_tags)
channels_to_use += channel
- if(channels_to_use.len)
- world.TgsChatBroadcast(message, channels_to_use)
+ if(length(channels_to_use))
+ world.TgsChatBroadcast(new /datum/tgs_message_content(message), channels_to_use)
/**
* Sends a message to TGS admin chat channels.
@@ -69,4 +68,4 @@ In TGS3 it will always be sent to all connected designated game chats.
/proc/send2adminchat(category, message)
category = replacetext(replacetext(category, "\proper", ""), "\improper", "")
message = replacetext(replacetext(message, "\proper", ""), "\improper", "")
- world.TgsTargetedChatBroadcast("[category] | [message]", TRUE)
+ world.TgsTargetedChatBroadcast(new /datum/tgs_message_content("[category] | [message]"), TRUE)
diff --git a/code/__HELPERS/game.dm b/code/__HELPERS/game.dm
index 2b3f3e41e444..6dc31eea2fdb 100644
--- a/code/__HELPERS/game.dm
+++ b/code/__HELPERS/game.dm
@@ -353,7 +353,7 @@ block( \
/proc/flick_overlay(image/I, list/show_to, duration)
for(var/client/C in show_to)
C.images += I
- addtimer(CALLBACK(GLOBAL_PROC, /proc/remove_images_from_clients, I, show_to), duration, TIMER_CLIENT_TIME)
+ addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(remove_images_from_clients), I, show_to), duration, TIMER_CLIENT_TIME)
/proc/flick_overlay_view(image/I, atom/target, duration) //wrapper for the above, flicks to everyone who can see the target atom
var/list/viewing = list()
diff --git a/code/__HELPERS/global_lists.dm b/code/__HELPERS/global_lists.dm
index 56f75905b7c4..1048aaa5c861 100644
--- a/code/__HELPERS/global_lists.dm
+++ b/code/__HELPERS/global_lists.dm
@@ -39,7 +39,6 @@
init_sprite_accessory_subtypes(/datum/sprite_accessory/moth_markings, GLOB.moth_markings_list)
init_sprite_accessory_subtypes(/datum/sprite_accessory/spider_legs, GLOB.spider_legs_list)
init_sprite_accessory_subtypes(/datum/sprite_accessory/spider_spinneret, GLOB.spider_spinneret_list)
- init_sprite_accessory_subtypes(/datum/sprite_accessory/spider_mandibles, GLOB.spider_mandibles_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_tail_feathers, GLOB.kepori_tail_feathers_list)
diff --git a/code/__HELPERS/mobs.dm b/code/__HELPERS/mobs.dm
index e824b3d82273..14a2399f1f2e 100644
--- a/code/__HELPERS/mobs.dm
+++ b/code/__HELPERS/mobs.dm
@@ -78,8 +78,6 @@
init_sprite_accessory_subtypes(/datum/sprite_accessory/spider_legs, GLOB.spider_legs_list)
if(!GLOB.spider_spinneret_list.len)
init_sprite_accessory_subtypes(/datum/sprite_accessory/spider_spinneret, GLOB.spider_spinneret_list)
- if(!GLOB.spider_mandibles_list.len)
- init_sprite_accessory_subtypes(/datum/sprite_accessory/spider_mandibles, GLOB.spider_mandibles_list)
if(!GLOB.kepori_feathers_list.len)
init_sprite_accessory_subtypes(/datum/sprite_accessory/kepori_feathers, GLOB.kepori_feathers_list)
if(!GLOB.kepori_tail_feathers_list.len)
@@ -118,7 +116,6 @@
"moth_wings" = pick(GLOB.moth_wings_list),
"face_markings" = pick(GLOB.face_markings_list),
"spider_legs" = pick(GLOB.spider_legs_list),
- "spider_mandibles" = pick(GLOB.spider_mandibles_list),
"spider_spinneret" = pick(GLOB.spider_spinneret_list),
"spines" = pick(GLOB.spines_list),
"squid_face" = pick(GLOB.squid_face_list),
@@ -244,7 +241,7 @@ GLOBAL_LIST_EMPTY(species_list)
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)
+/proc/do_mob(mob/user , mob/target, time = 3 SECONDS, uninterruptible = FALSE, progress = TRUE, datum/callback/extra_checks = null, ignore_loc_change = FALSE)
if(!user || !target)
return FALSE
@@ -284,7 +281,12 @@ GLOBAL_LIST_EMPTY(species_list)
drifting = FALSE
user_loc = user.loc
- if((!drifting && user.loc != user_loc) || target.loc != target_loc || user.get_active_held_item() != holding || user.incapacitated() || (extra_checks && !extra_checks.Invoke()))
+
+ 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))
@@ -685,6 +687,8 @@ GLOBAL_LIST_EMPTY(species_list)
. = pick(ais)
return .
+#define IS_IN_STASIS(mob) (mob.has_status_effect(/datum/status_effect/grouped/stasis))
+
/// Gets the client of the mob, allowing for mocking of the client.
/// You only need to use this if you know you're going to be mocking clients somewhere else.
#define GET_CLIENT(mob) (##mob.client || ##mob.mock_client)
diff --git a/code/__HELPERS/nameof.dm b/code/__HELPERS/nameof.dm
new file mode 100644
index 000000000000..7cd5777f4652
--- /dev/null
+++ b/code/__HELPERS/nameof.dm
@@ -0,0 +1,15 @@
+/**
+ * NAMEOF: Compile time checked variable name to string conversion
+ * evaluates to a string equal to "X", but compile errors if X isn't a var on datum.
+ * datum may be null, but it does need to be a typed var.
+ **/
+#define NAMEOF(datum, X) (#X || ##datum.##X)
+
+/**
+ * NAMEOF that actually works in static definitions because src::type requires src to be defined
+ */
+#if DM_VERSION >= 515
+#define NAMEOF_STATIC(datum, X) (nameof(type::##X))
+#else
+#define NAMEOF_STATIC(datum, X) (#X || ##datum.##X)
+#endif
diff --git a/code/__HELPERS/roundend.dm b/code/__HELPERS/roundend.dm
index 213bce08f003..5d96dc8af34c 100644
--- a/code/__HELPERS/roundend.dm
+++ b/code/__HELPERS/roundend.dm
@@ -302,7 +302,7 @@
var/statspage = CONFIG_GET(string/roundstatsurl)
var/info = statspage ? "[GLOB.round_id]" : GLOB.round_id
parts += "[FOURSPACES]Round ID: [info]"
- parts += "[FOURSPACES]Shift Duration: [DisplayTimeText(world.timeofday - SSticker.round_start_timeofday)]"
+ parts += "[FOURSPACES]Shift Duration: [DisplayTimeText(REALTIMEOFDAY - SSticker.round_start_timeofday)]"
parts += "[FOURSPACES]Station Integrity: [mode.station_was_nuked ? "Destroyed" : "[popcount["station_integrity"]]%"]"
var/total_players = GLOB.joined_player_list.len
if(total_players)
@@ -379,13 +379,15 @@
var/list/parts = list()
var/mob/M = C.mob
if(M.mind && !isnewplayer(M))
+ var/datum/overmap/ship/controlled/original_ship = M.mind.original_ship?.resolve()
+ var/location = original_ship ? "aboard [original_ship]" : "in [station_name()]"
if(M.stat != DEAD && !isbrain(M))
parts += "